@charset "utf-8";
/* CSS Document */

.bg-pri {
	background-color: #020238;
}
.bg-sec {
	background-color: #ffc107;
}
.bg-tri {
	background-color: #00b4d8;
}
.text-pri {
	color: #020238;
}
.text-sec {
	color: #ffc107;
}
.text-tri {
	color: #00b4d8;
}

footer a {
	color: white;
}
footer a:link {
	color: white;
}
footer a:hover {
	color: #FFC107;
}
footer a:visited {
	color: white;
	font-weight: bold;
}
footer li {
	padding: .5em 0em;
	border-bottom: thin dotted white;
}
footer li:nth-child(even) {
  background-color: lightgreen;
}



.button {
	background-color:#020238;
	border: none;
	color: #FFF;
	text-align: center;
	padding: 1em 1.5rem ;
	transition: all 0.5s;
	cursor: pointer;
	margin: 1em 0;
	display: inline-block;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
	color:#00b4d8;
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
	color:#00b4d8;
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.font-Montserrat {
  font-family: "Montserrat", sans-serif;
}


.floating_btn {
  position: fixed;
  bottom: 10px;
  right: 15px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}