/**
* Importing necessary  Styles.
**/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('framework.css');
@import url('bootstrap.min.css');

/* @import url('../fonts/icon/font/flaticon.css'); */
/*---------------- Custom Animation -------------*/
@import url('custom-animation.css');


/*^^^^^^^^^^ Fonts ^^^^^^^^^^^^^^^^*/
@font-face {
  font-family: 'font-awesome';
  src: url('../fonts/font-awesome/fonts/fontawesome-webfont.ttf');
  src: url('../fonts/font-awesome/fonts/fontawesome-webfont.eot'), /* IE9 Compat Modes */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.woff') format('woff'), /* Pretty Modern Browsers */
       url('../fonts/font-awesome/fonts/fontawesome-webfont.svg') format('svg'); /* Legacy iOS */
}


 * {
   font-family: 'Montserrat', sans-serif;;
 }
.ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1.5s infinite linear;
  border-radius: 50%;
  border: 3px solid rgb(101 92 151 / 6%);
  border-top-color: #000000;
  border-bottom-color: #000000;
  height: 170px;
  margin: 0 auto 45px auto;
  width: 170px;
}
/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top:0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  /* font-family: 'Rubik', sans-serif; */
  font-weight: 500;
  letter-spacing: 15px;
  display: inline-block;
  color: rgb(101 92 151 / 14%);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {animation-delay: 0.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {animation-delay: 0.4s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {animation-delay: 0.6s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {animation-delay: 0.8s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 1s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 1.2s;}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 1.4s;}
.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {font-size: 40px; letter-spacing: 10px;}
}
/*==================== Click Top ====================*/
.scroll-top {
  width:35px;
  height:35px;
  line-height: 35px;
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
  text-align: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  background: #000;
  display: none;
  transition: all 0.3s ease-in-out;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
/*------------- Global Prefix -------------------*/
::-webkit-scrollbar{ width: 5px; }
::-webkit-scrollbar-track { background: #fff;}
::-webkit-scrollbar-thumb { background: var(--blue-dark);border-radius: 0;}
:root {
  --text-color: #73737B;
  --text-light:#888888;
  --heading :#101621;
  --blue-dark:#6F55FF;
  --red-light:#FD6A5E;
  --yellow-deep:#FFB840;
  --blue-light:#3BB0D7;
  --purple-blue:#655C97;
  --vin-red:#973C56;
}
::selection {
  background-color: #6F55FF;
  color: #fff;
}
body {
  /*
  font-family: 'gilroy-black';   
  font-family: 'gilroy-bold';
  font-family: 'gilroy-semibold';
  font-family: 'gilroy-light';
  font-family: 'gilroy-ultralight';
        */
  /* font-family: 'Roboto', sans-serif; */
  font-weight: normal;
  font-size: 18px;
  position: relative;
  line-height: 1.7em;
  color: var(--text-color);
}
/*______________________ Global style ___________________*/
.main-page-wrapper {overflow-x:hidden;}
.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {color: var(--heading); font-weight: normal;}
.h1,h1 {font-size: 80px; line-height: 1.1em;}
.h2,h2 {font-size: 52px; line-height: 1.1em;}
.h3,h3 {font-size: 36px;}
.h4,h4 {font-size: 22px;}
.h5,h5 {font-size: 20px;}
.h6,h6 {font-size: 15px;}
/* .font-rubik {font-family: 'Rubik', sans-serif !important;}
.font-gilroy-bold {font-family: 'gilroy-bold' !important;}
.font-slab {font-family: 'Roboto Slab', serif !important;}
.font-gordita {font-family: 'gordita' !important;}
.font-recoleta {font-family: 'Recoleta' !important;} */
::-webkit-input-placeholder { /* Edge */color: #ACAEB3;}
:-ms-input-placeholder { /* Internet Explorer 10-11 */color: #ACAEB3;}
::placeholder {color: #ACAEB3;}
.cs-screen {position: absolute;}
.illustration-holder {position: relative;}
.shapes {position: absolute;z-index: -1;}
.dark-style {background: #280D27; color: #fff;}
.dark-style .h1,.dark-style h1,.dark-style .h2,.dark-style h2,.dark-style .h3,.dark-style h3,.dark-style .h4,.dark-style h4,.dark-style .h5,.dark-style h5,.dark-style .h6,.dark-style h6 {color: #fff;}
.gr-bg-one {background: linear-gradient(90.6deg, #280D27 2.93%, #300f2f 99.47%);}
.hover-reverse-gr-bg-one {
  position: initial;
  padding: 15px;
  border-radius: 10px;
  color: #ffffff;
}

.hover-reverse-gr-bg-two {
  position: initial;
  padding: 15px;
  border-radius: 10px;
  color: #ffffff;
}
.fusion-button-text{
  color: #e57609;
}
.trifolium{
  padding-bottom: 30px;
}
.fusion-button-text-2{
  color: #157965 ;
}
/* .hover-reverse-gr-bg-one:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(270.01deg, #6f55ff 0.01%,  #6f55ff 100%);
  border-radius: 6px;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  z-index: -1;
} */
 .hover-reverse-gr-bg-one:hover:before {opacity: 1; 
} 

/*^^^^^^^^^^^^^^^^^^^^^ Theme Menu ^^^^^^^^^^^^^^^^^^^^^^^^^*/
/* .theme-main-menu {
  position: fixed;
  z-index: 99;
  top:0;
  left:0;
  right: 0;
  background: #fff;
  padding: 30px 70px;
  transition: all 0.4s ease-out;
}
.theme-main-menu.bg-none {background: transparent;}
.theme-main-menu.sticky-menu.fixed {
  z-index: 9999;
  padding-top: 0; 
  padding-bottom: 0;
  background: #fff;
  box-shadow: 0 13px 35px -12px rgba(35,35,35,0.1);
}
.theme-main-menu .logo a {display: block;}
.theme-menu-one .logo img {max-width: 300px;}
.theme-menu-one .right-button-group a {
  border-radius: 5px;
  font-weight: 500;
  font-size: 13px;
  line-height: 45px;
  text-transform: uppercase;
  text-align: center;
  color: var(--heading);
  transition: all 0.3s ease-in-out;
}
.theme-menu-one .right-button-group .signIn-action:hover {color: var(--blue-dark);}
.theme-menu-one .right-button-group .signUp-action {
  width: 155px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0px 15px 40px rgba(161,146,250,0.35);
  margin-left: 35px;
}
.theme-menu-one .right-button-group .signUp-action:hover {background: #FFBA12; box-shadow: 0px 15px 40px rgba(255,186,18,0.3);}
.theme-menu-one .right-button-group {margin-left: 100px;} */
/*---------------------Theme Hero Banner/One ---------------*/
.hero-banner-one {position: relative;}
.hero-banner-one .hero-upper-container {
  position: relative; 
  padding: 60px 0 0;
  text-align: center;
  z-index: 5;
}
.hero-banner-one .hero-heading span {position: relative; color: var(--blue-dark);}
.hero-banner-one .hero-heading span:before {
  content: '';
  width: 96%;
  height: 12px;
  border-radius: 6px;
  background: var(--blue-dark);
  opacity: 0.16;
  position: absolute;
  bottom: 12px;
  left: 8px;
  z-index: -1;
}
.hero-banner-one .hero-sub-heading {font-size: 20px; padding: 20px 0 50px;}
.hero-banner-one .subscription-form {
  max-width: 610px;
  margin: 0 auto;
  position: relative;
}
.hero-banner-one .subscription-form input {
  width: 100%;
  height: 58px;
  border:1px solid #E2E2E2;
  border-radius: 30px;
  padding: 0 170px 0 30px;
  font-size: 16px;
}
.hero-banner-one .subscription-form button {
  position: absolute;
  top:0;
  right: 0;
  bottom: 0;
  background: var(--blue-dark);
  border-radius: 0 30px 30px 0;
  color: #fff;
  font-size: 17px;
  width: 165px;
  transition: all 0.3s ease-in-out;
}
.hero-banner-one .subscription-form button:hover {background: #FFBA12;}
.hero-banner-one .sing-in-call {font-size: 16px; padding-top: 18px;}
.hero-banner-one .sing-in-call a {color: var(--blue-dark); transition: all 0.25s ease-in-out;}
.hero-banner-one .sing-in-call a:hover {text-decoration: underline;}
.hero-banner-one [class*="icon-box"] {position: absolute; background: #fff; border-radius: 50%;}
.hero-banner-one [class*="icon-box"] img {
  margin: 0 auto;
  position: relative;
  top:50%;
  transform: translateY(-50%);
}
.hero-banner-one .icon-box-one {
  width: 58px;
  height: 58px;
  box-shadow: 0px 20px 50px rgba(31,36,44,0.07);
  top:9%;
  left: 17%;
  /*animation: jumpTwo 3.5s infinite linear;*/
}
.hero-banner-one .icon-box-one img {width: 29px;}
.hero-banner-one .icon-box-two {
  width: 90px;
  height: 90px;
  box-shadow: 10px 20px 50px rgba(31,36,44,0.07);
  top:32%;
  left: 5%;
  animation: jumpTwo 4s infinite linear;
}
.hero-banner-one .icon-box-two img {width: 42px;}
.hero-banner-one .icon-box-three {
  width: 70px;
  height: 70px;
  box-shadow: 10px 25px 70px rgba(31,36,44,0.07);
  top:45%;
  left: 20%;
  animation: jumpThree 3.5s infinite linear;
}
.hero-banner-one .icon-box-three img {width: 30px;}
.hero-banner-one .icon-box-four {
  width: 75px;
  height: 75px;
  box-shadow: 10px 30px 60px rgba(31,36,44,0.07);
  bottom:12%;
  left: 10%;
  animation: jumpThree 3s infinite linear;
}
.hero-banner-one .icon-box-four img {width: 40px;}
.hero-banner-one .icon-box-five {
  width: 58px;
  height: 58px;
  box-shadow: 0px 20px 50px rgba(31,36,44,0.07);
  top:9%;
  right: 17%;
  animation: jumpTwo 3.5s infinite linear;
}
.hero-banner-one .icon-box-five img {width: 35px;}
.hero-banner-one .icon-box-six {
  width: 90px;
  height: 90px;
  box-shadow: 10px 20px 50px rgba(31,36,44,0.07);
  top:32%;
  right: 5%;
  animation: jumpTwo 4s infinite linear;
}
.hero-banner-one .icon-box-six img {width: 54px;}
.hero-banner-one .icon-box-seven {
  width: 70px;
  height: 70px;
  box-shadow: 10px 25px 70px rgba(31,36,44,0.07);
  top:45%;
  right: 20%;
  animation: jumpThree 3.5s infinite linear;
}
.hero-banner-one .icon-box-seven img {width: 26px;}
.hero-banner-one .icon-box-eight {
  width: 75px;
  height: 75px;
  box-shadow: 10px 30px 60px rgba(31,36,44,0.07);
  bottom:12%;
  right: 10%;
  animation: jumpThree 3s infinite linear;
}
.hero-banner-one .icon-box-eight img {width: 30px;}
.hero-banner-one [class*="bubble"] {position: absolute; z-index: -1; border-radius: 50%;}
.hero-banner-one [class*="bubble"]:before {
  content: '';
  border-radius: 50%;
  position: absolute;
}
.hero-banner-one .bubble-one {
  width: 120px;
  height: 120px;
  left: 4%;
  top:15%;
  animation: rotated 12s infinite linear;
}
.hero-banner-one .bubble-one:before {
  width: 6px;
  height: 6px;
  background: #FAC3FF;
  top:0;
  left: 50%;
}
.hero-banner-one .bubble-two {
  width: 160px;
  height: 160px;
  top:30%;
  left: 15%;
  animation: rotated 17s infinite linear;
}
.hero-banner-one .bubble-two:before {
  width: 10px;
  height: 10px;
  background: #8FE9E0;
  top:50%;
  right: 100%;
}
.hero-banner-one .bubble-three {
  width: 120px;
  height: 120px;
  bottom: 33%;
  left: 4%;
  animation: rotated 12s infinite linear;
}
.hero-banner-one .bubble-three:before {
  width: 6px;
  height: 6px;
  background: #FFD5AD;
  bottom:0;
  left: 50%;
}

.hero-banner-one .bubble-four {
  width: 120px;
  height: 120px;
  right: 4%;
  top:15%;
  animation: rotated 12s infinite linear;
}
.hero-banner-one .bubble-four:before {
  width: 6px;
  height: 6px;
  background: #8FE9E1;
  top:0;
  left: 50%;
}
.hero-banner-one .bubble-five {
  width: 160px;
  height: 160px;
  top:30%;
  right: 15%;
  animation: rotated 17s infinite linear;
}
.hero-banner-one .bubble-five:before {
  width: 10px;
  height: 10px;
  background: #FFD5AD;
  top:50%;
  right: 100%;
}
.hero-banner-one .bubble-six {
  width: 120px;
  height: 120px;
  bottom: 33%;
  right: 4%;
  animation: rotated 12s infinite linear;
}
.hero-banner-one .bubble-six:before {
  width: 6px;
  height: 6px;
  background: #FAC3FF;
  bottom:0;
  left: 50%;
}
/* NEGATIVE  LOGO */
.negative-logo{
  -webkit-filter: grayscale(1) invert(1);
  padding-right: 2%;
}
/*------------------ Footer One --------------*/
/* .footer-bg-wrapper {position: relative;}
.footer-bg-wrapper:before {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.footer-bg-wrapper [class*="bubble"] {position: absolute; z-index: -1; border-radius: 50%;}
.footer-bg-wrapper .bubble-one {
  width: 25px;
  height: 25px;
  background: #FF6CC4;
  top:4%;
  left: 26%;
  animation: scale-up-one 4s infinite linear;
}
.footer-bg-wrapper .bubble-two {
  width: 14px;
  height: 14px;
  background: #FFBE50;
  top:48%;
  left: 10%;
  animation: scale-up-one 4s infinite linear;
}
.footer-bg-wrapper .bubble-three {
  width: 7px;
  height: 7px;
  background: #04E8F4;
  bottom:18%;
  left: 20%;
  animation: scale-up-three 4s infinite linear;
}
.theme-footer-one {position: relative;}
.theme-footer-one:before {
  
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.theme-footer-one .top-footer [class*="col-"] {margin-bottom: 30px;}
.theme-footer-one .top-footer .footer-title {
  font-family: 'Rubik', sans-serif;
  font-size: 24px;
  padding-bottom: 25px;
} */
/* .theme-footer-one .top-footer .footer-list ul li a {
  font-size: 16px;
  line-height: 38px;
  color: #727272;
  transition: all 0.3s ease-in-out;
}
.theme-footer-one .top-footer .footer-list ul li a:hover {color: var(--blue-dark);}
.theme-footer-one .top-footer .address-list ul li a {
  font-size: 16px;
  color: #727272;
  margin-bottom: 10px;
}
.theme-footer-one .top-footer .address-list ul li a:hover {text-decoration: underline;}
.theme-footer-one .top-footer .address-list ul li a.mobile-num {
  font-size: 20px;
  color: #030303
}
.theme-footer-one .bottom-footer-content ul li {display: inline-block;}
.theme-footer-one .bottom-footer-content ul li a {
  font-size: 16px;
  color: #727272;
  margin-left: 20px;
}
.theme-footer-one .bottom-footer-content ul li a:hover {color: #000;}
.theme-footer-one .bottom-footer-content p {font-size: 15px; color: #6A6A6A;}
.theme-footer-one .bottom-footer-content {padding: 26px 0 30px;}
.theme-footer-one .bottom-footer-content ul {padding-right: 97px;}

.theme-main-menu>div {position: relative;}
 */
