@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* 1.1. single IMG BACKGROUND */
.bg-img-SINGLE {
  background-image: url(../intro-images/img/background/SINGLE-bg.png);
}

/* 1.3. parallax IMG BACKGROUND */
.parallax-purchase {
  background-image: url(../intro-images/img/parallax/parallax-purchase.png);
}


/* 2. reset */
*:focus {  
  outline: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html, body {
  height: 100%;
  line-height: 170%;
}

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

ol, ul {
  list-style: none;
}

/* remove dotted outline from links,
button and input element */
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  outline: 0;
}


/* 3. layout */
body {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  color: #5f5f5f;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:visited,
a:active,
a:focus {
  color: #5f5f5f;
  text-decoration: none;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: normal;
  font-weight: 500;
  color: #5f5f5f;
  padding-bottom: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

p a,
p a:hover {
  color: #5f5f5f;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

strong {
  font-weight: bold;
}

::-moz-selection {
  background: #5f5f5f;
  color: #fff;
}

::selection {
  background: #5f5f5f;
  color: #fff;
}

.nopadding {
  padding: 0!important;
  margin: 0!important;
}


/* 4. upper page */
.upper-page {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
  margin: 0;
}


/* 5. center container */
.center-container {
  position: absolute;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  background: none;
}

.center-block {
  display: table-cell;
  vertical-align: middle;
}


/* 6. section */
.sections {
  position: relative;
  z-index: 5;
}

section {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

section#three-step-method {
  margin: 0 auto 200px auto;
}

section.section-parallax {
  margin: 0;
  padding: 0;
}

#three-step-method button{
  background-color: #000;
  outline: none;
  color: #fff;
  border: none;
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid #151515;
}

#three-step-method .container{
  padding-right: 0px;
  padding-left: 0px;
}

@media only screen and (max-width: 768px){
  #three-step-method .container{
    padding-right: 15px;
    padding-left: 15px;
  }
}

.text-box {
  margin-top: 8vh;
  display: flex;
  justify-content: center;
}

.btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 25px 50px;
    display: block;
    border-radius: 100px;
    transition: all .2s;
    position: absolute;
    font-weight: bold;
    font-size: 18px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: #fff;
    color: #777;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn-white::after {
    background-color: #fff;
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}


/* 7. heading */
h2.section-heading {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000;
  margin: 0 auto -3px auto;
  width: 100%;
  line-height: 100%;
  z-index: 1;
}

@media all and (min-width: 1920px) {
  h2.section-heading {
    font-size: 85px;
    margin: -8px auto -3px auto;
  }
}

@media only screen and (max-width: 1200px) {
  h2.section-heading {
    font-size: 65px;
    margin: -8px auto -1px auto;
  }
}

@media only screen and (max-width: 640px) {
  h2.section-heading {
    font-size: 55px;
    margin: -6px auto -1px auto;
  }
}

h2.section-heading.light {
  color: #fff;
}

h2.section-heading span {
  color: #db0018;
}

h2.section-heading.section-heading-small {
  font-size: 55px;
  margin: -13px auto -7px auto;
  line-height: 1.25;
}

@media only screen and (max-width: 995px) {
  h2.section-heading.section-heading-small {
    font-size: 35px;
    margin: -6px auto -4px auto;
  }

  h3.section-heading-vsmall{
    font-size: 25px;
  }
}

h2.section-subheading {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  color: #5f5f5f;
}

h2.section-subheading span {
/*  position: relative;*/
  display: inline-block;
/*  padding-right: 40px;*/
  line-height: 1;
}

/*h2.section-subheading span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  width: 20px;
  height: 0;
  margin-top: 0;
  border-top: 1px solid #5f5f5f;
}*/

h2.section-subheading.light {
  color: #fff;
}

h2.section-subheading.light span:before {
  border-top: 1px solid #fff;
}


/* 8. footer */
#footer {
  padding: 0;
  text-align: center;
}

.footer-credits {
  margin: 0 auto -27px auto;
}

.footer-credits-logo {
  margin: -3px auto -2px auto;
}

.footer-credits-copyright-wrapper {
  height: 40px;
}

.footer-credits-copyright {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  z-index: 100;
}


/* 9. hero container */ 
.hero-fullscreen {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero-fullscreen-FIX {
  width: 100%;
  height: 100%;
}


/* 10. to top arrow */
.to-top-arrow {
  position: fixed;
  right: 30px;
  bottom: -10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #db0018;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all .7s;
  -moz-transition: all .7s;
  -ms-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
  z-index: 105;
}

@media only screen and (max-width: 768px) {
  .to-top-arrow {
    right: 15px;
  }
}

.to-top-arrow.show {
  bottom: 10px;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@media only screen and (max-width: 768px) {
  .to-top-arrow.show {
   bottom: -5px;
 }
}

.to-top-arrow:hover {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* 14. parallax */
.parallax-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 58%);
  z-index: 0;
}

.parallax {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 150px 30px;
}

@media all and (min-width: 1920px) {
  .parallax {
    padding: 200px 30px;
  }
}

@media only screen and (max-width: 995px) {
  .parallax {
    padding: 100px 0px;
  } 
}

.parallax-purchase {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  z-index: 1;
}

/* 15. link underline */
.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #5f5f5f;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-underline:hover::before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}


/* 16. three step method */
.three-step-method-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 3px 0 15px 0;
  text-align: left;
  color: #000;
}

.three-step-method-number {
  position: absolute;
  top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 140px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, .45);
  z-index: -1;
  margin-top: -5px;
}

@media only screen and (max-width: 880px) {
  .three-step-method-number {
    font-size: 100px;
  }
}

#three-step-method p {
  padding-left: 100px;
  text-align: left;
}

.three-step-method-block {
  top: -8px;
  margin-bottom: 0;
}

@media all and (min-width: 1920px) {
  .three-step-method-block {
   margin-bottom: -35px;
 }
}

@media only screen and (max-width: 995px) {
  .three-step-method-block {
   margin-bottom: 55px;
 }
}

@media only screen and (max-width: 880px) {
  .three-step-method-block {
   margin-bottom: -5px;
 }
}

@media only screen and (max-width: 995px) {
  .three-step-method-block:last-child {
    margin-bottom: -5px;
  }
}

@media only screen and (max-width: 880px) {
  .three-step-method-block:last-child {
    margin-bottom: -75px;
  }
}


/* 17. fullwidth IMG */
.img-fullwidth-wrapper {
  position: relative;
}

@media only screen and (max-width: 640px) and (orientation: landscape) {
  .img-fullwidth-wrapper {
    min-height: 396px;
  }
}

@media only screen and (max-width: 480px) {
  .img-fullwidth-wrapper {
    height: 236px;
  }
}

.img-fullwidth {
  min-height: 600px;
}

@media (min-width: 992px) {
  .img-fullwidth {
    position: absolute;
    width: 50vw;
    height: auto;
    top: 0;
    bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .img-fullwidth {
    min-height: 350px;
  }
}

.img-fullwidth-all {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


/* 18. preloader */
.preloader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  z-index: 999999;
}

#preloader {
  position: fixed;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  z-index: 999999;
}

#preloader-status {
  display: table-cell;
  vertical-align: middle;
}

