@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
}

p{
  font-weight: 300;
  font-size: 18px;
  margin: 0;
  line-height: 120%;
}

h1{
  font-weight: 500;
  font-size: 48px!important;
  text-transform: uppercase;
}

h2{
  font-weight: 500;
  font-size: 48px;
}

h3{
  font-weight: 500;
  font-size: 32px;
  line-height: auto;
  text-transform: uppercase!important;
}

.reveal{
  position: relative;
  transform: translateX(-100px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateX(0);
  opacity: 1;
}

body{
  background-color: #FFFFFF;
}

.M-360{
  margin-left: 18%;
  margin-right: 18%;
}

.M-340{
  margin-left: 16%;
  margin-right: 16%;
}


.M-180{
  margin-left: 9%;
  margin-right: 9%;
}

.M-460{
  margin-left: 24%;
  margin-right: 24%;
}

.mt-80{
  margin-top: 60px;
}

.mt-120{
  margin-top: 120px;
}

.pb-120{
  padding-bottom: 120px;
}

.d-line-none{
    display: block;
}

/*---------------------HEADER---------------------*/

.header_css{
  background-color: rgba(27, 28, 30, 1);
  background: radial-gradient(circle at top left, rgba(223, 204, 255, 1) 0%, rgba(115, 60, 204, 1) 14%, rgba(27, 28, 30, 0) 22%),
              radial-gradient(circle at bottom right, rgba(223, 204, 255, 1) 0%, rgba(115, 60, 204, 1) 14%, rgba(27, 28, 30, 0) 22%);
  background-color: rgba(27, 28, 30, 1);
  margin: 20px;
  border-radius: 30px;
}

@media(min-width:0px) and (max-width:1850px){
  .header_css{
    background: unset;
    background-color: rgba(27, 28, 30, 1);
    margin: 0px;
    border-radius: 0px;
  }

  .M-360{
    margin-left: 10%;
    margin-right: 10%;
  }
  
  .M-340{
    margin-left: 10%;
    margin-right: 10%;
   }

  .M-460{
    margin-left: 10%;
    margin-right: 10%;
  }
  
  .M-180{
    margin-left: 10%;
    margin-right: 10%;
 }

 .d-line-none{
    display: none;
 }

}

@media(min-width:0px) and (max-width:1600px){
  .header_css{
    background: unset;
    background-color: rgba(27, 28, 30, 1);
    margin: 0px;
    border-radius: 0px;
  }

  .M-360{
    margin-left: 5%;
    margin-right: 5%;
  }
  
  .M-340{
    margin-left: 5%;
    margin-right: 5%;
  }


  .M-460{
    margin-left: 5%;
    margin-right: 5%;
  }

}

.buttonH{
  font-size: 16px;
  font-weight: 300;
  color: #1B1C1E;
  padding: 15 20;
  width: fit-content;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 36px;

  background-image: linear-gradient(#6F2DDB, #6F2DDB);
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.5s ease;
}

.buttonH:hover{
  color: #FFFFFF;
  background-size: 100% 100%;
}

.buttonH img{
  transition: all 0.5s ease;
}

.buttonH:hover img{
  filter: invert(100%);
}

.logo{
  text-decoration: none;
  color: #FFFFFF;
}
.logo:hover{
  text-decoration: none;
  color: #FFFFFF;
}
.logo p{
  font-size: 28px;
  font-weight: 500;
  margin-left: 10px;
}
.logo img{
  height: 22px;
  width: auto;
}

.href_disabled{
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase!important;
  color: #FFFFFF;
}

.href{
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
  text-decoration: none;

  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
}

.href:hover{
  color: #FFFFFF;
  background-size: 100% 1px;
}

.dropdown-my{
  position: absolute;
  text-align: left;
  background-color: transparent;
  border: none;
  width: max-content;
  min-width: unset;
  padding: 0 0;

  inset: 0px auto auto 0px;
  transform: translate(3px, 30px);
}

.dropdown-my li{
  margin: 20 0 20 0;
}

.dropdown-my li:last-child{
  margin: 20 0 0 0;
}

.dropdown-toggle{
  background-color: transparent;
  border: none;
  width: max-content;
  min-width: unset;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: unset;
    vertical-align: unset;
    content: unset;
    border-top: unset;
    border-right: unset;
    border-bottom: unset;
    border-left: unset;
  }

/*----------------------------*/

.dropdown {
  transform: perspective(1000px);
}

.dropdown-my {
  list-style-type: none;
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.dropdown:hover .dropdown-my {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/*-----------------HEADER MOBILE-----------------*/

ul{
  padding: 0;
  list-style-type: none;
}

.p-m{
  font-size: 50px;
}

.href-m{
  font-weight: 275;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;

  color: #1F1F1F;
  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
}

.href-m:hover{
  color: #1F1F1F;
  background-size: 100% 1px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 40px;
  right: 0;
  padding-right: 40px;
  z-index: 15;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 60px;
  height: 60px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 60px;
  height: 6px;
  margin-bottom: 15px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 3px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(0px, 2px);
  background: #1F1F1F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  right: 0;
  text-align: end;

  width: 70vw;
  height: 102vh;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  transform-origin: 100% 50%;
  transform: scale(0, 100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

.wm100{
  width: 100%;
}

/*---------------------INDEX---------------------*/

.ytp-chrome-controls .ytp-button.ytp-youtube-button, .ytp-embed .ytp-chrome-controls .ytp-button.ytp-youtube-button{
    display:none!important;
}

.border_button{
  border: solid 1px #AAAAAA;
  font-size: 16px;
  font-weight: 300;
  width: max-content;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 4px;
}

.border_button a{
  text-decoration: none;
  color: #FFFFFF;
}

.border_button p{
  padding: 8 25;
  border-radius: 50px;
  background-color: #733CCC;
}

.border_button img{
  filter: invert(100%);
  height: 14px;
  margin-left: 10px;
  transition: all 0.5s ease;
  width: auto;
}

.border_button:hover img{
  margin-left: 20px;
}

.main_content{
  color: #FFFFFF;
  width: 100%;
  max-width: 500px;
}

.main_content_LV{
  color: #FFFFFF;
  width: 100%;
  max-width: 600px;
}

.Diagram_LV{
  width: 100%;
  max-width: 580px;
}

.main_content b{
  font-style: italic;
  font-weight: 500;
}

.main_content p{
  font-weight: 200;
}

.Diagram{
  width: 100%;
  max-width: 630px;
}

.Partners p{
  width: 100%;
  max-width: 350px;
}

.TrBrRu p{
    max-width: 340px!important;
}

.Partners i{
  font-style: italic;
  color: #AAAAAA;
}

.line_w{
  width: -webkit-fill-available;
  background-color: #AAAAAA;
  height: 1px;
}

.border_head{
  border: solid 1px #AAAAAA;
  font-size: 16px;
  font-weight: 300;
  width: max-content;
  border-radius: 50px;
  padding: 4px;
}

.border_head img{
  padding: 8 20;
  border-radius: 50px;
  background-color: #733CCC;
}

.ColorF{
  color: #FFFFFF;
}

.ColorВ{
  color: #1B1C1E;
}

.Block_soft{
  background-color: rgba(34, 35, 37, 1);
  border-radius: 20px;
  width: 100%;
  max-width: 575px;
  height: 300px;
  cursor: pointer;
  position: relative;
}

.Block_soft p{
  margin: auto!important;
  margin-left: 0!important
}

.soft_block{
  height: 100%;
  padding: 35px;
  opacity: 1;
  transition: all 0.5s ease;
  transition-delay: 0s;
}

.soft_block img{
  display: flex;
  margin: auto;
  margin-left: 0;
  margin-top: 0;
}

.Block_soft:hover .soft_block{
    opacity: 0;
}

.soft_h{
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
}

.hover-effect{
  height: 300px;
  background-image: url("MAIN/adBackgroundBlock.png");
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  border-radius: 20px;
  padding: 35px;

  transition: all 0.3s ease;
  transition-delay: 0.3s;
  opacity: 0;
}

.Block_soft:hover .hover-effect{
  opacity: 1;
}

.Block_soft:not(:hover) .hover-effect{
    transition-delay: 0s;
}

.Block_soft:not(:hover) .soft_block{
    transition-delay: 0.3s;
}

.V-line-offset{
  position: absolute;
  padding-left: 16%;
}

.V-line{
  height: 648px;
  width: 1px;
  background-color: #AAAAAA;
}

.Onboarding_Process{
  background-color: rgba(240, 240, 240, 1);
  margin: 20px 20px 20px 20px;
  border-radius: 30px;
  padding: 120px 0;
}

.Onboarding{
  background-color: #FFFFFF;
  padding: 35px;
  width: 100%;
  max-width: 380px;
  height: 380px;
  position: relative;
  cursor: crosshair;

  border-radius: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}


.Onboarding:hover{
  box-shadow: -10px 10px 24px rgba(0, 0, 0, 0.35);
}

.Onboarding p{
  line-height: 120%;
}

@media(min-width:0px) and (max-width:1400px){
  .Onboarding_Process{
    background-color: rgba(240, 240, 240, 1);
    margin: 0;
    border-radius: 0px;
    padding: 120px 0;
  }
}

.TrusredBrands{
  color: #5D5D5D;
}

.TrusredBrands p{
  width: 100%;
  max-width: 220px;
  font-weight: 500;
}

.TrusredBrands i{
  font-style: italic;
  font-weight: 300;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.track-element{
  width: auto;
  margin-right: 110px;
  display: flex;
  justify-content: center;
}


.logo-track{
    width: calc(3244px * 2);
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-3244px);
    }
}

.TrendliteInNumbers{
  background-color: rgba(27, 28, 30, 1);
  margin: 20px;
  border-radius: 30px;
  padding: 120px 0;
  color: #FFFFFF;
}

.Number_block{
  background-color: #222325;
  width: 320px;
  padding: 33px;
  border-radius: 20px;
  margin: 10px;
}

.Number_block p{
  font-weight: 200;
}

.number_head{
  padding: 8 25;
  border-radius: 50px;
  background-color: #733CCC;
}

.Team_member{
  max-width: 240px;
  width: 100%;
}

.Team_member img{
  width: 100%;
  height: auto;
}

.Team_member b{
  font-weight: 500;
}

.member_t{
  font-weight: 500;
  color: #AAAAAA;
}

/*---------------------GALLERY---------------------*/

.Result{
    max-width: 98%;
    border-radius: 15px;
    margin-top: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.Result:hover {
  transform: scale(1.05);
}

.Result-w{
    max-width: 49.9%;
}

.height310{
    height: 400px; 
    object-fit: cover;
    object-position: left;
}

.height260{
    height: 300px;
    object-fit: fill;
    object-position: left;
}

.height170{
    height: 170px;
    object-fit: cover;
    object-position: left;
}

.LoadModeBtn{
  font-size: 16px;
  font-weight: 300;
  color: #1B1C1E;
  border: solid 1px #1B1C1E;
  padding: 15 20;
  width: fit-content;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 36px;

  background-image: linear-gradient(#6F2DDB, #6F2DDB);
  background-position: 0% 0%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.5s ease;
}

.LoadModeBtn:hover{
  color: #FFFFFF;
  background-size: 100% 100%;
}

.LoadModeBtn img{
  transition: all 0.5s ease;
}

.LoadModeBtn:hover img{
  filter: invert(100%);
}

.overlay {
  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;
  z-index: 1000;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 100px;
  font-weight: 200;
  cursor: pointer;
  z-index: 1001;
}



@media(min-width:0px) and (max-width:1200px){
  .Result{
    max-width: 100%;
    }
    
    .Result-w{
        max-width: unset;
        width: 100%;
    }
    
    .height310{
        height: unset; 
        max-height: 310px;
        object-fit: cover;
    }
    
    .height260{
        height: unset;
        max-height: 310px;
        object-fit: cover;
    }
    
    .height170{
        height: unset;
        max-height: 250px;
        object-fit: cover;
    }
}


/*---------------------REVIEWS---------------------*/


.Review{
  background-color: #FFFFFF;
  padding: 35px;
  width: 100%;
  max-width: 380px;
  height: 340px;
  position: relative;
  cursor: crosshair;

  border-radius: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}


.Review:hover{
  box-shadow: -10px 10px 24px rgba(0, 0, 0, 0.35);
}

@media(min-width:0px) and (max-width:1400px){
  .Review{
    width: 100%;
    max-width: unset;
    height: 100%;
    max-height: unset;
  }
}

.ButtonReviews{
  display: none;
  margin: auto;
}

.hiddenReviews{
  display: flex;
}

#hiddenReviews.ScriptShow{
    display: flex!important;
}

#toggleButtonReviews.ScriptHide{
    display: none!important;
}

@media(min-width: 0px) and (max-width:1400px){
  .hiddenReviews{
      display: none;
  }
  
  .ButtonReviews{
      display: flex;
      margin: auto;
  }
}

.Reviews{
  padding: 120px 0;
}

.rev-shadow{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0px 0rem 8px rgba(0, 0, 0, .25) !important;
}

i {
    font-style: italic!important;
}

/*---------------------FAQ---------------------*/

.FAQ{
  padding: 120px 0;
  margin: 20px;
}

.accordion-item{
  border: 2px solid #AAAAAA!important;
  border-radius: 20px!important;
  background-color: #FFFFFF;
}

.accordion-butt{
  position: relative;
  border: 0;
  background-color: transparent;

  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 24px;
  color: #1B1C1E;

  overflow-anchor: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

.accordion-butt::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: auto;
  content: "";
  color: #733CCC;

  border: 0;
  background-image: url("MAIN/cross.svg");
  background-repeat: no-repeat;
  transition: transform .2s ease-in-out;
}

.accordion-butt:not(.collapsed)::after {
  background-image: url("MAIN/crossP.svg");
  transform: rotate(-45deg);
  border: 0;
}

.accordion-butt:not(.collapsed){
  color: #733CCC;
}

.accordion-butt:not(.collapsed).accordion-item{
  border: 2px solid #733CCC!important;
}

/*-----------------Ready To Grow------------------*/

.ReadyToGrow{
  background-color: rgba(27, 28, 30, 1);
  margin: 20px;
  border-radius: 30px;
  padding: 120px 24% 30px 24%;
}

@media(min-width:0px) and (max-width:1600px){
  .ReadyToGrow{
    padding: 120px 5% 30px 5%;
  }

  .TrendliteInNumbers, .ReadyToGrow, .FAQ{
    margin: 0px;
    border-radius: 0px;
  }

}

.ReadyIMG{
  background-color: #733CCC;
  background: radial-gradient(ellipse at bottom center, rgba(255, 255, 255, 1) 0%, rgba(115, 60, 204, 1) 35%);
  border-radius: 30px;
  padding: 52px 15%;
  text-align: center;
  background-size: 200% 120%;
  background-position-x: center;
}

.ReadyIMG_LV{
    padding: 52px 10%!important;
}

.BGdark{
  background-color: #1B1C1E;
}

/*---------------------FOOTER---------------------*/

.FooterWidth{
  width: 100%;
}

.FootA{
  font-weight: 300;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;

  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
}

.FootA:hover{
  color: #FFFFFF;
  background-size: 100% 1px;
}

/*---------------------FIXES---------------------*/

@media(min-width:0px) and (max-width:1270px){
  .main_content{
    max-width: unset;
  }
  
  .main_content_LV{
    max-width: unset;
  }
  
  .Diagram_LV{
    max-width: unset;
  }

  .border_button a {
    font-size: 28px;
  }

  .accordion-butt {
    font-size: 28px;
  }

  p {
    font-size: 28px;
  }

  .Diagram {
    max-width: unset;
  }

  .Block_soft {
    max-width: unset;
    height: 400px;
  }

  .hover-effect {
    height: 400px;
  }

  .Number_block {
    width: 46%;
    padding: 40px 40px;
  }

  .Number_block p{
    font-size: 22px;
    text-align: center;
  }

  .Team_member {
    max-width: max-content;
    width: 100%;
  }

  .TrusredBrands p {
    max-width: fit-content;
  }

  .buttonH {
    font-size: 24px;
    padding: 15 35;
  }

  .Partners p {
    max-width: fit-content;
  }

  .Onboarding p {
    line-height: 140%;
  }

  .soft_h {
    font-size: 42px;
  }

  .Onboarding{
    width: 100%;
    max-width: unset;
    height: 100%;
    max-height: unset;
  }

  .FooterWidth {
    margin-top: 5%;
  }

  .FooterWidth p{
     font-size: 24px;
  }

  .FooterWidth a{
     font-size: 24px;
  }

  .border_head img {
    padding: 10 20;
  }

  .logo img {
    height: 36px;
  }

  .logo p {
    font-size: 44px;
    margin-left: 20px;
  }

  .href-m {
    font-size: 44px;
  }

}
