@import url("font-awesome.min.css");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

.layout_padding {
  padding-top: 190px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.content_start{
	padding-top: 7em;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.about_to .heading_container h2 {
	margin: 2em auto 4em auto;
}

.about_bc .heading_container h2 {
	margin: 2em auto 4em auto;
}

.about_hk .heading_container h2 {
	margin: 2em auto 4em auto;
}

/*.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: rgb(6, 163, 218);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}*/

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.heading_container.heading_center h2 span {
  font-weight: 100;
}

/*header section*/
.hero_area {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero_bg_box .img-box {
  width: 100%;
}

.hero_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.hero_bg_box .img-box video {
  min-width: 100%;
  min-height: 100%;
}

.hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
}

.hero_bg_box div img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
}

.sub_page .hero_area {
  min-height: auto;
	display: block;
	position: fixed;
	height: auto;
	width: 100%;
	z-index: 999;
}

#mainHeader {
	display: block;
	position: fixed;
	height: auto;
	width: 100%;
	z-index: 50;
	background: url("images/hero-bg2.jpg");
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.05)));
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
	background-repeat: no-repeat;
	background-size: cover;
	background-color: transparent;
	background-position: center;
	transition: background-color 0.5s ease;
}

.navbar {
    width: 100%; /* Ensures the navbar takes full width */
}

/* Align dropdown menus properly under their respective toggle links */
.nav-item .dropdown-menu {
    position: absolute; /* Positions the dropdown menu absolutely within its parent */
    left: 0; /* Aligns the dropdown menu to start from the left edge of its parent */
    top: 100%; /* Positions the dropdown right below the toggle link */
    z-index: 1000; /* Keeps the dropdown on top of other content */
}

.nav-item.active {
	background-color: rgba(6, 163, 218, 0.75);
	border-radius: 0 0 0.5em 0.5em;
}

.dropdown-menu:last-child {
	right: 0 !important;
	left: auto !important;
}

.navbar-nav .dropdown-menu {
    /* Adjust the top margin to ensure there is no overlap */
	z-index: 1030; /* Bootstrap default z-index for dropdowns is 1000, ensure this is higher than nav-link but sensible within your z-index layout */
}

@media (max-width: 768px) {
  .navbar-nav .dropdown-menu {
    position: static;  /* Makes dropdown expand within the navbar structure */
  }
}

.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding-bottom: 21px;
}

.hero_area.sub_pages {
  height: auto;
}


.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_top {
  background-color: rgb(6, 163, 218);
  padding: 15px 0;
}

.header_top .contact_link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end;
      -ms-flex-pack: flex-end;
          justify-content: flex-end;
}

.header_top .contact_link-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 15px;
	margin-right: 2em;
}

.header_top .contact_link-container a i {
  font-size: 20px;
  color: #ffffff;
  margin-right: 5px;
}

