@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
/*--------------------------------------------------------------




# base
--------------------------------------------------------------*/
::-moz-selection {
  color: #015288;
  background: rgba(1, 82, 136, 0.1);
}
::selection {
  color: #E3B333;
  background: rgba(1, 82, 136, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #727272;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

@media only screen and (max-width: 480px) {
  .wow {
    -webkit-animation-name: none !important;
    animation-name: none !important;
    visibility: visible !important;
  }
}
a {
  text-decoration: none;
}
a:hover {
  color: #015288;
}
a:focus, a:hover {
  text-decoration: none;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 25px;
    margin-bottom: 9px;
  }
}
.section-title p {
  font-size: 17px;
  font-weight: 500;
}

.section-padding {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 60px 0px;
  }
}

audio,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  margin: 0;
  color: #081828;
}

p {
  margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

.scroll-top {
  width: 35px;
  height: 35px;
  background-color: #015288;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
}
.scroll-top img {
  height: 18px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  fill: #E3B333;
}
.scroll-top:focus, .scroll-top:hover {
  color: #fff;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(1, 82, 136, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(1, 82, 136, 0.5);
}

/*--------------------------------------------------------------




  ##  Page Loader
  --------------------------------------------------------------*/
.page-loader {
  background: #FFFFFF;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.page-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-loader svg {
  display: none;
}

.blobs {
  -webkit-filter: url(#goo);
  filter: url(#goo);
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 70px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.blobs .blob-center {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  background: #015288;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
  -webkit-animation: blob-grow linear 3.4s infinite;
  animation: blob-grow linear 3.4s infinite;
  border-radius: 50%;
  -webkit-box-shadow: 0 -10px 40px -5px #015288;
  box-shadow: 0 -10px 40px -5px #015288;
}

.blob {
  position: absolute;
  background: #015288;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-animation: blobs ease-out 3.4s infinite;
  animation: blobs ease-out 3.4s infinite;
  -webkit-transform: scale(0.9) translate(-50%, -50%);
  transform: scale(0.9) translate(-50%, -50%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  opacity: 0;
}

.blob:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.blob:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.blob:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.blob:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.blob:nth-child(5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes blobs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
    transform: scale(0) translate(calc(-330px - 50%), -50%);
  }
  1% {
    opacity: 1;
  }
  35%, 65% {
    opacity: 1;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
    transform: scale(0) translate(calc(330px - 50%), -50%);
  }
}
@keyframes blobs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
    transform: scale(0) translate(calc(-330px - 50%), -50%);
  }
  1% {
    opacity: 1;
  }
  35%, 65% {
    opacity: 1;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
    transform: scale(0) translate(calc(330px - 50%), -50%);
  }
}
@-webkit-keyframes blob-grow {
  0%, 39% {
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
  }
  40%, 42% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
    transform: scale(1, 0.9) translate(-50%, -50%);
  }
  43%, 44% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
    transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  45%, 46% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
    transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  47%, 48% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
    transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  52% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
    transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  54% {
    -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
    transform: scale(1.7, 1.6) translate(-50%, -50%);
  }
  58% {
    -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
    transform: scale(1.8, 1.7) translate(-50%, -50%);
  }
  68%, 70% {
    -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
    transform: scale(1.7, 1.5) translate(-50%, -50%);
  }
  78% {
    -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
    transform: scale(1.6, 1.4) translate(-50%, -50%);
  }
  80%, 81% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
    transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  82%, 83% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
    transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  84%, 85% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
    transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  86%, 87% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
    transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  90%, 91% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
    transform: scale(1, 0.9) translate(-50%, -50%);
  }
  92%, 100% {
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
  }
}
@keyframes blob-grow {
  0%, 39% {
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
  }
  40%, 42% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
    transform: scale(1, 0.9) translate(-50%, -50%);
  }
  43%, 44% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
    transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  45%, 46% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
    transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  47%, 48% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
    transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  52% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
    transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  54% {
    -webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
    transform: scale(1.7, 1.6) translate(-50%, -50%);
  }
  58% {
    -webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
    transform: scale(1.8, 1.7) translate(-50%, -50%);
  }
  68%, 70% {
    -webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
    transform: scale(1.7, 1.5) translate(-50%, -50%);
  }
  78% {
    -webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
    transform: scale(1.6, 1.4) translate(-50%, -50%);
  }
  80%, 81% {
    -webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
    transform: scale(1.5, 1.4) translate(-50%, -50%);
  }
  82%, 83% {
    -webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
    transform: scale(1.4, 1.3) translate(-50%, -50%);
  }
  84%, 85% {
    -webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
    transform: scale(1.3, 1.2) translate(-50%, -50%);
  }
  86%, 87% {
    -webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
    transform: scale(1.2, 1.1) translate(-50%, -50%);
  }
  90%, 91% {
    -webkit-transform: scale(1, 0.9) translate(-50%, -50%);
    transform: scale(1, 0.9) translate(-50%, -50%);
  }
  92%, 100% {
    -webkit-transform: scale(0) translate(-50%, -50%);
    transform: scale(0) translate(-50%, -50%);
  }
}
@-webkit-keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 82, 136, 0.3), 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3);
            box-shadow: 0 0 0 0 rgba(1, 82, 136, 0.3), 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3), 0 0 0 30px rgba(1, 82, 136, 0);
            box-shadow: 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3), 0 0 0 30px rgba(1, 82, 136, 0);
  }
}
@keyframes ripple-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 82, 136, 0.3), 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3);
            box-shadow: 0 0 0 0 rgba(1, 82, 136, 0.3), 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3), 0 0 0 30px rgba(1, 82, 136, 0);
            box-shadow: 0 0 0 10px rgba(1, 82, 136, 0.3), 0 0 0 20px rgba(1, 82, 136, 0.3), 0 0 0 30px rgba(1, 82, 136, 0);
  }
}
/*--------------------------------------------------------------



# navbar
--------------------------------------------------------------*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #FFFFFF;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 15px 0;
  }
}
.navbar .navbar-brand {
  padding: 0;
}
.navbar .navbar-brand img {
  height: 45px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 50px;
  }
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 24px;
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item {
    margin-left: 0;
  }
}
.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #727272;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
}
.navbar .navbar-nav .nav-item a:hover, .navbar .navbar-nav .nav-item a.active {
  color: #015288;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    font-weight: 500;
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item a {
    padding: 1px 0;
    margin: 6px 0px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 991px) {
  .navbar .navbar-collapse {
    text-align: center;
    padding: 25px 12px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 9;
    -webkit-box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
            box-shadow: 0 15px 20px 0 rgba(43, 56, 109, 0.1);
    padding-bottom: 20px;
  }
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #081828;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
}
.sticky .navbar {
  padding: 12px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .sticky .navbar {
    padding: 10px 0;
  }
}
.sticky .navbar .navbar-brand {
  padding: 0;
}
.sticky .navbar .navbar-brand img {
  height: 42px;
}
.sticky .navbar .navbar-toggler .toggler-icon {
  background: #081828;
}
.sticky .navbar-nav .nav-item a {
  color: #727272;
}

@media only screen and (min-width: 992px) {
  .social {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .social {
    padding-top: 12px;
  }
}
.social li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
.social li a {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin-right: 11px;
}
.social li a:last-child {
  margin-right: 0;
}
.social li a img {
  height: 19px;
}
@media only screen and (max-width: 991px) {
  .social li a {
    margin-right: 8px;
    margin-bottom: 10px;
  }
}
.social li a:hover {
  opacity: 0.6;
}
.social .btn-connect {
  display: inline-block;
  padding: 10px 30px;
  background-color: #015288;
  color: #FFFFFF;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin-left: 26px;
}
@media only screen and (max-width: 991px) {
  .social .btn-connect {
    margin-left: 0;
    margin-top: 12px;
  }
}
.social .btn-connect:hover {
  opacity: 1;
  background-color: #e3b333;
  color: #FFFFFF;
}
.social .btn-connect:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(227, 179, 51, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(227, 179, 51, 0.5);
}

/*--------------------------------------------------------------




# hero-home
--------------------------------------------------------------*/
.hero-home {
  padding: 70px 0px;
  padding-top: 140px;
  background-image: url("../img/hero/bg.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero-home {
    padding: 60px 0px;
    padding-top: 120px;
  }
}
.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 82, 136, 0.86);
}
.hero-home .herro-inner {
  position: relative;
}
.hero-home .herro-inner .hero-text h1 {
  color: #FFFFFF;
  font-size: 60px;
  line-height: 1.3;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 23px;
}
@media only screen and (max-width: 991px) {
  .hero-home .herro-inner .hero-text h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-home .herro-inner .hero-text h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-home .herro-inner .hero-text h1 {
    font-size: 29px;
    margin-bottom: 15px;
  }



  }
.hero-home .herro-inner .hero-text h6 {
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.3;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .hero-home .herro-inner .hero-text h6 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-home .herro-inner .hero-text h6 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .hero-home .herro-inner .hero-text h6 {
    font-size: 25px;
    margin-bottom: 15px;
  }

}
.hero-home .herro-inner .hero-text p {
  font-size: 20px;
  color: #fff;
  max-width: 500px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .hero-home .herro-inner .hero-text p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.hero-home .herro-inner .hero-text .btn-main {
  display: inline-block;
  border: 0;
  text-align: center;
  background-color: #E3B333;
  font-size: 14px;
  font-weight: 600;
  color: #081828;
  border-radius: 50px;
  padding: 12px 30px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.hero-home .herro-inner .hero-text .btn-main:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(227, 179, 51, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(227, 179, 51, 0.5);
  background-color: #e9c460;
}
.hero-home .herro-inner .hero-text .btn-main:hover {
  background-color: #e9c460;
}
.hero-home .herro-inner .hero-img {
  position: relative;
}
.hero-home .herro-inner .hero-img img {
  width: 100%;
  border-radius: 10px 100px 10px 100px;
}
.hero-home .herro-inner .hero-img .play-btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  line-height: 72px;
  text-align: center;
  border-radius: 50%;
  background-color: #015288;
  -webkit-animation: ripple-white 1s linear infinite;
          animation: ripple-white 1s linear infinite;
}
.hero-home .herro-inner .hero-img .play-btn i {
  display: inline-block;
  color: #FFFFFF;
  font-size: 20px;
  position: relative;
  left: 2px;
}
/*--------------------------------------------------------------




# whatis
--------------------------------------------------------------*/
.whatis .whatis-txt h1 {
  font-size: 45px;
  color: #081828;
}
.whatis .whatis-txt h2 {
  font-size: 20px;
  color: #081828;
}
@media only screen and (max-width: 767px) {
  .whatis .whatis-txt h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 482px) {
  .whatis .whatis-txt h2 {
    font-size: 26px;
  }
}
.whatis .whatis-txt h3 {
  font-size: 25px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .whatis .whatis-txt h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .whatis .whatis-txt h3 {
    font-size: 19px;
    margin-bottom: 17px;
  }
}
.whatis .whatis-txt p {
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (max-width: 482px) {
  .whatis .whatis-txt p {
    font-size: 16px;
    font-weight: 500;
  }
}
.whatis .whi-text {
  margin-top: 20px;
}
.whatis .whi-text p {
  font-size: 15px;
}
.whatis .whi-text p:not(:last-child) {
  margin-bottom: 16px;
}

ul.a {
  list-style-position: outside;
}

.responsive {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------




# about
--------------------------------------------------------------*/
.about .about-txt h2 {
  font-size: 35px;
  color: #081828;
}
@media only screen and (max-width: 767px) {
  .about .about-txt h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 482px) {
  .about .about-txt h2 {
    font-size: 26px;
  }
}
.about .about-txt h3 {
  font-size: 25px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .about .about-txt h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 482px) {
  .about .about-txt h3 {
    font-size: 19px;
    margin-bottom: 17px;
  }
}
.about .about-txt p {
  font-size: 17px;
  font-weight: 600;
}
@media only screen and (max-width: 482px) {
  .about .about-txt p {
    font-size: 16px;
    font-weight: 500;
  }
}
.about .abt-text {
  margin-top: 20px;
}
.about .abt-text p {
  font-size: 15px;
}
.about .abt-text p:not(:last-child) {
  margin-bottom: 16px;
}
/*--------------------------------------------------------------


# Services
--------------------------------------------------------------*/
.section-bg {
  background-color: #f1f7fd;
}

.services .section-title {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .services .section-title {
    margin-bottom: 12px;
  }
}
.services .section-title h2 {
  font-size: 30px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .services .section-title h2 {
    font-size: 25px;
  }
}
.services .section-title p {
  font-size: 17px;
  font-weight: 500;
}
.services .some-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .services .some-text {
    margin-bottom: 30px;
  }
}
.services .service-con .service-btn {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 20px 15px;
  color: #081828;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.05);
}
.services .service-con .service-btn span {
  font-size: 17px;
  display: inline-block;
  font-weight: 700;
}
.services .service-con .service-btn .service-arrow {
  font-size: 16px;
  line-height: 1;
}
.services .service-con [aria-expanded=false] .fa-chevron-down, .services .service-con [aria-expanded=true] .fa-chevron-right {
  display: none;
}
.services .service-body {
  border-top: 1px solid #e4e4e4;
  background-color: #fff;
  padding: 10px 15px;
}
.services .service-body p {
  margin-bottom: 0;
}
.services .service-body .service-price {
  display: inline-block;
  color: #1977cc;
  font-weight: 700;
  margin-top: 7px;
}

@media only screen and (max-width: 991px) {
  .services .service-con .service-btn span {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .services .service-con .service-btn span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .services .service-con .service-btn span {
    font-size: 17px;
  }
}
/*--------------------------------------------------------------
# join
--------------------------------------------------------------*/
.join .join-text h4 {
  font-size: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .join .join-text h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.join .join-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.join .join-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.join .join-text ul li:not(:last-child) {
  margin-bottom: 15px;
}
.join .join-text ul li i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #015288;
  color: #fff;
  border-radius: 50%;
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .join .join-text ul li i {
    width: 27px;
    height: 27px;
    min-width: 27px;
    margin-right: 10px;
  }
}
.join .join-text ul li .main h5 {
  font-size: 19px;
}
@media only screen and (max-width: 767px) {
  .join .join-text ul li .main h5 {
    font-size: 18px;
  }
}
.join .join-text ul li .main p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .join .join-text ul li .main p {
    font-size: 15px;
  }
}
.join .join-btn-con {
  text-align: center;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .join .join-btn-con {
    padding-top: 30px;
  }
}
.join .join-btn-con .join-btn {
  text-align: center;
  display: inline-block;
  background-color: #015288;
  text-align: center;
  border: 0;
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  -webkit-box-shadow: 0 3px 20px 0px rgba(1, 82, 136, 0.92);
          box-shadow: 0 3px 20px 0px rgba(1, 82, 136, 0.92);
  font-size: 16px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.join .join-btn-con .join-btn:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(1, 82, 136, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(1, 82, 136, 0.5);
}
.join .join-btn-con .join-btn:hover {
  background-color: #0167AB;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  -webkit-box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
          box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
/*--------------------------------------------------------------
# faqs
--------------------------------------------------------------*/
.faqs .faq-con {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
}
@media only screen and (max-width: 991px) {
  .faqs .faq-con {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con {
    margin-top: 24px;
  }
}
.faqs .faq-con .accordion-item {
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
  border: 0;
  border-radius: 0 !important;
  margin-bottom: 14px;
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button {
  background-color: #fff;
  color: #081828;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.6px;
}
@media only screen and (max-width: 767px) {
  .faqs .faq-con .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 482px) {
  .faqs .faq-con .accordion-item .accordion-header .accordion-button {
    font-size: 17px;
  }
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button:hover {
  color: #015288;
}
.faqs .faq-con .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #015288;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faqs .faq-con .accordion-item .accordion-body {
  padding-top: 0px;
}
.faqs .faq-con .accordion-item .accordion-body p {
  font-size: 16px;
  color: #727272;
}
.faqs .faq-con .accordion-item .accordion-body p span {
  display: inline-block;
  color: #081828;
}





/*--------------------------------------------------------------
# guarantee
--------------------------------------------------------------*/

.guarantee{

}
.guarantee .g-sinle{
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
   box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
   border: 1px solid #dddcdc;
   padding: 30px 20px;
   height: 100%;
}
.guarantee .g-logo img{
height:90px;
margin-bottom: 20px;
}
.guarantee h5{
  font-size: 21px;
  margin-bottom: 15px;
}

#footer {
  background-color: #015288;
  padding: 20px 0px;
  text-align: center;
}
#footer .footer-con {
  margin-bottom: 20px;
}
#footer .footer-con a {
  color: #fff;
  display: inline-block;
}
#footer .footer-con a span {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
}
#footer .footer-con .anh {
  color: #fff;
}
#footer .footer-con .anh i {
  margin-right: 3px;
}
#footer .footer-con .anh span {
  font-size: 15px;
}
#footer .copyright {
  font-size: 15px;
  color: #fff;
}
