
@import url(app.css);
@import url(blocks.css);

/*Import CSS Plugins*/
@import url(plugins/style-switcher.css);

* {
	border-radius: 0;
}

body {
 color: #333;
 font-size: 17px !important;
 line-height: 1.6;
 font-family: "Montserrat", sans-serif !important;
}

body.header-fixed-space {
  padding-top: 94px;
}
body.header-fixed-space-v2 {
	padding-top: 135px;
}

@media (max-width: 991px) {
	body.header-fixed-space,
	body.header-fixed-space-v2 {
		padding-top: 0;
	}
}
.container{
    padding-right: 0px !important;
    padding-left: 0px !important;
}
p,
li,
li a,
label {
 color: #555;
 font-size: 13px !important;
 letter-spacing: 1px;
 font-weight: normal;
}

a {
 color: #012d71;
 text-decoration: none;
}

a,
a:focus,
a:hover,
a:active,
button,
button:hover {
	outline: 0 !important;
}

a:focus {
text-decoration: none;
}
a:hover {
 color: #012d71;
 text-decoration: underline;
}

/*Boxed Layout
------------------------------------*/
.wrapper {
	background: #fff;
}

.boxed-layout {
  padding: 0;
  box-shadow: 0 0 5px #ccc;
  margin-left: auto !important;
  margin-right: auto !important;
  background: url(../img/patterns/15.png) repeat;
}

/*Hiding arrows for select field in IE*/
select::-ms-expand {
  display: none;
}
.navbar{
    border-radius: 0px !important;
}
.list-unstyled{
    font-size: 17px !important;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 2.5s fadeInUp;
}

@keyframes fadeOutDown {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

.fadeOutDown-animation {
  animation: 2.5s fadeOutDown;
}
.bl{
    padding: 10px 10px;
    border-left: 5px solid #012d71 !important;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-0%);
    opacity: 1;
  }
}

.fadeInLeft-animation {
  animation: 2.5s fadeInLeft;
}