.preloader-position {
  position: relative;
  margin: 0 auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.loader {
  position: relative;
  width: 45px;
  height: 45px;
  left: 50%;
  top: auto;
  margin-left: -22px;
  margin-top: 2px;
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  -ms-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
  border: 3px solid rgba(0, 0, 0, .15);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.loader span {
  position: absolute;
  width: 45px;
  height: 45px;
  top: -3px;
  left: -3px;
  border: 3px solid transparent;
  border-top: 3px solid rgba(0, 0, 0, .75);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* 19. layout */
h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #5f5f5f;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
}


/* 20. preview */
img {
  vertical-align: middle;
  max-width: 100%;
}

.preview-img-info {
  padding: 19px 0 14px 0;
}

.preview-corner {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: -10px;
  right: -10px;
  background: #db0018;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.preview-corner-txt {
  position: absolute;
  top: 12px;
  right: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}


/* 21. works hover */
.icon-works {
  position: absolute;
  width: 100%;
  top: 50%;
  text-align: center;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  z-index: 1;
}

.icon-works a {
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}

.image-works:hover .icon-works {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.icon-works a:before {
  position: relative;
  z-index: 1;
}

.icon-works a i {
  position: relative;
  z-index: 1;
}

.image-works {
  position: relative;
  z-index: 5!important;
  padding: 5px;
  margin-top: 30px;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 768px) {
  .image-works {
    margin-top: 15px;
  }
}

.image-works>.hover-effect {
  position: absolute;
  width: -webkit-calc(100% - 10px);
  width: -moz-calc(100% - 10px);
  width: calc(100% - 10px);
  height: -webkit-calc(100% - 10px, 10px, 102px, 10px);
  height: -moz-calc(100% - 10px, 10px, 102px, 10px);
  height: calc(100% - 10px, 10px, 102px, 10px);
  top: 5px;
  left: 5px;
  bottom: 51px;
  right: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #111;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity 0.35s ease-out;
  -moz-transition: opacity 0.35s ease-out;
  -ms-transition: opacity 0.35s ease-out;
  -o-transition: opacity 0.35s ease-out;
  transition: opacity 0.35s ease-out;
}

.image-works:hover .hover-effect {
  opacity: 0.75;
  -moz-opacity: 0.75;
  -webkit-opacity: 0.75;
  filter: alpha(opacity=75);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

.zoom-item {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: 40px!important;
}


/* 22. spacer */
.move-up {
  margin-top: -30px;
}

@media only screen and (max-width: 768px) {
  .move-up {
    margin-top: -15px;
  }
}

.section-intro {
  position: relative;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 995px) {
  .section-intro {
    margin-left: -67px;
    margin-right: -67px;
  }
}

@media only screen and (max-width: 880px) {
  .section-intro {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.section-demos {
  position: relative;
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .section-demos {
    margin-left: 0;
    margin-right: 0;
  }
}

.section-three-step {
  position: relative;
  height: 100%;
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (max-width: 995px) {
  .section-three-step {
    margin-left: -62px;
    margin-right: -62px;
  }
}

@media only screen and (max-width: 880px) {
  .section-three-step {
    margin-left: -15px;
    margin-right: -15px;
  } 
}


/* 23. navigation */
.logo .logo-light,
.main-navigation-bg .logo .logo-dark {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  height: auto;
}

.logo .logo-dark,
.main-navigation-bg .logo .logo-light {
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  height: 0;
}

.navbar-bg-switch {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  z-index: 999;
}

.logo {
  padding-top: 19px;
  padding-left: 0;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media only screen and (max-width: 1200px) {
  .logo {
   padding-left: 10px;
   margin-left: 0;
 }
}

@media only screen and (max-width: 1080px) {
  .logo {
   padding-left: 0;
   margin-left: -15px;
 }
}

@media only screen and (max-width: 995px) {
  .logo {
   margin-left: -33px;
 }
}

@media only screen and (max-width: 880px) {
  .logo {
    padding-top: 15px;
    padding-left: 8px;
    margin-left: auto;
  }
}

.main-navigation .navbar-nav li a {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 45px 15px 35px 15px;
  right: -15px;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .main-navigation .navbar-nav li a {
   right: 8px;
 }
}

@media only screen and (max-width: 1080px) {
  .main-navigation .navbar-nav li a {
   right: -30px;
 }
}

@media only screen and (max-width: 995px) {
  .main-navigation .navbar-nav li a {
    right: -48px;
  }
}

@media only screen and (max-width: 880px) {
  .main-navigation .navbar-nav li a {
    right: auto;
  }
}

@media only screen and (max-width: 768px) {
  .main-navigation .navbar-nav li a {
    color: #000;
    padding: 10px 15px;
  }
}

.main-navigation .navbar-nav li a:hover {
  color: #fff;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media only screen and (max-width: 768px) {
 .main-navigation .navbar-nav li a:hover {
  color: #000;
}
}

.nav li a:focus,
.nav li a:hover {
  color: #fff;
  background: none;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.main-navigation-bg {
  background: rgba(255, 255, 255, 1);
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .35);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .35);
  box-shadow: 0 0 5px rgba(0, 0, 0, .35);
}

.main-navigation-bg .logo {
  padding-top: 6px;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.main-navigation-bg .main-navigation .navbar-nav li a {
  color: #000;
  padding: 19px 15px 0 15px;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media only screen and (max-width: 768px) {
  .main-navigation-bg .main-navigation .navbar-nav li a {
    padding: 10px 15px;
  }
}

.main-navigation-bg .main-navigation .navbar-nav li a:hover {
  color: #000;
}

@media only screen and (max-width: 768px) {
  .navbar-toggle .icon-bar {
    background: #fff;
    margin-right: -14px;
  }
  
  .main-navigation-bg .navbar-toggle .icon-bar {
    background: #000;
    margin-right: -14px;
  }
  
  .navbar-toggle {
    margin-top: -35px;
    margin-right: 4px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }

  .main-navigation-bg .navbar-toggle {
    margin-top: -44px;
    margin-right: 4px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 1);
    margin-top: 23px;
  }
  
  .main-navigation-bg .navbar-collapse {
   margin-top: 3px;
 }
}

.navbar-nav li.active {
  color: #ccc!important;
  text-decoration: none;
}

.navbar-nav > .active > a {
  color: #ccc!important;
  background: none;
  text-decoration: none;
}


/* 24. intro */
h1.home-page-title {
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 115px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin: -14px auto -5px auto;
  width: 100%;
  line-height: 100%;
  z-index: 1;
}

@media only screen and (max-width: 880px) {
  h1.home-page-title {
    font-size: 85px;
    margin: -10px auto -4px auto;
  }
}

@media only screen and (max-width: 640px) {
  h1.home-page-title {
    font-size: 65px;
    margin: -9px auto -2px auto;
  }
}

h2.home-page-title {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 10px 0px 20px;
}

@media only screen and (max-width: 880px) {
  h2.home-page-title {
   display: none;
   visibility: hidden;
 } 
}

@media only screen and (max-width: 768px) {
  h2.home-page-title {
   display: block;
   visibility: visible;
 } 
}


/* 25. overlay */
.overlay:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.overlay-top-bottom-dark-15:before,
.overlay-dark-70:before {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

.overlay-top-bottom-dark-15:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .1) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
}

.overlay-dark-70:before {
  background: rgba(0, 0, 0, .7);
}


/* 26. the button */
.the-button-wrapper {
  position: relative;
  width: 165px;
  height: auto;
  line-height: 1.5;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.the-button-wrapper {
  margin: -7px auto 0 auto;
}

@media all and (min-width: 1920px) {
  .the-button-wrapper {
    width: 205px;
    margin: -4px auto 0 auto;
  }
}

@media only screen and (max-width: 640px) {
  .the-button-wrapper {
    width: 165px;
  }
}

.the-button,
.the-button-purchase {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.10em;
  color: #db0018;
  background: none;
  padding: 9px 40px 0 40px;
  margin-top: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

@media all and (min-width: 1920px) {
  .the-button,
  .the-button-purchase {
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 11px 40px 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button,
  .the-button-purchase {
    font-size: 10px;
    letter-spacing: 0.10em;
  }
}

.the-button:hover:before,
.the-button-purchase:hover:before {
  width: 100%;
}

.the-button:hover:after,
.the-button-purchase:hover:after {
  width: 100%;
}

.the-button::before,
.the-button-purchase::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 38px;
  top: -2px;
  left: -6px;
  border: 1px solid #db0018;
  border-right: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

@media all and (min-width: 1920px) {
  .the-button::before,
  .the-button-purchase::before {
    width: 20px;
    height: 47px;
    top: -5px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button::before,
  .the-button-purchase::before {
    width: 15px;
    height: 38px;
    top: -2px;
  }
}

.the-button::after,
.the-button-purchase::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 38px;
  top: -2px;
  right: -6px;
  border: 1px solid #db0018;
  border-left: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;  
}

@media all and (min-width: 1920px) {
  .the-button::after,
  .the-button-purchase::after {
    width: 20px;
    height: 47px;
    top: -5px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button::after,
  .the-button-purchase::after {
    width: 15px;
    height: 38px;
    top: -2px;
  }
}


/* 27. scroll indicator */
.scroll-indicator-wrapper {
  position: absolute;
  width: 1px!important;
  height: 100%;
  left: 0; left: -1px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transition: all .7s;
  -moz-transition: all .7s;
  -ms-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  z-index: 1005;
}

@media only screen and (max-width: 880px) {
  .scroll-indicator {
   display: none;
   visibility: hidden;
 } 
}

@media only screen and (max-width: 768px) {
  .scroll-indicator {
   display: block;
   visibility: visible;
   bottom: 60px;
 } 
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: none;
}

@media only screen and (max-width: 768px) {
  .scroll-line {
    height: 30px;
  }
}

.scroll-line::before {
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  top: 0;
  background-color: #fff;
  -webkit-animation: scroll-down 2s ease-in-out infinite;
  -ms-animation: scroll-down 2s ease-in-out infinite;
  animation: scroll-down 2s ease-in-out infinite;
}

@-webkit-keyframes scroll-down {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@-ms-keyframes scroll-down {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes scroll-down {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}


/* 28. the line */
.the-line {
  position: relative;
  width: 1px;
  height: 80px;
  background: #5f5f5f;
  margin: 1px auto;
}

@media all and (min-width: 1920px) {
  .the-line {
    height: 90px;
  }
}

@media only screen and (max-width: 995px) {
  .the-line {
    height: 70px;
  }
}


/* 29. intro txt */
.intro-txt {
  position: relative;
  margin: -3px auto -3px auto;
}


/* 30. the button LIGHT */
.the-button-light {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.10em;
  color: #fff;
  background: none;
  padding: 9px 40px 0 40px;
  margin-top: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

@media all and (min-width: 1920px) {
  .the-button-light {
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 11px 40px 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button-light {
    font-size: 10px;
    letter-spacing: 0.10em;
  }
}

.the-button-light:hover:before {
  width: 100%;
}

.the-button-light:hover:after {
  width: 100%;
}

.the-button-light::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 38px;
  top: -2px;
  left: -6px;
  border: 1px solid #fff;
  border-right: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

@media all and (min-width: 1920px) {
  .the-button-light::before {
    width: 20px;
    height: 47px;
    top: -5px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button-light::before {
    width: 15px;
    height: 38px;
    top: -2px;
  }
}

.the-button-light::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 38px;
  top: -2px;
  right: -6px;
  border: 1px solid #fff;
  border-left: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;  
}

@media all and (min-width: 1920px) {
  .the-button-light::after {
    width: 20px;
    height: 47px;
    top: -5px;
  }
}

@media only screen and (max-width: 640px) {
  .the-button-light::after {
    width: 15px;
    height: 38px;
    top: -2px;
  }
}


/* 31. Slick CUSTOM */
.slick-track,
.slick-list {
  -webkit-perspective: 2000;
  perspective: 2000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slick-slide {
  text-align: center;
  color: #000;
  height: 550px;
  background: #fff;
}

@media only screen and (max-width: 880px) {
  .slick-slide {
    height: 450px;
  }
}

@media only screen and (max-width: 640px) {
  .slick-slide {
    height: 350px;
  }
}

.slick-slide-must-haves {
  text-align: center;
  color: #000;
  height: 396px;
  background: #fff;
}

@media only screen and (max-width: 995px) {
  .slick-slide-must-haves {
    height: 336px;
  }
}

@media only screen and (max-width: 640px) {
  .slick-slide-must-haves {
   height: 356px;
 }
}

@media only screen and (max-width: 640px) and (orientation: landscape) {
  .slick-slide-must-haves {
    height: 396px;
  }
}

@media only screen and (max-width: 480px) {
  .slick-slide-must-haves {
   height: 266px;
 }
}

.slick-slider {
  margin-bottom: 0;
  margin-top: 0;
  cursor: default;
  overflow: hidden;
}

.slick-auto {
  width: 100%;
  height: auto;
}

.slick-auto p {
  padding: 20px;
}

.bg-color-1 {
  background: #fafafa;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 1;
  visibility: visible;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

.slick-must-haves .slick-prev,
.slick-must-haves-2 .slick-prev {
  left: -35px;
}

.slick-must-haves .slick-next,
.slick-must-haves-2 .slick-next {
  right: -35px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 12px;
  color: #fff;
  padding: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  background: #db0018;
  -webkit-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -moz-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -ms-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -o-transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  transition: all 0.27s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-prev:before {
  left: 75px;
  top: 9px;
}

.slick-next:before {
  right: 75px;
  top: 9px;
}

.slick-must-haves .slick-prev:before,
.slick-must-haves-2 .slick-prev:before {
  left: 55px;
}

.slick-must-haves .slick-next:before,
.slick-must-haves-2 .slick-next:before {
  right: 55px;
}

.slick-prev:hover,
.slick-next:hover {
  -webkit-transition: 0 none;
  -moz-transition: 0 none;
  -ms-transition: 0 none;
  -o-transition: 0 none;
  transition: 0 none;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:active:before,
.slick-next:active:before,
.slick-benefits:hover .slick-prev,
.slick-benefits:hover .slick-next,
.slick-must-haves:hover .slick-prev,
.slick-must-haves:hover .slick-next,
.slick-must-haves-2:hover .slick-prev,
.slick-must-haves-2:hover .slick-next {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-benefits:hover .slick-prev {
  left: -55px;
}

.slick-benefits:hover .slick-next {
  right: -55px;
}

.slick-must-haves:hover .slick-prev,
.slick-must-haves-2:hover .slick-prev {
  left: -55px;
}

@media only screen and (max-width: 1200px) {
  .slick-must-haves:hover .slick-prev,
  .slick-must-haves-2:hover .slick-prev {
    left: -46px;
  }
}

@media only screen and (max-width: 1080px) {
  .slick-must-haves:hover .slick-prev,
  .slick-must-haves-2:hover .slick-prev {
    left: -50px;
  }
}

@media only screen and (max-width: 880px) {
  .slick-must-haves:hover .slick-prev,
  .slick-must-haves-2:hover .slick-prev {
    left: -55px;
  }
}

.slick-must-haves:hover .slick-next,
.slick-must-haves-2:hover .slick-next {
  right: -55px;
}

@media only screen and (max-width: 1200px) {
  .slick-must-haves:hover .slick-next,
  .slick-must-haves-2:hover .slick-next {
    right: -46px;
  }
}

@media only screen and (max-width: 1080px) {
  .slick-must-haves:hover .slick-next,
  .slick-must-haves-2:hover .slick-next {
    right: -50px;
  }
}

@media only screen and (max-width: 880px) {
  .slick-must-haves:hover .slick-next,
  .slick-must-haves-2:hover .slick-next {
    right: -55px;
  }
}


/* 32. divider */
.inner-divider,
.inner-divider-half,
.inner-divider-ultra-half {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: none;
  z-index: -1;
}

.inner-divider {
  height: 100px;
}

@media all and (min-width: 1920px) {
  .inner-divider {
   height: 150px;
 }
}

@media only screen and (max-width: 980px) {
  .inner-divider {
    height: 100px;
  }
}

@media only screen and (max-width: 640px) {
  .inner-divider {
    height: 80px;
  }
}

.inner-divider-half {
  height: 50px;
}

@media all and (min-width: 1920px) {
  .inner-divider-half {
   height: 75px;
 }
}

.inner-divider-ultra-half {
  height: 25px;
}

h2.hide-me {
  display: none;
  visibility: hidden;
}

.visible-mobile-devices {
  display: none;
  visibility: hidden;
}

@media only screen and (max-width: 995px) {
  .visible-mobile-devices {
    display: block;
    visibility: visible;
  }
}


/* 33. override */
body {
  background: #151515;
}

.preloader-bg,
#preloader {
  background: #000;
}

.loader {
  border: 3px solid rgba(255, 255, 255, .15);
}

.loader span {
  border-top: 3px solid rgba(255, 255, 255, .75);
}

.main-navigation-bg,
.bg-color-1,
.slick-auto {
  background: #111;
}

.slick-slide {
  background: none;
}

.slick-slide-must-haves {
  background: none;
}

.image-works {
  background: #111;
  border: 1px solid #2d2d2d;
}

.inner-divider-works {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: none;
  height: 30px;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .inner-divider-works {
    height: 15px;
  }
}

h2.section-heading,
.intro-years h3,
h2,
.three-step-method-heading,
.three-step-method-number,
h2.section-heading.light,
h2.section-subheading.light {
  color: #fff;
}

h2.section-subheading.light span:before {
  border-top: 1px solid #fff;
}

.main-navigation-bg .main-navigation .navbar-nav li a,
.main-navigation-bg .main-navigation .navbar-nav li a:hover,
.intro-years h2,
.intro-years h4 {
  color: #5f5f5f;
}

.image-works,
.image-works img,
.image-works>.hover-effect {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}

.to-top-arrow,
.slick-prev:before,
.slick-next:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .main-navigation .navbar-nav li a,
  .main-navigation .navbar-nav li a:hover {
    color: #5f5f5f;
  }
}

@media only screen and (max-width: 768px) { 
  .main-navigation-bg .navbar-toggle .icon-bar {
    background: #fff;
  }
  
  .navbar-collapse {
    background: #111;
  }
}


/* 34. vertical lines */
.vertical-lines-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  left: 0;
  top: 0;
  margin: 0;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
  z-index: 2;
}

@media only screen and (max-width: 480px){
    .vertical-lines-wrapper{
        display: none;
    }
}

.vertical-lines {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.vertical-effect {
  position: relative;
  width: 10%;
  height: 100%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid rgba(119, 119, 119, .2);
}

.vertical-effect:nth-child(2){
  visibility: hidden;
  display: none;
}



.vertical-effect:last-child{
  right: 0%;
  width: 80%;
}

.vertical-effect::before {
  content: "";
  position: absolute;
  display: block;
  width: 3px;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  -ms-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
}

.vertical-effect:first-child::before,
.vertical-effect:last-child::before {
  content: "";
  position: absolute;
  right: -2px;
}

.vertical-effect:first-child::before {
  top: 0;
  -webkit-animation: raindrop 6s ease-out infinite;
  -moz-animation: raindrop 6s ease-out infinite;
  -ms-animation: raindrop 6s ease-out infinite;
  -o-animation: raindrop 6s ease-out infinite;
  animation: raindrop 6s ease-out infinite;
  background: -webkit-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
  background: -ms-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
  background: linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
}

.vertical-effect:last-child::before {
  bottom: 0;
  -webkit-animation: raindrop-reverse 6s ease-out infinite;
  -moz-animation: raindrop-reverse 6s ease-out infinite;
  -ms-animation: raindrop-reverse 6s ease-out infinite;
  -o-animation: raindrop-reverse 6s ease-out infinite;
  animation: raindrop-reverse 6s ease-out infinite;
  background: -webkit-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
  background: -ms-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
  background: linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
}

@-webkit-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}

@-webkit-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}


/* 35. button more */
.more-wraper-center {
  position: relative;
  width: 120px!important;
  max-width: 120px;
  height: 120px;
  left: 0;
  right: 0; 
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.more-wraper-center.more-wraper-center-demos {
  top: -23px!important;
}

.more-button-bg-center {
  background: none;
  border: 2px dashed #fff;
}

.more-button-circle {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-clip: content-box;
  padding: 2.5px;
  cursor: pointer;
}

.more-wraper-center:hover .more-button-circle {
  -webkit-animation: spin 5s linear infinite;
  -moz-animation: spin 5s linear infinite;
  -ms-animation: spin 5s linear infinite;
  -o-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}

.more-button-txt-center {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 120px!important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: normal;
  color: #fff;
  margin: 0 auto;
  cursor: pointer;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/*Intro Video Section*/
.video-container {
  position: relative;
/*  width: 600px; /* Adjust width as needed */*/
}

.video-wrapper {
  position: relative;
  overflow: hidden;
}

.overlay-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media only screen and (max-width: 1150px){
  .overlay-image {
    height: auto;
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  height: 80px;
  width: 80px;
}

.play-button i{
  color: black;
  font-size: 20px;
}
/*
.video-container:hover .play-button {
  background-color: rgba(0, 0, 0, 0.8);
}*/

.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  animation: openLightbox 0.5s ease-in-out forwards; /* Animation for opening */
  z-index: 9999;
}

.lightbox video{
  z-index: 999;
}

.lightbox.closing {
  animation: closeLightbox 0.5s ease-in-out forwards; /* Animation for closing */
}

@keyframes openLightbox {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes closeLightbox {
  from { opacity: 1; }
  to { opacity: 0; }
}

.lightbox iframe {
  width: 80%;
  height: 80%;
}

.close-lightbox {
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 9999;
  color: white;
  font-size: 2rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.intro-video-btns{
  margin-bottom: 100px;
}

.intro-video-btns button{
  background-color: transparent;
  outline: none;
  color: #fff;
  border: none;
  margin: 0 5px;
  padding: 15px 25px;
  border-radius: 30px;
}

.intro-video-btns .get-started{
  border: 1px solid #393939;
}

/*Pricing Section*/

#pricing{
  margin: 150px 0 50px;
}

#faq .row{
  margin-right: 0px !important;
  margin-left: 0px !important;
}

#pricing .col-lg-12{
  margin-bottom: 70px;
}

#pricing .pricing-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.pricing-box{
  width: 32%;
  padding: 50px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
}

.pricing-box h2{
  margin: 5px 0 !important;
}

.pricing-box button{
  background-color: #000;
  outline: none;
  color: #fff;
  border: none;
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid #151515;
  
}

.pricing-box-one{
  background-color: #000;
  color: #fff;
}

.pricing-box-two{
  background-color: #fff;
}

.pricing-box-two h2{
  color: #000 !important;
}

.pricing-box-three{
  background-color: #db0018;
  color: #fff;
}

.pricing-box-one p, .pricing-box-three p{
  color: #fff;
}

#pricing .pricing-box h2.section-heading, #pricing .pricing-box, #faq h2.section-heading, #faq span, #our-team h2.section-heading, #our-team span{
  text-align: left !important;
}

#pricing li{
  display: flex;
  margin: 10px 0;
}

#pricing li:before{
  content: "+";
  font-size: 30px;
  border-radius: 100%;
  background-color: #fff;
  color: #000;
  padding: 1px;
  display: block;
  height: 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-right: 10px;
}

.pricing-box-two li:before{
  background-color: #db0018 !important;
  color: #fff !important;
}

.pricing-box-three li:before{
  background-color: #000 !important;
  color: #fff !important;
}

.pricing-box-three{
  position: relative;
}

.pricing-custom{
  margin: 50px 0 100px;
}

.price-tag{
  text-transform: uppercase;
  background-color: #000;
  width: auto;
  display: inline;
  padding: 5px 20px;
  border-radius: 8px;
  font-size: 14px;
  position: absolute;
  top: -8px;
  right: 30px;
  transform: rotate(-12deg);
}

@media only screen and (max-width: 991px){
  #pricing .pricing-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pricing-box{
    width: 385px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 400px){
  .pricing-box{
    width: 100% !important;
  }
  #pricing .pricing-container{
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*
 * Animated CSS button
 */
.animated-button {
  background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button1 {
  border-radius: 5px;
  border: 1px solid #151515;
  background: #000;
  padding: 20px 40px;
  margin: 12px;
  color: #fff !important;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
/*  color: #fff !important;*/
/*  font-size: 20px;*/
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
/*  background-color: #ad8585;*/
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#db0018));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #db0018);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#db0018));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #db0018);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#db0018));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #db0018);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#db0018));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #db0018);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button2 {
  background: linear-gradient(-30deg, #3d240b 50%, #2b1a08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7e6d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button2::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad9985;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button2:hover::before {
  opacity: 0.2;
}

.animated-button2 span {
  position: absolute;
}

.animated-button2 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 26, 8, 0)), to(#d98026));
  background: linear-gradient(to left, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button2 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 26, 8, 0)), to(#d98026));
  background: linear-gradient(to top, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button2 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 26, 8, 0)), to(#d98026));
  background: linear-gradient(to right, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button2 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 26, 8, 0)), to(#d98026));
  background: linear-gradient(to bottom, rgba(43, 26, 8, 0), #d98026);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button3 {
  background: linear-gradient(-30deg, #3d3d0b 50%, #2b2b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button3::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #adad85;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button3:hover::before {
  opacity: 0.2;
}

.animated-button3 span {
  position: absolute;
}

.animated-button3 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 43, 8, 0)), to(#d9d926));
  background: linear-gradient(to left, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button3 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 43, 8, 0)), to(#d9d926));
  background: linear-gradient(to top, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button3 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 43, 8, 0)), to(#d9d926));
  background: linear-gradient(to right, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button3 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 43, 8, 0)), to(#d9d926));
  background: linear-gradient(to bottom, rgba(43, 43, 8, 0), #d9d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button4 {
  background: linear-gradient(-30deg, #243d0b 50%, #1a2b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #e6f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button4::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #99ad85;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button4:hover::before {
  opacity: 0.2;
}

.animated-button4 span {
  position: absolute;
}

.animated-button4 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to left, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button4 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to top, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button4 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to right, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button4 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 43, 8, 0)), to(#80d926));
  background: linear-gradient(to bottom, rgba(26, 43, 8, 0), #80d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button5 {
  background: linear-gradient(-30deg, #0b3d0b 50%, #082b08 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button5::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85ad85;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button5:hover::before {
  opacity: 0.2;
}

.animated-button5 span {
  position: absolute;
}

.animated-button5 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 8, 0)), to(#26d926));
  background: linear-gradient(to left, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button5 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 8, 0)), to(#26d926));
  background: linear-gradient(to top, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button5 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 8, 0)), to(#26d926));
  background: linear-gradient(to right, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button5 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 8, 0)), to(#26d926));
  background: linear-gradient(to bottom, rgba(8, 43, 8, 0), #26d926);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button6 {
  background: linear-gradient(-30deg, #0b3d24 50%, #082b1a 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7e6;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button6::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85ad99;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button6:hover::before {
  opacity: 0.2;
}

.animated-button6 span {
  position: absolute;
}

.animated-button6 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 26, 0)), to(#26d980));
  background: linear-gradient(to left, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button6 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 26, 0)), to(#26d980));
  background: linear-gradient(to top, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button6 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 26, 0)), to(#26d980));
  background: linear-gradient(to right, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button6 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 26, 0)), to(#26d980));
  background: linear-gradient(to bottom, rgba(8, 43, 26, 0), #26d980);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button7 {
  background: linear-gradient(-30deg, #0b3d3d 50%, #082b2b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4f7f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button7::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #85adad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button7:hover::before {
  opacity: 0.2;
}

.animated-button7 span {
  position: absolute;
}

.animated-button7 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
  background: linear-gradient(to left, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button7 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
  background: linear-gradient(to top, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button7 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
  background: linear-gradient(to right, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button7 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 43, 0)), to(#26d9d9));
  background: linear-gradient(to bottom, rgba(8, 43, 43, 0), #26d9d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button8 {
  background: linear-gradient(-30deg, #0b243d 50%, #081a2b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e6f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button8::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8599ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button8:hover::before {
  opacity: 0.2;
}

.animated-button8 span {
  position: absolute;
}

.animated-button8 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 26, 43, 0)), to(#2680d9));
  background: linear-gradient(to left, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button8 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 26, 43, 0)), to(#2680d9));
  background: linear-gradient(to top, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button8 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 26, 43, 0)), to(#2680d9));
  background: linear-gradient(to right, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button8 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 26, 43, 0)), to(#2680d9));
  background: linear-gradient(to bottom, rgba(8, 26, 43, 0), #2680d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button9 {
  background: linear-gradient(-30deg, #0b0b3d 50%, #08082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button9::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8585ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button9:hover::before {
  opacity: 0.2;
}

.animated-button9 span {
  position: absolute;
}

.animated-button9 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 8, 43, 0)), to(#2626d9));
  background: linear-gradient(to left, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button9 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 8, 43, 0)), to(#2626d9));
  background: linear-gradient(to top, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button9 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 8, 43, 0)), to(#2626d9));
  background: linear-gradient(to right, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button9 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 43, 0)), to(#2626d9));
  background: linear-gradient(to bottom, rgba(8, 8, 43, 0), #2626d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button10 {
  background: linear-gradient(-30deg, #240b3d 50%, #1a082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #e6d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button10::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #9985ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button10:hover::before {
  opacity: 0.2;
}

.animated-button10 span {
  position: absolute;
}

.animated-button10 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(26, 8, 43, 0)), to(#8026d9));
  background: linear-gradient(to left, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button10 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 8, 43, 0)), to(#8026d9));
  background: linear-gradient(to top, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button10 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(26, 8, 43, 0)), to(#8026d9));
  background: linear-gradient(to right, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button10 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 8, 43, 0)), to(#8026d9));
  background: linear-gradient(to bottom, rgba(26, 8, 43, 0), #8026d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button11 {
  background: linear-gradient(-30deg, #3d0b3d 50%, #2b082b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button11::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad85ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button11:hover::before {
  opacity: 0.2;
}

.animated-button11 span {
  position: absolute;
}

.animated-button11 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 43, 0)), to(#d926d9));
  background: linear-gradient(to left, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button11 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 43, 0)), to(#d926d9));
  background: linear-gradient(to top, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button11 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 43, 0)), to(#d926d9));
  background: linear-gradient(to right, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button11 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 43, 0)), to(#d926d9));
  background: linear-gradient(to bottom, rgba(43, 8, 43, 0), #d926d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.animated-button12 {
  background: linear-gradient(-30deg, #3d0b24 50%, #2b081a 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4e6;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button12::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8599;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button12:hover::before {
  opacity: 0.2;
}

.animated-button12 span {
  position: absolute;
}

.animated-button12 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 26, 0)), to(#d92680));
  background: linear-gradient(to left, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button12 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 26, 0)), to(#d92680));
  background: linear-gradient(to top, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button12 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 26, 0)), to(#d92680));
  background: linear-gradient(to right, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button12 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 26, 0)), to(#d92680));
  background: linear-gradient(to bottom, rgba(43, 8, 26, 0), #d92680);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
/*# sourceMappingURL=button.css.map */

/*FAQ's Section*/

#faq, #our-team{
  background-color: #000;
  padding: 150px 0;
  position: relative;
  z-index: 99;
}

#faq .container, #our-team .container{
  display: flex;
  align-items: center;
}

#faq .container .row, #what-we-do .container .row {
  width: 50%;
}

#faq .faq-heading{
  color: #db0018;
  letter-spacing: 5px;
}

#faq h2.section-heading.section-heading-small, #our-team h2.section-heading.section-heading-small{
  margin-bottom: 20px;
}

#faq h2.section-subheading span:before{
  display: none;
}

.section-heading-vsmall{
  position: relative;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: #000;
  width: 100%;
  z-index: 1;
  font-size: 35px;
  margin: -13px auto -7px auto;
  line-height: 1.25;
  color: #fff;
  margin: 10px 0;
}

.accordian {
    max-width: 600px;
    width: 100%;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0 auto;
}

.accordian ul > li {
    margin-bottom: 10px;
}

.accordian ul > li:first-child h3 {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.accordian h3 {
    cursor: pointer;
    background-color: #fff;
    padding: 1rem 1.8rem;
    margin: 0;
    display: block;
    position: relative;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    color: #000;
}

.accordian h3 .arrow {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}

.accordian ul ul {
    display: none;
    height: 100%;
    margin-bottom: -7px;
}

.accordian ul ul li {
    background-color: #fff;
    padding: 0rem 1.8rem;
    margin-bottom: 20px;
}

.accordian ul p{
  text-align: left;
  color: #000 !important;
}

.accordian ul ul.open p {
    opacity: 1;
    transform: translatey(0px);
    border-top: 1px solid #000;
    padding-top: 12px;
}

.accordian .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    transform-origin: center;
    float: right;
    margin-right: 8px;
    transition: transform 600ms cubic-bezier(0.175, 0.885, 0.32, 1);
}

.accordian .arrow.closed {
    margin-top: 4px;
    transform: rotate(-45deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1000px){
  #faq .container, #our-team .container{
    flex-direction: column;
  }

  #faq .container .row, #what-we-do .container .row {
    width: 100%;
  }

  #faq h2.section-heading, #faq span, #our-team h2.section-heading, #our-team span {
    text-align: center !important;
  }

  #faq .section-heading-vsmall{
    margin-bottom: 40px;
  }

  #faq .row:first-child{
    margin-bottom: 120px;
  }

  .accordian {
    max-width: 100%;
  }
}

/*What We Do Section*/
#what-we-do .container{
  display: flex;
}

#what-we-do{
  padding: 150px 0;
}

#what-we-do .row{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.what-we-do-sub-section{
  margin-top: 40px;
/*  margin-right: 40px;*/
}

#what-we-do .section-heading-vsmall, #what-we-do .col-lg-12 p, #what-we-do .section-heading-small{
  text-align: left;
  padding: 0;
}

#what-we-do .col-lg-12{
  position: sticky;
  top: 20%;
}

.what-cards{
  padding: 35px 35px 50px;
  border-radius: 16px;
/*  margin-bottom: 50px;*/
  position: sticky;
  top: 20%;
}

.what-cards p{
  padding-bottom: 0;
}

.what-cards, .what-cards .section-heading-vsmall{
  text-align: left;
}

.what-card1{
  background-color: #fff;
}

.what-card1 .section-heading-vsmall{
  color: #000;
}

.what-card2{
  background-color: #db0018;
  transform: perspective(1200px) translateX(0px) translateY(0px) scale(1) rotate(13.546deg) rotateX(0deg) rotateY(0deg) skewX(0deg) skewY(0deg) translateZ(0px);
}

.what-card2 p, .what-card3 p, .what-card4 p, .what-card5 p{
  color: #fff;
}

.what-card3{
  background-color: #000;
  transform: perspective(1200px) translateX(0px) translateY(0px) scale(1) rotate(-6.87117deg) rotateX(0deg) rotateY(0deg) skewX(0deg) skewY(0deg) translateZ(0px);
}

.what-card4{
  background-color: #151515;
  transform: perspective(1200px) translateX(0px) translateY(0px) scale(1) rotate(7.16564deg) rotateX(0deg) rotateY(0deg) skewX(0deg) skewY(0deg) translateZ(0px);
}

.what-card5{
  background-color: #5f5f5f;
  transform: perspective(1200px) translateX(0px) translateY(0px) scale(1) rotate(-7.16564deg) rotateX(0deg) rotateY(0deg) skewX(0deg) skewY(0deg) translateZ(0px);
}

#about .intro-txt{
  padding: 0px 80px;
}

@media only screen and (max-width:995px){
  #about .intro-txt{
    padding: 0px 20px;
  }
}

#about .intro-txt p{
  font-size: 16px !important;
}

.clr-red{
  color: #db0018;
  font-size: 18px;
}

@media only screen and (max-width: 991px){
  #what-we-do .container{
    flex-direction: column;
  }

  #what-we-do .section-heading-small, #what-we-do .section-heading-vsmall, #what-we-do .col-lg-12 p {
    text-align: center !important;
  }

  #what-we-do .row:last-child{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #what-we-do .col-lg-12{
    padding-left: 0px;
    padding-right: 0px;
  }

  .what-cards-wrapper{
    margin-top: 50px;
    margin: 50px 100px 0;
  }
}

