@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff"),
    url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff"),
    url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Abril Display";
  src: url("../fonts/AbrilDisplay-Bold.eot");
  src: url("../fonts/AbrilDisplay-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AbrilDisplay-Bold.woff2") format("woff2"),
    url("../fonts/AbrilDisplay-Bold.woff") format("woff"),
    url("../fonts/AbrilDisplay-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: "Roboto";
}

.clear {
  clear: both;
}

a,
button {
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -ms-transition: 0.25s;
  transition: 0.25s;
}

a:focus,
button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-margin {
  margin-left: 0;
  margin-right: 0;
  margin-top: 2%;
}

.txt-bold {
  font-weight: bold;
}

.parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.parallax {
  position: relative;
  height: 100%;
}

.return-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #00aae2;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;

  -webkit-transform: rotate(45deg); /* Safari */
  -moz-transform: rotate(45deg); /* IE 9 */
  -ms-transform: rotate(45deg); /* IE 9 */
  transform: rotate(45deg);

  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  transition: 0.3s linear;
}
.return-top span {
  display: block;
  -webkit-transform: rotate(-45deg); /* Safari */
  -moz-transform: rotate(-45deg); /* IE 9 */
  -ms-transform: rotate(-45deg); /* IE 9 */
  transform: rotate(-45deg);
}
.return-top span img {
  position: relative;
  -moz-animation: upBounce 2s infinite;
  -webkit-animation: upBounce 2s infinite;
  animation: upBounce 2s infinite;
}
@-webkit-keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@-moz-keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes upBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.return-top:hover img {
  color: #fff;
  top: 5px;
}

.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1000ms;
  -moz-transition-duration: 1000ms;
  -o-transition-duration: 1000ms;
  -ms-transition-duration: 1000ms;
  transition-duration: 1000ms;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

.banner-sec {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.banner-sec .carousel,
.banner-sec .carousel .carousel-inner,
.banner-sec .carousel .carousel-inner .item {
  height: 100%;
}
.banner-sec .carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-sec .carousel .item.active img {
  -webkit-transition: transform 5000ms linear 0s;
  -moz-transition: transform 5000ms linear 0s;
  -ms-transition: transform 5000ms linear 0s;
  transition: transform 5000ms linear 0s;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.banner-table-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner-table-cover .banner-table {
  display: table;
  width: 100%;
  height: 100%;
}
.banner-table-cover .banner-cell {
  display: table-cell;
  vertical-align: middle;
}
.banner-table-cover .banner-cont {
  position: relative;
  width: 45%;
}
.banner-table-cover .banner-cont h1 {
  color: #fff;
  font-family: "Abril Display";
  font-size: calc(24px + 56 * ((100vw - 480px) / 885));
  font-weight: bold;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.navbar-main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  margin: 0;
  z-index: 1030;
}
.navbar-main .navbar-toggle {
  margin-top: 15px;
  background-color: #00aae2;
  border: 1px solid #2261b7;
}
.navbar-main .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-main .navbar-toggle:hover {
  background-color: #2261b7;
  border: 1px solid #2261b7;
}
.navbar-main .navbar-toggle:hover .icon-bar {
  background-color: #8cd0e5;
}
.navbar-main .logo-cover {
  float: left;
  width: 150px;
}
.navbar-main .logo {
  width: 125px;
  margin: 10px 0 10px 0;
}
.navbar-main .logo img {
  width: 100%;
}

.navbar-main.navbar-fixed {
  position: fixed;
  top: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-animation: navDown 0.6s ease-in-out 0.2s backwards;
  -moz-animation: navDown 0.6s ease-in-out 0.2s backwards;
  -o-animation: navDown 0.6s ease-in-out 0.2s backwards;
  -ms-animation: navDown 0.6s ease-in-out 0.2s backwards;
  animation: navDown 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes navDown {
  0% {
    -webkit-transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}
@-moz-keyframes navDown {
  0% {
    -moz-transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes navDown {
  0% {
    -o-transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    -o-transform: translateY(0px);
    opacity: 1;
  }
}

.main-nav-cover {
  display: table-cell;
  width: 10000px;
  vertical-align: top;
}
.main-nav-cover .nav-top-sec {
  float: left;
  width: 100%;
  margin: 15px 0 10px;
}
.main-nav-cover .top-lng {
  position: relative;
  float: right;
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0 0 0 15px;
}
.main-nav-cover .top-lng:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1px;
  height: 15px;
  background-color: #00aae2;
}
.main-nav-cover .top-lng li a {
  color: #006fd2;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}
.main-nav-cover .top-social {
  float: right;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav-cover .top-social li {
  float: left;
  margin: 0 0 0 15px;
}
.main-nav-cover .top-social li a {
  display: block;
  color: #006fd2;
  font-size: 20px;
  font-weight: 500;
  width: 32px;
  height: 32px;
  line-height: 32px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
}
.main-nav-cover .top-social li a:hover {
  color: #27268a;
  -webkit-animation: social-btn-pulse 1s infinite;
  -moz-animation: social-btn-pulse 1s infinite;
  -ms-animation: social-btn-pulse 1s infinite;
  animation: social-btn-pulse 1s infinite;
}
@-webkit-keyframes social-btn-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 170, 226, 0.9);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 170, 226, 0);
  }
}

@-moz-keyframes social-btn-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 170, 226, 0.9);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 170, 226, 0);
  }
}

@keyframes social-btn-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 170, 226, 0.9);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 170, 226, 0);
  }
}
.main-nav-cover .nav-btm-sec {
  float: left;
  width: 100%;
}
.navbar-main .main-nav li a {
  position: relative;
  color: #006fd2;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar-main .main-nav li a::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: 0 0 transparent;
  font-size: 20px;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  -moz-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  transform: translateX(-20%);
  pointer-events: none;
}

.navbar-main .main-nav li a:hover::before,
.navbar-main .main-nav li a:focus::before,
.navbar-main .main-nav li.active a::before {
  color: #00aae2;
  text-shadow: 10px 0 #00aae2, -10px 0 #00aae2;
}
.navbar-main .main-nav li a:hover {
  color: #27268a;
}
.navbar-main .main-nav li.active a,
.navbar-main .main-nav li.active a:hover {
  background-color: transparent;
}

.navbar-main .main-nav .open > a,
.navbar-main .main-nav .open > a:hover,
.navbar-main .main-nav .open > a:focus {
  color: #006fd2;
  background-color: transparent;
}

.main-nav .dropdown-menu {
  margin: 0;
  padding: 0;
  min-width: 350px !important;
  border-radius: 0 0 6px 6px;
}
.main-nav .dropdown-menu li + li {
  border-top: solid 1px #00b5f0;
}
.main-nav .dropdown-menu li a {
  display: block;
  color: #fff;
  padding: 10px 10px 10px 15px;
  background-color: #00aae2;
  white-space: normal;
}
.main-nav .dropdown-menu li a:hover {
  color: #fff;
  padding: 10px 10px 10px 15px;
  background-color: #006fd2;
}
.main-nav .dropdown-menu li a:hover::before,
.main-nav .dropdown-menu li a:focus::before,
.main-nav .dropdown-menu li.active a::before {
  display: none;
}

.ban-cont-sec {
  position: relative;
  height: 100vh;
}
.ban-cont-sec .banner-box-wrapper {
  position: relative;
  width: 100%;
}
.banner-box-wrapper .banner-box-cover {
  position: relative;
  float: right;
  width: 700px;
  height: 525px;
  margin-top: 100px;
}

