#timer {
  position: fixed;
  width: calc(100vw + 5px);
  height: calc(100% + 5px);
  background-color: #2E2E2E;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
  background-image: url("../../lib/background-img.png");
}
#timer .opacity {
  position: fixed;
  width: 100%;
  height: 100%;
  background: black;
  opacity: .56;
  z-index: 11;
}

#timer p {
  font-size: 30;
  display: block;
  color: white;
  z-index: 20;
}

#demo {
  color: white;
  /* position: fixed; */
  z-index: 20;
}

.nav-item {
    margin: auto 15px;
}

nav a {
  font-weight: 500;
}

nav a.contact-button{
  background-color: var(--global-color-dark-bg);
  color: var(--global-color-light-bg) !important;
  padding: 10px 25px !important;
  border-radius: 50px;
  font-weight: 600;
}

/* -------- */

header {
  /* background-image: url("../../lib/background-img.png"); */
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(70vh + 3px);
  margin-top: -3px;
}

header .background-img {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: calc(100% + 3px);
  z-index: -1;
  object-fit: cover;
  object-position: left;
  -o-object-fit: cover;
  -o-object-position: left;
}


.main-header__title {
  font-size: 4rem;
  font-weight: bold;
}

.main-header__subtitle {
  font-size: 2rem;
}

.under-header { 
  background-color: #2E2E2E;
  height: 30vh;
}

.under-header button a{
  font-weight: 600;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .under-header {
    position: relative;
    height: auto;
    padding-bottom: 35px;
  }
}

/*******************************************PRICE************************************************/

#price .transparent-bg { 
  background: none;
  border: 2px solid var(--global-color-orange);
}

#price .card-title span {
  color: #979797;
}

#price .card {
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: 500px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: .5s;
}

#price a {
  color: #2E2E2E;
}

#price a:hover{
  text-decoration: underline !important;
}

#price svg {
  position: absolute;
  top: -20px;
  right: -20px;
  letter-spacing: 0.5px;

  animation: circle 20s linear .1s infinite forwards;
}

@keyframes circle { 
  0% {transform: rotate(0deg);}
  100% {transform: rotate(-360deg);}
}

#price .card div.position-absolute {
  bottom: -41px; 
  right: 35px; 
  font-size: 100px;
}

#price .price {
  border: 1px solid #2E2E2E;
  background: none;
  padding: 14px 61px;
  width: max-content;
  margin: auto;
  border-radius: 100px; 
  margin-bottom: 10px;
  cursor: pointer;
}

#price .price b { 
  font-size: 2rem;
  /* border-bottom: 2px solid #2E2E2E */
}

#price .dark-bg .price {
  border: 1px solid #ececec;
}
#price .dark-bg .price b {
  color: #ececec;
  /* border-bottom: 2px solid #ececec; */
}

#price .under-text { 
  font-size: 1.5rem;
}


/*******************************************SALES************************************************/

#sales h2, #price h2 {
  font-size: 8rem;
  letter-spacing: 0.055em;
  line-height: 88%;
}

#price h2{
  font-size: 180px;
}

#sales .titles {
  margin-bottom: 100px;
}

#sales h3, #price h3 {
  position: absolute;
  bottom: -34px;
  left: 0;
  right: 0;
  font-size: 39px;
  font-weight: bold;
  letter-spacing: 0.055em;
  line-height: 88%;
}

#price .card {
  width: 20rem;
}

@media screen and (max-width: 1000px) {
  #sales h2, #price h2 {
    font-size: 4rem;
    line-height: 100%;
  }

  #sales h3, #price h3 {
    font-size: 29px;
  }
}

@media screen and (max-width: 767px) {
  .main-header__title {
    font-size: 3rem;
  }

  #sales h3, #price h3 {
    bottom: -60px;
  }

  #price .card {
    width: auto;
    max-width: 17rem;
  }
}


@media screen and (max-width: 400px) {
  #price .titles h2{
    padding-bottom: 20px;
  }
  
  #sales h3, #price h3 {
    bottom: -84px;
  }
}

@media screen and (max-width: 350px ) {
  #price h3 {
    bottom: -95px;
    font-size: 27px;
  }
}




@keyframes scroll {
  0% {
    transform: translateX(-100px);
 }
  100% {
    transform: translateX(calc(-350px * 7));
 }
}
.slider {
  background: #2E2E2E;
  height: 520px;
  overflow: hidden;
  margin: auto;
  position: relative;
  width: 100%;
}
.slider span {
 position: absolute;
 top: 0;
 width: 100%;
 height: 40px;
 background-color: var(--global-color-dark-bg);;
}

.slider::before, .slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 60s linear infinite;
  display: flex;
  width: calc(350px * 14);
}
.slider .slide {
 --duration: 10s;
  margin-top: 83px;
  width: 350px;
  height: 380px;
  transition: calc(var(--duration) * .1) ease-out;
}

