
@import url('https://fonts.googleapis.com/css2?family=Jost&family=Rubik:wght@300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
  }
  
  html, body {
    height: 100%;
  }

  html {
    scroll-behavior: smooth;
  }

  footer a {
    text-decoration: none;
    transition: all .5s ease-in-out;
  }
  footer a:hover {
    text-decoration: underline;
    color: white
  }
  footer .border-top {
    border-top: 1px solid rgba(161, 173, 195, 0.5) !important;
  }
  footer .border-start {
    border-left: 1px solid rgba(161, 173, 195, 0.5) !important;
  }
  
  body {
    display: table;
    width: 100%;
    height: 100%;
    background-color: #0E0F13;
    color: #000;
    line-height: 1.6;
    position: relative;
    font-family: sans-serif;
    /**overflow-y: hidden;**/
  }

  .p-50-m {
    font-family: "Rubik", serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.125rem;
    letter-spacing: -0.5px;
  }
  @media (min-width: 576px) {
    .p-50-m {
      font-size: 3rem;
      line-height: 3.125rem;
    }
  }
  .p-28-m {
    font-family: "Rubik", serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: -0.2px;
  }
  .p-24-m {
    font-family: "Rubik", serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.125rem;
    letter-spacing: -0.2px;
  }
  .p-20-sb {
    font-family: "Rubik", serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: -0.2px;
  }
  .p-20-m {
    font-family: "Rubik", serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: -0.2px;
  }
  .p-16-m {
    font-family: "Rubik", serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75rem;
    letter-spacing: -0.2px;
  }
  .boxer .p-16-m, .boxer-m .p-16-m {
    line-height: 0.875rem;
  }
  .pj-15 {
    font-family: "Jost", serif;
    font-size: 0.938rem;
    line-height: 1.5rem;
  }
  .pj-14 {
    font-family: "Jost", serif;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
  .p-14-br {
    font-family: "Rubik", serif;
    font-weight: 300;
    font-size: 0.75rem ;
    letter-spacing: 4.4px;
  }
  .p-14-m {
    font-family: "Rubik", serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1rem;
    letter-spacing: -0.2px;
  }
  .p-14 {
    font-family: "Rubik", serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1rem;
    letter-spacing: -0.2px;
  }
  .p-13 {
    font-family: "Rubik", serif;
    font-size: 0.75rem;
    line-height: 1rem;
  }

a.draggable {
  text-decoration: underline;
  color: #fff;
  transition: all .5s ease-in-out;
} 
a.draggable:hover {
  text-decoration: underline;
  color: #92dcff;
}

@media (min-width: 576px) {
  a.draggable {
    text-decoration: none;
  } 
}
  
.tx-ci { color: #A1ADC3 ;}
.tx-ci-bo { color: #717e96 ;}
.tx-white { color: #fff; }
.tx-white-30 { color: rgba(255, 255, 255, 0.3);}
.tx-yellow { color: #FAC61B ;}
.tx-grey-6 { color: #666;}
.tx-grad {
  color: #A86363; 
  background-image: linear-gradient(45deg, #A86363 5%, #AD4848 33%, #383CA7 59%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
 }

 .btn-ft {
  background-color: #A2ADC3;
  border-radius: 30px;
  font-family: "Rubik", serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  transition: all .5s ease-in-out;
 }
 .btn-ft:hover {
  background-color: #fff;
 }

 .bread-rotate {
  transform: rotate(-90deg);
  transform-origin: 0 0;
  top: 640px;
  left: 10px;
 }

  .lines {

    display: none;
  }
  @media (min-width: 768px) {
    .lines {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 100%;
      margin: auto;
      width: 90vw;
      display: block;
    }
  }
  
  .line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }
  .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 30%, #ffffff 70%);
    -webkit-animation: drop 7s 0s infinite;
            animation: drop 7s 0s infinite;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
            animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  }
  .line:nth-child(1) {
    margin-left: -25%;
  }
  .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .line:nth-child(3) {
    margin-left: 25%;
  }
  .line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  
  @-webkit-keyframes drop {
    0% {
      top: -50%;
    }
    100% {
      top: 110%;
    }
  }
  
  @keyframes drop {
    0% {
      top: -50%;
    }
    100% {
      top: 110%;
    }
  }

/***carousel icons***/
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}


 /****card carousel*****/ 


.gallery {
    z-index: 9 !important ;
}

.gallery-cell {
  width: 280px;
  height: 440px;
  margin-right: 10px;
  background-color: #0E0F13;
  counter-increment: gallery-cell;
  /**border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;**/
}

@media (min-width: 576px) {
  .gallery-cell {
    width: 400px;
    height: 550px;
    margin-right: 20px;
  }
}

/* cell number */
.gallery-cell:before {
  display: block;
  /**text-align: center;
  content: counter(gallery-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;**/
}

.gallery-cell .img-box {
  background-color: rgba(42,36,53,0.5);
  border-radius: 35px; 
  padding: 11px 10px;
}

/***scroll line***/

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  transition: width 0.3s ease-out;
  z-index: 10;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/***slide no ****/
.num {
  position: absolute;
  bottom: 0;
  right: 40px;
  color: rgba(255, 255, 255, 0.03);
  padding: 10px;
  letter-spacing: -0.05em;
  text-align: center;
  font-family: "Righteous", serif;
  font-size: 5rem;
}

@media (min-width: 576px) {
  .num {
    bottom: -100px;
    right: 140px;
    font-size: 7rem;
  }
}

/***scroll activated***/
.spacer{
  height: 50vh;
  /***font-size: 60px;***/
}

.boxer {
  width: 380px;
  border-radius: 30px;
}
.boxer-m {
  width: 300px;
  border-radius: 30px;
}

/* helpers */

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

/* xlHeaders */

.xlHeader{
  padding: 67px 0;
  overflow: hidden;

  &__header{
    font-size: 100px;
    line-height: 100px;
  }

  &--right{
    padding: 150px 0;
    position: relative;

    .xlHeader__header{
      position: absolute;
      top: 50%;
      right: -60px;
      transform: translate(0px, -50%);
    }

  }
}
.xlHeader .border, .xlclient {
  border: 1px solid rgba(53, 55, 87, 0.8) !important;
  background-color: rgba(42,36,53,0.3);
  background-image: url(../img/quote.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  box-shadow: -4px 4px 4px 2px rgba(42,36,53,0.3);
}

/***modal***/
#closebt-container {
  position: relative;
  width:100%;
  text-align:center;
  margin-top:40px;
}
  #btn-close-modal {
          width:100%;
          text-align: center;
          cursor:pointer;
          color:#fff;
          margin-top: 50px;
      }
  .closebt {
      -webkit-transition: all 0.2s;
      -moz-transition: all 0.2s;
      -ms-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s;
      cursor:pointer;
  }

  .closebt:hover {
      transform:rotate(90deg);
  }

  /***avatar****/

  .avatar {
    overflow: hidden;
  animation: float 6s ease-in-out infinite;
    img {
        width: 100%;
        height: auto;
    }
}
@keyframes float {
0% {
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
transform: translatey(0px);
}
50% {
box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
transform: translatey(-20px);
}
100% {
box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
transform: translatey(0px);
}
}
.avatar-pro {
    overflow: hidden;
    position: absolute; 
    bottom: -130px;
  animation: floaty 6s ease-in-out infinite;
    img {
        width: 100%;
        height: auto;
    }
}
@keyframes floaty {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-20px);
}
100% {
transform: translatey(0px);
}
}

  /*****MARGIN & PADDING EXTRA*****/

.m-6 { margin: 5rem; }
.mt-6 {  margin-top: 5rem !important; }
.mt-7 {  margin-top: 7rem !important; }
.my-6 {  margin-top: 5rem !important; margin-bottom: 5rem !important;}
.mx-6 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.my-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}
.p-6 {  padding: 5rem; }
.p-7 {  padding: 7rem; }
.pt-4-5 {  padding-top: 2rem !important; }
.pt-6 {  padding-top: 5rem !important; }
.pt-7 {  padding-top: 7rem !important; }
.pt-8 {  padding-top: 9rem !important; }
.pt-9 {  padding-top: 11rem !important; }
.pb-6 {  padding-bottom: 5rem !important; }
.pb-7 {  padding-bottom: 7rem !important; }
.pb-8 {  padding-bottom: 9rem !important; }
.pb-9 {  padding-bottom: 11rem !important; }
.px-4-5 {
padding-left: 2rem !important;
padding-right: 2rem !important;
}
.px-6 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.py-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}
.py-8 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}
.py-9 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}
.py-10 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.mt-100 {  margin-top: 0; }
.mt-150 {  margin-top: 75px; }
.mt-200 {  margin-top: 100px; }
.mt-250 {  margin-top: 125px;}
.mt-300 {  margin-top: 150px; }

