body {
  padding: 0;
  margin: 0;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #444;
  overflow-x: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}
h4 {
  margin: 0 0 10px;
}
img{
  max-width: 100%;
}

.clearfix:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  font-size: 0;
}
.flex {
  display: flex;
}
.half {
  width: 50%;
}
.right {
  text-align: right;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .flex {
    display: block;
  }
  .half {
    width: 100%;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

/* Bubbles */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateZ(0);
}
.bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  background-color: rgba(255, 255, 255, 0.15);
  top: -100px;
  animation: square 20s infinite;
  transition-timing-function: linear;
}
.bubbles li:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 15%;
}
.bubbles li:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 17s;
}
.bubbles li:nth-child(3) {
  width: 80px;
  height: 80px;
  left: 30%;
  animation-delay: 4s;
  animation-duration: 10s;
}
.bubbles li:nth-child(4) {
  width: 90px;
  height: 90px;
  left: 50%;
  animation-delay: 1s;
  animation-duration: 12s;
}
.bubbles li:nth-child(5) {
  width: 50px;
  height: 50px;
  left: 60%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.bubbles li:nth-child(6) {
  width: 40px;
  height: 40px;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 15s;
}
.bubbles li:nth-child(7) {
  width: 20px;
  height: 20px;
  left: 90%;
  animation-delay: 1s;
  animation-duration: 15s;
}
.bubbles li:nth-child(8) {
  width: 45px;
  height: 45px;
  left: 50%;
  animation-delay: 5s;
  animation-duration: 15s;
}
.bubbles li:nth-child(9) {
  width: 55px;
  height: 55px;
  left: 28%;
  animation-delay: 6s;
  animation-duration: 13s;
}
.bubbles li:nth-child(10) {
  width: 60px;
  height: 60px;
  left: 45%;
  animation-delay: 7s;
  animation-duration: 15s;
}
.bubbles li:nth-child(11) {
  width: 46px;
  height: 46px;
  left: 66%;
  animation-delay: 6s;
  animation-duration: 15s;
}
.bubbles li:nth-child(12) {
  width: 34px;
  height: 34px;
  left: 85%;
  animation-delay: 6s;
  animation-duration: 12s;
}

@keyframes square {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1080px) rotate(630deg);
    transform: translateY(1080px) rotate(630deg);
  }
  /* 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  } */
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 82px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.logo {
  display: inline-block;
  padding: 24px;
  font-weight: bold;
  font-size: 24px;
}
.logo img {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  border-radius: 100%;
}
.logo span {
  display: inline-block;
  vertical-align: middle;
}
header nav {
  float: right;
}
header li {
  display: inline-block;
  padding: 30px;
}
header a {
  color: #fff;
  text-decoration: none;
}
header li a.active,
header li a:hover {
  color: rgba(216, 51, 67);
}

@media (max-width: 767px) {
  header {
    height: 60px;
  }
  header nav {
    display: none;
  }
  header .logo {
    padding: 10px 15px;
    font-size: 20px;
  }
}

/* Footer */
footer {
  text-align: center;
  background: #000;
  color: #fff;
  padding: 20px;
  font-size: 14px;
}

footer a,
footer a:visited {
  color: #fff;
}

footer a:hover {
  color: rgba(216, 51, 67);
}

/* Top Section */
.top {
  height: 800px;
  min-height: 520px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(90deg,rgba(222, 99, 89) 0%, rgba(249, 223, 211) 100%);
  transition: all ease 0.5s 0s;
  /* background: rgba(0, 0, 0, 0) url(./bg.jpg) no-repeat fixed center center / cover; */
}
.top .content {
  text-align: center;
  color: #fff;
  padding-top: 70px;
}
.top .content img {
  width: 100px;
  border-radius:  50% 50% 50% 50%;

}
.top h1 {
  font-size: 48px;
  margin: 10px 0;
}
.top p {
  font-size: 20px;
}
@media (max-width: 767px) {
  .top h1 {
    font-size: 40px;
  }
  .top p {
    font-size: 18px;
  }
  .top .content {
    padding-top: 50px;
  }
}

