/*
[Master Stylesheet]
Theme Name:
Version:        1.0
Author:         hieunt88
URL:            https://themeforest.net/user/hieunt88
*/
/*
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
#1.0	Theme Reset Style

*/
.text-cus-primary {
  color: #001c40;
}

.text-cus-secondary {
  color: #4e627b;
}

.text-cus-third {
  color: #00142c;
}

.text-cus-gray {
  color: #dfe7ea;
}

.bg-cus-primary {
  background-color: #001c40;
}

.bg-cus-secondary {
  background-color: #4e627b;
}

.bg-cus-third {
  background-color: #00142c;
}

.bg-cus-gray {
  background-color: #dfe7ea;
}

body {
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
  color: #001c40;
  transition: color 0.3s;
}
a:hover {
  color: #4e627b;
}

h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
  color: #001c40;
}

/* bootstrap pagination */
.pagination .active > .page-link {
  background-color: #001c40;
  border-color: #001c40;
  color: #fff;
}
.pagination .page-link {
  color: #001c40;
}

/* header */
header {
  background-color: #00142c;
  color: #fff;
}
header a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

/* navMain */
.navMain {
  padding: 0px;
  z-index: 9999;
}
.navMain img.logo {
  height: 50px;
  transition: height 0.3s;
}
.navMain .nav-link {
  font-weight: 600;
  color: #00142c;
  transition: color 0.3s;
}
.navMain .nav-link:hover {
  color: #4e627b;
}
.navMain .nav-item {
  border-bottom: 3px solid #fff;
}
.navMain .nav-item:hover {
  border-bottom-color: #001c40;
}
.navMain :hover {
  color: #001c40;
}
.navMain .textLogo {
  font-size: 2em;
  font-weight: bold;
  color: #001c40;
}
.navMain .navbar-toggler {
  color: #001c40;
}
.navMain .dropdown .dropdown-menu {
  border-radius: 0px;
}
.navMain .dropdown .dropdown-menu ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.navMain .dropdown .dropdown-menu .dropdown-item:active {
  background-color: transparent!important;
}
@media (min-width: 768px) {
  .navMain .nav-link {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .navMain .dropdown {
    position: inherit;
  }
  .navMain .dropdown .option-menu {
    width: 100%;
    left: 0 !important;
  }
  .navMain .dropdown .dropdown-menu {
    visibility: hidden;
    display: block;
    margin-top: 30px;
    transition: margin-top 0.3s;
  }
  .navMain .dropdown:hover .dropdown-menu {
    margin-top: 3px;
    visibility: visible;
  }
}
@media (max-width: 575px) {
  .navMain img.logo {
    height: 30px;
  }
  .navMain .textLogo {
    font-size: 1.1em;
  }
}

/* go to top */
.go-top {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  background-color: #001c40;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: all 0.3s;
  display: none;
}
.go-top:hover {
  background-color: #4e627b;
  color: #fff;
}

/* preloader */
.preloader {
  background-color: #f1f2f3;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  width: 100%;
  height: 100vh;
}
.preloader .inner {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  color: #001c40;
}
.preloader .inner .spinner-border {
  width: 3.5rem;
  height: 3.5rem;
}
.preloader .inner img {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  height: 30px;
}

/*btn-media*/
.btn-media {
  position: fixed;
  bottom: 130px;
  left: 30px;
  z-index: 999;
}

.btn-media a {
  display: inline-block;
  border-radius: 18px;
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.7);
}

/* main slide */
.mainSlide {
  position: relative;
  overflow: hidden;
}
.mainSlide .mask {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(223, 231, 234);
  z-index: 990;
}
.mainSlide .msTool div {
  visibility: hidden;
  position: absolute;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  top: 45%;
  border: 2px solid #ccc;
  color: #ccc;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  z-index: 999;
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
}
.mainSlide .msTool div:hover {
  border-color: #001c40;
}
.mainSlide .msTool .next {
  right: -10px;
}
.mainSlide .msTool .prev {
  left: -10px;
}
.mainSlide:hover .msTool div {
  visibility: visible;
  opacity: 1;
}
.mainSlide:hover .msTool .next {
  right: 10px;
}
.mainSlide:hover .msTool .prev {
  left: 10px;
}
@media screen and (min-width: 768px) {
  .mainSlide::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 300px;
    background-color: #fff;
    border-radius: 50%;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
  }
}
@media screen and (max-width: 767px) {
  .mainSlide::before {
    content: "";
    position: absolute;
    width: 180%;
    height: 250px;
    background-color: #fff;
    border-radius: 50%;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
  }
}

/* navThumbnail */
.navThumbnail img {
  width: 80%;
}
@media (max-width: 575px) {
  .navThumbnail a {
    font-size: 0.8rem;
  }
}

/* memBest */
.memBest .card .top {
  top: 1rem;
  left: 1rem;
}
.memBest .card .top .pText {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
}

/* footer */
footer {
  min-height: 100px;
}

/* custom button */
.btn-cus-primary {
  background-color: #001c40;
  border: 1px solid #001c40;
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-primary:hover {
  background-color: #00142c !important;
  color: #fff;
}
.btn-cus-primary:active {
  color: #ccc!important;
}

.btn-cus-outline-primary {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #00142c;
  color: #00142c;
  border-radius: 0px;
  display: inline-block;
  text-align: center;
}
.btn-cus-outline-primary:hover {
  background-color: #fff;
  border: 1px solid #001c40;
  color: #001c40;
}/*# sourceMappingURL=style.css.map */

/*img-loading*/
.img-loading {
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.75);
  top:0px;
  left: 0px;
  z-index: 9999;
}
.img-loading img {
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  height: 50px;
}