/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  counter-reset: icon-box-creative;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  /* color: #469fdf; */
  color: #6b80d6
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

	#preloader:before {
		content: "";
		position: fixed;
		top: calc(50% - 30px);
		left: calc(50% - 30px);
		/* border: 6px solid #2487ce; */
		/* border: 6px solid #1b3366;*/
		border: 6px solid #4a5799;
		border-top-color: #fff;
		border-bottom-color: #fff;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		-webkit-animation: animate-preloader 1s linear infinite;
		animation: animate-preloader 1s linear infinite;
	}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 40px;
  height: 40px
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  /* color: #16507b; */
  color: #1b3366;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  /* color: #2487ce; */
  color: #6b80d6;
}

.navbar .getstarted {
  background: #2487ce;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #3194db;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  /* color: #2487ce; */
  color: #6b80d6;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #124265;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #124265;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #2487ce;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #2487ce;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  /* width: 100%; */
  /* height: 100vh; */
  /* position: relative; */
  background: url("../img/bg/banner_v2-1.jpg") 67% -33px;
  background-size: cover;
  /* position: relative; */
  padding: 150px 0;
}

/* #hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

@media (max-width: 991px){
  #hero {
    background: url("../img/bg/banner_v2-1.jpg") 73% 28%;
    padding: 150px 0;
  }
}


#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  /* color: #124265; */
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  /* color: #5e5e5e; */
  color: #fff;
  margin: 30px 0 0 0;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  /* font-size: 14px; */
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

#hero .btn-get-started:hover {
  background: #3194db;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #1b3366;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

.section-subtitle {
  /* text-align: center; */
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 0;
  /* color: #124265; */
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}


#about .icon-boxes {
  margin-top: 100px;
}

#about .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#about .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#about .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#about .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#about .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#about .icon-box:hover {
  transform: scale(1.08);
}

#about .icon-box:hover .title a {
  color: #2487ce;
}



.icon-box-creative {
	position: relative;
	border-radius: 10px;
	padding: 50px 0;
	color: #ffffff;
	overflow: hidden;
	transition: all ease .25s;
	display: flex;
	min-height: 100%;
  margin-bottom: 5px;
}

.icon-box-creative:hover {
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.5);
	transition: all ease .25s;
}

.icon-box-creative:hover .icon-box-creative__info .icon-box-creative__media {
	top: 50%;
	transform: translateY(-50%);
	transition: all ease .25s;
}

.icon-box-creative:before {
	counter-increment: icon-box-creative;
	content: counter(icon-box-creative, decimal-leading-zero);
	position: absolute;
	bottom: -15px;
	right: -6px;
	color: rgba(255, 255, 255, 0.1);
	font-size: 80px;
	line-height: 1;
	/* font-family: "Raleway","Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
	font-weight: 900;
	letter-spacing: -.09em;
}

.icon-box-creative__info {
	padding: 0 45px 0 95px;
	position: relative;
}

.icon-box-creative__info p {
	margin-top: 0;
}

.icon-box-creative.primary {
	background-color: #00bcd1;
}

.icon-box-creative.secondary {
	background-color: #346bae;
}

.icon-box-creative.secondary-light {
	background-color: #3d7dcc;
}

.icon-box-creative.main-blue {
  background-color: #1b3366;
}
.icon-box-creative.secondary-blue {
  background-color: #4a5799;
}


.icon-box-creative__title {
	font-size: 22px;
	line-height: 1;
	position: relative;
	padding-bottom: 22px;
	margin-bottom: 7px;
	font-family: "Asap", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}

.icon-box-creative__title:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 32px;
	background-color: rgba(255, 255, 255, 0.5);
}

.icon-box-creative__media {
	position: absolute;
	left: 29px;
	top: 0;
	transition: all ease .25s;
}

.icon-box-creative__media img {
	/* max-width: 46px; */
  width: 50px;
}


.partner-logo img {
  width: 70%;
}
.partner-logo img.viscor {
  padding: 10px 30px 10px 30px;
  
}
.partner-logo img.supermicro {
  padding: 25px 40px 10px 50px;
}


