* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bg {
  background-color: #e2a73f;
}

.one {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
  background-color: white;
}

.header-big {
  color: #2e4b95;
  font-size: 35px;
  font-weight: 400;
}

.right-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn.bg:hover {
  background-color: #2e4b95;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.top-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
}

.top-social ul li {
  padding-right: 10px;
}

.top-social ul li a {
  font-size: 20px;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #e2a73f;
  color: white;
  line-height: 2;
}

.top-social ul li a:hover {
  color: grey;
}

.quick-links {
  padding-top: 30px;
}

.quick-links .dropdown-item {
  color: white;
}

.quick-links .dropdown:hover button {
  background-color: #2e4b95;
}

.quick-links .dropdown-menu {
  background-color: #2e4b95;
}

.quick-links .nav-item:hover a {
  color: #e2a73f !important;
}

.quick-links .dropdown-item:hover {
  background-color: #e2a73f;
}

.one.navlinks-top .dropdown-toggle:hover > .dropdown-menu {
  display: block;
}

.navlinks-top .bg-blue {
  background-color: #2e4b95;
}

.navlinks-top .nav-item {
  border-right: 1px solid black;
}

.navlinks-top .nav-item.active {
  color: #e2a73f;
}

.navlinks-top .nav-item:hover a {
  color: #e2a73f !important;
}

.navlinks-top .nav-link {
  color: white !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
}

.navlinks-top .dropdown-menu {
  background-color: #2e4b95;
}

.navlinks-top .navbar {
  padding: 0 !important;
}

.navlinks-top .dropdown-toggle:hover > .dropdown-menu {
  display: block;
}

.banner {
  scroll-behavior: smooth;
  position: relative;
}

.banner .owl-one .item .ban-txt {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #31488cbb;
  bottom: 0;
  width: 80%;
  color: white;
  margin: auto;
  padding-bottom: 65px;
  left: 10%;
}

.banner .owl-one .item .ban-txt a {
  color: white;
  font-size: 40px;
  padding-left: 20px;
}

.banner .flash-news {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #e2a63fc2;
}

.banner .flash-news marquee ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-top: 10px;
  margin-bottom: 0 !important;
}

.banner .flash-news marquee ul li {
  padding-right: 30px;
}

.banner .flash-news marquee ul li a {
  color: #2e4b95;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.banner .flash-news marquee ul li a:hover {
  text-decoration: none;
  color: #2e4b95;
}

.welcome .emblom {
  position: absolute;
  width: 100%;
  top: -15%;
  z-index: 9;
  left: 0;
}

.welcome p {
  text-align: justify;
  line-height: 1.5;
  font-size: 18px;
}

.photo-slide {
  background-color: #2e4b95;
  padding: 20px;
}

.photo-slide .item a {
  text-decoration: none;
}

.photo-slide .item a .photo-txt {
  text-align: center;
}

.photo-slide .item a #first {
  background-color: #9a3bb8;
}

.photo-slide .item a #second {
  background-color: #3c9188;
}

.photo-slide .item a #third {
  background-color: #13c8c1;
}

.photo-slide .item a #four {
  background-color: #f0c33c;
}

.photo-slide .item a #five {
  background-color: #3e60b7;
}

.photo-slide .item a:hover img {
  opacity: 0.5;
}

.photo-gallery .box {
  background: -webkit-gradient(linear, left top, left bottom, from(#4d6cd3), color-stop(#3a65f3), color-stop(#0a1177), to(#0d0c3d));
  background: linear-gradient(#4d6cd3, #3a65f3, #0a1177, #0d0c3d);
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.photo-gallery .box img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.photo-gallery .box:hover img {
  opacity: 0.2;
}

.photo-gallery .box .box-content {
  color: #fff;
  text-align: center;
  width: 200px;
  padding: 10px;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.photo-gallery .box:hover .box-content {
  opacity: 1;
}

.photo-gallery .box .box-content:before,
.photo-gallery .box .box-content:after {
  content: "";
  height: 100%;
  width: 100%;
  border-top: 1px dashed #fff;
  border-left: 1px dashed #fff;
  border-radius: 10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
}

.photo-gallery .box .box-content:after {
  border-right: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
  border-left: none;
  border-top: none;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.photo-gallery .box:hover .box-content:before,
.photo-gallery .box:hover .box-content:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.photo-gallery .box .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 3px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.photo-gallery .box .post {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}

.photo-gallery .box:hover .title,
.photo-gallery .box:hover .post {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.photo-gallery .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.photo-gallery .box .icon li {
  display: inline-block;
  margin: 0 3px;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.photo-gallery .box .icon li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.photo-gallery .box:hover .icon li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.photo-txt h5{
  color: #fff;
}
.navlinks-top{
  position: sticky;
  top: 0;
  z-index: 88888;
}
.lightboxOverlay, .lightbox{
  z-index: 888888 !important;
}
.photo-gallery .box .icon li a {
  color: #054c05;
  background: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  display: block;
  -webkit-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}

.photo-gallery .box .icon li a:hover {
  color: #fff;
  background: #07bda4;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 990px) {
  .photo-gallery .box {
    margin: 0 0 30px;
  }
}

.footer {
  padding-top: 15px;
  background-color: #3b444f;
  color: white;
}

.footer h4 {
  padding-bottom: 5px;
  border-bottom: 1px solid grey;
}

.footer .contact-us h6 {
  line-height: 2;
}

.footer .get-directions h4 i {
  color: #e2a73f;
}

.footer .useful-links ul {
  list-style: none;
}

.footer .useful-links ul li a {
  color: white;
}

.footer .useful-links ul a:hover {
  text-decoration: none;
  color: grey;
}

.navbar-toggler {
  float: none;
  width: 100%;
}

@media (max-width: 767px) {
  .logo-sec img {
    width: 100%;
  }
  .right-sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .quick-links {
    padding-top: 0px;
  }
  .one {
    position: static;
  }
  .top-social ul {
    padding-top: 10px;
  }
  .dropdown {
    margin-bottom: 10px;
  }
  .banner .owl-one .item .ban-txt {
    display: none;
  }
  .welcome .emblom {
    top: -6%;
  }
  iframe {
    width: 100%;
  }
  .contact-us {
    text-align: center;
  }
  .get-directions {
    text-align: center;
  }
  .useful-links {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .right-sec {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .contact-us {
    text-align: left;
  }
  .get-directions {
    text-align: left;
  }
  .useful-links {
    text-align: left;
  }
  iframe {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */


.panel-primary select.form-control:not([size]):not([multiple]){
  height: auto !important;
}
.panel-primary {
  border-color: #337ab7;
}
.panel {
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}
.panel-primary>.panel-heading {
  background-image: -webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);
  background-image: -o-linear-gradient(top,#337ab7 0,#2e6da4 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));
  background-image: linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
}
.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.paginationdiv 
{
  text-align: center;
}
.paginationdiv ul{
  display: inline-block;
}
.paginationdiv ul li{
  display: inline-block;
}