/* media queries */
/***** custom grid by setting number and margin *****/
/***** other useful mixins *****/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.df {
  display: flex;
}

.db {
  display: block;
}

.dg {
  display: grid;
}

.di {
  display: inline-block;
}

.dt {
  display: table;
}

.dif {
  display: inline-flex;
}

/***** color classes for html *****/
.prime {
  color: #0070c0;
}

.sec {
  color: #00076a;
}

.wh {
  color: #ffffff;
}

.blc {
  color: #00041f;
}

.gr {
  color: rgba(240, 244, 249, 0.7);
}

/***** let background classes on html *****/
.pri-bg {
  background-color: #0070c0;
}

.sec-bg {
  background-color: #00076a;
}

.pri-bglg {
  background-color: rgba(0, 112, 192, 0.1);
}

.sec-bglg {
  background-color: rgba(0, 7, 106, 0.15);
}

.lig-bg {
  background-color: #ff9f1c;
}

.blc-bg {
  background-color: #00041f;
}

.blc-bglg {
  background-color: rgba(0, 4, 31, 0.1);
}

.dg {
  grid-template-columns: repeat(12, 1fr);
}

.dfc {
  display: flex;
  flex-direction: column;
}

.alc {
  align-items: center;
}

.shadow {
  box-shadow: 0 0 3px rgba(240, 244, 249, 0.7);
}

.img-outer {
  overflow: hidden;
  position: relative;
}
.img-outer img {
  height: 100%;
  object-fit: cover;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}
.img-outer:hover img {
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #00041f;
  transition: 0.5s ease-in-out all;
}
a:hover, a:focus {
  text-decoration: none;
  color: #00076a;
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 75em) {
  html {
    font-size: 95%;
  }
}
@media (max-width: 63.938em) {
  html {
    font-size: 90%;
  }
}

html,
body {
  -webkit-text-size-adjust: 100%;
  font-family: "Lora", serif;
  line-height: 1.6;
  color: #00041f;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  html,
  body {
    font-size: 85%;
  }
}
html.over,
body.over {
  overflow: hidden;
}

body {
  font-size: 1.1rem;
  font-weight: 500;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.popup {
  content: "";
  position: fixed;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 4, 31, 0.95), rgba(0, 4, 31, 0.75));
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: grid;
  place-content: center;
}
.popup_content {
  padding-top: .7rem;
  max-width: 35rem;
  max-height: 27rem;
  position: relative;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #ffffff;
}
.popup_content img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.popup .pop_hide {
  position: absolute;
  top: -.9rem;
  right: -.9rem;
  font-size: 1.5rem;
  color: #00076a;
  cursor: pointer;
}

/***** heading style *****/
h1, .h1 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 3.3rem;
}

h2, .h2 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 2.2rem;
}

h3, .h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.8333333333rem;
}

h4, .h4 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.65rem;
}

h5, .h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.54rem;
}

h6, .h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.4666666667rem;
}

em {
  font-style: italic;
}

strong {
  font-weight: 500;
}

small {
  font-size: 75%;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

.header {
  justify-content: space-between;
}

.logo a img {
  max-width: 100%;
  height: auto;
}

.search_form {
  position: relative;
  align-items: self-end;
}
.search_btn {
  position: absolute;
  right: 0;
  padding: .35rem .7rem;
  background-color: #001185;
  color: #ffb54f;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  transition: all linear .3s;
}
.search_btn:hover {
  color: #ffffff;
  background-color: #00076a;
}

.nav {
  position: relative;
  z-index: 2;
  z-index: 3;
  background-color: #0070c0;
}
@media (max-width: 991px) {
  .nav {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.nav.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: white;
  border: 0;
}
@media (max-width: 991px) {
  .nav.fixed {
    border-top-width: 0;
    border-bottom-width: 2px;
  }
}
.nav.fixed, .nav.inner {
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3);
}
.nav_toggler {
  position: absolute;
  right: 1rem;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 2rem;
  background-color: transparent;
  color: #00041f;
  cursor: pointer;
  top: calc( 50% - 14px );
}
@media (min-width: 992px) {
  .nav_toggler {
    display: none;
  }
}
.nav_toggler:focus {
  outline: none;
  box-shadow: none;
}
.nav .menu {
  justify-content: space-between;
}
.nav_ul {
  align-items: center;
}
@media (max-width: 991px) {
  .nav_ul {
    width: 15rem;
    flex-direction: column;
    left: -15rem;
    bottom: -100%;
    height: 100%;
    transition: all ease-in-out .5s;
    position: fixed;
    align-items: flex-start;
    z-index: 3;
  }
}
.nav_ul.on_mobile {
  background-color: #0070c0;
  left: 0;
  bottom: 0;
  transition: all ease-in-out .5s;
  padding-top: 2rem;
  overflow-y: auto;
}
.nav_li {
  position: relative;
}
@media (max-width: 991px) {
  .nav_li {
    width: calc( 100% - 1rem );
  }
}
.nav_li.drop, .nav_li.with-drop {
  position: relative;
}
.nav_li.drop:before, .nav_li.with-drop:before {
  transition: all ease-in-out .5s;
  content: "";
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  right: .6rem;
  top: 1.4rem;
  position: absolute;
  border-top: 4px solid #f0f4f9;
  z-index: 1;
}
@media (max-width: 991px) {
  .nav_li.drop:before, .nav_li.with-drop:before {
    border-top-color: #ff9f1c;
  }
}
.nav_li.with-drop:before {
  transform: rotate(180deg);
}
.nav_li.active a {
  color: #00076a;
}
@media (max-width: 991px) {
  .nav_li.active a {
    color: #00041f;
  }
}
@media (min-width: 992px) {
  .nav_li.active a:before {
    width: 40%;
    transition: all ease-in-out .4s;
  }
}
.nav_a {
  padding: .5rem 1.6rem;
  color: #ff9f1c;
  position: relative;
  display: block;
}
@media (max-width: 991px) {
  .nav_a {
    padding: .5rem .7rem;
    color: #ffffff;
  }
}
@media (min-width: 992px) {
  .nav_a:before {
    content: "";
    width: 0;
    height: 2px;
    background-color: #00076a;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0.4rem;
    left: 30%;
    border-radius: 2px;
  }
}
.nav_a:hover {
  color: #00076a;
}
@media (max-width: 991px) {
  .nav_a:hover {
    color: #00041f;
  }
}
@media (min-width: 992px) {
  .nav_a:hover:before {
    width: 40%;
    transition: all ease-in-out .4s;
  }
}

.submnu {
  display: none;
  transition: all ease-in-out .5s;
  position: relative;
}
.submnu.show {
  display: block;
  transition: ease-in-out all .5s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (min-width: 992px) {
  .submnu.show {
    background-color: #ff9f1c;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 9rem;
    box-shadow: 0 0 4px 0 rgba(0, 4, 31, 0.2);
  }
}
.submnu_link {
  display: block;
  padding: .3rem .7rem;
  font-size: 1rem;
}
@media (min-width: 992px) {
  .submnu_link {
    color: #00041f;
  }
}
@media (max-width: 991px) {
  .submnu_link {
    margin-left: 1rem;
    color: #ff9f1c;
  }
}
.submnu_link:hover {
  color: #00076a;
  transition: all ease-in-out 0.3s;
}

.btn {
  display: inline-block;
  position: relative;
  transition: all ease-in-out .6s;
  text-transform: uppercase;
}
.btn-sm {
  padding: .5rem 1rem;
  font-size: .85rem;
  border-radius: 0.5rem;
}
.btn-mid {
  padding: .7rem 1.2rem;
  font-size: 1.1rem;
  border-radius: 1rem;
}
.btn-big {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  border-radius: 2rem;
}
.btn-main-bg {
  background-color: #0070c0;
}
.btn-main-bg:hover {
  border: 1px solid #0070c0;
  color: #0070c0;
}
.btn-ass-bg {
  background-color: #00076a;
}
.btn-ass-bg:hover {
  border: 1px solid #00076a;
  color: #00076a;
}
.btn-black-bg {
  background-color: #00041f;
}
.btn-black-bg:hover {
  border: 1px solid #00041f;
  color: #00041f;
}
.btn-main-bg, .btn-ass-bg, .btn-black-bg {
  color: #ffffff;
  border: 1px solid transparent;
}
.btn-main-bg:hover, .btn-ass-bg:hover, .btn-black-bg:hover {
  background-color: transparent;
}
.btn-gray-bg {
  background-color: #f0f4f9;
}
.btn-dim-bg {
  background-color: #ff9f1c;
}
.btn-gray-bg, .btn-dim-bg {
  color: #00041f;
}
.btn-main-br {
  border: 1px solid #0070c0;
  color: #0070c0;
}
.btn-main-br:hover {
  background-color: #0070c0;
}
.btn-ass-br {
  border: 1px solid #00076a;
  color: #00076a;
}
.btn-ass-br:hover {
  background-color: #00076a;
}
.btn-black-br {
  border: 1px solid #00041f;
  color: #00041f;
}
.btn-black-br:hover {
  background-color: #00041f;
}
.btn-main-br:hover, .btn-ass-br:hover, .btn-black-br:hover {
  color: #ffffff;
  border-color: transparent;
}
.btn-gray-br {
  border: 1px solid #f0f4f9;
}
.btn-gray-br:hover {
  background-color: #f0f4f9;
}
.btn-dim-br {
  border: 1px solid #ff9f1c;
}
.btn-dim-br:hover {
  background-color: #ff9f1c;
}
.btn-gray-br:hover, .btn-dim-br:hover {
  color: #00041f;
  border-color: transparent;
}
.btn:hover:after {
  width: 100%;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: visible;
  left: 0;
}
.btn:after {
  position: absolute;
  content: '';
  top: 0;
  left: -30%;
  width: 0;
  height: 100%;
  background-color: inherit;
  transition: width 0.35s ease;
  z-index: -1;
  border-radius: inherit;
  -webkit-transform: translate(-30%, 0);
  -moz-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  -o-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
  visibility: hidden;
}

/***** as container *****/
.wrapper {
  max-width: 75rem;
}
.wrapper, .wrapper-wide {
  margin-left: auto;
  margin-right: auto;
}
.wrapper-wide {
  max-width: calc( 100% - 4rem );
}
.wrapper-full {
  max-width: 100%;
}

/***** column grid 12 *****/
@media (min-width: 768px) {
  .colg-1 {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .colg-1 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-1 {
    width: calc( (100%/12) * 1 );
  }
}
@media (max-width: 767px) {
  .colb-1 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-1 {
    margin-left: calc( (100%/12) * 1 );
  }
}

@media (min-width: 768px) {
  .colf-1 {
    flex: 0 0 calc( (100%/12) * 1 );
  }
}
@media (max-width: 767px) {
  .colf-1 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-2 {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .colg-2 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-2 {
    width: calc( (100%/12) * 2 );
  }
}
@media (max-width: 767px) {
  .colb-2 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-2 {
    margin-left: calc( (100%/12) * 2 );
  }
}

@media (min-width: 768px) {
  .colf-2 {
    flex: 0 0 calc( (100%/12) * 2 );
  }
}
@media (max-width: 767px) {
  .colf-2 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-3 {
    grid-column: span 3;
  }
}
@media (max-width: 767px) {
  .colg-3 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-3 {
    width: calc( (100%/12) * 3 );
  }
}
@media (max-width: 767px) {
  .colb-3 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-3 {
    margin-left: calc( (100%/12) * 3 );
  }
}

@media (min-width: 768px) {
  .colf-3 {
    flex: 0 0 calc( (100%/12) * 3 );
  }
}
@media (max-width: 767px) {
  .colf-3 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-4 {
    grid-column: span 4;
  }
}
@media (max-width: 767px) {
  .colg-4 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-4 {
    width: calc( (100%/12) * 4 );
  }
}
@media (max-width: 767px) {
  .colb-4 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-4 {
    margin-left: calc( (100%/12) * 4 );
  }
}

@media (min-width: 768px) {
  .colf-4 {
    flex: 0 0 calc( (100%/12) * 4 );
  }
}
@media (max-width: 767px) {
  .colf-4 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-5 {
    grid-column: span 5;
  }
}
@media (max-width: 767px) {
  .colg-5 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-5 {
    width: calc( (100%/12) * 5 );
  }
}
@media (max-width: 767px) {
  .colb-5 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-5 {
    margin-left: calc( (100%/12) * 5 );
  }
}

@media (min-width: 768px) {
  .colf-5 {
    flex: 0 0 calc( (100%/12) * 5 );
  }
}
@media (max-width: 767px) {
  .colf-5 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-6 {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .colg-6 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-6 {
    width: calc( (100%/12) * 6 );
  }
}
@media (max-width: 767px) {
  .colb-6 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-6 {
    margin-left: calc( (100%/12) * 6 );
  }
}

@media (min-width: 768px) {
  .colf-6 {
    flex: 0 0 calc( (100%/12) * 6 );
  }
}
@media (max-width: 767px) {
  .colf-6 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-7 {
    grid-column: span 7;
  }
}
@media (max-width: 767px) {
  .colg-7 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-7 {
    width: calc( (100%/12) * 7 );
  }
}
@media (max-width: 767px) {
  .colb-7 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-7 {
    margin-left: calc( (100%/12) * 7 );
  }
}

@media (min-width: 768px) {
  .colf-7 {
    flex: 0 0 calc( (100%/12) * 7 );
  }
}
@media (max-width: 767px) {
  .colf-7 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-8 {
    grid-column: span 8;
  }
}
@media (max-width: 767px) {
  .colg-8 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-8 {
    width: calc( (100%/12) * 8 );
  }
}
@media (max-width: 767px) {
  .colb-8 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-8 {
    margin-left: calc( (100%/12) * 8 );
  }
}

@media (min-width: 768px) {
  .colf-8 {
    flex: 0 0 calc( (100%/12) * 8 );
  }
}
@media (max-width: 767px) {
  .colf-8 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-9 {
    grid-column: span 9;
  }
}
@media (max-width: 767px) {
  .colg-9 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-9 {
    width: calc( (100%/12) * 9 );
  }
}
@media (max-width: 767px) {
  .colb-9 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-9 {
    margin-left: calc( (100%/12) * 9 );
  }
}

@media (min-width: 768px) {
  .colf-9 {
    flex: 0 0 calc( (100%/12) * 9 );
  }
}
@media (max-width: 767px) {
  .colf-9 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-10 {
    grid-column: span 10;
  }
}
@media (max-width: 767px) {
  .colg-10 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-10 {
    width: calc( (100%/12) * 10 );
  }
}
@media (max-width: 767px) {
  .colb-10 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-10 {
    margin-left: calc( (100%/12) * 10 );
  }
}

@media (min-width: 768px) {
  .colf-10 {
    flex: 0 0 calc( (100%/12) * 10 );
  }
}
@media (max-width: 767px) {
  .colf-10 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-11 {
    grid-column: span 11;
  }
}
@media (max-width: 767px) {
  .colg-11 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-11 {
    width: calc( (100%/12) * 11 );
  }
}
@media (max-width: 767px) {
  .colb-11 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-11 {
    margin-left: calc( (100%/12) * 11 );
  }
}

@media (min-width: 768px) {
  .colf-11 {
    flex: 0 0 calc( (100%/12) * 11 );
  }
}
@media (max-width: 767px) {
  .colf-11 {
    flex: 0 0 100%;
  }
}

@media (min-width: 768px) {
  .colg-12 {
    grid-column: span 12;
  }
}
@media (max-width: 767px) {
  .colg-12 {
    grid-column: span 12;
  }
}

@media (min-width: 768px) {
  .colb-12 {
    width: calc( (100%/12) * 12 );
  }
}
@media (max-width: 767px) {
  .colb-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .colb-off-12 {
    margin-left: calc( (100%/12) * 12 );
  }
}

@media (min-width: 768px) {
  .colf-12 {
    flex: 0 0 calc( (100%/12) * 12 );
  }
}
@media (max-width: 767px) {
  .colf-12 {
    flex: 0 0 100%;
  }
}

/***** grid gap while displaying parent element as grid/flex *****/
.gap-1 {
  grid-gap: 0.7rem;
}
@media (max-width: 767px) {
  .gap-1 {
    grid-gap: 0.4rem;
  }
}

.gap-2 {
  grid-gap: 1.4rem;
}
@media (max-width: 767px) {
  .gap-2 {
    grid-gap: 0.8rem;
  }
}

.gap-3 {
  grid-gap: 2.1rem;
}
@media (max-width: 767px) {
  .gap-3 {
    grid-gap: 1.2rem;
  }
}

.gap-4 {
  grid-gap: 2.8rem;
}
@media (max-width: 767px) {
  .gap-4 {
    grid-gap: 1.6rem;
  }
}

.gap-5 {
  grid-gap: 3.5rem;
}
@media (max-width: 767px) {
  .gap-5 {
    grid-gap: 2rem;
  }
}

/***** margin/padding *****/
.p-1 {
  padding: 0.7rem;
}
@media (max-width: 767px) {
  .p-1 {
    padding: 0.4rem;
  }
}

.px-1 {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
@media (max-width: 767px) {
  .px-1 {
    padding-left: 0.4rem;
  }
}
@media (max-width: 767px) {
  .px-1 {
    padding-right: 0.4rem;
  }
}

.py-1 {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .py-1 {
    padding-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .py-1 {
    padding-bottom: 0.4rem;
  }
}

.pt-1 {
  padding-top: 0.7rem;
}
@media (max-width: 767px) {
  .pt-1 {
    padding-top: 0.4rem;
  }
}

.pr-1 {
  padding-right: 0.7rem;
}
@media (max-width: 767px) {
  .pr-1 {
    padding-right: 0.4rem;
  }
}

.pb-1 {
  padding-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .pb-1 {
    padding-bottom: 0.4rem;
  }
}

.pl-1 {
  padding-left: 0.7rem;
}
@media (max-width: 767px) {
  .pl-1 {
    padding-left: 0.4rem;
  }
}

.m-1 {
  margin: 0.7rem;
}
@media (max-width: 767px) {
  .m-1 {
    margin: 0.4rem;
  }
}

.mx-1 {
  margin-left: 0.7rem;
  margin-right: 0.7rem;
}
@media (max-width: 767px) {
  .mx-1 {
    margin-left: 0.4rem;
  }
}
@media (max-width: 767px) {
  .mx-1 {
    margin-right: 0.4rem;
  }
}

.my-1 {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .my-1 {
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .my-1 {
    margin-bottom: 0.4rem;
  }
}

.mt-1 {
  margin-top: 0.7rem;
}
@media (max-width: 767px) {
  .mt-1 {
    margin-top: 0.4rem;
  }
}

.mr-1 {
  margin-right: 0.7rem;
}
@media (max-width: 767px) {
  .mr-1 {
    margin-right: 0.4rem;
  }
}

.mb-1 {
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .mb-1 {
    margin-bottom: 0.4rem;
  }
}

.ml-1 {
  margin-left: 0.7rem;
}
@media (max-width: 767px) {
  .ml-1 {
    margin-left: 0.4rem;
  }
}

.p-2 {
  padding: 1.4rem;
}
@media (max-width: 767px) {
  .p-2 {
    padding: 0.8rem;
  }
}

.px-2 {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
@media (max-width: 767px) {
  .px-2 {
    padding-left: 0.8rem;
  }
}
@media (max-width: 767px) {
  .px-2 {
    padding-right: 0.8rem;
  }
}

.py-2 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .py-2 {
    padding-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .py-2 {
    padding-bottom: 0.8rem;
  }
}

.pt-2 {
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .pt-2 {
    padding-top: 0.8rem;
  }
}

.pr-2 {
  padding-right: 1.4rem;
}
@media (max-width: 767px) {
  .pr-2 {
    padding-right: 0.8rem;
  }
}

.pb-2 {
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .pb-2 {
    padding-bottom: 0.8rem;
  }
}

.pl-2 {
  padding-left: 1.4rem;
}
@media (max-width: 767px) {
  .pl-2 {
    padding-left: 0.8rem;
  }
}

.m-2 {
  margin: 1.4rem;
}
@media (max-width: 767px) {
  .m-2 {
    margin: 0.8rem;
  }
}

.mx-2 {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}
@media (max-width: 767px) {
  .mx-2 {
    margin-left: 0.8rem;
  }
}
@media (max-width: 767px) {
  .mx-2 {
    margin-right: 0.8rem;
  }
}

.my-2 {
  margin-top: 1.4rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .my-2 {
    margin-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .my-2 {
    margin-bottom: 0.8rem;
  }
}

.mt-2 {
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .mt-2 {
    margin-top: 0.8rem;
  }
}

.mr-2 {
  margin-right: 1.4rem;
}
@media (max-width: 767px) {
  .mr-2 {
    margin-right: 0.8rem;
  }
}

.mb-2 {
  margin-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .mb-2 {
    margin-bottom: 0.8rem;
  }
}

.ml-2 {
  margin-left: 1.4rem;
}
@media (max-width: 767px) {
  .ml-2 {
    margin-left: 0.8rem;
  }
}

.p-3 {
  padding: 2.1rem;
}
@media (max-width: 767px) {
  .p-3 {
    padding: 1.2rem;
  }
}

.px-3 {
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}
@media (max-width: 767px) {
  .px-3 {
    padding-left: 1.2rem;
  }
}
@media (max-width: 767px) {
  .px-3 {
    padding-right: 1.2rem;
  }
}

.py-3 {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}
@media (max-width: 767px) {
  .py-3 {
    padding-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .py-3 {
    padding-bottom: 1.2rem;
  }
}

.pt-3 {
  padding-top: 2.1rem;
}
@media (max-width: 767px) {
  .pt-3 {
    padding-top: 1.2rem;
  }
}

.pr-3 {
  padding-right: 2.1rem;
}
@media (max-width: 767px) {
  .pr-3 {
    padding-right: 1.2rem;
  }
}

.pb-3 {
  padding-bottom: 2.1rem;
}
@media (max-width: 767px) {
  .pb-3 {
    padding-bottom: 1.2rem;
  }
}

.pl-3 {
  padding-left: 2.1rem;
}
@media (max-width: 767px) {
  .pl-3 {
    padding-left: 1.2rem;
  }
}

.m-3 {
  margin: 2.1rem;
}
@media (max-width: 767px) {
  .m-3 {
    margin: 1.2rem;
  }
}

.mx-3 {
  margin-left: 2.1rem;
  margin-right: 2.1rem;
}
@media (max-width: 767px) {
  .mx-3 {
    margin-left: 1.2rem;
  }
}
@media (max-width: 767px) {
  .mx-3 {
    margin-right: 1.2rem;
  }
}

.my-3 {
  margin-top: 2.1rem;
  margin-bottom: 2.1rem;
}
@media (max-width: 767px) {
  .my-3 {
    margin-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .my-3 {
    margin-bottom: 1.2rem;
  }
}

.mt-3 {
  margin-top: 2.1rem;
}
@media (max-width: 767px) {
  .mt-3 {
    margin-top: 1.2rem;
  }
}

.mr-3 {
  margin-right: 2.1rem;
}
@media (max-width: 767px) {
  .mr-3 {
    margin-right: 1.2rem;
  }
}

.mb-3 {
  margin-bottom: 2.1rem;
}
@media (max-width: 767px) {
  .mb-3 {
    margin-bottom: 1.2rem;
  }
}

.ml-3 {
  margin-left: 2.1rem;
}
@media (max-width: 767px) {
  .ml-3 {
    margin-left: 1.2rem;
  }
}

.p-4 {
  padding: 2.8rem;
}
@media (max-width: 767px) {
  .p-4 {
    padding: 1.6rem;
  }
}

.px-4 {
  padding-left: 2.8rem;
  padding-right: 2.8rem;
}
@media (max-width: 767px) {
  .px-4 {
    padding-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .px-4 {
    padding-right: 1.6rem;
  }
}

.py-4 {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .py-4 {
    padding-top: 1.6rem;
  }
}
@media (max-width: 767px) {
  .py-4 {
    padding-bottom: 1.6rem;
  }
}

.pt-4 {
  padding-top: 2.8rem;
}
@media (max-width: 767px) {
  .pt-4 {
    padding-top: 1.6rem;
  }
}

.pr-4 {
  padding-right: 2.8rem;
}
@media (max-width: 767px) {
  .pr-4 {
    padding-right: 1.6rem;
  }
}

.pb-4 {
  padding-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .pb-4 {
    padding-bottom: 1.6rem;
  }
}

.pl-4 {
  padding-left: 2.8rem;
}
@media (max-width: 767px) {
  .pl-4 {
    padding-left: 1.6rem;
  }
}

.m-4 {
  margin: 2.8rem;
}
@media (max-width: 767px) {
  .m-4 {
    margin: 1.6rem;
  }
}

.mx-4 {
  margin-left: 2.8rem;
  margin-right: 2.8rem;
}
@media (max-width: 767px) {
  .mx-4 {
    margin-left: 1.6rem;
  }
}
@media (max-width: 767px) {
  .mx-4 {
    margin-right: 1.6rem;
  }
}

.my-4 {
  margin-top: 2.8rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .my-4 {
    margin-top: 1.6rem;
  }
}
@media (max-width: 767px) {
  .my-4 {
    margin-bottom: 1.6rem;
  }
}

.mt-4 {
  margin-top: 2.8rem;
}
@media (max-width: 767px) {
  .mt-4 {
    margin-top: 1.6rem;
  }
}

.mr-4 {
  margin-right: 2.8rem;
}
@media (max-width: 767px) {
  .mr-4 {
    margin-right: 1.6rem;
  }
}

.mb-4 {
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .mb-4 {
    margin-bottom: 1.6rem;
  }
}

.ml-4 {
  margin-left: 2.8rem;
}
@media (max-width: 767px) {
  .ml-4 {
    margin-left: 1.6rem;
  }
}

.p-5 {
  padding: 3.5rem;
}
@media (max-width: 767px) {
  .p-5 {
    padding: 2rem;
  }
}

.px-5 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
@media (max-width: 767px) {
  .px-5 {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .px-5 {
    padding-right: 2rem;
  }
}

.py-5 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .py-5 {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .py-5 {
    padding-bottom: 2rem;
  }
}

.pt-5 {
  padding-top: 3.5rem;
}
@media (max-width: 767px) {
  .pt-5 {
    padding-top: 2rem;
  }
}

.pr-5 {
  padding-right: 3.5rem;
}
@media (max-width: 767px) {
  .pr-5 {
    padding-right: 2rem;
  }
}

.pb-5 {
  padding-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .pb-5 {
    padding-bottom: 2rem;
  }
}

.pl-5 {
  padding-left: 3.5rem;
}
@media (max-width: 767px) {
  .pl-5 {
    padding-left: 2rem;
  }
}

.m-5 {
  margin: 3.5rem;
}
@media (max-width: 767px) {
  .m-5 {
    margin: 2rem;
  }
}

.mx-5 {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
@media (max-width: 767px) {
  .mx-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .mx-5 {
    margin-right: 2rem;
  }
}

.my-5 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .my-5 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .my-5 {
    margin-bottom: 2rem;
  }
}

.mt-5 {
  margin-top: 3.5rem;
}
@media (max-width: 767px) {
  .mt-5 {
    margin-top: 2rem;
  }
}

.mr-5 {
  margin-right: 3.5rem;
}
@media (max-width: 767px) {
  .mr-5 {
    margin-right: 2rem;
  }
}

.mb-5 {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .mb-5 {
    margin-bottom: 2rem;
  }
}

.ml-5 {
  margin-left: 3.5rem;
}
@media (max-width: 767px) {
  .ml-5 {
    margin-left: 2rem;
  }
}

/***** border radius for four side, let class in html *****/
.br-1 {
  border-radius: 0.7rem;
}
@media (max-width: 767px) {
  .br-1 {
    border-radius: 0.4rem;
  }
}

.brtl-1 {
  border-top-left-radius: 0.7rem;
}
@media (max-width: 767px) {
  .brtl-1 {
    border-top-left-radius: 0.4rem;
  }
}

.brtr-1 {
  border-top-right-radius: 0.7rem;
}
@media (max-width: 767px) {
  .brtr-1 {
    border-top-right-radius: 0.4rem;
  }
}

.brbr-1 {
  border-bottom-right-radius: 0.7rem;
}
@media (max-width: 767px) {
  .brbr-1 {
    border-bottom-right-radius: 0.4rem;
  }
}

.brbl-1 {
  border-bottom-left-radius: 0.7rem;
}
@media (max-width: 767px) {
  .brbl-1 {
    border-bottom-left-radius: 0.4rem;
  }
}

.br-2 {
  border-radius: 1.4rem;
}
@media (max-width: 767px) {
  .br-2 {
    border-radius: 0.8rem;
  }
}

.brtl-2 {
  border-top-left-radius: 1.4rem;
}
@media (max-width: 767px) {
  .brtl-2 {
    border-top-left-radius: 0.8rem;
  }
}

.brtr-2 {
  border-top-right-radius: 1.4rem;
}
@media (max-width: 767px) {
  .brtr-2 {
    border-top-right-radius: 0.8rem;
  }
}

.brbr-2 {
  border-bottom-right-radius: 1.4rem;
}
@media (max-width: 767px) {
  .brbr-2 {
    border-bottom-right-radius: 0.8rem;
  }
}

.brbl-2 {
  border-bottom-left-radius: 1.4rem;
}
@media (max-width: 767px) {
  .brbl-2 {
    border-bottom-left-radius: 0.8rem;
  }
}

.br-3 {
  border-radius: 2.1rem;
}
@media (max-width: 767px) {
  .br-3 {
    border-radius: 1.2rem;
  }
}

.brtl-3 {
  border-top-left-radius: 2.1rem;
}
@media (max-width: 767px) {
  .brtl-3 {
    border-top-left-radius: 1.2rem;
  }
}

.brtr-3 {
  border-top-right-radius: 2.1rem;
}
@media (max-width: 767px) {
  .brtr-3 {
    border-top-right-radius: 1.2rem;
  }
}

.brbr-3 {
  border-bottom-right-radius: 2.1rem;
}
@media (max-width: 767px) {
  .brbr-3 {
    border-bottom-right-radius: 1.2rem;
  }
}

.brbl-3 {
  border-bottom-left-radius: 2.1rem;
}
@media (max-width: 767px) {
  .brbl-3 {
    border-bottom-left-radius: 1.2rem;
  }
}

.br-4 {
  border-radius: 2.8rem;
}
@media (max-width: 767px) {
  .br-4 {
    border-radius: 1.6rem;
  }
}

.brtl-4 {
  border-top-left-radius: 2.8rem;
}
@media (max-width: 767px) {
  .brtl-4 {
    border-top-left-radius: 1.6rem;
  }
}

.brtr-4 {
  border-top-right-radius: 2.8rem;
}
@media (max-width: 767px) {
  .brtr-4 {
    border-top-right-radius: 1.6rem;
  }
}

.brbr-4 {
  border-bottom-right-radius: 2.8rem;
}
@media (max-width: 767px) {
  .brbr-4 {
    border-bottom-right-radius: 1.6rem;
  }
}

.brbl-4 {
  border-bottom-left-radius: 2.8rem;
}
@media (max-width: 767px) {
  .brbl-4 {
    border-bottom-left-radius: 1.6rem;
  }
}

.br-5 {
  border-radius: 3.5rem;
}
@media (max-width: 767px) {
  .br-5 {
    border-radius: 2rem;
  }
}

.brtl-5 {
  border-top-left-radius: 3.5rem;
}
@media (max-width: 767px) {
  .brtl-5 {
    border-top-left-radius: 2rem;
  }
}

.brtr-5 {
  border-top-right-radius: 3.5rem;
}
@media (max-width: 767px) {
  .brtr-5 {
    border-top-right-radius: 2rem;
  }
}

.brbr-5 {
  border-bottom-right-radius: 3.5rem;
}
@media (max-width: 767px) {
  .brbr-5 {
    border-bottom-right-radius: 2rem;
  }
}

.brbl-5 {
  border-bottom-left-radius: 3.5rem;
}
@media (max-width: 767px) {
  .brbl-5 {
    border-bottom-left-radius: 2rem;
  }
}

.big {
  height: 80vh;
}
@media (max-width: 767px) {
  .big {
    height: 88vh;
  }
}

.half-col {
  height: 25rem;
}
@media (max-width: 767px) {
  .half-col {
    height: auto;
  }
}

.one-4 {
  height: 17rem;
}
@media (max-width: 767px) {
  .one-4 {
    height: auto;
  }
}

.one-3 {
  height: 13rem;
}
@media (max-width: 767px) {
  .one-3 {
    height: auto;
  }
}

.one-2 {
  height: 7.5rem;
}
@media (max-width: 767px) {
  .one-2 {
    height: 5.5rem;
  }
}

.one-1 {
  height: 6rem;
}
@media (max-width: 767px) {
  .one-1 {
    height: 5.2rem;
  }
}

.form-group * {
  transition: all ease-in-out .3s;
  font-size: 1rem;
  caret-color: #00076a;
}

label {
  margin: 0 0 0.2rem;
  font-weight: 600;
}

input[type="text"],
input[type="file"],
input[type="search"],
textarea,
select {
  padding: 0.72rem 1rem;
  width: 100%;
  border-radius: 0.5rem;
}
input[type="text"]:focus,
input[type="file"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0070c0;
}

input[type="text"],
input[type="search"],
textarea,
select {
  border: 1px solid #001185;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(0, 112, 192, 0.7) 50%), linear-gradient(135deg, rgba(0, 112, 192, 0.7) 50%, transparent 50%), linear-gradient(to right, white, white);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}
select:focus {
  background-image: linear-gradient(45deg, white 50%, transparent 50%), linear-gradient(135deg, transparent 50%, white 50%), linear-gradient(to right, rgba(0, 7, 106, 0.7), rgba(0, 7, 106, 0.7));
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
}

select,
input[type="file"] {
  appearance: none;
}

textarea {
  resize: none;
}

/***** radio and select *****/
.check-label span {
  border-radius: 3px;
}
.check-label span:after {
  left: 7px;
  top: 2px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-label,
.radio-label {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  appearance: none;
}
.check-label:hover input ~ span,
.radio-label:hover input ~ span {
  background-color: #f0f4f9;
}
.check-label input,
.radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-label input:checked ~ span,
.radio-label input:checked ~ span {
  background-color: #0070c0;
  border: 0;
}
.check-label input:checked ~ span:after,
.radio-label input:checked ~ span:after {
  display: block;
}
.check-label span,
.radio-label span {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid #f0f4f9;
}
.check-label span:after,
.radio-label span:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-label span {
  border-radius: 50%;
}
.radio-label span:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}

/***** search btn *****/
.search-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.search-wrap input[type="search"] {
  padding: 0.72rem 2.3rem 0.72rem 1rem;
}
.search-wrap i.cf {
  position: absolute;
  right: 0;
  padding: 0.7rem 0.7rem 0.3rem;
  background-color: #0070c0;
  color: #ffffff;
  cursor: pointer;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/***** file upload btn *****/
.file-input {
  position: relative;
  display: block;
}
.file-input-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.file-input-label {
  display: block;
  padding: 0.72rem 1rem;
  background-color: #ff9f1c;
  color: #00041f;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.file-input-label:hover {
  background-color: #27a5ff;
}

@media (max-width: 767px) {
  .tab-wrap {
    padding: 1rem;
  }
}
.tab-menu {
  display: flex;
  border-bottom: 1px solid #ff9403;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .tab-menu {
    padding: 0 0 0.7rem;
    white-space: nowrap;
    overflow-x: auto;
  }
}
.tab-item.active {
  border-bottom: 1px solid #00076a;
  margin-bottom: -1px;
}
.tab-item.active .side-link {
  color: #00076a;
}
.tab-link {
  display: block;
  color: #00041f;
  padding: 0 .5rem .1rem;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.tab-content {
  display: none;
  flex-direction: column;
  grid-gap: .7rem;
}
.tab-content > li {
  display: flex;
}
.tab-content > li:not(:last-of-type) {
  border-bottom: 1px dashed #e5e6ec;
  padding-bottom: .5rem;
}
.tab-content > li .cf {
  font-size: .75rem;
  margin-top: .7rem;
}
.tab-content > li > a {
  display: flex;
  padding: .3rem 0;
  overflow: hidden;
  font-size: 1.1rem;
  color: #0070c0;
}
.tab-content > li > a:hover {
  color: #00076a;
}
.tab-content:not(:last-of-type) {
  display: flex;
}

.gallery {
  grid-gap: .2rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.gallery-item {
  height: 10rem;
  grid-column: span 2;
  width: 100% !important;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .gallery-item {
    grid-column: span 4;
    height: 5rem;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 0 !important;
}
.gallery br {
  display: none !important;
}
.gallery-icon.landscape {
  width: 100%;
  height: 100%;
}

.popup-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.popup-image {
  display: block;
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-button,
.nav-button,
.caption {
  position: absolute;
  color: #fff;
}

.close-button,
.nav-button {
  font-size: 1.25rem;
  cursor: pointer;
}

.close-button {
  top: .5rem;
  right: .5rem;
}

.nav-button {
  top: 50%;
  transform: translateY(-50%);
}
.nav-button_prev {
  left: .5rem;
}
.nav-button_next {
  right: .5rem;
}

.caption {
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
}

/**** slider ****/
.slider-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  touch-action: pan-y;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
  user-select: none;
  -webkit-user-drag: none;
}

.slide.active img {
  transform: scale(1.1);
}

.caption {
  position: absolute;
  bottom: 35px;
  left: 30px;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s ease 0.3s;
}

.slide.active .caption {
  opacity: 1;
  transform: translateY(0);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Pagination Dots */
.dots-container {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* Hide arrows on mobile screens for cleaner look */
@media (max-width: 767px) {
  .slider-container {
    height: 450px;
  }

  .nav-btn {
    display: none;
  }

  .caption {
    font-size: 1.1rem;
    left: 20px;
    bottom: 30px;
  }
}
.about {
  position: relative;
}
@media (min-width: 768px) {
  .about_img {
    height: 30rem;
  }
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_text p {
  line-height: 1.7;
}

.worarea-item {
  align-items: center;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all ease-in-out .4s;
  position: relative;
  z-index: 1;
  color: #f0f4f9;
  background-color: #ffffff;
}
.worarea-item img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}
.worarea-item:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.worarea-item:hover .worarea-title {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .worarea-item {
    width: 86%;
    margin: 0 auto;
  }
}
.worarea-item i {
  font-size: 2.5rem;
  color: #00041f;
}
@media (max-width: 767px) {
  .worarea-item i {
    font-size: 1.5rem;
  }
}
.worarea-title {
  font-size: 1.1rem;
  transition: all ease-in-out .4s;
}

/***** video *****/
.video .embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.video .embed iframe {
  height: 100%;
}

.block-title {
  text-align: center;
  position: relative;
}
.block-title:before {
  content: "";
  width: 5rem;
  height: 3px;
  background-color: rgba(0, 112, 192, 0.4);
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: calc( 50% - 2.5rem );
}

@media (min-width: 768px) {
  .news-item .img-outer {
    margin-bottom: .5rem;
  }
}
.news-title {
  font-size: 1.2rem;
}

/***** down part about key-word *****/
.key-word {
  text-align: center;
  font-size: 1.3rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .key-word {
    line-height: 1.7;
    font-size: 1.4rem;
  }
}

.detail ul {
  margin: .7rem 0 .7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: 1rem;
}
.detail p {
  line-height: 1.7;
}
.detail p:not(:last-of-type) {
  margin-bottom: 1.3rem;
}
.detail p > img {
  max-width: 100%;
}

.right-item:not(:last-of-type) {
  padding-bottom: .7rem;
  margin-bottom: .92rem;
  border-bottom: 1px solid #f78f00;
}
.right-item .img-outer {
  margin-bottom: .5rem;
  aspect-ratio: 1/.7;
}
.right-title {
  font-size: 1.1rem;
  flex: 1;
}

/***** pagination *****/
@media (max-width: 767px) {
  .paginate {
    margin-top: 1rem;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
  }
}

.page-numbers {
  padding: .5rem .63rem .3rem;
  border-radius: 0.2rem;
  background-color: rgba(0, 4, 31, 0.2);
  line-height: 1;
}
.page-numbers.current, .page-numbers:hover {
  background-color: #00076a;
  color: #ff9f1c;
}

/***** team page *****/
.team table tbody tr {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .team table tbody tr {
    gap: 1.2rem;
  }
}
.team table tbody tr td {
  grid-column: span 3;
  box-shadow: 0 0 3px rgba(0, 4, 31, 0.2);
  transition: all ease-in-out .3s;
  text-align: center;
  cursor: pointer;
  width: 100% !important;
}
@media (max-width: 767px) {
  .team table tbody tr td {
    grid-column: span 6;
  }
}
@media (max-width: 480px) {
  .team table tbody tr td {
    grid-column: span 12;
  }
}
.team table tbody tr td:hover {
  background-color: #0070c0;
}
.team table tbody tr td:hover p {
  color: #ff9f1c;
}
.team table tbody tr td:hover h6 {
  color: #ffffff;
}
.team table tbody tr td img {
  object-fit: cover;
}
@media (min-width: 481px) {
  .team table tbody tr td img {
    height: 17rem;
  }
}
@media (max-width: 480px) {
  .team table tbody tr td img {
    width: 100%;
  }
}
.team table tbody tr td p {
  font-size: .75rem;
  text-transform: uppercase;
  color: #f0f4f9;
}
.team table tbody tr td p:empty {
  display: none;
}
.team table tbody tr td p, .team table tbody tr td h6 {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .team table tbody tr td p, .team table tbody tr td h6 {
    padding-left: 0.4rem;
  }
}
@media (max-width: 767px) {
  .team table tbody tr td p, .team table tbody tr td h6 {
    padding-right: 0.4rem;
  }
}
@media (max-width: 767px) {
  .team table tbody tr td p, .team table tbody tr td h6 {
    margin-bottom: 0.4rem;
  }
}
.team table tbody tr td h6 {
  color: #0070c0;
}

@media (max-width: 991px) {
  .footer {
    flex-direction: column;
  }
}
.footer > * {
  flex: 1;
}
@media (max-width: 767px) {
  .footer-info {
    flex-direction: column;
  }
}
.footer-info_item {
  flex: 1;
}
.footer-info_item .h5 {
  color: #ff9f1c;
}
.footer_li {
  font-size: 1rem;
}
.footer_li strong {
  color: #f0f4f9;
  font-weight: normal;
}
.footer_text {
  color: #00041f;
  line-height: 2;
}
.footer-map iframe {
  aspect-ratio: 16 / 3;
}

/*# sourceMappingURL=main.css.map */