#navbarSupportedContent {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.position-relative-r{
	position:relative !important;
	vertical-align: bottom;
	margin-bottom: 1em;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 8px;
    bottom: 0;
    background: var(--bs-blue);
    border-radius: 4px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 2px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
	box-shadow: 0 0 2px 2px rgba(137, 234, 247, 1);
	border-radius: 2px;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0px; } 50% { left : 145px; } 100% { left: 0px; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 70px; } 100% { left: 50%; margin-left: -65px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*** Section Title End***/

.custom_nav-container {
  z-index: 1000;
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 0;
  padding: 35px 15px 10px 15px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.nav-item .dropdown-toggle {
	padding-left: 0;
}

/* Optional: Add some CSS for better visibility and interaction */
.nav-item .dropdown-toggle::after {
    margin-left: 5px; /* Adds some space between the link text and the arrow */
}

.nav-item:hover .dropdown-menu {
    display: block; /* Shows the dropdown menu on hover */
}

/* Ensure dropdown items do not wrap and cause layout shift */
.nav-item .dropdown-menu a {
    white-space: nowrap; /* Prevents text wrapping in dropdown items */
    width: auto; /* Allows the width to adjust based on content */
}

.nav-item .nav-link.dropdown-toggle {
  padding-left: 0.5rem; /* Adds some space between the main link and the toggle */
  padding-right: 0; /* Reduces padding on the right of the toggle for closer alignment */
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
	border-radius: 0 0 0.5em 0.5em;
	background-color: rgba(6, 163, 218, 0.75);
}

.nav-item {
	z-index: 10000;
}

.nav-item a{
	pointer-events: auto;
	display: block;
	position: relative;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
}

.navbar-brand img {
  height: 1.6em;
  width: auto;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 15px;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  top: -10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail-box {
  width: 100%;
  margin: 0 auto;
  border-radius: 0.5em;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 600;
}

.slider_section .detail-box h1 span {
  color: rgb(6, 163, 218);
}

.slider_section .detail-box p {
  margin-top: 25px;
}

.detail-box span {
	font-style: italic;
	font-size: 0.8em;
	font-weight: 100;
	color: rgb(6, 163, 218);
	margin-top: -20px;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  border-radius: 0.5em;
}

.slider_section .detail-box .btn-box a {
  width: 180px;
  text-align: center;
  margin: 5px;
  border-radius: 0.5em;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 35px;
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 0.5em;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  background-color: rgb(6, 163, 218);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  border-color: rgb(6, 163, 218);
  color: rgb(6, 163, 218);
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .img-box video {
  width: 100%;
	z-index: 100;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: rgb(6, 163, 218);
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
	display: flex;
	flex-wrap: wrap;
}

.img_vcenter {
	align-items: center;
}

.about_qsc {
	background-image: url("../images/bg_sdp.jpeg");
    background-position: top left, bottom left, top left;
    background-size: cover;
    background-repeat: no-repeat, no-repeat, repeat;
	color: #ffffff;
	text-align: center;
}

.about_sds {
	background-image: url("../images/bg_sds.jpeg");
    background-position: center left, center left, center left;
    background-size: cover;
    background-repeat: no-repeat, no-repeat, repeat;
	color: #ffffff;
	text-align: center;
}

.about_to {
	background-image: url("../images/bg_to.jpg");
    background-position: center left, center left, center left;
    background-size: cover;
    background-repeat: no-repeat, no-repeat, repeat;
	color: #ffffff;
	text-align: center;
}

.about_bc {
	background-image: url("../images/bg_bc.jpg");
    background-position: center left, center left, center left;
    background-size: cover;
    background-repeat: no-repeat, no-repeat, repeat;
	color: #ffffff;
	text-align: center;
}

.about_hk {
	background-image: url("../images/bg_hk.jpg");
    background-position: center left, center left, center left;
    background-size: cover;
    background-repeat: no-repeat, no-repeat, repeat;
	color: #ffffff;
	text-align: center;
}


.about_qsc h3, .about_sds h3, .about_to h3, .about_bc h3, .about_hk h3{
	font-size: 1.5em;
	font-weight: lighter;
	margin-bottom: 3em;
}

.about_sds .detail-box{
	margin-top: -5em;
	margin-bottom: 5em;
}

.about_section {
  background-color: #033245;
}

.about_section .img_container .img-box img {
  width: 100%;
  border-radius: 1em;
}

.about_section .img_container .img-box video {
  width: 100%;
}

.about_section .detail-box {
  background-color: #ffffff;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  margin-left: -45px;
  border-radius: 0.5em;
}

.about_section .detail-box .features{
  margin-left: 0px !important;
}

.about_section .detail-box p {
  margin-top: 5px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: rgb(6, 163, 218);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  border-radius: 0.5em;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  border-color: rgb(6, 163, 218);
  color: rgb(6, 163, 218);
}

.vnm4 {
	padding: 6em 0 6em 0;
	position: relative;
    background-color: #fff;
    background-image: url("../images/bg02.png"), url(../images/bg03.png), url(../images/bg01.png);
    background-position: top left, bottom left, top left;
    background-size: 100% 6em, 100% 6em, auto;
    background-repeat: no-repeat, no-repeat, repeat;
}

.vnm_box_flex {
	display: flex;  /* Enables flexbox */
	flex-direction: row;  /* Arranges children vertically */
	justify-content: space-around;
	height: 100%;
}

.vnm_box {
	padding-top: 2em;
	position: relative;
	display: block;
    background-color: #fff;
    background-image: url("../images/bg02.png"), url(../images/bg03.png), url(../images/bg01.png);
    background-position: top left, bottom left, top left;
    background-size: 100% 6em, 100% 6em, auto;
    background-repeat: no-repeat, no-repeat, repeat;
}

.vnm_box img{
	width: 30% !important;
}

.anp_box img{
	width: 80% !important;
	height: auto;
}

.anp_box div{
		vertical-align: middle !important;
}

.detail-box-about {
	text-align: left;
}

.detail-box-about div p {
	text-align: left;
}

.service_section {
  background-color: #ffffff;
}

.service_section2 {
  background-color: #ffffff !important;
}

.service_section .heading_container {
  color: #1c1c1c;
}

.service_section2 .heading_container {
  color: #1c1c1c !important;
}

#qsc .box2, #sds .box2 {
	margin-left: 0.5em;
	margin-right: 0.5em;
}

#about_qsc .box2 .sub_t p {
	text-align: justify;
	padding-left: 1em;
	padding-right: 1em;
}

#about_sds .box2 .sub_t p {
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
}

.box2 {
	flex-grow: 1;  /* Allows the box to expand to fill available space */
	text-align: center;  /* Centers the text as per your original design */
	display: flex;
	justify-content: center;
}

.box2 .align-left {
	text-align: left;
}

.box3 {
	padding: 2em 2em 1.5em 2em !important;
	margin-bottom: 2em;
}

.box4 {
	padding: 2em 2em 1.5em 2em !important;
}

.box4 h6 {
	text-align: justify;
}

.form_radius div input {
	border-radius: 0.5em;
}

.service_section .box {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  margin-top: 45px;
  border-radius: 1em;
}

.service_section .box .modal-body {
  background-color: #ffffff;
  padding: 25px 15px;
  text-align: left;
}

.service_section2 .box {
	background-color: #ffffff;
    background-image: url("../images/bg02.png"), url(../images/bg03.png), url(../images/bg01.png);
    background-position: top left, bottom left, top left;
    background-size: 100% 6em, 100% 6em, auto;
    background-repeat: no-repeat, no-repeat, repeat;
}
.service_section .box .img-box img{
	width: 100%;
}

.service_img {
	width: 40% !important;
}

.qsc_img, .sds_img {
	width: 95% !important;
	border-radius: 0.5em;
	margin: 0em auto;
}

.bc_img {
	width: 70% !important;
	height: 70% !important;
	display: block;
	border-radius: 0.5em;
	margin: 0em auto;
}

.location_img {
	width: 100% !important;
	border-radius: 0.5em;
	margin: 0.5em auto;
}

.lo_img {
	width: 100% !important;
	margin: -0.5em 0 0.5em 0;
	border-radius: 0.5em;
	box-shadow: 0 0 1px 1px rgba(60, 60, 60, 0.2);
}

.service_section .box .box-svg .img-box img{
	width: 50% !important;
}

.service_section .box .img-box svg {
  width: 75px;
  height: auto;
  fill: #1c1c1c;
}

.service_section .box .detail-box {
  margin-top: 25px;
  border-radius: 0.5em;
}

.service_section .box .location h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.service_section .box .detail-box h6 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service_section .box .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: rgb(6, 163, 218);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  margin-top: 10px;
  border-radius: 0.5em;
}

