:root {
    --primary-color: rgb(102, 0, 128);
    --primary-color-hovered: #870da5;
    --secondary-color: #c60594;
    /*--header-font: 'Montserrat';*/
    --header-font: 'Montserrat';
}

h1,
h2 {
    font-family: var(--header-font);
}

a {
    color: var(--primary-color);
}

a:hover {
    color: #870da5;
}

.main-navigation-item {
    text-align: center;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    font-family: var(--header-font);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.navbar-brand {
    font-family: var(--header-font);
}

.main-navigation-item:before {
    content: "";
    position: absolute;
    width: 0;
    background: var(--primary-color);
    right: 0;
    height: 2px;
    bottom: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0.7;
}

.main-navigation-item:hover:before,
.main-navigation-item:hover:after {
    width: 100%;
}

.main-navigation-item:hover:before {
    left: 0;
    right: auto;
    transition: width 0.5s ease, right 0.5s ease;
    -webkit-transition: width 0.5s ease, right 0.5s ease;
    -moz-transition: width 0.5s ease, right 0.5s ease;
    -ms-transition: width 0.5s ease, right 0.5s ease;
    -o-transition: width 0.5s ease, right 0.5s ease;
}

.btn-primary {
    text-transform: none!important;
    text-decoration: none!important;
    background-color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 400;
    box-shadow: 0 4px 9px -4px var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-color-hovered);
    box-shadow: 0 4px 9px -4px var(--primary-color-hovered)!important;
}

.badge-primary {
    color:white;
    background-color: var(--primary-color);
}

.badge-primary i {
    color: white!important;
}


.text-primary {
    color: var(--primary-color)!important;
}

.imaged-section {
    position: relative; 
}

.imaged-section::before {    
    content: "";
    background-image: url('/assets/img/Bubble1_green_trnsp.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50%;
    opacity: 0.05;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: var(--primary-color)!important;
}


/*background-color: rgba(4, 178, 218, 0.75);*/

.hover-image-text-box {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
}


.language-selector {
    position: fixed;
    bottom: 0;
    right: 5%;
}

.language-selector button {
    border-bottom-left-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
}

.carousel-indicators [data-mdb-target] {
    background-color: white;
    height: 5px;
}

.carousel-control-next, .carousel-control-prev {
    color: white;
}
.carousel-control-next-icon:after, .carousel-control-prev-icon:after {
    font-size: 4rem;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    height: 4rem;
}

.form-outline .form-control:focus~.form-notch .form-notch-leading {
    border-color: var(--primary-color);
    box-shadow: -1px 0 0 0 var(--primary-color),0 1px 0 0 var(--primary-color),0 -1px 0 0 var(--primary-color)
}

.form-outline .form-control:focus~.form-notch .form-notch-trailing {
    border-color: var(--primary-color);
    box-shadow: 1px 0 0 0 var(--primary-color),0 -1px 0 0 var(--primary-color),0 1px 0 0 var(--primary-color)
}

.form-outline .form-control:focus~.form-notch .form-notch-middle {
    border-color: var(--primary-color);
    box-shadow: 0 1px 0 0 var(--primary-color);
    border-top: 1px solid transparent
}

.form-outline .form-control:focus~.form-label {
    color: var(--primary-color);
} 

#outerdiv
{
width:446px;
height:246px;
overflow:hidden;
position:relative;
}

#inneriframe
{
position:absolute;
top:-412px;
left:-118px;
width:600px;
height:800px;
}

.bg-light {
    background-color: #f8f5f8!important;
}

.dropdown-item {
    font-family: var(--header-font);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: transparent!important;
    color: var(--primary-color)!important;
}

.dropdown-custom:hover>.dropdown-menu {
    display: block;
}

.dropdown-custom>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}


.timeline-1 {
    border-left: 3px solid #b565a7;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: rgba(177, 99, 163, 0.09);
    margin: 0 auto;
    position: relative;
    padding: 50px;
    list-style: none;
    text-align: left;
    max-width: 80%;
  }
  
  @media (max-width: 767px) {
    .timeline-1 {
      max-width: 98%;
      padding: 25px;
    }
  }
  
  .timeline-1 .event {
    border-bottom: 1px dashed #000;
    padding-bottom: 25px;
    margin-bottom: 25px;
    position: relative;
  }
  
  @media (max-width: 767px) {
    .timeline-1 .event {
      padding-top: 30px;
    }
  }
  
  .timeline-1 .event:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
  }
  
  .timeline-1 .event:before,
  .timeline-1 .event:after {
    position: absolute;
    display: block;
    top: 0;
  }
  
  .timeline-1 .event:before {
    left: -207px;
    white-space:pre;
    content: attr(data-day) "\A " attr(data-date);
    text-align: right;
    font-weight: 400;
    font-size: 1.1em;
    min-width: 120px;
  }
  
  @media (max-width: 767px) {
    .timeline-1 .event:before {
      left: 0px;
      text-align: left;
    }
  }
  
  .timeline-1 .event:after {
    -webkit-box-shadow: 0 0 0 3px #b565a7;
    box-shadow: 0 0 0 3px #b565a7;
    left: -55.8px;
    background: #fff;
    border-radius: 50%;
    height: 9px;
    width: 9px;
    content: "";
    top: 5px;
  }
  
  @media (max-width: 767px) {
    .timeline-1 .event:after {
      left: -31.8px;
    }
  }


.timeline-with-icons {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
    font-size: 1.2rem!important;
}
  
.timeline-with-icons .timeline-item {
    position: relative;
}
  
.timeline-with-icons .timeline-item:after {
    position: absolute;
    display: block;
    top: 0;
}
  
.timeline-with-icons .timeline-icon {
    position: absolute;
    left: -52px;
    background-color: rgb(233, 210, 238);
    color: var(--primary-color);
    border-radius: 50%;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#website {
    display: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--primary-color)!important;
    border-color: var(--primary-color)!important;
}
.nav-tabs .nav-link {
    text-transform: none!important;
	font-size: 0.9rem!important;
}