html{
    font-family: 'Raleway', sans-serif;
  }
  .logo {
  width: 100px;
}

#mainContainer {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}
.navbar-nav>li>a {
  font-family: 'Roboto Slab', sans-serif;
  font-size: 16px;
}

.navbar-nav {
  float: right;  
 
}

.navbar {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #cccccc;
 
}
.blurry{
  background: transparent;
  backdrop-filter: blur(10px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', sans-serif;
}

p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}

.services {
  padding-top: 1px;
  padding-bottom: 40px;
}

.icon {
  font-size: 40px;
}

.icon-list-icon {
  padding: 25px;
  border-radius: 22% 50% 22% 50%;
  border: 1px solid #e5e5e5;
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  text-align: center;
  color: lightseagreen;
  transition: all .5s ease-in-out;
  display: inline-block;
  float: left;
}

.icon-list-icon > span {
  display: inline-block;
}
.brand{
    background: linear-gradient(to right, #15aabb , rgb(46, 12, 202));
    -webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
    background-clip: text;
}

.icon-list-icon:hover {
  background-color: #37C8D8;
  color: white;
}

.icon-list-content {
  display: inline-block;
  padding-left: 20px;
  vertical-align: top;
  width: 66%;
  overflow: hidden;
}

.icon-list-item {
  padding-top: 50px;
}

.icon-list-title {
  font-family: 'Roboto Slab', sans-serif;
  font-size: 20px;
  margin-top: 10px;
  color: gray; 
}

.icon-list-under {
  font-family: 'Lato', sans-serif;
  color: gray; 
  text-align: justify;
  text-justify: inter-word;
}


.hero-text {
  position: relative;
  transform: translateY(50%);
  border-left: 2px solid white;
}

.hero-title {
  font-family: 'Roboto Slab', sans-serif;
  color: white;
}

.hero-under-title {
  font-family: 'Lato', sans-serif;
  color: white;
}

.hero-container {
  background: url("/images/img-lagoon.jpg") no-repeat center center;
  -webkit-background-size: cover;
  margin-top: 20px;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 90%;
}

.btn-hero {
  background: lightseagreen;
  border-radius: 26.5px;
  color: white;
  font-family: 'Roboto Slab', sans-serif;
  transition: all .5s ease-in-out;
  margin: 27px 0px;
}

.btn-hero:hover {
  color: rgb(0, 0, 0);
  background: white;
}

.contact-section {
  background: url("images/stones.jpg") no-repeat center center;
  -webkit-background-size: cover;
  padding-top: 20px;
  padding-bottom:50px;
}

.contact-form-title {
  color: #fff;
}

.input-list {
  list-style-type: none;
  padding-left: 0px;
}

.input-list>li {
  margin-top: 15px;
  margin-bottom: 15px;
}

input[type="text"],textarea,input[type="number"]{
  display: block;
  margin: 0;
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  appearance: none;
  box-shadow: none;
  border-radius: 5px;
}

input[type="text"]:focus, textarea,input[type="number"] {
  outline: none;
}

.style-1 input[type="text"], textarea,input[type="number"] {
  padding: 10px;
  border: solid 4px #d8d8d8;
  transition: border 0.5s;
}
.style-1 input[type="text"]:focus,
.style-1 input[type="text"].focus,
input[type="number"]:focus,
textarea:focus{
  border: solid 4px #37C8D8;
}

.profile img{
  height: 100%;
  width: 100%;
 
}

.contact-button {
  width: 100%;
  background-color:lightseagreen;
}

.testimonial-text {
  color: #fff;
}

.testimonial {
  border-left: 2px solid white;
  padding: 10px;
  margin-top: 20px;
}

.testimonial-name {
  text-align: right;
  color: #fff;
  margin-top: 15px;
}
.footer {
  background: #f2f2f2;
  color: #616161;
  font-size: 12px;
  padding: 20px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer div {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer div i {
  margin-right: 10px;
}

.footer ul {
  display: flex;
  flex-wrap: wrap;
}

.footer li {
  margin-right: 30px;
  margin-bottom: 20px;
}
.floating-btn {
	border-radius: 26.5px;
  background: linear-gradient(-45deg,#24ff72,#21d8f0);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.5;
	color: #fff;
	cursor: pointer;

	padding: 12px 20px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}
ul{
  list-style: none;
}

.floating-btn:hover {

	background-color: #42c754;
}

.floating-btn:focus {
	outline: none;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}

.fa-ul {margin-left:0 !Important;}
.fa-li {
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
    color:#009ffc;
    opacity: 0.5;
    padding:1px;
text-align:center;
}

.fa-li:hover {
    -moz-transform: scale(1.2) translate(0px, -5px);
-webkit-transform: scale(1.2)  translate(0px, -5px);
-o-transform: scale(1.2) translate(0px, -5px);
transform: scale(1.2) translatey(0px, -5px);
z-index: 1000;
opacity: 1;
}
.pulse {
  animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(28, 255, 149, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(6, 206, 6, 0);
  }
}
@keyframes pulso {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.1);
  }

  100% {
      transform: scale(1);
  }
}

.pulso {
 
  animation: pulse 2s infinite;
}