/* ========== Global ========== */
/* fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Dekko&display=swap"); */
@font-face {
  font-family: Times;
  src: url("/fonts/Times.ttf");
}
/* colors */
:root {
  --baseColor: #00517c;
  --baseColorDarken: #003049;
  --menuBackground: #eee;
}

/* typo */
body * {
  font-family: "Poppins", sans-serif;
}
body h3 {
  font-size: 25px;
}
body h5 {
  font-size: 20px;
}
body .title {
  margin-bottom: 30px;
}
body .title h3 {
  font-family: "Poppin", sans-serif;
  color: var(--baseColor);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 1px;
}
body .title-center {
  text-align: center;
}
body p,
body a,
body label,
body li,
body span {
  font-size: 15px;
  color: #777;
}
.font-more-than {
  font-family: monospace;
  letter-spacing: 1px;
  color: var(--baseColor);
}
/* layout */
body section {
  padding: 60px 0;
}
body .bg-alt {
  background-color: #f4f5f7;
}
body .my-btn {
  color: var(--baseColor);
  display: inline-block;
  font-weight: 700;
  border: 0;
  background: transparent;
}
body .my-btn:hover {
  text-decoration: underline;
}
body .expert-list {
  list-style-type: none;
}
body .expert-list li {
  display: flex;
  margin-bottom: 15px;
}
body .expert-list li::before {
  content: "";
  height: 30px;
  min-width: 30px;
  background: url("/img/expert.png") no-repeat;
  margin-right: 5px;
  margin-top: -2px;
}

@media only screen and (max-width: 575px) {
  body h3 {
    font-size: 21px;
  }
  body h5 {
    font-size: 17px;
  }
  body p,
body a,
body label,
body li,
body span {
    font-size: 14px;
  }
  body section {
    padding: 30px 0;
  }
}
/* ========== Menu ========== */
menu {
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0;
  background-color: var(--menuBackground);
  border-bottom: 3px solid var(--baseColor);
}
menu .navbar .navbar-nav .nav-item .nav-link {
  color: #333;
}
menu .navbar .navbar-nav .nav-item .nav-link.active,
menu .navbar .navbar-nav .nav-item .nav-link:hover,
menu .navbar .navbar-nav .nav-item .nav-link:focus {
  color: var(--baseColor);
}
menu .navbar-light .navbar-toggler {
  background-color: var(--baseColor);
}
menu .navbar-light .navbar-toggler span {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  menu .navbar {
    padding: 0;
  }
  menu .navbar .navbar-nav {
    flex: 1;
  }
  menu .navbar .navbar-nav .nav-item {
    padding: 15px 0;
  }
  menu .navbar .navbar-nav .logo-item {
    width: 100%;
    height: 100%;
    position: relative;
  }
  menu .navbar .navbar-nav .logo-item a {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 7%);
    text-align: center;
  }
  menu .navbar .navbar-nav .logo-item a img:not(.logo-bg) {
    position: relative;
    z-index: 1;
    margin-top: -4px;
  }
  menu .navbar .navbar-nav .logo-item a .logo-bg {
    position: absolute;
    z-index: 0;
    display: block;
    left: 50%;
    top: 61%;
    transform: translateX(-50%);
  }
  menu .navbar .navbar-nav .link-div,
menu .navbar .navbar-nav .logo-div {
    display: flex;
    align-items: center;
  }
  menu .navbar .navbar-nav .link-div {
    flex: 1;
  }
  menu .navbar .navbar-nav .logo-div {
    width: 30%;
  }
}
@media only screen and (min-width: 992px) {
  menu .navbar .navbar-nav .nav-item .nav-link {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 1199px) {
  menu .navbar .navbar-nav .logo-div {
    width: 20%;
  }
}
/* ========== Home ========== */
#home #slider {
  padding: 0;
  position: relative;
}
#home .our-special {
  background-color: #a3cbe0;
  padding: 30px 0;
  position: relative;
}
#home .our-special .title {
  margin-bottom: 0;
}
#home .our-special .down-arrow {
  position: absolute;
  width: 100px;
  height: 25px;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
#home .our-special .down-arrow svg {
  position: absolute;
}
#home .our-special .down-arrow svg path {
  fill: #a3cbe0;
}
#home .our-special-content {
  background-color: #eee;
}
#home .our-special-content img {
  box-shadow: 0 0 5px;
}
#home .who-we-are li {
  list-style-type: none;
  font-weight: 500;
  margin-bottom: 10px;
}
#home .our-address {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  #home .who-we-are {
    text-align: right;
  }
}
/* ========== who_we_are ========== */
#who_we_are .our-photo img {
  box-shadow: 0 0 5px;
}

/* ========== hs_code ========== */
#hs_code .pdf {
  border: 3px solid var(--baseColor);
}

/* ========== contact_us ========== */
#contact_us address {
  display: flex;
}
#contact_us address span {
  margin-right: 5px;
  width: 20px;
  text-align: center;
}
#contact_us address span,
#contact_us address h5 {
  color: var(--baseColor);
}
#contact_us .my-btn {
  padding: 10px 20px;
  background-color: var(--baseColor);
  border: 1px solid transparent;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
}
#contact_us .my-btn:hover {
  background-color: transparent;
  border-color: var(--baseColor);
  color: var(--baseColor);
}

/* ========== Footer ========== */
footer {
  padding: 50px 0 0;
  background-color: var(--baseColor);
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #eee;
  opacity: 0.8;
  text-decoration: none;
}
footer .social {
  text-align: center;
}
footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: var(--baseColorDarken);
  margin-right: 10px;
}
footer .copy-right a {
  font-size: 13px;
}
footer .copy-right p {
  font-size: 14px;
}
footer .copy-right p {
  text-align: center;
  color: #bbb;
}

@media only screen and (max-width: 575px) {
  footer .copy-right a,
footer .copy-right p {
    font-size: 13px;
  }
}
/* ========== goTop ========== */
#goTop {
  display: none;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 1%;
  right: 1%;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  cursor: pointer;
  background-color: var(--baseColor);
  border-radius: 30px;
  border: 1px solid #fff;
}
#goTop i {
  display: inline-block;
  height: 30%;
  width: 30%;
  margin-top: 4px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}