.banner-box-cover ul li {
  position: absolute;
}
.banner-box-cover ul li:nth-child(1) {
  right: 404px;
  top: 122px;
}
.banner-box-cover ul li:nth-child(2) {
  right: 202px;
  top: 0;
}
.banner-box-cover ul li:nth-child(3) {
  right: 202px;
  top: 246px;
}
.banner-box-cover ul li:nth-child(4) {
  right: 0;
  top: 122px;
}
.banner-box-cover .ban-item-box {
  position: relative;
  width: 278px;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.ban-item-box:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  z-index: 5;
}
.ban-item-box svg {
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -ms-transition: 0.25s;
  transition: 0.25s;
}
.ban-item-box:hover svg {
  -webkit-filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 0px 9px rgba(0, 0, 0, 0.3));
}
.ban-item-box .ban-item-hd {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.75s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.75s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.75s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.75s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.ban-item-box:hover .ban-item-hd {
  letter-spacing: 4px;
}

.abt-shape-sec {
  position: relative;
}
.abt-shape-cover {
  width: 100%;
}
.abt-shape-cover img {
  width: 100%;
}

.about-sec {
  position: relative;
  padding: 0 0 75px;
  background-image: url(../images/abt-bg.jpg);
}
.services-carousel {
  width: 100%;
  margin: -125px 0 75px;
}
.services-carousel .ser-item-cover {
  position: relative;
  width: 100%;
  min-height: 290px;
  padding: 25px 25px 10px;
  border-radius: 20px;
  overflow: hidden;
}
.services-carousel .owl-carousel .owl-item:nth-child(odd) .ser-item-cover {
  margin-top: 30px;
}
.services-carousel .owl-carousel .owl-item .ser-item-cover {
  -webkit-transform: scale(0.65);
  -moz-transform: scale(0.65);
  -ms-transform: scale(0.65);
  transform: scale(0.65);
  -webkit-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.services-carousel .owl-carousel .owl-item.active .ser-item-cover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.services-carousel .owl-carousel .owl-item .ser-item-cover .ser-icon {
  -webkit-transform: translateY(-50px); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-50px); /* IE 9 */
  transform: translateY(-50px); /* Firefox 16+, IE 10+, Opera */
}
.services-carousel .owl-carousel .owl-item .ser-item-cover .ser-cont {
  -webkit-transform: translateY(50px); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(50px); /* IE 9 */
  transform: translateY(50px); /* Firefox 16+, IE 10+, Opera */
}
.services-carousel .owl-carousel .owl-item .ser-item-cover .ser-icon,
.services-carousel .owl-carousel .owl-item .ser-item-cover .ser-cont {
  opacity: 0;
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.services-carousel .owl-carousel .owl-item.active .ser-item-cover .ser-icon,
.services-carousel .owl-carousel .owl-item.active .ser-item-cover .ser-cont {
  opacity: 1;
  -webkit-transform: translateY(0); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(0); /* IE 9 */
  transform: translateY(0); /* Firefox 16+, IE 10+, Opera */
}
.ser-item-cover .ser-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ser-item-cover .ser-bg img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.ser-item-cover:hover .ser-bg img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.ser-item-cover .ser-icon {
  position: relative;
  width: 110px;
  margin-bottom: 30px;
}
.ser-item-cover .ser-icon img {
  width: 100%;
}
.ser-item-cover .ser-cont {
  position: relative;
}
.ser-item-cover .ser-cont h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}
.about-wrapper {
  position: relative;
  width: 100%;
}
.about-wrapper .about-cont {
  width: 50%;
  padding: 100px 225px 100px 60px;
  background-color: #19afe1;
  border-radius: 25px 0 0 25px;
}
.about-cont h2 {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.about-cont h2 span {
  font-weight: normal;
}
.about-cont p {
  color: #fff;
  line-height: 26px;
}
.about-cont .btn-more {
  color: #fff;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 6px;
  border: solid 1px #36c5f5;
}
.about-cont .btn-more:hover {
  letter-spacing: 2px;
  border: solid 1px #fff;
}
.about-cont .btn-more:hover {
  color: #fff;
}
.about-wrapper .about-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 850px;
  height: 310px;
  margin: auto 0;
}
.about-shape img {
  width: 100%;
}

.category-sec {
  position: relative;
  padding: 75px 0 75px;
  background-image: url(../images/cate-bg.jpg);
}
.category-sec .cat-hd {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  overflow: hidden;
}
.category-sec .cat-hd h2 {
  color: #0a60b2;
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}
.category-sec .cat-hd h2 span {
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.category-sec .cat-hd h2 span:before,
.category-sec .cat-hd h2 span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1000px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.category-sec .cat-hd h2 span:before {
  left: 100%;
}
.category-sec .cat-hd h2 span:after {
  right: 100%;
}
.cat-tb-cover {
  float: left;
  width: 100%;
  background-image: url(../images/category-bg.jpg);
  background-position: top center;
  background-attachment: fixed;
  border-radius: 25px;
  overflow: hidden;
}
.cat-tb-cover .cat-tb-nav {
  position: relative;
  float: left;
  width: 35%;
}
.cat-tb-cover .cat-tb-nav:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: #006fd2;
}
.cat-tb-cover .cat-tb-nav ul {
  position: relative;
}
.cat-tb-cover .cat-tb-nav ul li {
  display: block;
}
.cat-tb-cover .cat-tb-nav ul li a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  padding: 40px 20px 40px 40px;
  background-color: #006fd2;
  border-radius: 20px;
  text-decoration: none;
  -webkit-box-shadow: 0px -5px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px -5px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0px -5px 5px 1px rgba(0, 0, 0, 0.05);
}
.cat-tb-cover .cat-tb-nav ul li a:hover,
.cat-tb-cover .cat-tb-nav ul li.active a {
  color: #fff;
  background-color: #19aee0;
}
.cat-tb-cover .cat-tb-cont {
  float: left;
  width: 65%;
}
.cat-tb-cont .cat-tb-txt {
  width: 100%;
  padding: 60px 60px 20px;
}
.cat-tb-txt ul li + li {
  margin-top: 50px;
}
.cat-tb-txt ul li a {
  color: #b3dbff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.news-sec {
  position: relative;
  padding: 75px 0 75px;
  background-image: url(../images/news-bg.jpg);
  background-position: top center;
  background-size: 100%;
  background-attachment: fixed;
}
.news-sec .news-hd {
  width: 100%;
  margin: 0 0 40px;
  text-align: center;
}
.news-sec .news-hd h2 {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}
.news-sec .news-dots {
  position: relative;
  width: 100%;
  color: #fff;
  padding-top: 50px;
  margin: 0 0 30px;
  text-align: center;
  overflow: hidden;
}
.news-sec .news-dots ul {
  position: relative;
}
.news-sec .news-dots ul:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2000px;
  height: 1px;
  background-color: #fff;
  margin: auto 0;
}
.news-sec .news-dots ul li {
  position: relative;
  display: inline-block;
  width: 30px;
  margin: 0 4%;
  cursor: pointer;
}

.news-dots ul li .round {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #2261b7;
  border: solid 2px #fff;
  border-radius: 50%;
}
.news-dots ul li .date {
  position: absolute;
  left: -35px;
  right: 0;
  top: -30px;
  width: 100px;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}