.partne-des{
  padding-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px){
  .partner-logo img {
  width: 90%;
}
  .partne-des{
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .partner-logo img {
    width: 90%;
  }
  .partne-des{
    padding-bottom: 0px;
  }
}
@media (max-width: 991px){
  .partner-logo img {
    width: 80%;
  }
  .partner-des{
    padding-top: 20px;
  }
}





/*--------------------------------------------------------------
# TechBanner
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# TechTable
--------------------------------------------------------------*/
#techTable .techTable-table thead th div, #techTable .techTable-table tbody td div{
  line-height: 120%;
}
#techTable .techTable-table thead th div{
  padding: 10px;
  color: #fff; 
  border: 2px solid #1b3366;
  background-color: #1b3366;
}
#techTable .techTable-table thead th div.compareTH{
  border: 2px solid #4a5799;
  background-color: #4a5799;
}

#techTable .techTable-table tbody td div{
  padding: 10px;
  border: 2px solid #1b3366;
  background-color: #fff;
}
#techTable .techTable-table tbody td div.compareTD{
  border: 2px solid #4a5799;
  background-color: #fff;
}

#techTable .techTable-table thead th:nth-child(1){
  width: 15%;
}
#techTable .techTable-table thead th:nth-child(2){
  width: 30%;
}
#techTable .techTable-table thead th:nth-child(3){
  width: 30%;
}
#techTable .techTable-table thead th:nth-child(4){
  width: 25%;
}

#techTable .techTable-table tbody th{
  width: 15%;
}
#techTable .techTable-table tbody td:nth-child(1){
  width: 30%;
}
#techTable .techTable-table tbody td:nth-child(2){
  width: 30%;
}
#techTable .techTable-table tbody td:nth-child(3){
  width: 25%;
}

#techTable .techTable-table tbody td.tableDes{
 padding-top: 50px;
}




/*--------------------------------------------------------------
# Smart Solution
--------------------------------------------------------------*/
#smartSolution .content {
  /* font-size: 15px; */
}

#smartSolution .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #4a5799;
  /* padding-top: 30px; */
  padding-bottom: 30px;
}

#smartSolution .content .smartHealthcareDes {
  margin-bottom: 70px !important;
}
@media (max-width: 767px){
  #smartSolution .content .smartHealthcareDes {
    margin-bottom: 30px !important;
  }
}

#smartSolution .content ul {
  list-style: none;
  padding: 0;
}

#smartSolution .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

#smartSolution .content ul i {
  font-size: 24px;
  color: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}

#smartSolution .content p:last-child {
  margin-bottom: 0;
}

#smartSolution .mainImg{
  margin-bottom: 50px;
}

.smartSolutionMainImg{
  /* padding: 20px; */
}


#smartSolution .icon-boxes {
  margin-top: 10px;
  margin-bottom: 60px;
}

#smartSolution .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 100%;
}

#smartSolution .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

#smartSolution .icon-box .title a {
  /* color: #124265; */
  color: #4a5799;
  transition: 0.3s;
}

#smartSolution .icon-box .description {
  /* font-size: 15px; */
  line-height: 28px;
  margin-bottom: 0;
}

#smartSolution .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  /* color: #2487ce; */
}

#smartSolution .icon-box .icon img{
  width: 60px;
}

#smartSolution .icon-box:hover {
  transform: scale(1.08);
}

#smartSolution .icon-box:hover .title a {
  /* color: #2487ce; */
  color: #6b80d6;
}


.smartSolutionApps{
  margin-bottom: 40px;
}

.smartSolutionAppImg{
  text-align: center;
}
.smartSolutionAppImg img{
  width: 60%;
  /* padding: 80px; */
}

.smartSolutionAppcontent h3 {
  font-size: 20px;
  /* color: #4a5799; */
  padding-bottom: 10px;
}


.smartSolution .smartSolutionContent{
  margin-bottom: 150px;
}

.smartSolution .smartSolutionContent:last-child {
  margin-bottom: 60px;
}



/*--------------------------------------------------------------
# Price
--------------------------------------------------------------*/
.price .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
  width: 100%;
  border-radius: 8px;
}

.price .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.price .icon-box .icon img {
  width: 80px;
}

.price .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.price .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.price .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.price .icon-box h4 {
  font-weight: 600;
  margin: 20px 0 25px 0;
  font-size: 22px;
}

.price .icon-box h4 a {
  color: #124265;
  transition: ease-in-out 0.3s;
}

.price .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.price .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-20px);
}

.price .iconbox-blue i {
  color: #47aeff;
}

.price .iconbox-blue:hover .icon i {
  color: #fff;
}

.price .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.price .iconbox-orange i {
  color: #ffa76e;
}

.price .iconbox-orange:hover .icon i {
  color: #fff;
}

.price .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.price .iconbox-pink i {
  color: #e80368;
}

.price .iconbox-pink:hover .icon i {
  color: #fff;
}

.price .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.price .iconbox-yellow i {
  color: #ffbb2c;
}

.price .iconbox-yellow:hover .icon i {
  color: #fff;
}

.price .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.price .iconbox-red i {
  color: #ff5828;
}

.price .iconbox-red:hover .icon i {
  color: #fff;
}

.price .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.price .iconbox-teal i {
  color: #11dbcf;
}

.price .iconbox-teal:hover .icon i {
  color: #fff;
}

.price .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

.price ul {
  list-style: none;
  padding: 0;
  
  text-align: left;
  
  padding-left: 40px;
  padding-right: 40px;
}

.price ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.price ul i {
  font-size: 24px;
  color: #2487ce;
  position: absolute;
  left: 0;
  top: -2px;
}

.price ul li img{
  width: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}

.contact .aspNetForm {
	width: 100%;
	background: #fff;
}

	.contact .aspNetForm .form-group {
		padding-bottom: 8px;
	}

	.contact .aspNetForm .error-message {
		display: none;
		color: #fff;
		background: #ed3c0d;
		text-align: left;
		padding: 15px;
		font-weight: 600;
	}

		.contact .aspNetForm .error-message br + br {
			margin-top: 25px;
		}

	.contact .aspNetForm .sent-message {
		display: none;
		color: #fff;
		background: #18d26e;
		text-align: center;
		padding: 15px;
		font-weight: 600;
	}

	.contact .aspNetForm .loading {
		display: none;
		background: #fff;
		text-align: center;
		padding: 15px;
	}

		.contact .aspNetForm .loading:before {
			content: "";
			display: inline-block;
			border-radius: 50%;
			width: 24px;
			height: 24px;
			margin: 0 10px -6px 0;
			border: 3px solid #18d26e;
			border-top-color: #eee;
			-webkit-animation: animate-loading 1s linear infinite;
			animation: animate-loading 1s linear infinite;
		}

	.contact .aspNetForm input, .contact .aspNetForm textarea {
		border-radius: 0;
		box-shadow: none;
		font-size: 14px;
		border-radius: 4px;
	}

		.contact .aspNetForm input:focus, .contact .aspNetForm textarea:focus {
			border-color: #2487ce;
		}

	.contact .aspNetForm input {
		height: 44px;
	}

	.contact .aspNetForm textarea {
		padding: 10px 12px;
	}

	.contact .aspNetForm button[type="submit"] {
		background: #2487ce;
		border: 0;
		padding: 10px 30px;
		color: #fff;
		transition: 0.4s;
		border-radius: 4px;
	}

		.contact .aspNetForm button[type="submit"]:hover {
			background: #3194db;
		}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



.aspNetForm .form-select {
	height: 44px;
	background-color: #f9f9f9;
	/* border: 0px; */
	border-radius: 0px;
}
.aspNetForm .form-control {
	background-color: #f9f9f9;
	/* border: 0px; */
	border-radius: 0px !important;
}

.contactImage{
  text-align: center;
  padding-right: 50px;
  margin-top: 50px;
}

@media  (max-width: 991px) {
  .contactImage{
    padding-right: 0px;
    margin-top: 0px;
  }
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #2487ce;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3194db;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* color: #444444; */
  font-size: 14px;
  /* background: #f8fbfe; */
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #124265;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #2487ce;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #2487ce;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #2487ce;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3194db;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2487ce;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3194db;
  color: #fff;
  text-decoration: none;
}

.footer{
  background: url("../img/bg/footer.jpg") 50% 70%;
  background-color: none !important;
  background-size: cover;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 20px;
  font-size: 16px;
}

.footer .footer-logo{
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-logo img{
  width: 80px;
}

.footer-content{
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.footer-contact{
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.copyright{
  display: flex;
  justify-content: center;
  align-items: end;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 14px;
}

.show-in-sm{
  display: none;
}

@media (max-width: 575px) {
  .footer{
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer-contact{
    margin-top: 50px;
    margin-bottom: 10px;
    line-height: 150%;
  }
  .copyright{
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .hide-in-sm{
    display: none;
  }
  .show-in-sm{
    display: block;
  }
}




/*--------------------------------------------------------------
# Setup
--------------------------------------------------------------*/
.main-blue {
  background-color: #1b3366;
}
.secondary-blue {
  background-color: #4a5799;
}
.btn-blue {
	background-color: #2487ce;
}

.text-red{
  color: #ff4c4c;
}