@media only screen and (max-width: 650px){
  .what-cards-wrapper{
    margin-top: 50px;
    margin: 50px 50px 0;
  }
}

/*Our Process Section*/
#scroll{
  text-align: left !important;
}

.main {
/*    padding: 100px;*/
/*    max-width: 1140px;*/ 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
/*    overflow: hidden;*/
}

.ag-timeline {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

.ag-timeline_line {
    width: 3px;
    background-color: #5f5f5f;
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 0;
    overflow: hidden;
    -webkit-transform: translate(-100%);
    -moz-transform: translate(-100%);
    -ms-transform: translate(-100%);
    -o-transform: translate(-100%);
    transform: translate(-100%);
}

.timeline_line-progress {
  position: absolute;
  left: 0;
    width: 100%;
    height: 0%;
    background-color: #db0018;
}

.js-timeline-card_point-box {
    width: 50px;
    height: 50px;
    background-color: #151515;
    position: absolute;
    left: -25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.ag-timeline-card_point {
    height: 20px;
    line-height: 11px;
    width: 20px;
    background-color: #5f5f5f;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.js-ag-active .ag-timeline-card_point {
    background-color: white;
}

.timeline_item {
    height: 250px;
}


.js-timeline-card_meta-box {
    opacity: 0;
    border-radius: 6px;
    position: relative;
    -webkit-transition: -webkit-transition .5s, opacity .5s;
    -moz-transition: -moz-transition .5s, opacity .5s;
    -o-transition: -o-transition .5s, opacity .5s;
    transition: transform .5s, opacity .5s;
    color: white;
    margin-left: 70px;
}

.js-ag-active .js-timeline-card_meta-box {
    opacity: 1;
}

.ag-timeline-card_meta span {
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    font-weight: 500;
    color: #5f5f5f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.ag-timeline-card_meta h1 {
    font-size: 36px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 500;
    background-image: linear-gradient(75deg, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0.54));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ag-timeline-card_description {
    font-size: 14px;
    line-height: 2;
    letter-spacing: normal;
    font-weight: 500;
    color: #5f5f5f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.timeline_item .section-heading-vsmall{
  text-align: left;
}

@media screen and (max-width: 400px) {
    .timeline_item{
        height: auto !important;
        margin-bottom: 40px;
    }
}

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

    .main{
        width: 100%;
        padding: 40px;
        padding-bottom: 100px;
    }

    .js-timeline-card_meta-box{
        margin-left: 50px;
    }

    .timeline_item{
        height: 400px;
    }
}


.our-team .row{
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 30px;
  margin-right: 0px;
  margin-left: 0px;
}

.our-team .row:before{
  display: none;
}

.our-team .team-card{
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px #151515;
/*  border: 1px solid #151515;*/
  padding: 40px 20px;
  transition: 1s;
}

.our-team .team-card:hover{
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px #db0018;
  padding: 40px 20px;
}

.team-sub-title{
  color: #fff;
  font-family: 'Oswald', sans-serif;
  padding-bottom: 15px;
}

.team-social-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.team-social-icons ul {
  margin: 0;
  padding: 0;
  display: flex;
/*  transform: translate(-50%, -50%);*/
}

.team-social-icons ul li {
  list-style: none;
  margin: 0 7px;
  transition: 0.5s;
}

.team-social-icons ul li:hover {
  margin-top: -5px;
}

.team-social-icons ul li a {
  position: relative; 
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
/*  line-height: 63px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
  font-size: 12px;

  color: #db0018;
  box-shadow: 0 0 5px #db0018;
  text-shadow: 0 0 5px #db0018;
  transition: .5s;
}

.team-social-icons ul li a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
   position: absolute;
  top: 0;
  left: 0;
  background: #db0018;
  transition: .5s;
  transform: scale(1.1);
  box-shadow: 0 0 15px #db0018;
  z-index: -1;
}

#facebook, #instagram, #linkedin, #email {
  font-size: 8em;
  background-color: #18191f;
  color: #fff;
  box-shadow: 2px 2px 2px #00000080, 10px 1px 12px #00000080,
    2px 2px 10px #00000080, 2px 2px 3px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080,
    inset 2px 2px 10px #00000080;
  border-radius: 29px;
  padding: 11px 19px;
  margin: 0 40px;
  animation: animate 3s linear infinite;
  text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff,
    0 0 200px #0072ff;
}
#instagram {
  animation-delay: 0.3s;
}
#facebook {
  animation-delay: 0.7s;
}
#linkedin {
  animation-delay: 0.1s;
}

@keyframes animate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

@media only screen and (max-width: 1000px){
  #our-team .row:first-child{
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px){
  .our-team .row{
    grid-template-columns: auto;
  }
}


/*Footer section*/
footer{
/*  background-color: #000;*/
  z-index: 9999;
  padding: 100px 0;
}

footer form{
  display: flex;
  justify-content: center;
}

footer h2{
  margin-top: 40px !important;
  margin-bottom: 10px !important;
}

footer .copyrights-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.copyrights-content .copyrights, .disclaimer-wrapper{
  width: 50%;
}

.copyrights-content .copyrights{
  text-align: left;
}

.copyrights-content .social-icons-footer{
  text-align: right;
}


footer .copyrights a, .copyrights-mob a{
  color: #db0018;
}

.copyrights-mob{
  display: none;
}

.input-field{
  background-color: #fff;
  display: inline-block;
  border-radius: 50px;
  border: 3px solid #fff;
  width: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.input-field input, .input-field-mob input{
  font-size: 18px;
  color: #5f5f5f;
  border-radius: 50px;
  padding: 15px 20px;

}

.input-field button, .input-field-mob button{
  font-size: 18px;
  border-radius: 50px;
  background-color: #db0018;
  padding: 15px 50px;
  color: #fff;
  transition: 0.5s;

}

.input-field button:hover, .input-field-mob button:hover{
  background-color: #000;
}


.input-field input, .input-field button, .input-field-mob input, .input-field-mob button{
  border: none;
  outline: none;
}

.input-field-mob input, .input-field-mob button{
  width: 100%;
  text-align: center;
}

.input-field-mob input{
  margin-bottom: 15px;
}

.input-field-mob{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: none;
}

.social-icons-footer{
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons-footer i{
  font-size: 15px;
  color: #5f5f5f;
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  margin-left: 5px;
  border-radius: 100%;
  transition: 0.5s;
  background-color: #000;
}

.social-icons-footer i:hover{
  color: #fff;
}

.subscribe-msg {
  display: block;
  margin-top: 10px;
  color: #db0018;
  transition: 0.1s;
}

footer .clr-white{
  color: #fff;
}

/*Disclaimer Modal*/
.disclaimer {
    cursor: pointer;
}

.disclaimer-wrapper a{
  color: #db0018;
}

.disclaimer-wrapper{
  display: flex;
  text-align: right;
  gap: 3px;
  justify-content: flex-end;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / 81%);
}

.modal-content {
    background-color: #fefefe;
    margin: 18% auto 0;
    padding: 50px;
    border: 1px solid #888;
    width: 600px;
    font-size: 16px;
}

@media only screen and (max-width: 1000px){
  .modal-content {
    margin: 30% auto 0;
  } 
}

@media only screen and (max-width: 480px){
  .modal-content {
    margin: 50% auto;
  } 
}

.close {
    color: #000;
    font-size: 40px;
    font-weight: bold;
    opacity: 1;
    margin-top: -35px;
    transition: 0.5s;
}

.modal p{
  padding-bottom: 0px;
}

.close:hover,
.close:focus {
    color: #db0018;
    text-decoration: none;
    cursor: pointer; 

}

@media only screen and (max-width: 650px){
  .modal-content {
    width: 98%;
  }
}

@media only screen and (max-width: 415px){
  .input-field{
    display: none;
  }

  .input-field-mob{
    display: block;
  }
}

@media only screen and (max-width: 800px){
  .input-field{
    width: 100%;
  }

  footer{
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 680px){
  footer .copyrights-content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .disclaimer-wrapper{
    justify-content: center;
  }

  .social-icons-footer, .copyrights-content .copyrights{
    text-align: center !important;
  }

  .copyrights-content .copyrights, .disclaimer-wrapper {
    width: 100%;
  }
}

/*Hero Section*/
.hero-btns{
  display: flex;
  justify-content: center;
}

.hero-btns .more-wraper-center{
  margin: 0 10px;
}


#purchase .more-button-txt-center{
  top: 80px;
  left: 75px;
}

#purchase .more-wraper-center {
  width: 150px !important;
  max-width: 150px;
  height: 150px;
}

@media only screen and (max-width: 445px){
  .hero-btns{
    flex-direction: column;
  }

  .hero-btns .more-wraper-center{
    margin: 0px;
  }

  .animated-button1{
    width: 90%;
    margin: unset;
  }

  /*.hero-fullscreen .center-container .inner-divider-half{
    height: 180px;
  }*/

  h1.home-page-title{
    margin-top: 80px !important;
  }
}

.hero-section-intro-text {
/*  border-right: solid 3px rgba(219,0,24,.75);*/
  white-space: nowrap;
  overflow: hidden;    
  font-size: 14px;
  color: rgba(255,255,255,.70);
  margin: auto;
  padding-bottom: 0px;
}

.hero-section-intro-text {
  animation: animated-text 4s steps(29,end) 1s 1 normal both,
             animated-cursor 600ms steps(29,end) infinite;
}

@keyframes animated-text{
  from{width: 0;}
  to{width: 900px;}
}

@keyframes animated-cursor{
  from{border-right-color: rgba(219,0,24,.75);}
  to{border-right-color: transparent;}
}

.clr-prm{
  color: #db0018;
}

.button {
  --offset: 10px;
  --border-size: 1px;
  display: block;
  position: relative;
  padding: 1.5em 3em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .25em;
  outline: none;
  font-size: 12px;
  cursor: pointer;
/*  font-weight: bold;*/
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background .8s ease;
  margin: 0 20px;
}

.button1{
/*  color: #fff !important;*/
}

.button:hover {
  background: rgba(100, 0, 0, .03);
}

.button__horizontal,
.button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform .8s ease;
  will-change: transform;
}

.button__horizontal::before,
.button__vertical::before {
  content: '';
  position: absolute;
  border: inherit;
}

.button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}

.button:hover .button__horizontal {
  transform: scaleX(0);
}

.button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}

.button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.button:hover .button__vertical {
  transform: scaleY(0);
}

.hero-btns .pricing-custom{
  margin: 0 !important;
}


/*Reviews*/
#reviews .container{
  margin-top: 100px;
}

.carousel {
  background: transparent;
}

#reviews .carousel-cell img{
  height: 300px;
  width: 600px;
  object-fit: contain;
  background: #1c1d1f;
}

.carousel-cell {
  width: 50%;
  height: auto;
  margin-right: 50px;
  background: #151515;
  border-radius: 5px;
}

@media only screen and (max-width: 600px){
  #reviews .carousel-cell img{
    height: 200px !important;
    width: 100%;
  }

  .carousel-cell {
    width: 100%;
  }
}

@media only screen and (max-width: 1000px){
  #reviews .carousel-cell img{
    height: 400px;
    width: 100%;
  }

  .carousel-cell {
    width: 80%;
  }
}


/*CTA*/
#cta-section{
  padding: 150px 0;
}

#cta-section .row, .parallax-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.cta-card{
/*  background-color: #000;*/
  position: relative;
  z-index: 99;
  border-radius: 20px;
  padding: 20px;
  width: 45%;
/*  margin-top: 50px;*/
}

.cta-card .btn{
  bottom: 30%;
}

@media only screen and (max-width: 1460px) and (min-width: 1099px){
  .cta-card{
    width: 40%;
  }
}

@media only screen and (max-width: 1100px){
  .cta-card{
    width: 100%;
  }
}

.portfolio-overlay-img img{
  filter: brightness(0.5);
}

/*Privacy Policy*/
#privacy-policy{
  background-color: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#privacy-policy p{
  padding: 50px 200px;
}

@media only screen and (max-width: 990px){
  #privacy-policy{
    height: auto;
    padding: 100px 0;
  }

  #privacy-policy p{
    padding: 50px 0px 0px;
  }
}

@media only screen and (max-width: 995px){
  #three-step-method .btn, #purchase .btn{
    font-size: 14px;
  }

  #what-we-do, #faq, #our-team {
    padding: 80px 0;
  }

  .pricing-box{
    height: 460px;
  }
}

@media only screen and (max-width: 470px){
  #three-step-method .btn{
    font-size: 12px;
    padding: 20px;
  }

  #purchase .btn{
    font-size: 12px;
  }
}

#three-step-method .btn, #purchase .btn{
  color: #000;
}

/* Cursor Styling */

.output{
  color: #ffffffa1;
  margin-top: 10px;
}

.cursor::after {
  content:'';
  display:inline-block;
  margin-left:3px;
  background-color:white;
  animation-name:blink;
  animation-duration:0.5s;
  animation-iteration-count: infinite;
}
h1.cursor::after {
  height:24px;
  width:13px;
}

@keyframes blink {
  0% {
    opacity:1;
  }
  49% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  100% {
    opacity:0;
  }
}