html, body {
  font-family: 'Manrope', sans-serif !important;
}

body.no-scroll{
 position: fixed; 
}

.fs8 {
  font-size: 8px;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 22px;
}

.fs22 {
  font-size: 22px;
}

.fs24 {
  font-size: 24px;
}

.fs36 {
  font-size: 36px;
}

.fs48 {
  font-size: 48px;
}

.bold {
  font-weight: bold;
}

.black {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}


.tone {
  color: #FFCC03 !important;
}

.dark {
  color: #003764 !important;
}

.white {
  color: white;
}

.text-dark {
  color: #003764;
}

.dark-grey {
  color: #3B576D;
}

.text-white {
  color: white;
}

.bg-tone {
  background-color: #FFC727;
}
.bg-tone-light {
  background-color: #FFFBEA;
}

.container {
  max-width: 1400px !important;
}
.container.container-large{
	max-width: 1400px !important;
}


a {
  color: #FFCC03 !important;
}

a:hover {
  color: #CFA606 !important;
}

.btn {
  font-family: 'Manrope', sans-serif !important;
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 12px 40px !important;
  -webkit-transition: all 0.2s !important;
  transition: all 0.2s !important;
  border-radius: 15px !important;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}

.btn.btn-outline {
  background-color: transparent;
  color: #003764;
  border: solid 2px #003764;
}

.btn.btn-outline:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.btn.btn-outline:hover.btn-white {
  background-color: rgba(255, 255, 255, 0.993);
  color: #003764;
}

.btn.btn-lg {
  padding: 0.5rem 1rem !important;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn.btn-sm {
  padding: 10px 30px !important;
  font-size: 14px !important;
}

.btn.btn-xs {
	border-radius: 8px !important;
  padding: 10px 10px !important;
  font-size: 12px !important;
}
.btn.btn-tone {
  background-color: #FFCC03;
  border: solid 2px #FFCC03;
  color: #003764;
}

.btn.btn-tone:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  background-color: #CFA606;
    border: solid 2px #CFA606;

}

#main-nav {
  font-family: 'Manrope', sans-serif;
  z-index: 8;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: transparent;

  margin: auto;
}

#main-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-nav ul .nav-link {
  padding: 5px 15px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#main-nav ul .nav-link a {
  text-decoration: none;
  font-size: 18px;
  color: #003764 !important;
}

#main-nav ul .nav-link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

#main-nav ul .nav-link:hover a {
  color: #003764;
}

#main-nav .badge {
  font-family: 'Rubik', sans-serif;
  background-color: #FFCC03;
  color: white;
  padding: 4px 6px;
  border-radius: 50%;
}

#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 8;
  padding: 8px 20px;
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
}
/*------MOBILE MENU-----*/
.mobile-overlay{
 	top: 0;
    position: fixed;
    background-color: rgba(42, 46, 49, 0.8);;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    transition:  all 0.2s;
    pointer-events: none;
}
.mobile-overlay.active{
    opacity: 1;
    pointer-events: all;
}
.mobile-menu{
	top: 0;
	left: -80%;
	width: 80%;
    transition:  all 0.4s;
    position: fixed;
    background-color: white;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
}
.mobile-menu.active{
    left: 0;
}

.mobile-menu a{
	color: #003764 !important;
	font-weight: bold;
}





.lang-selector{
	background-color: #FFC727;
	border-radius: 0 0 8px 8px;
	padding: 2px 15px;
}
.lang-selector-mobile{
	background-color: #FFC727;
	border-radius: 8px 0 0 8px;
	padding: 2px 15px;
}

footer{
	background-color: #263238;
	color: white;
}
footer span{
	font-size: 10px !important;
}

.nav-tabs{
	justify-content: center;
	line-height: 50px;
	overflow-y: hidden;
}
.nav-tabs .nav-item{
	padding: 0 25px;
	white-space: nowrap;
}
.nav-tabs .nav-item.active{
	font-weight: bold;
	border-bottom: solid 2px #FFC727;
}
.nav-tabs .nav-item:hover{
	cursor: pointer;
	font-weight: bold;
	border-bottom: solid 2px #FFC727;
}

.card{
	box-shadow: none !important;
	border-radius: 8px !important;
}



/***JOIN PAGE****/
.bottom-menu-overlay{
 	top: 0;
    position: fixed;
    background-color: rgba(42, 46, 49, 0.4);;
    opacity: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    transition:  all 0.2s;
    pointer-events: none;
}
.bottom-menu-overlay.active{
    opacity: 1;
    pointer-events: all;
}

.bottom-menu{
	bottom: -100%;
	left: 0;
	border-radius: 20px 20px 0 0;
	margin: auto;
	width: 100%;
    transition:  all 0.4s;
    position: fixed;
    background-color: white;
    height: calc(100vh - 50px);
    z-index: 999;
    overflow-y: auto;
}

.bottom-menu.active{
    bottom: 0;
}

.group-image{
	width: 350px; 
	height: 350px; 
	border-radius: 0px
}

@media (max-width: 576px) { 
	.group-image{
	    height: unset;
	    width: 100%;
	}
}


/**-------------INPUTS-------------*/
.search-input input{
	height: 50px;
}
input, select{
    border-radius: 8px !important;
}


ul.pagination-list{
	margin-bottom: 0 !important;
}

.pagination-link.is-current{
	background-color: #FFCC03 !important;
    border-color: #FFCC03 !important;
    color: #003764 !important;
}
.pagination-link{
    color: #003764 !important;
}

.modal{
    z-index: 51 !important;
}
.modal-background{
	background-color: rgba(10, 10, 10, 0.63) !important;
}
.modal-card{
	overflow: auto;
}

.step-link{
	color: #003764 !important;
	
}

.step-link .step-title{
	font-size: 14px !important;
}


.landing-header{
	padding: 180px 0 80px 0; position: relative; border-bottom: solid 1px #C4C4C4
}


@media (max-width: 576px) { 
	.bottom-menu{
	    height: 100vh !important;
	}
}

@media (max-width: 768px) { 
	.nav-tabs{
		justify-content: start !important;
		line-height: 45px;
	}
	.center-mobile{
		text-align: center !important;
	}

}

@media (max-width: 992px) { 
		.landing-header{
		padding: 80px 0 80px 0; position: relative; border-bottom: solid 1px #C4C4C4
	}
}

@media (min-width: 1200px) { 
	
}


.line-clamp-3 {

   display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.field .label{
	font-weight: normal !important;
}



