.carousel {
    position: relative;
    /* box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.64); */
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-open:checked + .carousel-item {
    position: static;
    opacity: 100;
}

.carousel-item {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0s ease-out;
    transition: opacity 0s ease-out;
}

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

.carousel-control {
    /* background: rgba(0, 0, 0, 0.28); */
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 40px;
    height: 40px;
    line-height: 35px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    cursor: pointer;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    width: 40px;
    z-index: 10;
}

.carousel-control.prev {
    left: 2%;
}

.carousel-control.next {
    right: 2%;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #aaaaaa;
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 {
    display: block;
}

.carousel-indicators {
    list-style: none;
    margin: 0;
    padding: 0;
    /* position: absolute; */
    bottom: 2%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.carousel-indicators li {
    display: inline-block;
    margin: 0 5px;
}

.carousel-bullet {
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 35px;
}

.carousel-bullet:hover {
    color: #aaaaaa;
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
    color: #428bca;
}

.title {
    width: 50%;
    position: absolute;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
    font-size: 27px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Open Sans', sans-serif;
    z-index: 9999;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.33), -1px 0px 2px rgba(255, 255, 255, 0);
    top: 0;
    left:0;
    /* display: inline-block; */
}

button {
    border: 0;
    position: relative;
}

button::before,
button::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.carousel-indicators label{
  border: 0;
  position: relative;
}

.carousel-indicators label::before,
.carousel-indicators label::after{
  box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.spin {
    height: 120px;
    width: 120px;
    padding-left: 12px;
    padding-top: 12px;
}

.spin::before,
.spin::after {
    top: 0;
    left: 0;
}

.spin::before {
    border: 1px solid transparent;
}

.spin.active::before {
    border-top-color: var(--secondary);
    border-right-color: var(--secondary);
    border-bottom-color: var(--secondary);
    transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.10s, border-bottom-color 0.15s linear 0.20s;
}

.spin::after {
    border: 0 solid transparent;
}

.spin.active::after {
    border-top: 1px solid var(--secondary);
    border-left-width: 1px;
    border-right-width: 1px;
    transform: rotate(270deg);
    transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
}

.circle {
    border-radius: 700%;
    box-shadow: none;
}

.circle::before,
.circle::after {
    border-radius: 100%;
}

@media (max-width: 768px) {
    .spin {
    height: 50px;
    width: 50px;
    padding-left: 5px;
    padding-top: 5px;
}
}

/* 11. hover-border-1 */
.btn {
    /* position: relative;
    display: inline-block;
    width: auto; height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px; */
  }
    .btn span {         
      /* position: relative;
      display: inline-block;
      font-size: 14px;
      font-weight: bold;
      letter-spacing: 2px;
      text-transform: uppercase;
      top: 0; left: 0;
      width: 100%;
      padding: 15px 20px;
      transition: 0.3s; */
    }

   
  /* 11. hover-border-1 */
  .btn-primary .hover-border-1::before,
  .btn-primary .hover-border-1::after,
  .btn-primary-wider .hover-border-1::before,
  .btn-primary-wider .hover-border-1::after {
    width: 0; height: 0;
    transition: 0.35s;
  }


  /* .btn-primary .hover-border-1::before {
    top: 0; left: 0;
  }
  .btn-primary .hover-border-1::after {
    bottom: 0; right: 0;
  } */

  .btn-primary .hover-border-1:hover::before, .btn-primary-wider .hover-border-1:hover::before{
    width: 100%;
    height: 100%;
    border-left: 1px solid var(--secondary);
    border-top: 1px solid var(--secondary);
    opacity: 0.7;
  }

  .btn-primary .hover-border-1:hover::after, .btn-primary-wider .hover-border-1:hover::after{
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    opacity: 0.7;
  }

  .btn-primary .hover-border-1.hover-border-black:hover::before, .btn-primary-wider .hover-border-1.hover-border-black:hover::before{
    border-left: 1px solid #000;
    border-top: 1px solid #000;
  }

  .btn-primary .hover-border-1.hover-border-black:hover::after, .btn-primary-wider .hover-border-1.hover-border-black:hover::after{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }

[data-effectJs^=slide][data-effectJs^=slide].effectJs-animate{
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))!important;
}

html,
body { 
    scroll-behavior: smooth;  
    overflow-x: hidden;
    overflow-y: auto;
}

.viewport {
    /* overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
}

.scrollup {
    display:none;
}

#form-contact .error ,
#form-payment .error {
    color: #cc0d0d;
    font-style: italic;
}