.news-dots ul li.active .date {
  color: #4dcffa;
  font-size: 18px;
}
.news-carousel {
  position: relative;
  width: 100%;
}
.news-carousel .news-item-cover {
  width: 100%;
  min-height: 275px;
  color: #fff;
  padding: 30px 30px 20px;
  background-color: #2261b7;
  border-radius: 25px;
}
.news-carousel .owl-carousel .owl-item .news-item-cover {
  -webkit-transform: scale(0.65);
  -moz-transform: scale(0.65);
  -ms-transform: scale(0.65);
  transform: scale(0.65);
  -webkit-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 1s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.news-carousel .owl-carousel .owl-item.active .news-item-cover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.news-carousel .owl-carousel .owl-item .news-item-cover .news-icon,
.news-carousel .owl-carousel .owl-item .news-item-cover p {
  opacity: 0;
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.news-carousel .owl-carousel .owl-item .news-item-cover .news-icon {
  -webkit-transform: translateY(-50px); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-50px); /* IE 9 */
  transform: translateY(-50px); /* Firefox 16+, IE 10+, Opera */
}
.news-carousel .owl-carousel .owl-item .news-item-cover p {
  -webkit-transform: translateY(50px); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(50px); /* IE 9 */
  transform: translateY(50px); /* Firefox 16+, IE 10+, Opera */
}
.news-carousel .owl-carousel .owl-item.active .news-item-cover .news-icon,
.news-carousel .owl-carousel .owl-item.active .news-item-cover p {
  opacity: 1;
  -webkit-transform: translateY(0); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(0); /* IE 9 */
  transform: translateY(0); /* Firefox 16+, IE 10+, Opera */
}
.news-carousel .owl-carousel .owl-item:nth-child(odd) .news-item-cover {
  background-color: #19afe1;
}
.news-item-cover .news-icon {
  width: 40px;
  margin-bottom: 20px;
}
.news-item-cover .news-icon img {
  width: 100%;
}
.news-item-cover .date {
  color: #82d9f6;
  margin: 0 0 15px 0;
}
.news-item-cover p {
  color: #fff;
  line-height: 26px;
}

.client-sec {
  position: relative;
  padding: 75px 0 75px;
  background-image: url(../images/content-bg.jpg);
}

.client-carousel {
  width: 100%;
}
.client-carousel .client-item {
  width: 225px;
  margin: 0 auto;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.client-carousel .client-item:hover {
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
.client-carousel .client-item img {
  width: 100%;
}

.footer-sec {
  position: relative;
  padding: 75px 0 100px;
  background-image: url(../images/footer-bg.jpg);
  background-position: top center;
  background-size: 100%;
  background-attachment: fixed;
}
.footer-sec .ft-head {
  width: 100%;
  padding: 0 0 25px 25px;
  margin-bottom: 25px;
  border-bottom: solid 1px #fff;
}
.footer-sec .ft-head h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}
.footer-sec .col-ft-link {
  padding-left: 0;
  padding-right: 0;
}
.footer-sec .ft-links {
  width: 100%;
  margin-bottom: 20px;
}
.ft-links ul {
  padding: 0 0 0 25px;
}
.ft-links ul li {
  margin-bottom: 10px;
}
.ft-links ul li a {
  position: relative;
  display: block;
  color: #fff;
  padding: 5px 0;
  text-decoration: none;
}
.ft-links ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background-color: #33ccff;
  -webkit-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -ms-transition: 0.25s linear;
  transition: 0.25s linear;
}
.ft-links ul li a:hover:after {
  width: 100%;
}
.ft-contact {
  width: 100%;
}
.ft-contact p {
  color: #fff;
  line-height: 26px;
  padding: 0 0 0 25px;
}
.ft-social {
  width: 100%;
}
.ft-social ul {
  padding: 0 0 0 25px;
}
.ft-social ul li {
  display: inline-block;
  margin: 0 5px;
}
.ft-social ul li a {
  display: block;
  color: #006fd2;
  font-size: 16px;
  font-weight: 500;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
}
.ft-social ul li a:hover {
  color: #27268a;
  -webkit-animation: social-btn-pulse 1s infinite;
  -moz-animation: social-btn-pulse 1s infinite;
  -ms-animation: social-btn-pulse 1s infinite;
  animation: social-btn-pulse 1s infinite;
}
.copy-sec {
  position: relative;
  padding: 25px 0 25px;
  background-color: #0f6cb6;
}
.copy-sec .copy-cover {
  width: 100%;
  color: #fff;
}
.copy-sec .copy-cover p {
  color: #fff;
  margin: 0;
}
.copy-sec .ft-logo {
  position: absolute;
  right: 0;
  bottom: -25px;
  width: 135px;
}
.copy-sec .ft-logo img {
  width: 100%;
}

.ins-banner .carousel .item img {
  width: 100%;
}

.content-sec {
  position: relative;
  padding: 0 0 75px;
  background-image: url(../images/cont-bg.jpg);
}
.bg-grade {
  background-color: rgba(149, 185, 233, 0);
  background-color: -moz-linear-gradient(
    top,
    rgba(149, 185, 233, 0) 75%,
    rgba(149, 185, 233, 0.25) 100%
  );
  background-color: -webkit-gradient(
    left top,
    left bottom,
    color-stop(75%, rgba(149, 185, 233, 0)),
    color-stop(100%, rgba(149, 185, 233, 0.25))
  );
  background-color: -webkit-linear-gradient(
    top,
    rgba(149, 185, 233, 0) 75%,
    rgba(149, 185, 233, 0.25) 100%
  );
  background-color: -o-linear-gradient(
    top,
    rgba(149, 185, 233, 0) 75%,
    rgba(149, 185, 233, 0.25) 100%
  );
  background-color: -ms-linear-gradient(
    top,
    rgba(149, 185, 233, 0) 75%,
    rgba(149, 185, 233, 0.25) 100%
  );
  background-color: linear-gradient(
    to bottom,
    rgba(149, 185, 233, 0) 75%,
    rgba(149, 185, 233, 0.25) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#95b9e9', endColorstr='#95b9e9', GradientType=0 );
}
.content-sec .section-hd {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.content-sec .section-hd h2 {
  color: #0a60b2;
  font-size: 42px;
  font-weight: bold;
  margin: 0;
}
.content-sec .section-hd h2 span {
  font-weight: 300;
}
.content-sec .cont-top-shape {
  position: absolute;
  left: 0;
  bottom: 99%;
  width: 100%;
}
.content-sec .cont-top-shape img {
  width: 100%;
}
.content-sec .cont-left-shape {
  position: absolute;
  left: 0;
  top: 50px;
  width: 650px;
}
.content-sec .cont-left-shape img {
  width: 100%;
}
.content-sec .cont-right-shape {
  position: absolute;
  right: 0;
  top: 300px;
  width: 650px;
}
.content-sec .cont-left-shape img {
  width: 100%;
}
.section-hd .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
  text-align: left;
}
.section-hd .breadcrumb li a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
}
.section-hd .breadcrumb li {
  color: #404040;
}
.founder-tb-cover {
  float: left;
  width: 100%;
}
.founder-tb-cover .founder-tb-nav {
  float: left;
  width: 23%;
  border-radius: 25px 0 0 25px;
  overflow: hidden;
}
.founder-tb-nav ul li {
  position: relative;
  margin-bottom: 1px;
}
.founder-tb-nav ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 25px 20px 25px 35px;
  background-color: #19afe1;
  text-decoration: none;
}
.founder-tb-nav ul li a:hover,
.founder-tb-nav ul li.active a {
  background-color: #0a60b2;
}
.founder-tb-cover .founder-tb-cont {
  position: relative;
  float: left;
  width: 77%;
  padding: 35px 35px 125px;
  background-color: #fff;
}
.founder-tb-cont .founder-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.founder-tb-cont .founder-shape img {
  width: 100%;
}