.service_section .box .detail-box a:hover {
  background-color: transparent;
  border-color: rgb(6, 163, 218);
  color: rgb(6, 163, 218);
}

.client_section {
  text-align: center;
}

.client_section #carouselExampleControls {
  padding: 0 10%;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.client_section .box .img-box {
  width: 145px;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .img-box video {
  width: 100%;
}

.client_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  border-radius: 0.5em;
}

.client_section .box .detail-box h4 {
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  border-bottom: 1px solid #ffffff;
}

.client_section .box .detail-box p {
  margin-top: 10px;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  border: none;
  opacity: 1;
  background-color: #1c1c1c;
  color: #ffffff;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background-color: rgb(6, 163, 218);
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  left: initial;
  right: 0;
}

/* contact section */
.contact_section {
  position: relative;
  color: #ffffff;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .contact_form-container {
  margin-top: 35px;
}

.contact_section .contact_form-container input {
  border: none;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
}

.contact_section .contact_form-container input::-webkit-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input.message_input {
  height: 120px;
}

.contact_section .contact_form-container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
  border-radius: 0.5em;
}

.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: rgb(6, 163, 218);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0.5em;
}

button[type="submit"].disabled, button[type="submit"]:disabled {
			background-color: rgba(255, 255, 255, 0.3) !important;
			box-shadow: none !important;
			color: #ffffff !important;
			cursor: default;
			opacity: 0.25;
		}