.slider .slide .active:only-child {
 margin-top: -20px;
 padding-top: 20px;
 height: 420px !important;
}

.slider .slide-track:hover {
 animation-play-state: paused;
}

.slider:hover .slide {
 padding-right: 30px;
}

/*****/


#sales .card {
 background-color: #363636;
 border: none;
 width: 18rem;
}

#sales .card.active {
 border: 1px solid #D27118;
 width: 19rem;
}

#sales .card-img-center {
 position: relative;
 width: 120px;
 margin: auto;
}

#sales .card-img-top {
 position: absolute;
 top: -75px;
 width: 120px;
 height: 120px;
}

#sales .card-body {
 padding-top: 88px;
 text-align: center;
 font-family: 'Odasans', sans-serif;
}

#sales h5.card-title{
 margin-top: 20px;
 margin-bottom: 0;
 font-weight: 600;
 letter-spacing: 1.4px;
 color: #979797;
}

#sales p.card-text {
 padding-bottom: 30px;
 color: #979797;
}
#sales .active h5.card-title, #sales .active p.card-text {color: #D27118;}

#sales .card-stats p.text {
 color: #979797;
 font-weight: 500;
 letter-spacing: 0.88px;
 margin-bottom: 0;
}

#sales .card-stats p.number {
 color: #979797;
 font-weight: 600;
 font-size: 20px;
 letter-spacing: 1.2px;
} 
#sales .active .card-stats p.number {color: #ECECEC;}

#sales input#taylor_result {
  border-radius: 10px;
  border: none;
  padding: 2px 5px
}

#sales input#taylor_result:focus {
  outline: none;
}


/**************POPUP*********************/

.popup { display: none; }
.popup.open { display: block; }

.popup .contents h3{
 position: static !important;
 margin-bottom: 15px;
}

.popup img {
 position: absolute;
 right: 0;
 bottom: 0;
 width: 28%;
}

.blocker {
   position: fixed;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
   content: ' ';
   background: rgba(0,0,0,.5);
   z-index: 4
 }
 .popup .contents {
   border: 1px solid #ccc;
   border-radius: 25px;
   max-width: 80%;
   min-width: 70%;
   padding: 30px 20px;
   background: #FFF;
   z-index: 5;

   position: fixed;
   top: 50vh;
   left: 50vw;
   transform: translate(-50%, -50%);
 }

 .popup .contents p {
   width: 75%;
 }


 @media screen and (max-width: 767px) {

   .popup .contents {
     width: 80%;
   }
   .popup .contents p {
     width: 100%;
   }  
 }

/* ******************************&& */

#work .container-fluid .col-md-6, #work .container-fluid .col-lg-3 {
  flex: 0 0 10%;
  -ms-flex: 0 0 10%;
}



/*******************************************FAQ************************************************/


#faq {
  position: relative;
  background: url('../../lib/background-faq.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  width: 100%;
  min-height: 100vh;
  background-color: var(--global-color-light-bg);
  padding-top: 140px;
  padding-bottom: 100px;
  margin-bottom: 250px;
}

#faq .card { 
  padding: 20px;
  margin-bottom: 20px;
  min-height: 150px;
  
  cursor: pointer;
  background-color: #363636;
}

@media screen and (max-width: 767px) {
  #faq {
    background-repeat: repeat;
  }
}
#faq .question {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: #fff;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.055em;
  font-weight: 600;
}

#faq .answer { 
  color: #979797;
}


/*******************************************CONTACT************************************************/

.accordion-container {
  display: flex;
  flex-wrap: wrap;
}

#contact .left-side{
  padding: 57px 0px 40px 0;
}


#contact .left-side h3{
  font-size: 105px;
  font-weight: bold;
  padding-right: 100px;
  padding-left: 15px;
}

#contact .contact-links a, .terms{
  color: #2e2e2e;
  font-weight: bold;
  line-height: 176%;
  letter-spacing: 1.1px;
  font-size: 20px;
  padding-right: 100px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  #contact .left-side {
    width: 100%;
  }

  .responsive-center-object {
    margin: 0 auto;
    width: 90%;
  }

  #contact .contact-links a, .terms, #contact .left-side h3 {
    padding-right: 15px;
  }
}

@media screen and (max-width: 450px ) {
  #contact .left-side h3 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 357px ){
  #contact .left-side .contact-links a {
    font-size: 1rem;
  }
}

#contact .terms a{
  color: #979797;
  text-decoration-color: #979797;
  text-decoration-line: underline;
}

#contact .right-side {
  background-color: #2e2e2e;
  padding-top: 85px;
}

#contact form input, #contact form textarea{
  width: 80%;
  border-radius: 40px;
  padding: 12px 30px;
  margin: 10px auto;
  background-color: #363636;
  color: #fff;
  border: none;
}

#contact input:focus, #contact textarea:focus {
  outline: none;
  color: #ececec;
}

#contact form input[type="submit"] {
  width: max-content;
  color: white;
  font-weight: 600;
}
