@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin: auto;
  font-size: 17px;
  line-height: 30px;
  color: #616161;
}
@media (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 24px;
  }
}

a,
li,
p,
span,
::after,
::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  transition: 600ms all;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}

img {
  max-width: 100%;
  transition: 600ms all;
}

figure {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
}

h2 {
  font-size: 50px;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 40px;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-size: 36px;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 30px;
}
@media (max-width: 1199px) {
  h5 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 26px;
}
@media (max-width: 1199px) {
  h6 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  h6 {
    font-size: 20px;
  }
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 101;
}

ul {
  margin-bottom: 0;
}

a.more {
  padding: 10px 25px;
  border: 2px solid white;
  height: 50px;
  margin-top: 24px;
  display: inline-block;
  font-size: 18px;
  position: relative;
}
a.more::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #091f5b;
  opacity: 0;
}
a.more::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #091f5b;
  opacity: 0;
}
a.more span {
  position: relative;
  z-index: 1;
}
a.more:hover::after, a.more:hover::before {
  width: 100%;
  opacity: 1;
}

span.gradient {
  background: linear-gradient(to right, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

span.sub-ttl {
  background-color: #bb4d00;
  padding: 5px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 991px) {
  span.sub-ttl {
    font-size: 14px;
    display: inline-block;
    padding: 5px 15px;
  }
}
@media (max-width: 575px) {
  span.sub-ttl {
    padding: 2px 15px;
  }
}

@media (min-width: 992px) {
  .mob-only {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }
}

.search-bar {
  background-color: #c8d1e3;
  padding: 10px 0;
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 101;
  transition: 600ms all;
}
.search-bar.open {
  top: 0;
}
.search-bar .row {
  justify-content: center;
}
.search-bar form {
  display: flex;
  max-width: 800px;
}
.search-bar form input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  height: 45px;
  padding: 8px 10px;
}
.search-bar form input[type=submit] {
  background-color: #091f5b;
  color: #ffffff;
  width: 200px;
  line-height: 24px;
  border: none !important;
  border-radius: 0 5px 5px 0;
}
@media (max-width: 575px) {
  .search-bar form input[type=submit] {
    width: 130px;
  }
}
.search-bar form .s-close {
  width: 45px;
  height: 45px;
  background-color: #013399;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-left: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 575px) {
  .search-bar form .s-close {
    width: 30px;
  }
}
.search-bar form .s-close img {
  filter: brightness(0) invert(1);
}
@media (max-width: 575px) {
  .search-bar form .s-close img {
    width: 10px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 600ms all;
}
header .container {
  position: relative;
}
@media (max-width: 1199px) {
  header .container {
    max-width: 100%;
  }
}
header .top-bar {
  background-color: #f3f3f3;
  padding: 10px 0;
  font-size: 14px;
  transition: 600ms all;
}
@media (max-width: 991px) {
  header .top-bar {
    padding: 5px 0;
  }
}
header .top-bar .container .row .left {
  width: 40%;
}
header .top-bar .container .row .left ul {
  display: flex;
  gap: 20px;
}
header .top-bar .container .row .left ul li a {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 400;
}
@media (max-width: 991px) {
  header .top-bar .container .row .left ul li a {
    font-size: 0;
  }
}
header .top-bar .container .row .left ul li a img {
  margin-right: 5px;
}
@media (max-width: 991px) {
  header .top-bar .container .row .left ul li a img {
    margin-right: 0;
  }
}
header .top-bar .container .row .right {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
}
header .top-bar .container .row .right .links ul {
  display: flex;
  gap: 20px;
}
header .top-bar .container .row .right .links ul li a {
  color: #000000;
  font-weight: 400;
}
header .top-bar .container .row .right .social ul {
  display: flex;
  gap: 20px;
}
header .top-bar .container .row .right .social ul li a {
  color: #000000;
  font-weight: 500;
}
header .head-bar {
  padding: 10px 0;
  transition: 600ms all;
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
  border: 1px solid #ffffff;
  border-top: none;
  position: relative;
}
@media (max-width: 991px) {
  header .head-bar {
    border-radius: 0 0 15px 15px;
  }
}
@media (max-width: 767px) {
  header .head-bar {
    padding: 5px 0;
  }
}
header .head-bar .row {
  align-items: center;
}
header .head-bar .logo-wrap {
  width: 25%;
  transition: 600ms all;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  header .head-bar .logo-wrap {
    width: 30%;
  }
}
header .head-bar .logo-wrap a {
  display: inline-block;
  transition: 600ms all;
}
header .head-bar .logo-wrap a img {
  transition: 600ms all;
}
@media (max-width: 1199px) {
  header .head-bar .logo-wrap a img {
    width: 85px;
  }
}
@media (max-width: 767px) {
  header .head-bar .logo-wrap a img {
    width: 80px;
  }
}
header .head-bar .nav-wrap {
  width: 50%;
  transition: 600ms all;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
  }
}
@media (max-width: 767px) {
  header .head-bar .nav-wrap {
    top: 8px;
  }
}
header .head-bar .nav-wrap .navbar {
  padding: 0;
  position: inherit;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar {
    width: 100%;
  }
}
header .head-bar .nav-wrap .navbar .navbar-toggler {
  margin-left: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
header .head-bar .nav-wrap .navbar .navbar-toggler .navbar-toggler-icon {
  background-size: 35px;
  width: 35px;
  height: 35px;
}
header .head-bar .nav-wrap .navbar-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  header .head-bar .nav-wrap .navbar-nav {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav {
    padding: 30px;
    background-color: #ffffff;
    margin-top: 30px;
    border-radius: 20px;
    gap: 10px;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item {
  position: inherit;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding: 0;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link {
    font-size: 16px;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link.active, header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link:hover {
  color: #013399;
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link.active::before, header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link:hover::before {
  opacity: 1;
  bottom: -38px;
}
@media (max-width: 1199px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link.active::before, header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link:hover::before {
    bottom: -29px;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -24px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #bb4d00;
  opacity: 0;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link::before {
    left: inherit;
    display: none;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link::after {
  display: none;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link::after {
    float: right;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link.dropdown-toggle::before {
  display: none;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-toggle {
  margin-left: 5px;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu {
  left: 12px;
  right: 12px;
  top: calc(100% + 30px);
  border: none;
  border-radius: 20px;
  padding: 20px;
  transition: 600ms all;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
  }
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu {
    padding: 5px 0 0 15px;
    border-left: 1px solid #dfdfdf;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu div {
  transition: 600ms all;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .row {
  align-items: flex-start;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu ul {
  display: block;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu ul li {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu ul li a {
    color: #616161;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left {
  padding: 10px 30px;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left nav .nav-link {
  font-weight: 20px;
  margin-bottom: 15px;
  background: #ffffff;
  color: #616161;
  font-size: 16px;
}
@media (min-width: 992px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left nav .nav-link {
    padding-right: 15px;
    line-height: 24px;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left nav .nav-link:last-child {
  margin-bottom: 0;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left nav .nav-link::before {
  display: none;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .left nav .nav-link.active {
  background: url(../images/menu-arrow.svg) no-repeat top right;
  background-size: 8px;
  background-position-y: 7px;
  color: #013399;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .right {
  padding-left: 30px;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane {
  transition: opacity 0.2s linear;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  overflow: hidden;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box {
  width: calc(50% - 12px);
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box .inner {
  padding: 30px;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box .inner p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box .inner p {
    font-size: 14px;
    line-height: 24px;
  }
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box .inner a {
  background-color: #013399;
  padding: 8px 25px;
  color: #ffffff;
  display: inline-block;
  border-radius: 10px 0 10px 0;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .left-box .inner a:hover {
  background-color: #091f5b;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .right-box {
  width: calc(50% - 12px);
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .right-box figure {
  height: 100%;
}
header .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu .tab-content .tab-pane .right-wrap .right-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .head-bar .contact-wrap {
  width: 25%;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  header .head-bar .contact-wrap {
    margin-left: auto;
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  header .head-bar .contact-wrap {
    width: calc(70% - 50px);
  }
}
header .head-bar .contact-wrap ul {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
header .head-bar .contact-wrap ul .search .s-btn {
  border: 1px solid #cbcbcb;
  padding: 10px;
  border-radius: 15px 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: relative;
}
@media (max-width: 991px) {
  header .head-bar .contact-wrap ul .search .s-btn {
    padding: 11px;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  header .head-bar .contact-wrap ul .search .s-btn {
    padding: 10px;
  }
}
header .head-bar .contact-wrap ul .search .s-btn img {
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
header .head-bar .contact-wrap ul .search .s-btn .close-icon {
  opacity: 0;
}
header .head-bar .contact-wrap ul .search .s-btn.close .search-icon {
  opacity: 0;
}
header .head-bar .contact-wrap ul .search .s-btn.close .close-icon {
  opacity: 1;
}
header .head-bar .contact-wrap ul .talk a {
  background-color: #091f5b;
  border-radius: 10px 0 10px 0;
  padding: 10px 35px;
  font-weight: 400;
  display: inline-block;
  color: #ffffff;
  white-space: nowrap;
}
@media (max-width: 991px) {
  header .head-bar .contact-wrap ul .talk a {
    padding: 8px 20px;
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  header .head-bar .contact-wrap ul .talk a {
    padding: 7px 25px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  header .head-bar .contact-wrap ul .talk a {
    padding: 7px 15px;
  }
}
header .head-bar .contact-wrap ul .talk a:hover {
  background-color: #013399;
}
header.on-scroll .top-bar {
  padding: 2px 0;
}
header.on-scroll .head-bar {
  padding: 5px 0;
  border: 1px solid #eeeeee;
  border-top: none;
}
header.on-scroll .head-bar .logo-wrap a img {
  width: 80px;
  transition: 600ms all;
}
@media (max-width: 991px) {
  header.on-scroll .head-bar .nav-wrap {
    top: 8px;
  }
}
header.on-scroll .head-bar .nav-wrap .navbar-nav .nav-item a.nav-link::before {
  bottom: -22px;
}
header.on-scroll .head-bar .nav-wrap .navbar-nav .nav-item .dropdown-menu {
  top: calc(100% + 25px);
}
header.on-scroll .head-bar .nav-wrap ul {
  display: flex;
}
header.on-scroll .head-bar .nav-wrap ul li a.active::after, header.on-scroll .head-bar .nav-wrap ul li a:hover::after {
  bottom: -29px;
}
header.on-scroll .head-bar .nav-wrap ul li a::after {
  bottom: -15px;
}
header.on-scroll .head-bar .contact-wrap ul .talk a {
  font-size: 12px;
  padding: 5px 25px;
}
@media (max-width: 991px) {
  header.on-scroll .head-bar .contact-wrap ul .talk a {
    padding: 7px 25px;
  }
}
@media (max-width: 575px) {
  header.on-scroll .head-bar .contact-wrap ul .talk a {
    padding: 7px 15px;
  }
}
header.on-scroll .head-bar .contact-wrap ul .talk a:hover {
  background-color: #013399;
}
header.on-scroll .head-bar .contact-wrap ul .search .s-btn {
  width: 40px;
  height: 40px;
}
header.inner-page .head-bar {
  border: 1px solid #eeeeee;
  border-top: none;
}

.banner {
  background-color: #000;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .banner {
    border-radius: 0 0 20px 20px;
  }
}
.banner .owl-banner .item {
  position: relative;
  height: 100%;
}
@media (max-width: 991px) {
  .banner .owl-banner .item {
    height: 550px;
  }
}
.banner .owl-banner .item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .owl-banner .item .ban-text {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0px;
  top: 130px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .banner .owl-banner .item .ban-text {
    justify-content: center;
    text-align: center;
    top: 80px;
  }
}
.banner .owl-banner .item .ban-text h1 {
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .banner .owl-banner .item .ban-text h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.banner .owl-banner .item .ban-text h1 span {
  font-weight: 200;
  font-size: 70px;
}
@media (max-width: 1199px) {
  .banner .owl-banner .item .ban-text h1 span {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .banner .owl-banner .item .ban-text h1 span {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .banner .owl-banner .item .ban-text h1 span {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .banner .owl-banner .item .ban-text h1 span {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 450px) {
  .banner .owl-banner .item .ban-text h1 span {
    font-size: 30px;
    line-height: 30px;
  }
}
.banner .owl-banner .item .ban-text p {
  font-size: 18px;
  color: #fff;
}
.banner .owl-banner .item .ban-text a {
  background-color: #091f5b;
  flex-grow: 1;
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  border-radius: 10px 0 10px 0;
  margin-top: 10px;
  padding: 10px 25px;
}
@media (max-width: 450px) {
  .banner .owl-banner .item .ban-text a {
    margin-top: 0;
  }
}
.banner .owl-nav {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column-reverse;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 150px;
  bottom: 0;
}
@media (max-width: 991px) {
  .banner .owl-nav {
    flex-direction: unset;
    top: inherit;
    bottom: 30px;
  }
}
.banner .owl-nav button {
  width: 70px;
  height: 70px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2) !important;
  display: flex;
  margin: 3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26) !important;
  font-size: 30px !important;
  transition: 600ms all;
}
@media (max-width: 991px) {
  .banner .owl-nav button {
    width: 50px;
    height: 50px;
  }
}
.banner .owl-nav button span {
  color: #ffffff;
}
.banner .owl-nav button:hover {
  background-color: #091f5b !important;
}

.services {
  padding: 110px 0 80px;
  background: url(../images/service-bg.png) no-repeat center;
  background-size: cover;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .services {
    padding: 80px 0 50px;
  }
}
.services .head {
  margin-bottom: 20px;
}
.services .head h2 {
  margin-bottom: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .services .head h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .services .head h2 br {
    display: none;
  }
}
.services .head p {
  color: #ffffff;
}
.services .tab-left {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .services .tab-left {
    padding-top: 0;
  }
}
.services .tab-left .nav {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .services .tab-left .nav {
    padding-right: 0;
    flex-direction: unset !important;
    gap: 8px;
    margin-bottom: 30px;
  }
}
@media (max-width: 430px) {
  .services .tab-left .nav {
    gap: 5px;
  }
}
.services .tab-left .nav-link {
  margin-bottom: 14px;
  position: relative;
  border-radius: 35px 0 0 35px;
  text-align: left;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 0;
}
@media (max-width: 991px) {
  .services .tab-left .nav-link {
    font-size: 15px;
    margin-bottom: 2px;
  }
}
@media (max-width: 767px) {
  .services .tab-left .nav-link {
    padding: 0;
    border-radius: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .services .tab-left .nav-link {
    font-size: 13px;
  }
}
@media (max-width: 430px) {
  .services .tab-left .nav-link {
    width: 100%;
    font-size: 15px;
  }
}
.services .tab-left .nav-link.active {
  background-color: transparent;
}
.services .tab-left .nav-link.active span {
  border-radius: 35px 0 0 35px;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .services .tab-left .nav-link.active span {
    border-radius: 30px;
    background-color: #013399;
  }
}
.services .tab-left .nav-link.active span::after, .services .tab-left .nav-link.active span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #0d6dd4;
  background: linear-gradient(90deg, rgb(13, 109, 212) 0%, rgba(13, 109, 212, 0) 100%);
}
@media (max-width: 767px) {
  .services .tab-left .nav-link.active span::after, .services .tab-left .nav-link.active span::before {
    display: none;
  }
}
.services .tab-left .nav-link.active span::before {
  top: inherit;
  bottom: 0;
}
.services .tab-left .nav-link.active::before {
  opacity: 1;
}
.services .tab-left .nav-link span {
  padding: 10px 20px;
  border-radius: 35px 0 0 35px;
  display: block;
  position: relative;
  border-left: 1px solid transparent;
  overflow: hidden;
}
@media (max-width: 991px) {
  .services .tab-left .nav-link span {
    padding: 5px 20px;
  }
}
@media (max-width: 767px) {
  .services .tab-left .nav-link span {
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
  }
}
@media (max-width: 575px) {
  .services .tab-left .nav-link span {
    padding: 5px 10px;
  }
}
@media (max-width: 430px) {
  .services .tab-left .nav-link span {
    padding: 8px 15px;
  }
}
.services .tab-left .nav-link span::after {
  position: absolute;
  content: "";
  left: 5px;
  top: 23px;
  width: 7px;
  height: 7px;
  background-color: #6296ff;
  border-radius: 10px;
  transition: none;
}
@media (max-width: 991px) {
  .services .tab-left .nav-link span::after {
    top: 17px;
  }
}
@media (max-width: 767px) {
  .services .tab-left .nav-link span::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .services .tab-left .nav-link span:hover {
    background-color: #091f5b;
  }
}
.services .tab-left .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  border: 1px solid #0d6dd4;
  border-right: none;
  border-radius: 30px 0 0 30px;
  opacity: 0;
  transition: none;
}
@media (max-width: 767px) {
  .services .tab-left .nav-link::before {
    display: none;
  }
}
.services .tab-left .nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #0d6dd4;
  background: linear-gradient(90deg, rgba(13, 109, 212, 0) 0%, rgb(13, 109, 212) 19%, rgba(13, 109, 212, 0) 92%);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .services .tab-left .nav-link::after {
    display: none;
  }
}
.services .tab-right .tab-pane .wrap figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .services .tab-right .tab-pane .wrap figure {
    height: 300px;
  }
}
.services .tab-right .tab-pane .wrap figure::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/service-overlay.png) no-repeat right top;
}
.services .tab-right .tab-pane .wrap figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .tab-right .tab-pane .wrap figure .text-wrap {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  border-radius: 18px;
  background-color: rgba(9, 31, 91, 0.5);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  max-width: 450px;
  display: inline-block;
  z-index: 1;
  color: #ffffff;
}
@media (max-width: 1199px) {
  .services .tab-right .tab-pane .wrap figure .text-wrap {
    padding: 20px;
  }
}
.services .tab-right .tab-pane .wrap figure .text-wrap p {
  font-size: 19px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .services .tab-right .tab-pane .wrap figure .text-wrap p {
    font-size: 15px;
    line-height: 24px;
  }
}

.gloabal-presence {
  padding: 80px 0 300px;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(233, 233, 233) 90%);
}
@media (max-width: 767px) {
  .gloabal-presence {
    padding: 50px 0 270px;
  }
}
.gloabal-presence h2 {
  font-size: 46px;
  margin: 35px 0 50px;
}
@media (max-width: 991px) {
  .gloabal-presence h2 {
    font-size: 36px;
    margin: 15px 0 30px;
  }
}
@media (max-width: 767px) {
  .gloabal-presence h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gloabal-presence h2 {
    font-size: 24px;
  }
}
.gloabal-presence .location {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gloabal-presence .location {
    justify-content: flex-start;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .gloabal-presence .location {
    gap: 15px;
  }
}
.gloabal-presence .location li .wrap {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .gloabal-presence .location li .wrap {
    font-size: 18px;
  }
}
.gloabal-presence .location li .wrap span {
  margin-right: 10px;
  background-color: #ffffff;
  border: 5px solid #ffffff;
  border-radius: 50px;
}
@media (max-width: 991px) {
  .gloabal-presence .location li .wrap span {
    width: 40px;
    margin-right: 5px;
  }
}

.about {
  background: url(../images/about-bg.png) no-repeat;
  background-size: cover;
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .about {
    padding: 0 0 50px;
  }
}
.about .about-box {
  margin-top: -220px;
}
.about .about-box .inner-wrap {
  display: flex;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .about .about-box .inner-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .about .about-box .inner-wrap {
    border-radius: 20px;
  }
}
.about .about-box .inner-wrap .left {
  width: 60%;
  padding: 50px;
}
@media (max-width: 991px) {
  .about .about-box .inner-wrap .left {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .about .about-box .inner-wrap .left {
    padding: 25px;
  }
}
.about .about-box .inner-wrap .left h3 {
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 25px;
}
.about .about-box .inner-wrap .left h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background-color: rgba(1, 51, 153, 0.3);
}
.about .about-box .inner-wrap .right {
  width: 40%;
}
@media (max-width: 991px) {
  .about .about-box .inner-wrap .right {
    width: 100%;
    max-height: 450px;
  }
}
.about .about-box .inner-wrap .right figure {
  margin-bottom: 0;
  position: relative;
  height: 100%;
  min-height: 405px;
}
.about .about-box .inner-wrap .right figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-box .inner-wrap .right figure .box {
  width: 160px;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  background-color: rgba(187, 77, 0, 0.75);
  padding: 25px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.about .about-box .inner-wrap .right figure .box p {
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
}
.about .about-box .inner-wrap .right figure .box h3 {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}
.about .about-box .inner-wrap .right figure .box ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about .differences {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .about .differences {
    padding: 50px 12px 0;
  }
}
.about .differences h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .about .differences h3 {
    margin-bottom: 25px;
  }
}
.about .differences .diff-wrap {
  display: flex;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .about .differences .diff-wrap {
    margin-left: -3px;
    margin-right: -3px;
  }
}
.about .differences .diff-wrap .diff-box {
  width: 25%;
  transition: width 0.4s ease;
}
@media (max-width: 767px) {
  .about .differences .diff-wrap .diff-box {
    padding: 0 3px;
  }
}
@media (max-width: 575px) {
  .about .differences .diff-wrap .diff-box {
    width: 80px;
  }
}
.about .differences .diff-wrap .diff-box figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 520px;
}
@media (max-width: 767px) {
  .about .differences .diff-wrap .diff-box figure {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .about .differences .diff-wrap .diff-box figure {
    height: 300px;
    border-radius: 15px;
  }
}
.about .differences .diff-wrap .diff-box figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .differences .diff-wrap .diff-box figure .text-wrap {
  position: absolute;
  content: "";
  left: 35px;
  right: 35px;
  bottom: 35px;
  z-index: 2;
  color: #ffffff;
}
@media (max-width: 991px) {
  .about .differences .diff-wrap .diff-box figure .text-wrap {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}
.about .differences .diff-wrap .diff-box figure .text-wrap p {
  overflow: hidden;
  transition: 600ms all;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-100% - 50px);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  white-space: normal;
  -webkit-line-clamp: 3;
}
@media (max-width: 991px) {
  .about .differences .diff-wrap .diff-box figure .text-wrap p {
    font-size: 14px;
    line-height: 24px;
    bottom: calc(-100% - 150px);
  }
}
@media (max-width: 575px) {
  .about .differences .diff-wrap .diff-box figure .text-wrap p {
    font-size: 12px;
    line-height: 18px;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 991px) {
  .about .differences .diff-wrap .diff-box figure .text-wrap h5 {
    transform: rotate(-90deg);
    transform-origin: top left;
    margin-bottom: -56px;
  }
}
.about .differences .diff-wrap .diff-box figure::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.about .differences .diff-wrap .diff-box.active {
  width: 50%;
}
@media (max-width: 575px) {
  .about .differences .diff-wrap .diff-box.active {
    width: calc(100% - 160px);
  }
}
.about .differences .diff-wrap .diff-box.active figure .text-wrap h5 {
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .about .differences .diff-wrap .diff-box.active figure .text-wrap h5 {
    margin-bottom: 30px;
    transform: rotate(0deg);
    transform-origin: top left;
    margin-bottom: 80px;
  }
}
.about .differences .diff-wrap .diff-box.active figure .text-wrap p {
  bottom: 0;
}

.faq {
  background: url(../images/faq-bg.png) no-repeat;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }
}
.faq .head {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .faq .head {
    margin-bottom: 20px;
  }
}
.faq .left figure {
  border-radius: 15px;
  overflow: hidden;
  margin-right: 50px;
}
@media (max-width: 991px) {
  .faq .left figure {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .faq .left figure {
    height: 200px;
    margin-bottom: 15px;
  }
}
.faq .left figure img {
  width: 100%;
}
.faq .right .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(168, 168, 168, 0.4);
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.faq .right .accordion .accordion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.faq .right .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 500;
  color: #091f5b;
  padding: 0;
  background-color: transparent;
  border: none !important;
  box-shadow: none;
  outline: none;
}
.faq .right .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 10px;
}
.faq .right .accordion .accordion-item .accordion-body {
  padding: 10px 0 0;
}
.faq .right .accordion .accordion-item .accordion-body p {
  color: #272727;
}
.faq .right .accordion .accordion-item .accordion-body ul li {
  color: #272727;
  padding-left: 20px;
  background: url(../images/list.svg) no-repeat left top;
  background-position-y: 9px;
}

footer {
  background: url(../images/footer-bg.png) no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 95px;
}
@media (max-width: 767px) {
  footer {
    font-size: 14px;
    line-height: 22px;
  }
}
footer .touch {
  margin-top: -95px;
}
footer .touch ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  background: #bb4d00 url(../images/touch-bg.png) no-repeat;
  padding: 50px;
  border-radius: 30px;
}
@media (max-width: 575px) {
  footer .touch ul {
    padding: 30px;
    text-align: center;
    justify-content: center;
    border-radius: 20px;
  }
}
footer .touch ul li {
  color: #ffffff;
}
footer .touch ul li h6 {
  margin-bottom: 0;
  font-weight: 300;
}
footer .touch ul li a {
  background-color: #ffffff;
  padding: 10px 25px;
  border-radius: 10px 0 10px 0;
  font-weight: 400;
  color: #000000;
  border: 1px solid #ffffff;
  display: inline-block;
}
footer .touch ul li a:hover {
  background-color: #091f5b;
  color: #ffffff;
}
footer .foot-logo-wrap {
  margin-top: 60px;
}
@media (max-width: 767px) {
  footer .foot-logo-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  footer .foot-logo-wrap {
    margin-top: 25px;
  }
}
footer .foot-logo-wrap .wrap {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  footer .foot-logo-wrap .wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  footer .foot-logo-wrap .wrap {
    gap: 0px;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  footer .foot-logo-wrap .wrap {
    padding-bottom: 30px;
    margin-bottom: 0px;
  }
}
footer .foot-logo-wrap .wrap .left {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  footer .foot-logo-wrap .wrap .left {
    margin-bottom: 20px;
  }
}
footer .foot-logo-wrap .wrap .left img {
  width: 120px;
}
@media (max-width: 575px) {
  footer .foot-logo-wrap .wrap .left img {
    width: 80px;
  }
}
footer .foot-logo-wrap .wrap .right p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 991px) {
  footer .foot-logo-wrap .wrap .right p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  footer .foot-links-row .right {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  footer .foot-links-row .right {
    margin-top: 0px;
  }
}
footer .foot-links-row h6 {
  font-size: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  footer .foot-links-row h6 {
    margin-top: 30px;
  }
}
footer .foot-links-row h6::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  background-color: rgba(187, 77, 0, 0.4);
}
footer .foot-links-row ul li {
  margin-bottom: 5px;
}
footer .foot-links-row ul li:last-child {
  margin-bottom: 0;
}
footer .foot-links-row ul li a {
  color: #c7c7c7;
}
footer .foot-links-row p {
  color: #ffffff;
  line-height: 24px;
}
footer .foot-links-row form {
  display: flex;
  gap: 10px;
}
footer .foot-links-row form input {
  padding: 10px 15px;
  border: 1px solid rgba(225, 225, 225, 0.14);
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border-radius: 6px;
  width: 100%;
}
footer .foot-links-row form input[type=submit] {
  background-color: #002381;
  color: #ffffff;
  border: none;
  width: 110px;
}
footer .foot-links-row form input::-moz-placeholder {
  color: #c7c7c7;
  font-size: 16px;
}
footer .foot-links-row form input::placeholder {
  color: #c7c7c7;
  font-size: 16px;
}
footer .copy .wrap {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  margin-top: 50px;
}
@media (max-width: 575px) {
  footer .copy .wrap {
    flex-direction: column;
    gap: 15px;
    padding: 25px 0;
    margin-top: 25px;
  }
}
footer .copy .wrap p {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
footer .copy .wrap ul {
  display: flex;
  gap: 15px;
}
footer .copy .wrap ul li a img {
  filter: brightness(0) invert(1);
  width: 16px;
}

.inner-banner {
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 767px) {
  .inner-banner {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .inner-banner {
    height: 400px;
  }
}
.inner-banner img.banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  border-radius: 0;
}
.inner-banner .container {
  padding: 100px 12px 70px;
}
.inner-banner .container .right {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .inner-banner .container .right {
    justify-content: flex-start;
  }
}
.inner-banner .container .right .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 15px;
  position: relative;
}
.inner-banner .container .right .breadcrumbs li {
  color: #ffffff;
  font-weight: 300;
}
.inner-banner .container .right .breadcrumbs li img {
  filter: brightness(0) invert(1);
}
.inner-banner .container .right .breadcrumbs li a {
  color: #ffffff;
}
.inner-banner .container .right .breadcrumbs li:last-child {
  color: orange !important;
}
.inner-banner .container .right .breadcrumbs li:last-child a {
  color: orange !important;
}
.inner-banner .container h1 {
  position: relative;
  z-index: 2;
  line-height: 70px;
  color: #ffffff;
  font-weight: 300;
  font-size: 50px;
}
@media (max-width: 1199px) {
  .inner-banner .container h1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 991px) {
  .inner-banner .container h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .inner-banner .container h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .inner-banner .container h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.inner-banner .container h1 span {
  font-size: 60px;
  line-height: 60px;
  position: relative;
}
@media (max-width: 1199px) {
  .inner-banner .container h1 span {
    font-size: 45px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .inner-banner .container h1 span {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .inner-banner .container h1 span {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .inner-banner .container h1 span {
    font-size: 30px;
    line-height: 30px;
  }
}
.inner-banner .container h1 span::after {
  position: absolute;
  content: "";
  left: 0;
  right: -12px;
  top: 7px;
  bottom: 6px;
  width: 0;
  background-color: #ffffff;
  transition: 600ms all;
  border-radius: 10px;
  opacity: 0;
}
@media (max-width: 767px) {
  .inner-banner .container h1 span::after {
    border-radius: 6px;
  }
}
.inner-banner .container h1 span b {
  font-weight: 600;
  z-index: 1;
  position: relative;
}
.inner-banner:hover h1 span {
  padding-left: 10px;
  color: #013399;
}
.inner-banner:hover h1 span::after {
  width: calc(100% + 10px);
  opacity: 1;
}

.inner-section {
  position: relative;
  padding: 80px 0;
  margin-top: -30px;
  background-color: #ffffff;
  border-radius: 30px 30px 0 0;
}
@media (max-width: 991px) {
  .inner-section {
    border-radius: 20px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .inner-section {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .inner-section .about-top {
    margin-top: -38px;
  }
}
.inner-section .about-top figure {
  border-radius: 20px;
  position: relative;
  height: 100%;
}
.inner-section .about-top figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.inner-section .about-top .right {
  display: flex;
  align-items: center;
}
.inner-section .about-top .right .inner {
  padding-left: 26px;
}
@media (max-width: 991px) {
  .inner-section .about-top .right .inner {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .inner-section .about-top .right .inner {
    margin-top: 25px;
  }
}
.inner-section .about-top .right .inner h4 {
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.inner-section .about-top .right .inner h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background-color: #e9f0ff;
  opacity: 0;
}
@media (max-width: 767px) {
  .inner-section .about-top .right .inner h4::before {
    display: none;
  }
}
.inner-section .about-top .right .inner p {
  margin-top: 25px;
}
.inner-section .about-top:hover .right .inner h4 {
  transform: translateX(25px);
  color: #013399;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inner-section .about-top:hover .right .inner h4::before {
  left: -20px;
  opacity: 1;
}
@media (max-width: 767px) {
  .inner-section .about-top:hover .right .inner h4 {
    transform: translateX(0);
  }
}
.inner-section .vsn-msn {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .inner-section .vsn-msn {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .inner-section .vsn-msn {
    margin-top: 20px;
  }
}
.inner-section .vsn-msn .inner {
  padding: 50px 0;
  position: relative;
}
@media (max-width: 767px) {
  .inner-section .vsn-msn .inner {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .inner-section .vsn-msn .inner {
    padding: 25px 0;
  }
}
.inner-section .vsn-msn .inner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.inner-section .vsn-msn .inner h5 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #091f5b;
}
.inner-section .vsn-msn .inner h5::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background-color: rgba(161, 161, 161, 0.34);
}
.inner-section .sectors figure {
  margin-bottom: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.inner-section .sectors figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner-section .sectors figure .wrap {
  padding: 50px;
  width: 550px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .inner-section .sectors figure .wrap {
    width: 100%;
    padding: 30px;
  }
}
.inner-section .sectors figure .wrap h3 {
  margin-bottom: 15px;
}

.clients {
  padding: 0 0 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .clients {
    padding: 0 0 50px;
  }
}
.clients h3 {
  margin-bottom: 30px;
  color: #091f5b;
}
@media (max-width: 767px) {
  .clients h3 {
    margin-bottom: 20px;
  }
}

.sector-row {
  margin-bottom: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 575px) {
  .sector-row:first-child {
    margin-top: -38px;
  }
}
.sector-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.sector-row:last-child::after {
  display: none;
}
.sector-row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.sector-row::after {
  position: absolute;
  content: "";
  right: 12px;
  left: 12px;
  bottom: 0;
  height: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sector-row figure {
  border-radius: 20px;
  overflow: hidden;
}
.sector-row figure img {
  width: 100%;
}
.sector-row .text-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sector-row .text-wrap {
    margin-top: 20px;
  }
}
.sector-row .text-wrap .inner {
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .sector-row .text-wrap .inner {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .sector-row .text-wrap .inner {
    padding-left: 0px;
  }
}
.sector-row .text-wrap .inner h3 {
  font-size: 38px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 1199px) {
  .sector-row .text-wrap .inner h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .sector-row .text-wrap .inner h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sector-row .text-wrap .inner h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .sector-row .text-wrap .inner h3 {
    font-size: 22px;
  }
}
.sector-row .text-wrap .inner h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  top: 6px;
  width: 0;
  height: 35px;
  background-color: #e9f0ff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .sector-row .text-wrap .inner h3::after {
    display: none;
  }
}
.sector-row .text-wrap .inner h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background-color: rgba(1, 51, 153, 0.3);
  border-radius: 20px;
}
.sector-row .text-wrap .inner a {
  color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
  border-radius: 10px 0 10px 0;
  background-color: #091f5b;
}
.sector-row .text-wrap:hover .inner h3 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateX(30px);
}
@media (max-width: 767px) {
  .sector-row .text-wrap:hover .inner h3 {
    transform: translateX(0px);
  }
}
.sector-row .text-wrap:hover .inner h3::after {
  width: 22px;
  left: -30px;
}

.solution-row {
  margin: 80px 0;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .solution-row {
    margin: 50px 0;
    padding-bottom: 0;
  }
}
.solution-row::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 500px;
  height: 1px;
  background-color: #dfdfdf;
  margin: auto;
}
@media (max-width: 767px) {
  .solution-row::after {
    display: none;
  }
}
.solution-row h5 {
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  color: #013399;
}
.solution-row h5::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 1px;
  background-color: rgba(1, 51, 153, 0.3);
}
.solution-row .solution-box {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .solution-row .solution-box {
    margin-bottom: 12px;
  }
}
.solution-row .solution-box .inner {
  min-height: 260px;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px;
  border-radius: 20px;
  transition: 600ms all;
}
@media (max-width: 575px) {
  .solution-row .solution-box .inner {
    min-height: auto;
  }
}
.solution-row .solution-box .inner .icon img {
  transition: 600ms all;
}
.solution-row .solution-box .inner h6 {
  font-size: 20px;
  color: #013399;
  transition: 600ms all;
}
@media (max-width: 575px) {
  .solution-row .solution-box .inner h6 {
    margin-top: 25px;
  }
}
.solution-row .solution-box .inner:hover {
  background-color: #013399;
}
.solution-row .solution-box .inner:hover .icon img {
  filter: brightness(0) invert(1);
}
.solution-row .solution-box .inner:hover h6 {
  color: #ffffff;
}
.solution-row p {
  text-align: center;
}

.single-row {
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 991px) {
  .single-row {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .single-row {
    flex-direction: column-reverse;
  }
}
.single-row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .single-row:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}
.single-row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-row figure {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .single-row figure {
    border-radius: 20px 20px 0 0;
  }
}
.single-row figure img {
  width: 100%;
}
.single-row .text-wrap {
  display: flex;
  align-items: center;
}
.single-row .text-wrap .inner {
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .single-row .text-wrap .inner {
    padding-left: 5px;
  }
}
@media (max-width: 991px) {
  .single-row .text-wrap .inner {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .single-row .text-wrap .inner {
    padding-top: 40px;
    border: 1px solid #dfdfdf;
    padding: 30px;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 575px) {
  .single-row .text-wrap .inner {
    padding: 25px;
  }
}
.single-row .text-wrap .inner h3 {
  font-size: 38px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 1199px) {
  .single-row .text-wrap .inner h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .single-row .text-wrap .inner h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .single-row .text-wrap .inner h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .single-row .text-wrap .inner h3 {
    font-size: 22px;
  }
}
.single-row .text-wrap .inner h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  top: 6px;
  width: 0;
  height: 35px;
  background-color: #e9f0ff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .single-row .text-wrap .inner h3::after {
    display: none;
  }
}
.single-row .text-wrap .inner h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background-color: rgba(1, 51, 153, 0.3);
  border-radius: 20px;
}
.single-row .text-wrap .inner ul {
  margin-bottom: 12px;
}
.single-row .text-wrap .inner ul li {
  color: #616161;
  padding-left: 20px;
  background: url(../images/list.svg) no-repeat left top;
  background-position-y: 9px;
  margin-bottom: 5px;
}
.single-row .text-wrap .inner ul li:last-child {
  margin-bottom: 0;
}
.single-row .text-wrap:hover .inner h3 {
  transform: translateX(25px);
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .single-row .text-wrap:hover .inner h3 {
    padding-left: 0;
    transform: translateX(0);
  }
}
.single-row .text-wrap:hover .inner h3::after {
  width: 22px;
  left: -25px;
}

.contact-row .address .inner {
  padding-right: 30px;
  border-right: 1px solid rgba(0, 70, 212, 0.1);
}
@media (max-width: 991px) {
  .contact-row .address .inner {
    padding-right: 0;
    border-right: none;
    margin-bottom: 30px;
  }
}
.contact-row .address .address-box {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-row .address .address-box {
    margin-bottom: 25px;
  }
}
.contact-row .address .address-box ul {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .contact-row .address .address-box ul {
    gap: 15px;
  }
}
.contact-row .address .address-box ul li {
  display: flex;
  align-items: center;
}
.contact-row .address .address-box ul li .icon {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #f6f7f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact-row .address .address-box ul li .icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 575px) {
  .contact-row .address .address-box ul li .icon {
    width: 50px;
    height: 50px;
  }
}
.contact-row .address .address-box ul li .icon img {
  width: 22px;
}
.contact-row .address .address-box ul li a {
  font-weight: 600;
  font-size: 23px;
}
@media (max-width: 767px) {
  .contact-row .address .address-box ul li a {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .contact-row .address .address-box ul li a {
    font-size: 18px;
  }
}
.contact-row .address .address-box ul li a .gradient {
  background: linear-gradient(to right, #013399, #013399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.contact-row .address .address-box ul li a:hover .gradient {
  color: #013399;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-row .address .address-box ul li p {
  font-weight: 400;
  margin-bottom: 0;
}
.contact-row .address .address-box ul li .social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .contact-row .address .address-box ul li .social {
    gap: 10px;
  }
}
.contact-row .address .address-box ul li .social li {
  width: calc(50% - 10px);
}
.contact-row .address .address-box ul li .social li a {
  font-size: 17px;
  color: #616161;
  font-weight: 300;
  display: flex;
}
@media (max-width: 575px) {
  .contact-row .address .address-box ul li .social li a {
    font-size: 14px;
  }
}
.contact-row .address .address-box ul li .social li a img {
  margin-right: 5px;
}
.contact-row .address .address-box ul li .social li a:hover {
  color: #013399;
}
.contact-row .address .address-box:last-child ul li .icon {
  background-color: #013399;
}
.contact-row .address .address-box:last-child ul li .icon img {
  filter: brightness(0) invert(1);
}
.contact-row .address:hover h4 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateX(25px);
}
@media (max-width: 767px) {
  .contact-row .address:hover h4 {
    transform: none;
  }
}
.contact-row .address:hover h4::after {
  width: 15px;
  left: -25px;
}
.contact-row .form-wrap {
  padding-left: 42px;
}
@media (max-width: 991px) {
  .contact-row .form-wrap {
    padding-left: 12px;
  }
}
.contact-row .form-wrap h4 {
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.contact-row .form-wrap h4::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  top: 6px;
  width: 0;
  height: 25px;
  background-color: #e9f0ff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .contact-row .form-wrap h4::after {
    display: none;
  }
}
.contact-row .form-wrap form .field {
  margin-bottom: 24px;
  font-size: 15px;
}
.contact-row .form-wrap form .field label {
  display: block;
  margin-bottom: 5px;
}
.contact-row .form-wrap form .field input,
.contact-row .form-wrap form .field textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  box-shadow: none;
  outline: none;
}
.contact-row .form-wrap form .field input[type=submit],
.contact-row .form-wrap form .field textarea[type=submit] {
  width: auto;
  background-color: #091f5b;
  color: #ffffff;
  border-radius: 10px 0 10px 0;
  padding: 10px 30px;
  transition: 600ms all;
}
.contact-row .form-wrap form .field input[type=submit]:hover,
.contact-row .form-wrap form .field textarea[type=submit]:hover {
  background-color: #013399;
}
.contact-row .form-wrap:hover h4 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateX(25px);
}
@media (max-width: 767px) {
  .contact-row .form-wrap:hover h4 {
    transform: none;
  }
}
.contact-row .form-wrap:hover h4::after {
  width: 15px;
  left: -25px;
}
.contact-row .map {
  padding: 0;
  margin-top: 50px;
  margin-bottom: -130px;
}
.contact-row .map .wrap {
  border-radius: 20px;
  overflow: hidden;
}
.contact-row .map .wrap iframe {
  display: block;
  width: 100%;
  height: 350px;
}
.contact-row .career-box {
  margin-bottom: 25px;
}
.contact-row .career-box h6 {
  font-size: 20px;
  color: #091f5b;
}
@media (max-width: 767px) {
  .contact-row .career-box h6 {
    font-size: 18px;
  }
}
.contact-row .career-box p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 5px;
}
.contact-row h4 {
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.contact-row h4::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  top: 6px;
  width: 0;
  height: 25px;
  background-color: #e9f0ff;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .contact-row h4::after {
    display: none;
  }
}

.latest-wrap {
  display: flex;
  background-color: #ffffff;
}
.latest-wrap .left {
  width: 50%;
}
.latest-wrap .left figure {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.latest-wrap .left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-wrap .right {
  width: 50%;
}
.latest-wrap .right .wrap {
  padding-left: 50px;
}
.latest-wrap .right .wrap p {
  margin-bottom: 0;
}
.latest-wrap .right .wrap p span {
  color: #013399;
  font-size: 14px;
}
.latest-wrap .right .wrap h5 {
  margin-bottom: 25px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.latest-wrap .right .wrap a {
  color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
  border-radius: 10px 0 10px 0;
  background-color: #091f5b;
  margin-top: 15px;
}
.latest-wrap:hover .right .wrap h5 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.single-news-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
}
@media (max-width: 575px) {
  .single-news-wrap {
    margin-top: -38px;
  }
}
.single-news-wrap .left {
  width: 50%;
}
@media (max-width: 767px) {
  .single-news-wrap .left {
    width: 100%;
  }
}
.single-news-wrap .left figure {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.single-news-wrap .left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news-wrap .right {
  width: 50%;
}
@media (max-width: 767px) {
  .single-news-wrap .right {
    width: 100%;
  }
}
.single-news-wrap .right .wrap {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .single-news-wrap .right .wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}
.single-news-wrap .right .wrap p {
  margin-bottom: 0;
}
.single-news-wrap .right .wrap p span {
  color: #013399;
  font-size: 14px;
}
.single-news-wrap .right .wrap h5 {
  margin-bottom: 25px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.single-news-wrap .right .wrap a {
  color: #ffffff;
  padding: 10px 25px;
  display: inline-block;
  border-radius: 10px 0 10px 0;
  background-color: #091f5b;
  margin-top: 15px;
}
.single-news-wrap:hover .right .wrap h5 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-box-row {
  margin: 25px -12px 0;
}
.news-box-row .head {
  margin-top: 50px;
}
.news-box-row .head h3 {
  margin-bottom: 0;
  color: #091f5b;
}

.news-box {
  margin-top: 50px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .news-box {
    margin-top: 25px;
  }
}
.news-box .inner p {
  margin-bottom: 0px;
}
.news-box .inner p span {
  font-size: 13px;
  color: #013399;
}
.news-box .inner h6 {
  transition: 600ms all;
  font-size: 20px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .news-box .inner h6 {
    font-size: 18px;
  }
}
.news-box .inner figure {
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
}
.news-box .inner figcaption {
  position: relative;
}
.news-box .inner:hover h6 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-details-row p span {
  color: #013399;
}
.news-details-row h5 {
  margin-bottom: 25px;
  background: linear-gradient(to right, #091f5b, #091f5b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.news-details-row .right:hover h5 {
  color: #0046d4;
  background: linear-gradient(to right, #0039d3, #091f5b, #0039d3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.news-details-row figure {
  margin-bottom: 25px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
.news-details-row figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-box {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .team-box:first-child {
    margin-top: -38px;
  }
}
.team-box .inner figure {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
.team-box .inner figcaption h6 {
  color: #091f5b;
  margin-bottom: 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .team-box .inner figcaption h6 {
    font-size: 18px;
  }
}
.team-box .inner figcaption p {
  font-size: 14px;
}
@media (max-width: 767px) {
  .team-box .inner figcaption p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */