@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;600;700;800&family=Montserrat:wght@400;500;700;800&family=Roboto+Slab:wght@300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

:root{
 --c-orange:#F49641;
 --c-blue:#0067A6;
}

.text-orange{
  color: var(--c-orange);
}

.bg-orange{
  background-color: var(--c-orange);
}

.text-blue{
  color: var(--c-blue);
}

.bg-blue{
  background-color: var(--c-blue);
}

html{
  scroll-behavior: smooth;
}



*{
    padding: 0;
    margin: 0;
    
}

    body {
      /**font-family: 'Rubik', sans-serif;**/
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
     
    }


    section {
      padding: 50px;

    }

  

 

    /**Transitions**/

/* Grow */
.hvr-grow {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.99);
  transform: scale(0.99);
}

/* Float */
.hvr-float {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.highlight{
  color: #060247;
}

.highlight-bg-100{
  background: #0f0a5a;
}

.highlight-bg{
  background: #060247;
}

.nav-header {
  position:absolute;
  top:0;
  background: transparent;
  color: #fff;
  transition: 1s;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 10%;
  z-index: 99999;
}


.btn-m-button {
  border: none;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all .8s ease 0s;
}


.sticky {
  position:fixed;
  background: var(--c-blue);
  color: #fff;
  transition: 1s;
}

.sticky h1   {
  color: #5c4e82;
  
}

.sticky a {
  color:#fff
}

.sticky a:hover {
  color:#ececec
}

ul{
  list-style: none;
  position: relative;
}

li {
  display: inline-block;
  padding: 0px 20px;

}

ul li a {
  transition: all .8s ease 0s;
}

li a:hover {
  color: #5c4e82;
  transition: 1ms;
}
  
.logo-h1 {
  margin-right: auto;
  color: #edf0f1;
}
  

/**COLLAPS**/

.collapse__button,
.collapse__button[disabled] {
  align-items: center;
  background: inherit;
  border: inherit;
  color: inherit;
  font: inherit;
  cursor: default;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: inherit;
  width: 100%;
}

.collapse__label {
  text-align: left;
  pointer-events: none;
}

.collapse__icon {
  display: none;
  flex: 0 0;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.collapse__panel {
  position: relative;
  padding: 1px 0;
}

.collapse__all-open,
.collapse__all-close,
.collapse__controls {
  display: none;
}

.collapse--activated .collapse__button {
  cursor: pointer;
}

.collapse--activated .collapse__button[aria-expanded='true'] .collapse__icon {
  transform: rotate(45deg);
}

.collapse--activated .collapse__icon {
  display: block;
}

@media print {
  .collapse--activated .collapse__icon {
    display: none;
  }
}

.collapse--activated .collapse__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

@media print {
  .collapse--activated .collapse__panel {
    height: auto;
  }
}

.collapse--activated .collapse__all-open,
.collapse--activated .collapse__all-close,
.collapse--activated .collapse__controls {
  display: block;
}

@media print {

  .collapse--activated .collapse__all-open,
  .collapse--activated .collapse__all-close,
  .collapse--activated .collapse__controls {
    display: none;
  }
}

.collapse-icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  width: 1em;
}

/*# sourceMappingURL=collapse.css.map */

.cl-toggle-switch {
  position: relative;
}

.cl-switch {
  position: relative;
  display: inline-block;
}

/* Input */
.cl-switch>input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  right: 6px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgb(0, 0, 0, 0.38);
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s 0.1s, transform 0.2s 0.1s;
}

/* Track */
.cl-switch>span::before {
  content: "";
  float: right;
  display: inline-block;
  margin: 5px 0 5px 10px;
  border-radius: 7px;
  width: 36px;
  height: 14px;
  background-color: rgb(0, 0, 0, 0.38);
  vertical-align: top;
  transition: background-color 0.2s, opacity 0.2s;
}

/* Thumb */
.cl-switch>span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 16px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #fff;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  transition: background-color 0.2s, transform 0.2s;
}

/* Checked */
.cl-switch>input:checked {
  right: -10px;
  background-color: #85b8b7;
}

.cl-switch>input:checked+span::before {
  background-color: #85b8b7;
}

.cl-switch>input:checked+span::after {
  background-color: #018786;
  transform: translateX(16px);
}

/* Hover, Focus */
.cl-switch:hover>input {
  opacity: 0.04;
}

.cl-switch>input:focus {
  opacity: 0.12;
}

.cl-switch:hover>input:focus {
  opacity: 0.16;
}

/* Active */
.cl-switch>input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}

.cl-switch>input:active+span::before {
  background-color: #8f8f8f;
}

.cl-switch>input:checked:active+span::before {
  background-color: #85b8b7;
}

/* Disabled */
.cl-switch>input:disabled {
  opacity: 0;
}

.cl-switch>input:disabled+span::before {
  background-color: #ddd;
}

.cl-switch>input:checked:disabled+span::before {
  background-color: #bfdbda;
}

.cl-switch>input:checked:disabled+span::after {
  background-color: #61b5b4;
}

.square .clr-field button,
.circle .clr-field button {
  width: 22px;
  height: 22px;
  left: 5px;
  right: auto;
  border-radius: 5px;
}

.square .clr-field input,
.circle .clr-field input {
  padding-left: 36px;
}

.circle .clr-field button {
  border-radius: 50%;
}