@media (min-width: 576px) {
  .mt-sm-6 { margin-top: 5rem !important; }
  .mt-sm-7 { margin-top: 7rem !important; }
  .pt-sm-6 {      padding-top: 5rem !important;}
  .pt-sm-7 {      padding-top: 7rem !important;}
  .pb-sm-6 {      padding-bottom: 5rem !important;}
  .pb-sm-7 {      padding-bottom: 7rem !important;}
  .px-sm-6 {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
  }
  .py-sm-6 {
      padding-top: 5rem !important;
      padding-bottom: 5rem !important;
  }
  .py-sm-7 {
      padding-top: 7rem !important;
      padding-bottom: 7rem !important;
  }
  .mt-150 {
      margin-top: 150px;
  }
  .mt-200 {
      margin-top: 200px;
  }
  .mt-250 {
      margin-top: 250px;
  }
  .mt-300 {
      margin-top: 300px;
  }
}

@media (min-width: 768px) {
  .mt-md-6 {
      margin-top: 5rem !important;
  }
  .mt-md-7 {
      margin-top: 7rem !important;
  }
  .pt-md-6 {
      padding-top: 5rem !important;
  }
  .pt-md-7 {
      padding-top: 7rem !important;
  }
  .pb-md-6 {
      padding-bottom: 5rem !important;
  }
  .pb-md-7 {
      padding-bottom: 7rem !important;
  }
  .px-md-6 {
      padding-left: 5rem !important;
      padding-right: 5rem !important;
  }
  .py-md-6 {
      padding-top: 5rem !important;
      padding-bottom: 5rem !important;
  }
  .py-md-7 {
      padding-top: 7rem !important;
      padding-bottom: 7rem !important;
  }
}

@media (min-width: 992px) {
      .ms-lg-n4 {
          margin-left: -3rem !important;
      }
      .ms-lg-n5 {
          margin-left: -4rem !important;
      }
      .ms-lg-n6 {
          margin-left: -5rem !important;
      }
      .ms-lg-n8 {
          margin-left: -8rem !important;
      }
      .ms-lg-n10 {
          margin-left: -15rem !important;
      }
      .mt-lg-6 {
          margin-top: 5rem !important;
      }
      .mt-lg-7 {
          margin-top: 7rem !important;
      }
      .mt-lg-8 {
        margin-top: 9rem !important;
      }
      .pt-lg-6 {
          padding-top: 5rem !important;
      }
      .pt-lg-7 {
          padding-top: 7rem !important;
      }
      .pt-lg-8 {
          padding-top: 9rem !important;
      }
      .pt-lg-9 {
          padding-top: 11rem !important;
      }
      .pb-lg-6 {
          padding-bottom: 5rem !important;
      }
      .pb-lg-7 {
          padding-bottom: 7rem !important;
      }
      .pb-lg-8 {
          padding-bottom: 9rem !important;
      }
      .pb-lg-9 {
          padding-bottom: 15.5rem !important;
      }

      .px-lg-6 {
          padding-left: 5rem !important;
          padding-right: 5rem !important;
      }
      .py-lg-6 {
          padding-top: 5rem !important;
          padding-bottom: 5rem !important;
      }
      .py-lg-7 {
          padding-top: 7rem !important;
          padding-bottom: 7rem !important;
      }
      .py-lg-8 {
          padding-top: 7.825rem !important;
          padding-bottom: 7.825rem !important;
      }
      .py-lg-9 {
          padding-top: 8.5rem !important;
          padding-bottom: 8.5rem !important;
      }
      .py-lg-10 {
          padding-top: 9.5rem !important;
          padding-bottom: 9.5rem !important;
      }
      
      .mx-lg-6 {
          margin-left: 5rem !important;
          margin-right: 5rem !important;
      }
      .my-lg-6 {
          margin-top: 5rem !important;
          margin-bottom: 5rem !important;
      }
      .my-lg-7 {
          margin-top: 7rem !important;
          margin-bottom: 7rem !important;
      }
      .mt-100 {
          margin-top: 100px;
      }
  }

@media (min-width: 1200px) {
      .mt-xl-6 {
          margin-top: 5rem !important;
      }
      .mt-xl-7 {
          margin-top: 7rem !important;
      }
      .mt-xl-8 {
        margin-top: 9rem !important;
    }
      .pl-xl-5{ 
          padding-left: 3rem !important;
}
      .pt-xl-6 {
          padding-top: 5rem !important;
      }
      .pt-xl-7 {
          padding-top: 7rem !important;
      }
      .pt-xl-8 {
          padding-top: 9rem !important;
      }
      .pt-xl-9 {
          padding-top: 11rem !important;
      }
      .pb-xl-6 {
          padding-bottom: 5rem !important;
      }
      .pb-xl-7 {
          padding-bottom: 7rem !important;
      }
      .pb-xl-8 {
          padding-bottom: 9rem !important;
      }
      .pb-xl-9 {
          padding-bottom: 15.5rem !important;
      }
      .px-xl-6 {
          padding-left: 5rem !important;
          padding-right: 5rem !important;
      }
      .px-xl-7 {
          padding-left: 7rem !important;
          padding-right: 7rem !important;
      }
      .py-xl-6 {
          padding-top: 5rem !important;
          padding-bottom: 5rem !important;
      }
      .py-xl-7 {
          padding-top: 7rem !important;
          padding-bottom: 7rem !important;
      }
      .py-xl-8 {
          padding-top: 9rem !important;
          padding-bottom: 9rem !important;
      }
      .py-xl-9 {
          padding-top: 11rem !important;
          padding-bottom: 11rem !important;
      }
      .py-xl-10 {
          padding-top: 13rem !important;
          padding-bottom: 13rem !important;
      }

  }

@media (min-width: 1400px) {
  .ps-xxl-6 {
      padding-left: 10% !important;
  }
  .pe-xxl-6 {
      padding-right: 12% !important;
  }
  .pt-xxl-6 {
      padding-top: 5rem !important;
  }
  .pt-xxl-7 {
      padding-top: 7rem !important;
  }
  .pt-xxl-8 {
      padding-top: 9rem !important;
  }
  .pt-xxl-9 {
      padding-top: 11rem !important;
  }
  .pb-xxl-6 {
      padding-bottom: 5rem !important;
  }
  .pb-xxl-7 {
      padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
      padding-bottom: 9rem !important;
  }
  .pb-xxl-9 {
      padding-bottom: 11rem !important;
  }
}