/********** Template CSS **********/
:root {
  --primary: #129FE3;
  --secondary: #0dd3f1;
  --light: #f6f7fc;
  --dark: #07294d;
}
.bg-dark {
    background-color: var(--primary) !important;
}

.btn-primary {
  color:#fff !important;
  background-color: var(--secondary) !important;
}

a {
    color: var(--dark) !important;
    text-decoration: none;
    transition: all ease-in-out .3s;
}
body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.image-container-col-full {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container-col-full img {
    width: 100%;
    min-height: 250px;
    height: auto;
}

@media (max-width: 768px) {
    .image-container-col-full {
        width: 100%;
        height: 250px;
    }

    .image-container-col-full img {
        width: 100%;
        min-height: 250px;
        height: auto;
    }
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
  color: #ffffff;
}

.btn.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
 width:200px;
}

.navbar .navbar-nav .nav-link {
  margin: 0 10px;
  padding: 10px 0;
  color: #000;
  text-transform:uppercase;
  font-weight: 700;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    width:180px;
  }

  .navbar .navbar-nav {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .navbar .nav-item .dropdown-menu {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  text-align: start;
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 50px;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }



  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #696e77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
  color: var(--primary);
}

/*** Facts ***/
@media (min-width: 992px) {
  .container.facts {
    max-width: 100% !important;
  }

  .container.facts .facts-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .container.facts .facts-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }

  .container.facts .facts-counter {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

.container.facts .facts-text {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-counter {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(../img/carousel-2.jpg) center right no-repeat;
  background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item .service-icon img {
  max-width: 60px;
  max-height: 60px;
}

.service-item a.btn {
  color: var(--primary);
}

.service-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Appointment ***/
.appointment {
  background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(1, 95, 201, 0.9)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Team ***/
.team-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-text {
  bottom: 0;
  opacity: 1;
}

.team-item a.btn {
  color: var(--primary);
}

.team-item a.btn:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

/*** Testimonial ***/
.animated.pulse {
  animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
  position: relative;
}

.testimonial-left img,
.testimonial-right img {
  position: absolute;
  padding: 5px;
  border: 1px dashed var(--primary);
  border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 10px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--secondary);
}

/*** Footer ***/
.footer {
  color: #a7a8b4;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #a7a8b4;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: #fff !important;
  border: 1px solid #fff;
}

.footer .btn.btn-square:hover {
  color: var(--primary) !important;
  border-color: #fff;
  background: #fff;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: #ffffff;
}

.img-zoom {
    transition: all ease-in-out .3s;
}

.pengumuman-item:hover .img-zoom {
    transform: scale(1.2);
}

.artikel-item:hover .img-zoom {
    transform: scale(1.2);
}

.owl-carousel .owl-stage {
  display: flex;
}
.artikel-item {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}
.artikel-box {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 80px; */ /*This is optional*/
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.artikel-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.artikel-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.artikel-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gallery-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--dark);
  /* border-radius: 10px; */
  transition: 0.5s;
}

.gallery-carousel .owl-dot.active {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.2);
}

.gallery-overlay {
  opacity: 0;
  transition: ease-in-out 0.2s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.btn-square-contact {
  width: 75px;
  height: 75px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 20px;
}

.btn-square-contact {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-square-contact:hover {
  color: var(--primary);
  background: transparent;
}

.keunggulan-container {
    transition: all ease-in-out .3s;
}

.keunggulan-container:hover {
    background-color: var(--primary) !important;
}

.contact-btn {
  position: fixed;
  /* display: none; */
  left: 30px;
  bottom: 30px;
  z-index: 99;
}


.rs-categories.style1 .categories-item {
  border: 1px solid #dfe9eb;
  background: #ffffff;
  overflow: hidden;
  padding: 30px;
  display: block;
  color: #505050;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.rs-categories.style1 .categories-item .icon-part {
  float: left;
  margin-right: 25px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 100%;
  background: rgba(22, 170, 202, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item .icon-part img {
  -webkit-transition: all 0.4s ease;
  transform: scale(1);
  width:65px;
}
.rs-categories.style1 .categories-item .content-part .title {
  color: #111111;
  margin-bottom: 5px;
  font-size: 20px;
  transition: all 0.3s ease;
}
.rs-categories.style1 .categories-item:hover {
  background: #21a7d0;
  color: #ffffff;
  border-color: #21a7d0;
}
.rs-categories.style1 .categories-item:hover .icon-part {
  background: #ffffff;
}
.rs-categories.style1 .categories-item:hover .icon-part img {
  transform: scale(0.9);
}
.rs-categories.style1 .categories-item:hover .content-part .title {
  color: #ffffff;
}



.rs-blog.style2 .blog-item .image-part {
  overflow: hidden;
  height: 100%;
}
.rs-blog.style2 .blog-item .image-part img {
  transition: all 0.5s;
  transform: scale(1);
}
.rs-blog.style2 .blog-item .blog-content {
  padding: 21px 30px 30px;
  color: #273c66;
  background: #fcfcfc;
}
.rs-blog.style2 .blog-item .blog-content .title {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 34px;
}
.rs-blog.style2 .blog-item .blog-content .title a {
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content .title a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .categories {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .desc {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta {
  margin-bottom: 11px;
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li {
  position: relative;
  margin-right: 5px;
  padding-right: 15px;
  display: inline-block;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i {
  padding-right: 3px;
  font-size: 14px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li i.fa-calendar {
  padding-right: 7px;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li a {
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-meta li:last-child {
  margin: 0;
  padding: 0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom {
  overflow: hidden;
  padding-top: 21px;
  margin-top: 21px;
  border-top: 1px solid #dcdfe6;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li {
  display: inline;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a {
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #273c66;
}
.rs-blog.style2 .blog-item .blog-content .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.primary-border {
  border: 1px solid rgba(33, 167, 208, 0.1);
  border-top: none;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a {
  color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .title a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li {
  display: inline;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #112958;
}
.rs-blog.style2 .blog-item .blog-content.new-style .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a {
  color: #505050;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.cmnt-part a:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part {
  float: right;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow {
  text-transform: uppercase;
  color: #111111;
}
.rs-blog.style2 .blog-item .blog-content.new-style2 .blog-bottom li.btn-part .readon-arrow:hover {
  color: #21a7d0;
}
.rs-blog.style2 .blog-item:hover .image-part img {
  transform: scale(1.07);
}
.rs-blog.style2.modify .blog-item .blog-content {
  border: none;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part {
  font-weight: 600;
  color: #111111;
}
.rs-blog.style2.modify .blog-item .blog-content .blog-bottom .btn-part .readon-arrow {
  font-weight: 600;
  color: #111111;
}
.rs-blog.style2.modify2 .owl-stage-outer {
  padding-bottom: 10px;
  margin: -10px;
  padding-left: 10px;
}
.rs-blog.style2.modify2 .blog-item {
  overflow: visible !important;
  margin: 10px 0;
}
.rs-blog.style2.modify2 .blog-item .blog-content {
  background: #ffffff !important;
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2) !important;
  transition: all 500ms ease;
  position: relative;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg1 {
  color: #c701f1;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg2 {
  color: #065ce8;
}
.rs-blog.style2.modify2 .blog-item .blog-content .categories.color-bg3 {
  color: #f6075b;
}
.rs-blog.style2.modify2 .blog-item:hover .blog-content {
  transform: translateY(-10px);
}



/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
  position: relative;
  width: 100%;
  
  /* padding: 45px 0; */
}

.feature .btn{
  padding: 7px 35px;
  /* font-size: 17px;
  font-weight: 500; */
  letter-spacing: 1px;
  /* text-transform: uppercase; */
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: .3s;
}

.fact .btn{
  padding: 7px 35px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 0;
  transition: .3s;
}

.fact .col-6 {
  display: flex;
  align-items: flex-start;
}

.fact .fact-icon {
  position: relative;
  margin: 7px 15px 0 15px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
  margin: 0;
  font-size: 60px;
  line-height: 60px;
  background-image: linear-gradient(#ffffff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
  background-image: linear-gradient(#ffffff, #dfaa5c);
}

.fact .fact-left,
.fact .fact-right {
  padding-top: 60px;
  padding-bottom: 60px;
}

.fact .fact-text h2 {
  font-size: 35px;
  font-weight: 700;
}

.fact .fact-text p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.fact .fact-left {
  color: var(--primary);
  background: #dfaa5c;
}

.fact .fact-right {
  color: #dfaa5c;
  background: var(--primary);
}

.fact .fact-left h2 {
  color: var(--primary);
}

.bg-light {
    background: #eee;
}


.location-card {
  position: relative;
  margin-right: 9px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .location-card {
    margin-right: 0;
  }
}
.location-card .image-wrapper {
  position: relative;
}
.location-card .image-wrapper .image-inner {
  z-index: 2;
  overflow: hidden;
  transition: 1s;
}
.location-card .image-wrapper .image-inner:before {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background-color: rgba(18,159,227, 0.6);
  content: "";
  transition: all 0.5s ease-out;
}
.location-card .image-wrapper .image-inner img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-out;
}
.location-card .image-wrapper .favourite-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-67%, 52%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.08));
}
.location-card .image-wrapper .favourite-icon.active i {
  color: var(--primary);
}
.location-card .image-wrapper .favourite-icon i {
  color: var(--secondary);
  font-size: 20px;
}
.location-card .content-wrapper {
  visibility: hidden;
  position: absolute;
  bottom: 0;
  margin-bottom: -100px;
  left: 0;
  right: 0;
  margin-left: 17px;
  margin-right: 17px;
  border-radius: 16px;
  background-color: #ffffff;
  z-index: 2;
  transition: all 0.5s ease-out;
}
.location-card .content-wrapper .content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  opacity: 0;
  transition: all 0.5s ease-out;
}


@media (max-width: 1400px) {
  .location-card .content-wrapper .content-inner {
    gap: 0;
    justify-content: space-between;
  }
}
.location-card .content-wrapper .content-inner .content-title {
  line-height: 0px;
  width: 162px;
}
@media (max-width: 1400px) {
  .location-card .content-wrapper .content-inner .content-title {
    width: auto;
  }
}
.location-card .content-wrapper .content-inner .content-title a {

  color: #041126;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.location-card .content-wrapper .content-inner .content-title a:hover {
  background-position: -100%;
  
}

.animated-text-blue{
  text-decoration: none;
  background: linear-gradient(to right, #041126 50%, #041126 50%, #3B71FE);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.5s ease-out;
  color: black;
}

.location-card .content-wrapper .content-inner .icon {
  position: relative;
  overflow: hidden;
  transition: 1s;
  background-color: var(--primary);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease-out;
  flex-shrink: 0;
}
.location-card .content-wrapper .content-inner .icon:before {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--secondary);
  content: "";
  transition: all 0.5s ease-out;
  color: #ffffff;
}
.location-card .content-wrapper .content-inner .icon:hover:before {
  width: 100%;
  transition: all 0.5s ease-out;
}
.location-card .content-wrapper .content-inner .icon i {
  color: #ffffff;
  font-size: 28px;
  transform: translate(-28px, 14px);
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 10;
}
.location-card:hover .image-inner:before {
  height: 100%;
  transition: all 0.5s ease-out;
}
.location-card:hover .favourite-icon i {
  transform: rotateY(360deg);
  transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper {
  visibility: visible;
  margin-bottom: 17px;
  transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner {
  opacity: 1;
  transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner .icon i {
  transform: none;
  transition: all 0.5s ease-out;
}
.location-card:hover .content-wrapper .content-inner .content-title {
  background-position: -100%;
}

.rating {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
}
.rating .ratting-inner {
  align-items: end;
  margin-top: 14px;
  margin-right: 16px;
  border-radius: 50px;
  background-color: #ffffff;
  padding: 2px 12px;
}
.rating .ratting-inner span {
  cursor: default;
  margin-right: 4px;
  color:var(--secondary);
}
.rating .ratting-inner span i {
  font-size: 20px;
  
}
.rating .ratting-inner .counter {
  color: #041126;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}

.card-location {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
}
.card-location .location-inner {
  align-items: end;
  margin-top: 14px;
  margin-right: 28px;
  border-radius: 50px;
  background-color: #ffffff;
  padding: 6px 16px;
}
.card-location .location-inner span i {
  font-size: 14px;
  color: #041126;
}
.card-location .location-inner .address {
  
  color: #041126;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}


.location-image-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 8px;
  align-items: center;
  text-align: center;
  transition: all 0.5s ease-out;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .location-image-card {
    padding: 30px;
  }

  .single-gallery img {
    width:100% !important
  }
}
@media (max-width: 1400px) {
  .location-image-card {
    padding: 40px;
  }
}
.location-image-card .img-wrapper {
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease-out;
}
.location-image-card .img-wrapper:before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 20;
}
.location-image-card .content-inner .city {
  
  color: #041126;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-top: 26px;
  margin-bottom: 0px !important;
  cursor: default;
}
.location-image-card .content-inner .city:hover {
  background-position: -100%;
}
.location-image-card .content-inner .duration {
 
  color: #585866;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  cursor: default;
}
.location-image-card:hover {
  margin-top: -20px;
  transition: all 0.5s ease-out;
  box-shadow: 0px 24px 64px 0px rgba(199, 206, 218, 0.25);
}
.location-image-card:hover .img-wrapper {
  transform: rotateY(15deg);
  transition: all 0.5s ease-out;
}
.location-image-card:hover .img-wrapper:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

/*
Contact Us Style
======================================================*/
.contact-map3 {
  overflow: hidden;
}
.contact-map3 iframe {
  float: left;
  width: 100%;
  height: 600px;
  border: none;
}
.contacts-form .list-unstyled {
  color: var(--primary);
  margin-top: 7px;
}
.contacts-form .text-danger {
  color: var(--primary);
  font-size: 16px;
  margin-top: 7px;
}
.contacts-form .form-check .form-check-input {
  border-radius: 0;
}
.contacts-form .form-check .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.contacts-form .form-check .form-check-input:focus {
  box-shadow: none;
}
.contacts-form .default-btn {
  width: 100%;
}

.contact-and-address h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.contact-and-address p {
  margin-bottom: 20px;
}
.contact-and-address .contact-and-address-content {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.contact-and-address .contact-and-address-content .contact-card {
  text-align: center;
  padding: 30px;
  background-color: #f4f6f9;
  margin-bottom: 30px;
}
.contact-and-address .contact-and-address-content .contact-card .icon {
  font-size: 35px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-align: center;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 15px;
}
.contact-and-address .contact-and-address-content .contact-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}
.contact-and-address .contact-and-address-content .contact-card p {
  margin-bottom: 10px;
}
.contact-and-address .contact-and-address-content .contact-card p a {
  color: #555555;
  transition: all ease 0.5s;
}
.contact-and-address .contact-and-address-content .contact-card p a:hover {
  color: var(--primary);
}
.contact-and-address .social-media {
  margin-bottom: 30px;
}
.contact-and-address .social-media h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.contact-and-address .social-media p {
  margin-bottom: 25px;
}
.contact-and-address .social-media ul {
  padding-left: 0;
  margin-bottom: 0;
}
.contact-and-address .social-media ul li {
  margin-right: 10px;
  list-style-type: none;
  display: inline-block;
}
.contact-and-address .social-media ul li a {
  height: 35px;
  width: 35px;
  line-height: 37px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  background-color: #eeeeee;
  color: var(--primary);
  transition: all ease 0.5s;
}
.contact-and-address .social-media ul li a:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-5px);
}

.text-white-50 {
    color:#fff !important;
}


/*
* ----------------------------------------------------------------------------------------
* 05.START GALLERY DESIGN
* ----------------------------------------------------------------------------------------
*/

.our_gallery {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, rgba(245, 245, 245, 0.3)), to(rgba(245, 245, 245, 0.3)));
    background: linear-gradient(rgba(245, 245, 245, 0.3) 100%, rgba(245, 245, 245, 0.3) 100%);
}

.single-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    widht:100%;
}

.single-gallery:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(97, 104, 255, .8);
    transition: .5s;
    opacity: 0;
}

.single-gallery img {
    width:200px;
}

.gallery_enlarge_icon {
    opacity: 0;
}

.gallery_enlarge_icon {
    background-color: #fff;
    color: #333;
    width: 45px;
    height: 45px;
    line-height: 46px;
    position: absolute;
    right: 0px;
    bottom: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 19px;
    transition: .5s;
}

.gallery_enlarge_icon:hover,
.gallery_enlarge_icon:focus {
    background-color: #212a42;
    color: var(--white-color);
}

.single-gallery h4 {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    letter-spacing: inherit;
    font-weight: 700;
    text-align: center;
}

.single-gallery:hover h4 {
    opacity: 1;
    top: 50%;
    left: 50%;
}

.portfolio-item {
    margin-bottom: 30px;
}


.gallery-btn {
    background-color: #6168FF;
    border: 1px solid #6168FF;
    border-radius: 4px;
    color: var(--white-color);
    font-size: 15px;
    padding: 13px 24px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
    font-weight: 400;
    letter-spacing: 1px;
}

.gallery-btn:hover,
.gallery-btn:focus {
    background-color: #211E3B;
    border-color: #211E3B;
    color: var(--white-color);
}

.single-gallery:hover:before {
    opacity: 0.8;
}

.single-gallery:hover .gallery_enlarge_icon {
    opacity: 1;
    right: 20px;
    bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}