.founder-cover {
  position: relative;
  float: left;
  width: 100%;
}
.founder-cover .sec-hd {
  color: #0a60b2;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.founder-cover .sub-hd {
  color: #0a60b2;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.founder-cover .lt-founder-item {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
.lt-founder-item .lt-founder-img {
  position: relative;
  float: left;
  width: 50%;
  overflow: hidden;
}
.lt-founder-item .lt-founder-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: solid 1px #0a60b2;
  opacity: 0;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: 1;
}
.lt-founder-item:hover .lt-founder-img:before {
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  opacity: 1;
}
.lt-founder-img img {
  width: 100%;
}
.lt-founder-img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.lt-founder-item:hover .lt-founder-img img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.lt-founder-item .lt-founder-cont {
  float: left;
  width: 50%;
  padding: 20px 20px 10px 25px;
}
.lt-founder-cont h3 {
  color: #0a60b2;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px 0;
}
.lt-founder-cont p {
  color: #222;
  line-height: 26px;
}
.lt-founder-cont .btn-more {
  position: relative;
  color: #222;
  padding: 0 0 5px 0;
}
.lt-founder-cont .btn-more {
  color: #222;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 6px;
  border: solid 1px #36c5f5;
}
.lt-founder-cont .btn-more:hover {
  letter-spacing: 2px;
  border: solid 1px #fff;
}
.lt-founder-cont .btn-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background-color: #33ccff;
  -webkit-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -ms-transition: 0.25s linear;
  transition: 0.25s linear;
}
.lt-founder-cont .btn-more:hover:after {
  width: 100%;
}

.founder-item {
  width: 100%;
  margin: 0 0 25px 0;
}
.founder-item .founder-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.founder-item .founder-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: solid 1px #0a60b2;
  opacity: 0;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: 1;
}
.founder-item:hover .founder-img:before {
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
  opacity: 1;
}
.founder-item .founder-img img {
  width: 100%;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.founder-item:hover .founder-img img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.founder-img .founder-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 0 15px 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(100%, rgba(0, 0, 0, 0.25))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.founder-img .founder-name h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 5px 0;
}
.founder-img .founder-name p {
  font-size: 13px;
  margin: 0;
}
.founder-item .founder-cont {
  width: 100%;
  min-height: 100px;
  padding: 10px 10px;
}
.founder-cont p {
  color: #222;
  line-height: 26px;
}

.founder-cont .btn-more {
  position: relative;
  color: #222;
  padding: 0 0 5px 0;
}
.founder-cont .btn-more {
  color: #222;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 6px;
  border: solid 1px #36c5f5;
}
.founder-cont .btn-more:hover {
  letter-spacing: 2px;
  border: solid 1px #fff;
}
.founder-cont .btn-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background-color: #33ccff;
  -webkit-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -ms-transition: 0.25s linear;
  transition: 0.25s linear;
}
.founder-cont .btn-more:hover:after {
  width: 100%;
}

.manage-cover {
  width: 100%;
}
.manage-cover .sec-hd {
  color: #3a54a4;
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.manage-cover .manage-item {
  position: relative;
  width: 100%;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: solid 1px #e1e1e1;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  -o-transition: 0.25s;
  -ms-transition: 0.25s;
  transition: 0.25s;
}
.manage-cover .manage-item:hover {
  background-color: #f3f3f3;
}
.manage-cover .manage-item:last-child {
  padding: 0;
  margin: 0;
  border-bottom: solid 1px transparent;
}
.manage-item .media-left {
  padding: 0;
}
.manage-item .manage-img {
  width: 150px;
  margin: 0 25px 10px 0;
}
.manage-item .manage-img img {
  width: 100%;
}
.manage-item .manage-cont {
  width: 100%;
  color: #222;
}
.manage-item .manage-cont h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
}
.manage-item .manage-cont h3 span {
  font-size: 16px;
}
.manage-item .manage-cont p {
  line-height: 22px;
}

.manage-item .btn-more {
  position: relative;
  color: #222;
  padding: 0 0 5px 0;
}
.manage-item .btn-more {
  color: #222;
  padding: 10px 30px;
  background-color: transparent;
  border-radius: 6px;
  border: solid 1px #36c5f5;
}
.manage-item .btn-more:hover {
  letter-spacing: 2px;
  border: solid 1px #fff;
}
.manage-item .btn-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  background-color: #33ccff;
  -webkit-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -ms-transition: 0.25s linear;
  transition: 0.25s linear;
}
.manage-item .btn-more:hover:after {
  width: 100%;
}

.management-team {
  position: relative;
  max-width: 325px;
  background-color: #fff;
  margin: 0 auto 26px;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  overflow: hidden;
}
.management-team figure {
  margin: 0;
  overflow: hidden;
}
.management-team figure img {
  width: 100%;
  transition: 0.25s;
}
.management-body {
  min-height: 205px;
  padding: 36px 26px 20px;
}
.management-body h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.management-body h3 span {
  font-size: 60%;
}
.management-body .company {
  color: #5a5a5a;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.management-body .date {
  color: #5a5a5a;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.management-team .management-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem;
  transform: translateY(100%);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.management-team .management-nav .btn-more {
  width: 100%;
  color: #ffffff;
  padding: 10px 16px;
  background-color: #36c5f5;
  border-radius: 50px;
}
.management-team:hover figure img {
  transform: scale(1.1);
}
.management-team:hover .management-nav {
  transform: translateY(0);
}

.founder-modal .modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 0;
}
.founder-modal .modal-body {
  padding: 0;
}
.founder-modal .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #0a60b2;
  font-size: 35px;
  width: 35px;
  height: 35px;
  opacity: 1;
  border: 0;
  background: none;
  padding: 0;
  z-index: 10;
}
.founder-modal-cover {
  position: relative;
  padding: 45px 25px 25px;
}
.founder-modal-cover h2 {
  color: #0a60b2;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
}
.founder-modal-wrapper p {
  color: #757575;
  font-size: 12px;
  margin: 0 0 15px 0;
  line-height: 24px;
}

