/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Frank Ruhl Libre', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--bs-secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark {background: var(--bs-primary);}
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Rubik', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 21px;
    font-weight: normal;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 32px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #bbbcbb;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--bs-white) !important;
    border-color: var(--bs-white) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: var(--bs-secondary);
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--bs-primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--bs-secondary);
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #bbbcbb;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--bs-primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(rgba(0, 0, 0, .7), rgba(56, 100, 146, .7));*/
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

/*.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}*/


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(56, 100, 146, .7));
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -60px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(56, 100, 146, .7)), url(../images/bg.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }	
}

/********** CUSTOM CSS ***********/
.website-logo{width:100%; height:auto; max-width:388px;}
@media (max-width: 576px) {
	.website-logo{max-width:194px;}
}
.footer-logo{width:100%; height:auto; max-width:276px;}
#searchModal form {display:contents;}
#searchModal .form-control::-webkit-input-placeholder {color: #fff;}
#searchModal .form-control::-moz-placeholder {color: #fff;}
#searchModal .form-control:-ms-input-placeholder {color: #fff;}
#searchModal .form-control:-moz-placeholder {color: #fff;}
.form-group .form-input.required {
  border-color: #db4300;
  -webkit-box-shadow: 0 0 6px rgba(219, 67, 0, 0.4);
          box-shadow: 0 0 6px rgba(219, 67, 0, 0.4);
}
.form-group .form-error {
  margin-top: 6px;
  margin-bottom: 0;
  color: #db4300;
  background: url(../images/icon-info.svg) no-repeat 0 0;
  background-size: 16px;
  padding-left: 24px;
  line-height:16px;
}
.floating-alert {
  position: fixed;
  top: -20%;
  width: 50%;
  left: 25%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  z-index: 9;
}
.floating-alert.show-alert {
  top: 150px;
}
@media screen and (max-width: 768px) {
  .floating-alert {
    width: 90%;
    left: 5%;
  }
  .promo-text .h4 {font-size:16px;}
}
.alert-container {
  background: #ffffff;
  color: #654725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 15px 15px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  min-height: 35px;
}
.alert-container .close-alert {
  background: url(../images/icon-close.svg) no-repeat center;
  background-size: 10px;
  width: 40px;
  height: 40px;
  display: inline-block;
  opacity: 0.5;
  cursor: pointer;
}
.alert-container.alert-success {
  background: #41a745;
  color: #ffffff;
  font-size: 16px;
}
.alert-container.alert-success .alert-text {
  background: url(../images/icon-check_circle.svg) no-repeat 0 0;
  background-size: 19px;
  padding-left: 30px;
  padding-right: 20px;
  width: calc(100% - 40px);
}
.alert-container.alert-success .close-alert {
  background: url(../images/icon-close-white.svg) no-repeat center;
  opacity: 0.8;
}
.alert-container.alert-warning {
  background: #db4300;
  color: #ffffff;
  font-size: 16px;
}
.alert-container.alert-warning .alert-text {
  background: url(../images/icon-warning.svg) no-repeat 0 0;
  background-size: 19px;
  padding-left: 30px;
}
.alert-container.alert-warning .close-alert {
  background: url(../images/icon-close-white.svg) no-repeat center;
  opacity: 0.8;
}
.bookme-progress {
  position: relative;
  opacity: 0.8;
  color: transparent !important;
  text-shadow: none !important;
}

.bookme-progress:hover, .bookme-progress:active, .bookme-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bookme-progress::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-clip: padding-box;
  border-radius: 50%;
  border: 0.15em solid #fff;
  border-left-color: transparent;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  -webkit-animation: ld 1s linear infinite;
  animation: ld 1s linear infinite;
}