/* Service Section */
.service {
  text-align: center;
  padding: 60px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
}
.service-list li {
  display: inline-block;
  padding: 30px;
  width: calc(31.63% - 60px);
  border-radius: 8px;
  box-shadow: 1px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #fff;
  margin-bottom: 30px;
  transform: translateY(0px);
  transition: all ease 0.5s 0s;
  cursor: pointer;
}
.service-list li:nth-child(3n+2) {
  margin: 0 2.55% 30px;
}
.service-list i {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: rgba(234, 192, 180, 0.8);
  display:block;
  margin: 0 auto;
  position: relative;
  color: #fff;
}
.wave {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: rgba(210, 117, 105);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
.service-list li:hover {
  border-bottom: 5px solid rgba(210, 117, 105);
}
.service-list li:hover i {
  background-color: rgba(210, 117, 105);
}
.service-list li:hover .wave{
  animation: sonarWave 2s linear infinite;
  transition: all ease 0.5s 0s;
}
.service-list [class^="flaticon-"]:before, [class*=" flaticon-"]:before {
  font-size: 40px;
  line-height: 80px;
  margin: 0;
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .service {
    padding: 30px 0;
  }
  .service-list li {
    width: calc(50% - 75px);
  }
  .service-list li:nth-child(3n+2) {
    margin: 0 0 30px;
  }
  .service-list li:nth-child(2n+1) {
    margin: 0 30px 30px 0;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 30px 0;
  }
  .service-list li {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .service-list li:nth-child(2n+1) {
    margin: 0 0 30px;
  }
}

/* About Us */
.about-us {
  padding: 60px 0;
  color: #fff;
  background: linear-gradient(90deg,rgba(222, 99, 89) 0%, rgba(249, 223, 211) 100%);
}
.about-us li { 
  box-shadow: 0px 5px 15px 0px rgba(101, 101, 101, 0.4);
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  margin: 0 20px 30px 0;
  color: #444;
  cursor: pointer;
  transform: translateY(0px);
  transition: all ease 0.5s 0s;
  overflow: hidden;
}
.about-us h3 {
  margin: 0 0 10px;
}
.about-us p {
  margin: 0;
}
.about-us i {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: rgb(255, 179, 0, 0.8);
  display: block;
  margin: 0 auto;
  position: relative;
  color: #fff;
  margin: 0 20px 0 0;
  text-align: center;
}
.about-us [class^="flaticon-"]:before, [class*=" flaticon-"]:before {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 60px;
}
.about-us img {
  max-width: 100%;
  width: 400px;
}

.left_border {
  width: 2px;
  height: 100%;
  background:#ffb300;
  position: absolute;
  top: -100%;
  left: 0px;
  transition: 0.5s;
}
.right_border {
  width: 2px;
  height: 100%;
  background: #ffb300;
  position: absolute;
  bottom: -100%;
  right: 0px;
  transition: 0.5s;
}
.top_border {
  width: 100%;
  height: 2px;
  background: #ffb300;
  position: absolute;
  top: 0px;
  left: -100%;
  transition: 0.5s;
}
.bottom_border {
  width: 100%;
  height: 2px;
  background: #ffb300;
  position: absolute;
  bottom: 0px;
  right: -100%;
  transition: 0.5s;
}
.about-us li:hover .left_border {
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.about-us li:hover .right_border {
  width: 2px;
  height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.about-us li:hover .top_border {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.about-us li:hover .bottom_border {
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.about-us li:hover i {
  background-color: #ffb300;
}
@media (max-width: 1024px) {
  .about-us {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .about-us li {
    margin: 0 0 30px 0;
    text-align: center;
  }
  .about-us li i {
    margin: 0 auto 10px;
  }
  .left_border,
  .right_border,
  .top_border,
  .bottom_border {
    display: none;
  }
}

/* Contact Us */
.contact-us {
  padding: 60px 0;
}
.contact-us a {
  color: #444;
  text-decoration: none;
}
.contact-us p {
  margin: 0 0 20px;
}

.contact-us a:hover {
  text-decoration: underline;
  color: rgba(216, 51, 67);
}
.contact-us [class^="flaticon-"]:before, [class*=" flaticon-"]:before {
  margin: 0 10px 0 0;
  color: rgba(216, 51, 67);
}
.contact-us .img {
  display: inline-block;
  margin-right: 20px;
  text-align: center;
  width: 90px;
}
.contact-us .img:last-child {
  margin-right: 0;
}
.contact-us img {
  background-color: #f8f8f8;
  width: 100%;
  margin: 0 0 10px;
  display: block;
}
.contact-us .images {
  text-align: center;
}
@media (max-width: 1024px) {
  .contact-us {
    padding: 30px 0 50px;
  }
}
@media (max-width: 767px) {
  .contact-us p {
    font-size: 14px;
  }
  .contact-us .img {
    width: calc(33.33% - 13px);
    margin: 0 15px 0 0;
  }
  .contact-us .images {
    margin: 0 0 30px;
  }
}