.vision-cover {
  width: 100%;
}
.vision-cover .sec-hd {
  color: #3a54a4;
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.vision-cover .vision-item {
  position: relative;
  width: 100%;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
  border-bottom: solid 1px #e1e1e1;
}
.vision-cover .vision-item:last-child {
  padding: 0;
  margin: 0;
  border-bottom: solid 1px transparent;
}
.vision-item .sec-hd {
  color: #0a60b2;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
.vision-item .media-left {
  padding: 0;
}
.vision-item .vision-img {
  width: 290px;
  margin: 0 25px 10px 0;
}
.vision-item .vision-img img {
  width: 100%;
}
.vision-item .vision-cont {
  width: 100%;
  color: #222;
}
.vision-item .vision-cont h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
}
.vision-item .vision-cont h3 span {
  font-size: 16px;
}
.vision-item .vision-cont p {
  line-height: 22px;
}

.isn-abt-wrapper {
  position: relative;
  float: left;
  width: 100%;
  background-color: #fff;
}
.isn-abt-wrapper .ins-abt-cover {
  position: relative;
  float: left;
  width: 40%;
  height: 100%;
}
.isn-abt-wrapper .ins-found-nav {
  float: left;
  width: 60%;
}
.ins-abt-cover .ins-abt-cont {
  position: relative;
  width: 100%;
  color: #464646;
  padding: 35px 35px 56px;
  z-index: 1;
}
.ins-abt-cover .ins-abt-cont h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 20px 0;
}
.ins-abt-cover .ins-abt-cont p {
  line-height: 26px;
  margin: 0 0 15px 0;
}
.ins-abt-cover .ins-abt-img {
  position: relative;
  width: 100%;
}
.ins-abt-cover .ins-abt-img img {
  width: 100%;
}
.ins-found-nav .ins-fod-item {
  position: relative;
  width: 100%;
}
.ins-found-nav .ins-fod-item + .ins-fod-item {
  margin-top: 2px;
}
.ins-found-nav .ins-fod-item a {
  text-decoration: none;
}
.ins-fod-item .ins-fod-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ins-fod-item .ins-fod-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  transition: 0.2s linear;
}
.ins-fod-item:hover .ins-fod-img:before {
  opacity: 1;
}
.ins-fod-item .ins-fod-img img {
  width: 100%;
  object-fit: cover;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.ins-fod-item:hover .ins-fod-img img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.ins-fod-item .right-icon {
  position: absolute;
  right: 35px;
  top: 35px;
  width: 32px;
  height: 32px;
}
.ins-fod-item:hover .right-icon {
  -moz-animation: rightBounce 2s infinite;
  -webkit-animation: rightBounce 2s infinite;
  animation: rightBounce 2s infinite;
}
@-webkit-keyframes rightBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-20px);
  }
  60% {
    transform: translateX(-5px);
  }
}
@-moz-keyframes rightBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-20px);
  }
  60% {
    transform: translateX(-5px);
  }
}
@keyframes rightBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-20px);
  }
  60% {
    transform: translateX(-5px);
  }
}
.ins-fod-item .right-icon img {
  width: 100%;
}
.ins-fod-item .ins-fod-cont {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 35px 35px;
}
.ins-fod-cont ul li {
  display: inline-block;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  vertical-align: middle;
}
.ins-fod-cont ul li + li {
  margin-left: 25px;
}
.ins-fod-cont ul li img {
  width: 90px;
}
.pro-dtl-wrapper {
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
}
.products-carousel {
  position: relative;
  width: 100%;
  padding: 0 50px;
  margin: 25px 0 25px;
}
.products-carousel .owl-carousel .owl-stage-outer {
  padding: 20px 0;
}
.products-carousel .pro-item-cover {
  position: relative;
  width: 100%;
  max-width: 200px;
  border: solid 1px #d4dce3;
  border-radius: 15px;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  transition: 0.2s linear;
}
.products-carousel .pro-item-cover:hover {
  border: solid 1px #10b2ef;
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}
.pro-item-cover a {
  text-decoration: none;
}
.pro-item-cover .pro-item-img {
  width: 150px;
  height: 190px;
  margin: 25px auto 0;
}
.pro-item-cover .pro-item-img img {
  width: 100%;
}
.pro-item-cover .pro-item-dtl {
  width: 100%;
  color: #464646;
  font-size: 16px;
  min-height: 70px;
  padding: 10px 10px 5px;
  border-top: solid 1px #d4dce3;
  text-align: center;
}
.pro-item-cover .pro-item-dtl p {
  color: #464646;
  margin: 0;
}

.pro-item-desc {
  width: 100%;
  margin-bottom: 30px;
}
.pro-item-desc .pro-item-hd {
  color: #0a60b2;
  padding: 15px 20px;
  background-color: #d4dfe9;
  border-radius: 6px;
  margin-bottom: 25px;
}
.pro-item-desc .pro-item-hd h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
}
.pro-item-desc .pro-cont-cover {
  width: 100%;
  padding: 0 35px;
}
.pro-cont-cover .pro-cont-img {
  float: left;
  width: 275px;
  margin-right: 25px;
}
.pro-cont-cover .pro-cont-img img {
  width: 100%;
}
.pro-cont-cover .pro-cont-dtl {
  float: left;
  width: calc(100% - 300px);
  color: #464646;
}
.pro-cont-dtl h3 {
  color: #0a60b2;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.pro-cont-dtl p {
  line-height: 26px;
}
.pro-cont-dtl .sub-head {
  color: #0a60b2;
  padding: 15px 20px;
  background-color: #eff4f8;
  border-radius: 6px;
  margin-bottom: 25px;
}
.pro-cont-dtl .pro-cont-list {
  width: 100%;
}
.pro-cont-list ul li {
  position: relative;
  padding: 0 0 0 15px;
  margin-bottom: 8px;
}
.pro-cont-list ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0a60b2;
}

.partner-carousel {
  width: 100%;
  margin: 30px 0 20px;
}
.partner-carousel .partner-hd {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  overflow: hidden;
}
.partner-carousel .partner-hd h2 {
  color: #0a60b2;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
.partner-carousel .partner-hd h2 span {
  position: relative;
  display: inline-block;
  padding: 0 15px;
}

.partner-carousel .partner-hd h2 span:before,
.partner-carousel .partner-hd h2 span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1000px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
.partner-carousel .partner-hd h2 span:before {
  left: 100%;
}
.partner-carousel .partner-hd h2 span:after {
  right: 100%;
}
.partner-carousel .partner-item {
  width: 225px;
  margin: 0 auto;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.partner-carousel .partner-item:hover {
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
.partner-carousel .partner-item img {
  width: 100%;
}

.contact-address {
  position: relative;
  width: 100%;
  padding: 75px 75px 50px;
  margin: 0 0 20px 0;
  background-color: #fff;
  border-radius: 25px 0 0 25px;
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.05);
}
.contact-address h3 {
  color: #94d4e9;
  font-size: 40px;
  margin: 0 0 15px 0;
}
.contact-address p {
  color: #636363;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 30px 0;
}
.contact-address:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 350px;
  height: 100%;
  background-color: #fff;
  border-radius: 0 25px 25px 0;
}
.location-cover {
  width: 100%;
  border: solid 1px #00aeef;
  border-radius: 25px;
  margin: 100px 0 0 0;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(148, 212, 233, 0.5);
  -moz-box-shadow: 0px 0px 50px 0px rgba(148, 212, 233, 0.5);
  box-shadow: 0px 0px 50px 0px rgba(148, 212, 233, 0.5);
  overflow: hidden;
}
.location-cover iframe {
  width: 100%;
  height: 650px;
  border: 0;
}

.sec-com-cover {
  position: relative;
  width: 100%;
  min-height: 300px;
  padding: 40px 40px 20px;
  margin: 0 0 30px 0;
  background-color: #0b619a;
  border: solid 1px #d2ebff;
  -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.sec-com-cover:hover {
  -webkit-transform: translateY(-10px); /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-10px); /* IE 9 */
  transform: translateY(-10px); /* Firefox 16+, IE 10+, Opera */
  -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
}
.sec-com-cover .sec-com-cont {
  width: 100%;
  min-height: 200px;
  color: #fff;
  margin-bottom: 20px;
}
.sec-com-cover .sec-com-cont h3 {
  position: relative;
  color: #fff;
  font-size: 20px;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
}
.sec-com-cover .sec-com-cont h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  background-color: #fff;
}
.sec-com-cover .sec-com-cont p {
  line-height: 26px;
}
.sec-com-cover .sec-com-list {
  width: 100%;
  min-height: 150px;
}
.sec-com-list ul li {
  display: inline-block;
  width: 46%;
  padding: 20px 0 0 0;
  vertical-align: top;
}
.sec-com-list ul li {
  border-top: solid 1px #cef3ff;
}
.sec-com-list ul li:nth-child(even) {
  border-top: solid 1px #8ad6ef;
}
.sec-com-list .sec-con-cover {
  width: 100%;
}
.sec-con-cover {
  position: relative;
  color: #fff;
  padding: 0 0 0 50px;
}
.sec-con-cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}
.sec-con-cover h3 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 5px 0;
}

.sec-con-cover a {
  color: #fff;
}

.mse-tb-cover {
  float: left;
  width: 100%;
  padding: 25px;
}
.mse-tb-cover .mse-tb-nav {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.mse-tb-cover .mse-tb-nav ul li {
  float: left;
}
.mse-tb-cover .mse-tb-nav ul li + li {
  margin-left: 5px;
}
.mse-tb-cover .mse-tb-nav ul li a {
  display: block;
  color: #0a60b2;
  font-size: 16px;
  padding: 15px 40px;
  background-color: #bee6f6;
  border-bottom: solid 5px #0a60b2;
  text-align: center;
  text-decoration: none;
}
.mse-tb-cover .mse-tb-nav ul li.active a,
.mse-tb-cover .mse-tb-nav ul li a:hover {
  color: #fff;
  background-color: #0a60b2;
}
.mse-tb-cover .mse-tb-cont {
  float: left;
  width: 100%;
}
.mse-tb-cont .mse-tb-txt {
  width: 100%;
}
.mse-tb-cont .mse-tb-txt img {
  float: left;
  max-width: 100%;
  margin: 0 20px 15px 0;
}
.mse-tb-cont .mse-tb-txt p {
  color: #222;
  line-height: 26px;
}
.mse-tb-cont .mse-tb-txt ul {
  margin-bottom: 15px;
}
.mse-tb-cont .mse-tb-txt ul li {
  position: relative;
  padding: 0;
  margin-bottom: 8px;
}
.mse-tb-cont .mse-tb-txt ul li:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 15px 0 0;
  border-radius: 50%;
  background-color: #0a60b2;
}
.bein-tb-cover {
  position: relative;
}
.bein-tb-cover .bein-tb-nav {
  width: 100%;
}
.bein-tb-cover .bein-tb-nav ul li {
  display: inline-block;
}
.bein-tb-cover .bein-tb-nav ul li a {
  position: relative;
  display: block;
  background-image: url(../images/bein-nav-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bein-tb-nav ul li a {
  color: #fff;
  width: 435px;
  height: 135px;
  font-size: 16px;
  padding: 20px 15px 15px;
  text-decoration: none;
}
.bein-tb-nav ul li a:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: solid 1px rgba(255, 255, 255, 0.2);
}
.bein-tb-nav ul li a span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  z-index: 1;
}
.bein-tb-cover .bein-tb-nav ul li a:hover,
.bein-tb-cover .bein-tb-nav ul li.active a {
  background-image: url(../images/bein-nav-hover-bg.jpg);
}
.bein-tb-cover .bein-tb-nav ul li.active a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent;
  border-top: solid 15px #18b0e2;
}
.bein-tb-nav .nav-label {
  font-size: 20px;
  padding-left: 20px;
}
.bein-tb-nav .nav-img img {
  width: 100%;
}
.bein-tb-nav .nav-hand {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 60px;
}
.bein-tb-nav .nav-hand img {
  width: 100%;
}

.bein-tb-cover .bein-tb-content {
  position: relative;
  padding: 25px;
  border: solid 3px #18b0e2;
}
.pac-rec-cover {
  position: relative;
  padding: 50px 0 0 0;
}
.receiver-panel .panel-heading {
  color: #0a60b2;
  min-height: 60px;
  font-size: 20px;
  padding: 15px 35px;
  background-color: #c8ecfa;
  border-color: #a3d5e9;
  border-radius: 0;
}
.receiver-panel .panel {
  background-color: #d8f2fc;
  border: 1px solid #a3d5e9;
  border-radius: 0;
}
.receiver-panel .receiver-img {
  margin-bottom: 20px;
}
.receiver-panel .receiver-img img {
  width: 100%;
}
.receiver-panel ul li {
  position: relative;
  color: #0a60b2;
  padding: 0 0 0 20px;
}
.receiver-panel ul li + li {
  margin-top: 8px;
}
.receiver-panel ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0355a4;
}
.package-panel .panel {
  background-color: #d8f2fc;
  border: 1px solid #a3d5e9;
  border-radius: 0;
}
.package-panel .panel-heading {
  position: relative;
  color: #0a60b2;
  font-size: 20px;
  padding: 0;
  background-color: #c8ecfa;
  border-color: #a3d5e9;
  border-radius: 0;
}
.package-panel .panel-heading:before,
.package-panel .panel-heading:after {
  display: table;
  content: " ";
}
.package-panel .panel-heading:after {
  clear: both;
}
.package-panel .panel-heading .panel-hd {
  float: left;
  min-height: 60px;
  padding: 15px 35px 10px;
}
.package-panel .panel-heading .panel-subhd {
  float: right;
  min-height: 60px;
  font-size: 14px;
  padding: 20px 35px 10px;
  border-left: solid 1px #a3d5e9;
}
.package-panel .pkg-img img {
  width: 100%;
}

.package-panel .magnify,
.package-panel .magnify > .magnify-lens,
.package-panel .magnify-mobile,
.package-panel .lens-mobile {
  /* Reset */
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}
.package-panel .magnify {
  position: relative;
  width: auto;
  height: auto;
  box-shadow: none;
  display: inline-block;
  z-index: inherit;
}
.package-panel .magnify > .magnify-lens {
  /* Magnifying lens */
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}
.package-panel .magnify > .magnify-lens.loading {
  background: #333 !important;
  opacity: 0.8;
}
.package-panel .magnify > .magnify-lens.loading:after {
  /* Loading text */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  content: "Loading...";
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

.subscripbe-panel {
  position: relative;
  padding: 60px 75px;
}
.subscripbe-panel .subscribe-form {
  max-width: 800px;
  margin-bottom: 25px;
}
.subscripbe-panel .subscribe-form label {
  color: #0a60b2;
  font-size: 16px;
}
.subscripbe-panel .subscribe-form .form-control {
  min-height: 45px;
  border: solid 1px #a2d1e1;
}
.subscripbe-panel .subscribe-form label {
  padding: 0 15px;
}
.subscripbe-panel .subscribe-form .checkbox {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
.subscripbe-panel .subscribe-form .pkg-select {
  position: relative;
}
.pkg-select .pkg-popup {
  position: absolute;
  top: 25px;
  left: 100%;
  width: 300px;
  background: #ffffff;
  border: 1px solid #99d6eb;
  z-index: 5;
}

.pkg-select .pkg-popup:after,
.pkg-select .pkg-popup:before {
  right: 100%;
  top: 25px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.pkg-select .pkg-popup:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #c8ecfa;
  border-width: 11px;
  margin-top: -11px;
}
.pkg-select .pkg-popup:before {
  border-color: rgba(153, 214, 235, 0);
  border-right-color: #99d6eb;
  border-width: 11px;
  margin-top: -12px;
}
.pkg-select .panel {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
}
.pkg-select .panel-heading {
  position: relative;
  color: #0a60b2;
  font-size: 16px;
  padding: 10px 15px;
  background-color: #c8ecfa;
  border: 0;
  border-bottom: solid 1px #a3d5e9;
  border-radius: 0;
}
.pkg-select .panel-heading .pop-close {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 18px;
  cursor: pointer;
}
.pkg-select .panel-heading .pop-close img {
  width: 100%;
}
.pkg-select .pkg-scroll {
  width: 100% !important;
  height: 200px;
  padding-right: 10px;
}
.mCSB_outside + .mCSB_scrollTools {
  right: -10px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 3px;
  background-color: #eeeeee;
  background-color: rgba(238, 238, 238, 1);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #18b0e2;
  background-color: rgba(24, 175, 226, 1);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools
  .mCSB_dragger.mCSB_dragger_onDrag
  .mCSB_dragger_bar {
  background-color: #18b0e2;
  background-color: rgba(24, 175, 226, 1);
}
.mCSB_scrollTools .mCSB_dragger {
  height: 100px !important;
}
.pkg-select .pkg-item img {
  width: 100%;
}
.subscripbe-panel .subscribe-form .checkbox label {
  font-size: 12px;
  padding: 0 0 0 20px;
}
.subscripbe-panel .subscribe-form .btn-submit {
  color: #fff;
  padding: 6px 25px;
  margin-top: 15px;
  background-color: #ff6e0d;
  text-transform: uppercase;
}
.subscripbe-panel .subscribe-form .btn-submit:hover {
  background-color: #ea6105;
}

.sub-msg-cover {
  position: relative;
  padding: 35px 15px 35px 115px;
  margin-bottom: 25px;
  background-color: #dff3fb;
  border: solid 2px #18b0e2;
  border-radius: 12px;
}
.sub-msg-cover .icon {
  position: absolute;
  left: 35px;
  top: 35px;
  width: 40px;
}
.sub-msg-cover .icon img {
  width: 100%;
}
.sub-msg-cover h3 {
  color: #216ab7;
  font-size: 20px;
  margin: 0 0 5px 0;
}
.sub-msg-cover p {
  color: #529cb9;
  font-size: 16px;
  margin: 0 0 2px 0;
}
.txt-orng {
  color: #ff6e0d;
}
.subscripbe-panel .btn-highlights {
  display: block;
  color: #fff;
  padding: 10px 25px;
  margin: 0 auto;
  margin-top: 15px;
  background-color: #18b0e2;
  text-transform: uppercase;
}
.subscripbe-panel .btn-highlights:hover {
  background-color: #0e9ece;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {
  /*.main-nav li:hover .dropdown-menu{
    display: block;
  }*/
  .main-nav li .dropdown-menu {
    top: 110%;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    transition: 0.2s linear;
  }
  .main-nav li:hover .dropdown-menu {
    top: 100%;
  }
  .banner-table-cover .banner-cont h1 {
    font-size: 80px;
  }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
  .banner-box-cover ul li {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -moz-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -ms-transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition: 0.25s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .banner-box-cover.visible ul li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .cat-tb-cover .cat-tb-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(-50%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-50%); /* IE 9 */
    transform: translateX(-50%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .cat-tb-cover.visible .cat-tb-nav ul li {
    opacity: 1;
    -webkit-transform: translateX(0%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0%); /* IE 9 */
    transform: translateX(0%); /* Firefox 16+, IE 10+, Opera */
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(6) {
    transition-delay: 0.35s;
  }
  .cat-tb-cover.visible .cat-tb-nav ul li:nth-child(7) {
    transition-delay: 0.4s;
  }
  .ft-links ul li {
    opacity: 0;
    -webkit-transform: translateX(-50%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-50%); /* IE 9 */
    transform: translateX(-50%); /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .ft-links.visible ul li {
    opacity: 1;
    -webkit-transform: translateX(0%); /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0%); /* IE 9 */
    transform: translateX(0%); /* Firefox 16+, IE 10+, Opera */
  }
  .ft-links.visible ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .ft-links.visible ul li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .ft-links.visible ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .ft-links.visible ul li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .ft-links.visible ul li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .ft-links.visible ul li:nth-child(6) {
    transition-delay: 0.35s;
  }
  .ft-links.visible ul li:nth-child(7) {
    transition-delay: 0.4s;
  }
  .ft-links.visible ul li:nth-child(8) {
    transition-delay: 0.45s;
  }
  .ft-links.visible ul li:nth-child(9) {
    transition-delay: 0.5s;
  }
  .ft-links.visible ul li:nth-child(10) {
    transition-delay: 0.55s;
  }
  .ft-links.visible ul li:nth-child(11) {
    transition-delay: 0.6s;
  }
  .ft-links.visible ul li:nth-child(12) {
    transition-delay: 0.65s;
  }
  .modal-dialog {
    width: 750px;
  }
}

@media (min-width: 1366px) {
  .container {
    width: 1280px;
  }
}

@media (min-width: 1440px) {
}

@media (min-width: 1600px) {
}

@media (min-width: 1920px) {
}

@media (max-width: 1919px) {
}

@media (max-width: 1599px) {
}

@media (max-width: 1366px) {
  .banner-box-wrapper .banner-box-cover {
    width: 650px;
    height: 450px;
  }
  .banner-box-cover .ban-item-box {
    width: 245px;
  }
  .banner-box-cover ul li:nth-child(1) {
    right: 356px;
    top: 122px;
  }
  .banner-box-cover ul li:nth-child(2) {
    right: 178px;
    top: 16px;
  }
  .banner-box-cover ul li:nth-child(3) {
    right: 178px;
    top: 231px;
  }
  .about-wrapper .about-cont {
    padding: 60px 200px 60px 45px;
  }
  .about-wrapper .about-shape {
    width: 750px;
    height: 291px;
  }
  .services-carousel .ser-item-cover {
    min-height: 235px;
    padding: 20px 20px 10px;
  }
  .ser-item-cover .ser-icon {
    width: 75px;
    margin-bottom: 25px;
  }
  .ser-item-cover .ser-cont h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
  }
  .content-sec .cont-left-shape {
    width: 500px;
  }
  .content-sec .cont-right-shape {
    width: 500px;
  }
  .ins-fod-item .ins-fod-img img {
    height: 320px;
  }
}
@media (max-width: 1280px) {
  .banner-box-wrapper .banner-box-cover {
    width: 535px;
    height: 380px;
  }
  .banner-box-cover ul li:nth-child(1) {
    right: 318px;
    top: 98px;
  }
  .banner-box-cover ul li:nth-child(2) {
    right: 159px;
    top: 0px;
  }
  .banner-box-cover ul li:nth-child(3) {
    right: 159px;
    top: 193px;
  }
  .banner-box-cover ul li:nth-child(4) {
    right: 0;
    top: 96px;
  }
  .banner-box-cover .ban-item-box {
    width: 220px;
  }
  .about-sec {
    padding: 0 0 50px;
  }
  .about-wrapper .about-shape {
    width: 660px;
    height: 233px;
  }
  .about-wrapper .about-cont {
    padding: 60px 150px 60px 45px;
  }
  .services-carousel {
    width: 100%;
    margin: -75px 0 50px;
  }
  .category-sec {
    padding: 50px 0 50px;
  }
  .news-sec {
    padding: 50px 0 50px;
  }
  .client-sec {
    padding: 50px 0 50px;
  }
  .footer-sec {
    padding: 50px 0 75px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-shape {
    width: 560px;
    height: 217px;
  }
  .about-wrapper .about-cont {
    padding: 35px 115px 35px 35px;
  }
}
@media (max-width: 991px) {
  .banner-table-cover .banner-cont {
    display: none;
  }
  .navbar-main .logo-cover {
    width: 100px;
  }
  .navbar-main .logo {
    width: 70px;
  }
  .main-nav-cover .nav-top-sec {
    margin: 10px 0 5px;
  }
  .navbar-main .main-nav li a {
    padding: 10px 10px;
  }
  .banner-box-wrapper .banner-box-cover {
    float: none;
    margin: 100px auto 0;
  }
  .about-sec {
    padding: 0 0 25px;
  }
  .services-carousel {
    margin: -25px 0 25px;
  }
  .about-wrapper .about-shape {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
  }
  .about-wrapper .about-cont {
    width: 100%;
    padding: 25px 25px 25px 25px;
    border-radius: 20px;
  }
  .about-cont h2 {
    font-size: 24px;
  }
  .content-sec .section-hd {
    margin-bottom: 15px;
  }
  .content-sec .section-hd h2 {
    font-size: 26px;
  }
  .founder-tb-nav ul li a {
    font-size: 14px;
    padding: 20px 15px 20px 25px;
  }
  .founder-tb-cover .founder-tb-cont {
    padding: 20px 20px 75px;
  }
  .founder-cover .sec-hd {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
  .founder-cover .lt-founder-item {
    margin-bottom: 15px;
  }
  .lt-founder-item .lt-founder-img {
    width: 100%;
  }
  .lt-founder-item .lt-founder-cont {
    width: 100%;
    padding: 20px 15px 20px;
  }
  .lt-founder-cont h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
  }
  .founder-cover .sub-hd {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
  .founder-item {
    margin: 0 0 20px 0;
  }
  .founder-item .founder-cont {
    min-height: auto;
  }
  .manage-cover .sec-hd {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
  .manage-item .manage-cont h3 {
    font-size: 18px;
  }
  .vision-item .sec-hd {
    font-size: 24px;
  }
  .isn-abt-wrapper .ins-abt-cover {
    width: 100%;
  }
  .isn-abt-wrapper .ins-found-nav {
    width: 100%;
  }
  .contact-address {
    padding: 25px 25px 25px;
    margin: 0 0 20px 0;
    border-radius: 20px;
  }
  .contact-address:before {
    display: none;
  }
  .contact-address h3 {
    font-size: 36px;
  }
  .contact-address p {
    font-size: 14px;
    margin: 0 0 25px 0;
  }
  .location-cover {
    border-radius: 20px;
    margin: 0;
  }
  .location-cover iframe {
    height: 200px;
  }
  .pkg-select .pkg-popup {
    top: 100%;
    left: auto;
    right: 0;
    max-width: 350px;
  }

  .pkg-select .pkg-popup:after,
  .pkg-select .pkg-popup:before {
    right: 25px;
    top: -10px;
  }

  .pkg-select .pkg-popup:after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: rgba(200, 236, 250, 0);
    border-bottom-color: #c8ecfa;
  }
  .pkg-select .pkg-popup:before {
    border-color: rgba(153, 214, 235, 0);
    border-right-color: rgba(200, 236, 250, 0);
    border-bottom-color: #c8ecfa;
  }
}
@media (max-width: 767px) {
  .navbar-main .logo-cover {
    width: 100%;
  }
  .navbar-main .logo {
    margin: 10px 0;
  }
  .navbar-main .main-nav li {
    display: block;
  }
  .main-nav .dropdown-menu li a {
    display: block !important;
    color: #fff !important;
  }
  .main-nav .dropdown-menu > li > a:hover,
  .main-nav .dropdown-menu > li > a:focus {
    background-color: #00aae2 !important;
  }
  .banner-box-wrapper .banner-box-cover {
    margin: 50px auto 0;
  }
  .category-sec {
    padding: 25px 0 25px;
  }
  .news-sec {
    padding: 25px 0 25px;
  }
  .client-sec {
    padding: 25px 0 25px;
  }
  .footer-sec {
    padding: 25px 0 50px;
  }
  .category-sec .cat-hd {
    margin: 0 auto 15px;
  }
  .category-sec .cat-hd h2 {
    font-size: 24px;
  }
  .cat-tb-cover .cat-tb-nav ul li a {
    font-size: 18px;
    padding: 25px 20px 25px 35px;
  }
  .cat-tb-cont .cat-tb-txt {
    padding: 35px 35px 20px;
  }
  .cat-tb-txt ul li + li {
    margin-top: 25px;
  }
  .news-sec .news-hd {
    margin: 0 0 20px;
  }
  .news-sec .news-hd h2 {
    font-size: 24px;
  }
  .news-carousel .news-item-cover {
    min-height: auto;
    padding: 20px 20px 20px;
    border-radius: 20px;
  }
  .cat-tb-cover .cat-tb-nav {
    width: 100%;
  }
  .cat-tb-cover .cat-tb-cont {
    width: 100%;
  }
  .news-sec .news-dots ul li {
    margin: 0 2%;
  }
  .client-carousel .client-item {
    width: 150px;
  }
  .copy-sec .ft-logo {
    display: none;
  }
  .content-sec {
    padding: 25px 0 25px;
  }
  .content-sec .cont-top-shape {
    display: none;
  }
  .content-sec .cont-left-shape {
    display: none;
  }
  .content-sec .cont-right-shape {
    display: none;
  }
  .founder-tb-cover .founder-tb-nav {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .founder-tb-cover .founder-tb-cont {
    width: 100%;
  }
  .manage-item .manage-img {
    width: 75px;
    margin: 0 15px 10px 0;
  }
  .manage-item .manage-cont h3 {
    font-size: 16px;
  }
  .ins-banner .carousel .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .ins-abt-cover .ins-abt-cont {
    padding: 20px 20px 10px;
  }
  .ins-fod-item .ins-fod-img img {
    height: auto;
  }
  .ins-fod-item .right-icon {
    right: 25px;
    top: 25px;
    width: 20px;
    height: 20px;
  }
  .ins-fod-item .ins-fod-cont {
    padding: 0 15px 15px;
  }
  .ins-fod-cont ul li {
    font-size: 16px;
    font-weight: 500;
  }
  .ins-fod-cont ul li img {
    width: 50px;
  }
}
@media (max-width: 650px) {
  .banner-box-wrapper .banner-box-cover {
    width: 430px;
    height: 310px;
  }
  .banner-box-cover ul li:nth-child(1) {
    right: 257px;
    top: 77px;
  }
  .banner-box-cover ul li:nth-child(2) {
    right: 129px;
    top: 0px;
  }
  .banner-box-cover ul li:nth-child(3) {
    right: 129px;
    top: 155px;
  }
  .banner-box-cover ul li:nth-child(4) {
    right: 0;
    top: 77px;
  }
  .banner-box-cover .ban-item-box {
    width: 175px;
  }
  .services-carousel {
    margin: 0 0 25px;
  }
  .services-carousel .ser-item-cover {
    min-height: 200px;
  }
  .services-carousel .owl-carousel .owl-item:nth-child(odd) .ser-item-cover {
    margin-top: 0;
  }
  .manage-cover .sec-hd {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
  .founder-cover .sub-hd {
    font-size: 20px;
    margin: 0 0 15px 0;
  }
  .vision-cover .vision-item {
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .vision-item .sec-hd {
    font-size: 20px;
  }
  .vision-item .media-left,
  .vision-item .media-body {
    display: block;
    width: 100%;
  }
  .vision-item .vision-img {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 568px) {
  .founder-tb-nav ul li a {
    padding: 15px 10px 15px 20px;
  }
  .founder-tb-cover .founder-tb-cont {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 480px) {
  .banner-table-cover .banner-cont h1 {
    font-size: 24px;
  }
  .banner-box-wrapper .banner-box-cover {
    width: 330px;
    height: 235px;
  }
  .banner-box-cover ul li:nth-child(1) {
    right: 198px;
    top: 58px;
  }
  .banner-box-cover ul li:nth-child(2) {
    right: 99px;
    top: 0px;
  }
  .banner-box-cover ul li:nth-child(3) {
    right: 99px;
    top: 118px;
  }
  .banner-box-cover ul li:nth-child(4) {
    right: 0;
    top: 58px;
  }
  .banner-box-cover .ban-item-box {
    width: 135px;
  }
  .ban-item-box .ban-item-hd {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
}
