html, body {
  font-weight: bold;
}

#hero {
  width: 100%;
  background: rgb(73, 49, 105);
  position: relative;
  padding: 120px 0 0 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgb(255, 255, 255);
}
#hero h1 span {
  color: rgb(252, 185, 69);
}
#hero h2 {
  color: rgb(255, 255, 255);
  margin-bottom: 40px;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}
#hero .btn-get-started:hover {
  background: #17b57d;
}
#hero .animated {
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

#hero:before {
  background: rgb(73, 49, 105);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 6s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 4s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 2s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
.icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  transform: translateY(15%);
}
.icon-box .title {
  margin-left: 85px;
  margin-bottom: 0px;
}
.icon-box .description {
  margin: 0px 15px 16px 85px;
  line-height: 24px;
}

.icon-box:hover {
  transform: scale(1.1);
  border: 2px solid rgb(252, 185, 69);
  border-radius: 35px 20px 35px 20px;
}

.section-t8 {
  padding-top: 1rem;
}

.title-wrap {
  padding-bottom: 0.8rem;
}

.title-a {
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 600;
}

.title-link {
  font-size: 1.2rem;
  font-weight: 300;
  padding-top: 1.2rem;
}
.title-link a {
  text-decoration: none;
  color: #493169;
  font-weight: bold;
}
.title-link span {
  font-size: 20px;
  padding-left: 4px;
  vertical-align: middle;
}

.card-box-b {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  border-radius: 0.5rem;
}
.card-box-b .img-b {
  transition: 0.8s all ease-in-out;
}

.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.card-shadow {
  backface-visibility: hidden;
}

.card-shadow:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
}

.card-header-b {
  padding: 0 1rem;
  color: #ffffff;
  position: absolute;
  bottom: 20px;
  z-index: 2;
}
.card-header-b .category-b {
  font-size: 0.9rem;
  background-color: rgb(252, 185, 69);
  padding: 0.3rem 0.7rem;
  color: rgb(73, 49, 105);
  letter-spacing: 0.03em;
  border-radius: 50px;
  text-decoration: none;
}
.card-header-b .title-2 {
  margin-bottom: 0;
  padding: 0.6rem 0;
  font-size: 1.5rem;
}
.card-header-b .title-2 a {
  color: #ffffff;
  text-decoration: none;
}
.card-header-b .date-b {
  color: #d8d8d8;
  font-size: 1rem;
}

.carousel-pagination {
  margin-top: 10px;
  margin-bottom: 2rem;
  text-align: center;
}
.carousel-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #555;
  margin: 0 4px;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}
.carousel-pagination .swiper-pagination-bullet-active {
  background-color: rgb(252, 185, 69);
  width: 36px;
}

@media (max-width: 767px) {
  .section-t8 {
    padding-top: 2rem;
  }
  .card-box-b {
    margin-bottom: 1rem;
  }
  .card-box-b span {
    line-height: 0;
  }
}
@media (min-width: 768px) {
  .grid .card-box-b {
    margin-bottom: 1rem;
  }
  .card-header-b {
    bottom: 0px;
  }
  .card-header-b .title-2 {
    font-size: 1rem;
  }
  .card-header-b .date-b {
    font-size: 0.9rem;
  }
  .card-box-b:hover .img-b {
    transform: scale(1.2);
  }
}
@media (min-width: 992px) {
  .card-header-b {
    bottom: 20px;
  }
  .title-2 {
    font-size: 1.6rem;
  }
  .date-b {
    font-size: 1rem;
  }
}
.testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials {
  overflow: hidden;
}
.testimonials .section-header {
  padding-bottom: 0.8rem;
}
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgb(73, 49, 105);
  position: relative;
  background: rgb(73, 49, 105);
  border-radius: 1rem;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 2px solid rgb(252, 185, 69);
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.testimonials .testimonial-item .stars {
  margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  color: #fff;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(252, 185, 69, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(252, 185, 69);
}

@media (max-width: 767px) {
  .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials {
    overflow: hidden;
  }
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
.map .responsive-iframe {
  width: 100%;
  height: 400px;
}

.contact {
  position: relative;
}
.contact .info {
  color: white;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */