/*========================================= 
  WEB FONT
=========================================*/
@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('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*========================================= 
  RESET
=========================================*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', sans-serif !important;
}
.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.1;
  color: inherit;
}

.text-uppercase {text-transform: uppercase;}

.f100 {font-weight: 100; !important}
.f200 {font-weight: 200; !important}
.f300 {font-weight: 300; !important}
.f400 {font-weight: 400; !important}
.f500 {font-weight: 500; !important}
.f600 {font-weight: 600; !important}
.f700 {font-weight: 700; !important}
.f800 {font-weight: 800; !important}
.f900 {font-weight: 900; !important}

.fs8 {font-size: 8px; !important}
.fs9 {font-size: 9px; !important}
.fs10 {font-size: 10px; !important}
.fs11 {font-size: 11px; !important}
.fs12 {font-size: 12px; !important}
.fs13 {font-size: 13px; !important}
.fs14 {font-size: 14px; !important}
.fs15 {font-size: 15px; !important}
.fs16 {font-size: 16px; !important}
.fs18 {font-size: 18px; !important}
.fs20 {font-size: 20px; !important}
.fs24 {font-size: 24px; !important}
.fs30 {font-size: 30px; !important}
.fs36 {font-size: 36px; !important}
.fs40 {font-size: 40px; !important}
.fs50 {font-size: 50px; !important}
.fs60 {font-size: 60px; !important}

.fc-blue { color: #004e7a; !important}
.fc-blue-light { color: #00b9ff; !important}
.fc-black { color: #000000; !important}
.fc-yellow { color: #fea72c !important;}
.fc-green { color: #b0d462 !important;}
.fc-white { color: #FFFFFF !important;}

a {
  color: #333;
  -moz-transition: all 0.7s ease-in;
  -webkit-transition: all 0.7s ease-in;
  -o-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
a:active,
a:hover {
  -moz-transition: all 0.7s ease-in;
  -webkit-transition: all 0.7s ease-in;
  -o-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.max1500 {
    max-width: 1500px;
    margin: 0 auto;
}

/* =========================================================================
  NAV BAR SCROLLER
========================================================================== */
.nav-scroller {
  position: relative;
  z-index: 2;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

/* =========================================================================
  MODAL FULL
========================================================================== */
.modal-full {
    min-width: 100%;
    margin: 0;
}

.modal-full .modal-content {
    min-height: 100vh;
    border-radius: 0px !important;
    border: 1px solid #fff;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: none !important;
  border-radius: 0.3rem;
  outline: 0;
}

/* =========================================================================
  MODAL LEFT
========================================================================== */
.modal.left .modal-dialog {
	position: fixed;
	margin: auto;
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content {
	height: 100%;
	overflow-y: auto;
}

.modal.left .modal-body {
	padding: 15px 15px 80px;
}

.modal.left.fade .modal-dialog {
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	-o-transition: opacity 0.3s linear, left 0.3s ease-out;
	transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
	left: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
	border-radius: 0;
	border: none;
}

.modal-header {
	border-bottom-color: #eeeeee;
	background-color: #fafafa;
}