/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat Light', 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #0f172a;
    overflow-x: hidden;
}

.logotype{
  font-family: "Montserrat Light", "Arial", sans-serif;
  font-weight: 200!important;
  color: #406AE3!important ;
}
.logotype strong {
  font-family: "Montserrat SemiBold", "Arial", sans-serif;
  font-weight: 600!important;
  color: #01007F!important ;
}



a{
  text-decoration: none !important;
}

.carousel-background{
  height: 100%; 
  max-width:100%!important;
  /*background-image: url('./Modules-Internal/mdl_Public/assets/img/corporate-shakehands2.jpg'); */
  background-size: cover; 
  background-position: center ;
  opacity: 0.3;
}

/* OVERRIDES FROM BOOTSTRAP */
.carousel-item{
  height: 100%;
  background-color: white;
  transition: transform 2s ease, opacity .5s ease-out;
}

/******************* ALERT CUSTOMIZATION *******************/
.alert{
    position: fixed;
    top: 40%;
    width: 100%;
    display: block;
    z-index: 99;
    height: 30%;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    border-radius: 30px;
}

.alert-success{
    background-color: #00c853;
    color: white;
}