/* button loading */
@-webkit-keyframes ld {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ld {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.tree {
  min-height: 20px;
  position: relative;
  display: inline-block;
}

.tree::before {
  border-left: 1px solid #D5DBE2;
  content: "";
  left: 20px;
  position: absolute;
  height: calc(100% - 76px);
  top: 43px;
}

.tree li {
  list-style-type: none;
  margin: 0;
  padding: 10px 5px 0 5px;
  position: relative;
}

.tree li:last-child::before {
  height: 24px;
}

.tree li::before, .tree li::after {
  content: "";
  left: -20px;
  position: absolute;
  right: auto;
}

.tree li::before {
  border-left: 1px solid #D5DBE2;
  bottom: 50px;
  height: 100%;
  top: 0;
  width: 1px;
  z-index: 2;
}

.tree li::after {
  border-top: 1px solid #D5DBE2;
  height: 20px;
  top: 34px;
  width: 25px;
}

.tree li a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #D5DBE2;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.tree li a:hover {
  background: #DED6AC;
}

.tree li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -40px;/*-45px*/
  top: 13px;/*2px*/
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-world-wide-web.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px;
  padding-left: 40px;
}

.tree li.parent_li > a {
  cursor: pointer;
  position: relative;
}

.tree li.parent_li > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -40px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-plus-circle-green.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 20px;
  padding-left: 40px;
}

.tree > ul > li::before {
  display: none;
}

.tree > ul > li::after {
  margin-left: 0;
  top: 34px;
}

.tree > ul > li.parent_li > a::after {
  top: 13px;
}

.sitemap-tree {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .sitemap-tree {
    width: 100%;
  }
}

.photo-gallery ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 25% 25% 25%;
      grid-template-columns: 25% 25% 25% 25%;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: calc(100% - 90px);
  margin-bottom: 30px;
}

.photo-gallery ul li img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1120px) {
  .photo-gallery ul {
    -ms-grid-columns: 33.33% 33.33% 33.33%;
        grid-template-columns: 33.33% 33.33% 33.33%;
    width: calc(100% - 60px);
  }
}
.homepage-video {min-height:340px; max-width:640px;}
@media screen and (max-width: 768px) {
  .photo-gallery ul {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
    width: calc(100% - 30px);
  }
  .homepage-video {width: 100%; height:auto;}
}
.prev-next .previous {
  margin-right: 40px;
}
.prev-next .previous img {
  display: inline-block;
  width: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
.prev-next .next img {
  display: inline-block;
  width: 16px;
  vertical-align: middle;
  margin-left: 5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.video-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-wrapper a {
  width: 480px;
  height: 265px;
  background-position: center;
  position: relative;
  border: 4px solid #db4300;
  border-radius: 8px;
}

.video-wrapper a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/icon-youtube.svg) no-repeat center;
  background-size: 70px;
  opacity: 0.7;
  top: 0;
  left: 0;
}

.video-wrapper a:hover::after {
  background: url(../images/icon-youtube-red.svg) no-repeat center;
  background-size: 70px;
  opacity: 1;
}
.jzcms a{text-decoration:underline;}
.jzcms img {
  padding:10px;
  max-width: 100% !important;
  height: auto;
}

.jzcms ul,
.jzcms ol,
.jzcms li {
  margin: 0;
  padding: 0;
}

.jzcms ul li {
  list-style-type: disc;
  list-style-position: inside;
  padding: 10px 0 10px 30px;
  text-indent: -1em;
}

.jzcms ul li p {
  display: inline;
}

.jzcms ol {
  counter-reset: foo;
  display: table;
}

.jzcms ol li {
  list-style: none;
  counter-increment: foo;
  display: table-row;
}

.jzcms ol li::before {
  content: counter(foo) ".";
  display: table-cell;
  text-align: right;
  padding-right: 0.4em;
}

.jzcms iframe {
  width: 100%;
}

.jzcms table {
  border: 0px !important;
}

.jzcms table th,
.jzcms table td {
  border: 0px !important;
}

.jz-iframe-wrap {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  /*16:9*/
  height: 0;
  overflow: hidden;
}

.jz-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container-jzcms {background-color:#dadada;}