.recaptcha-submit[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.recaptcha-submit:not([disabled]) {
    cursor: pointer;
    opacity: 1;
}

.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: rgb(6, 163, 218);
  color: rgb(6, 163, 218);
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_bg_box .img-box {
  width: 100%;
}

.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.contact_bg_box .img-box video {
  min-width: 100%;
  min-height: 100%;
}

.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

/* end contact section */

.team_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin-top: 45px;
  position: relative;
}

.team_section .box .img-box {
  width: 100%;
}

.team_section .box .img-box img {
  width: 23%;
}

.team_section .box .img-box video {
  width: 100%;
}

.team_section .box .detail-box {
  position: relative;
  width: 100%;
  color: #00000;
  padding: 25px 15px;
  text-align: center;
  bottom: 0;
  border-radius: 0.5em;
}

.team_section .box .detail-box h6{
  position: relative;
  width: 100%;
  color: #00000;
  padding: 25px 15px;
  text-align: justify;
  bottom: 0;
}

.team_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
  border-radius: 0.5em;
}

.team_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: rgb(6, 163, 218);
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-radius: 0.5em;
}

.team_section .btn-box a:hover {
  background-color: transparent;
  border-color: rgb(6, 163, 218);
  color: rgb(6, 163, 218);
}

.info_section {
  background-color: #033245;
  color: #ffffff;
  padding: 75px 0 10px 0;
}

.info_section .row > div {
  margin-bottom: 25px;
}

.info_section h5 {
  margin-bottom: 25px;
  font-size: 24px;
}

.info_section .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_section .info_logo .navbar-brand {
  padding: 0;
  margin-bottom: 20px;
}

.info_section .info_logo .navbar-brand span {
  font-size: 24px;
  color: #ffffff;
}

.info_section .info_logo .navbar-brand img {
  height: 1.6em;
  width: auto;
}

.info_section .info_links ul {
  padding: 0;
}

.info_section .info_links ul li {
  list-style-type: none;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact a {
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  font-size: 20px;
  margin-right: 5px;
}

.info_section .info_form form input {
  outline: none;
  border: none;
  width: 100%;
  padding: 7px 10px;
  border-radius: 30px;
}

.info_section .info_form form button {
  padding: 8px 35px;
  outline: none;
  border: none;
  color: #ffffff;
  background: rgb(6, 163, 218);
  border-radius: 30px;
  margin-top: 15px;
  text-transform: uppercase;
}

.info_section .info_form .social_box {
  margin-top: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

.info_section .info_form .social_box a {
  margin-right: 10px;
  color: #ffffff;
  font-size: 20px;
}

/* footer section*/
.footer_section {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: #033245;
}

.footer_section p {
  color: rgba(254, 254, 255, 0.7);
  margin: 0;
  text-align: center;
}

.footer_section a {
  color: rgba(254, 254, 255, 0.7);
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */