
body {
	font-family: 'Montserrat', sans-serif;
}

.text-secondary {
	color:#878787;
}
.text-blue {
	color:#172c81;
}
h3 {
	font-weight:400;
}

footer {
	background-color:#fcfcfc;
}

.bg-blue {
	background-color:#0f1e77;
}

.icon {
	width:35px;
	height:35px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	border-radius:50%;
	background-color:#fff;
}
a {
	text-decoration:none!important;
}
ul {
	padding:0;
	margin:0;
}
.rotate {
	-webkit-transform:rotate(-34deg);
	-ms-transform:rotate(-34deg);
	transform:rotate(-34deg);
}
.spacer {
	width:2px;
	height:40px;
	background-color:#f3f3f3;
	display:inline-block;
	vertical-align:middle;
	margin:0 10px;
}
.fw-6 {
	font-weight:600;
}
.pt-21 {
	padding-top:21px;
}

.bg-dark-blue {
	background-color:#0b196c;
}

.face {
	color:#59a4d5;
}
.twt {
	color:#37aaf0;
}
.gg {
	color:#f13122;
}

.menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 0, 38, 0.9);
    z-index: 100;
    display: none;
}
.fullnav {
    position: fixed;
    top: 165px;
    right: 100px;
    z-index: 101;
    display: none;
}
.fullnav li {
	text-align:right;
}
.fullnav a {
    font-weight: 700;
    font-size: 92px;
    line-height: 1;
    color: white;
    letter-spacing: -3px;
    text-align: right;
    text-decoration: none;
}
.btn-menu {
	position:relative;
	z-index:999;
}
.open {
	display:block;
}
.bg-white.shadow {
	 transition: transform .3s ease-out;
}
.bg-white.shadow:hover {
	transform: translateY(-5px);
}

.text-effect {
	animation: colorChange .5s infinite;
}

@keyframes colorChange {
  0% { color:red }
  100% { color: white }
}