@charset "UTF-8";
body {
  background-color: #fff;
  color: #202124;
  font-size: 14px;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

hr {
  border-top: 1px solid #e8eaed;
}

a {
  color: #008bc5;
  /* -webkit-transition: color 0.3s ease-in;
    -moz-transition: color 0.3s ease-in;
    -o-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;   */
}

a:hover {
  color: #008bc5;
}

.all-t,
.all-t:before {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.row-normal {
  margin-right: -10px !important;
  margin-left: -10px !important;
}

.col-normal {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.col-nopad {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.row-nopad {
  margin-right: 0px !important;
  margin-left: 0px !important;
}

.row {
  margin-right: -25px;
  margin-left: -25px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-left: 25px;
  padding-right: 25px;
}

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

.body-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253);
  box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253);
  min-height: 100vh;
}

.font-weight-bolder {
  font-weight: 500 !important;
}

.bg-light {
  border-radius: 0px;
  background-color: #f8f9fa !important;
}

.bg-mcs {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(../images/mcs_bg.jpg);
  background-size: contain;
  border-radius: 0px;
}

b,
strong {
  font-weight: 500;
}

.h5,
h5 {
  font-size: 21px;
  font-weight: normal;
}

.text h5,
.text .h5 {
  font-size: 24px;
  font-weight: 400;
}

.text h6,
.text .h6 {
  font-size: 20px;
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.no-border {
  border: none !important;
}

.pageloader {
  position: fixed;
  z-index: 1200;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  /* Safari */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Safari 6.1+ */
  /* Safari 6.1+ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.pageloader.remove {
  -moz-animation: ploaderremove 0.5s;
  /* Firefox */
  -webkit-animation: ploaderremove 0.5s;
  /* Safari and Chrome */
  -o-animation: ploaderremove 0.5s;
  /* Opera * */
  -webkit-animation-fill-mode: forwards;
  /* Safari 4.0 - 8.0 */
  animation-fill-mode: forwards;
  right: 0;
  /*display: none;*/
}

@-webkit-keyframes ploaderremove {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes ploaderremove {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

.pageloader svg {
  width: 80px;
  height: 80px;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 160px;
  height: 160px;
}

.circular .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {
  100%,
  0% {
    stroke: #e8eaed;
  }
  40% {
    stroke: #e8eaed;
  }
  66% {
    stroke: #e8eaed;
  }
  80%,
  90% {
    stroke: #e8eaed;
  }
}

@keyframes color {
  100%,
  0% {
    stroke: #e8eaed;
  }
  40% {
    stroke: #e8eaed;
  }
  66% {
    stroke: #e8eaed;
  }
  80%,
  90% {
    stroke: #e8eaed;
  }
}

.pageloader.remove .spinner {
  display: block;
}

.pageloader.change .spinner {
  display: none;
}

.pageloader .spinner {
  -webkit-animation-name: spin, depth;
          animation-name: spin, depth;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  text-align: center;
}

.pageloader .spinner.dl1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.pageloader .spinner.dl2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.pageloader .spinner.dl3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.pageloader .spinner.dl4 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.pageloader .spinner.dl5 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.pageloader .spinner.dl6 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.pageloader .spinner.dl7 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@-webkit-keyframes depth {
  0 {
    text-shadow: 0 0 black;
  }
  25% {
    text-shadow: 1px 0 black, 2px 0 black, 3px 0 black, 4px 0 black, 5px 0 black;
  }
  50% {
    text-shadow: 0 0 black;
  }
  75% {
    text-shadow: -1px 0 black, -2px 0 black, -3px 0 black, -4px 0 black, -5px 0 black;
  }
  100% {
    text-shadow: 0 0 black;
  }
}

@keyframes depth {
  0 {
    text-shadow: 0 0 black;
  }
  25% {
    text-shadow: 1px 0 black, 2px 0 black, 3px 0 black, 4px 0 black, 5px 0 black;
  }
  50% {
    text-shadow: 0 0 black;
  }
  75% {
    text-shadow: -1px 0 black, -2px 0 black, -3px 0 black, -4px 0 black, -5px 0 black;
  }
  100% {
    text-shadow: 0 0 black;
  }
}

.text-brand {
  color: #880033;
}

.header {
  position: relative;
  z-index: 8;
}

.header-main {
  height: 180px;
}

.header-menu {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.header-main a:hover {
  opacity: 0.9;
}

.headlang {
  padding: 0 5px;
  padding-left: 10px;
}

.headlang .langs {
  position: absolute;
  display: inline-block;
  opacity: 0;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.headlang .lang-bg {
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 31px;
  min-height: 31px;
  border-radius: 0px;
  position: relative;
  background-color: #e8eaed;
}

.headlang .langs a {
  text-decoration: none !important;
  color: #202124;
}

.headlang:focus .langs,
.headlang:active .langs,
.headlang:hover .langs {
  opacity: 1;
}

.headlang .btn {
  padding-top: 4px;
  padding-bottom: 4px;
}

.headlang .btn svg {
  margin-left: 0;
}

.headlang:hover svg {
  fill: #202124 !important;
}

.border-right {
  border-color: #e8eaed !important;
  -webkit-transition: border-color 0.3s ease-in;
  transition: border-color 0.3s ease-in;
}

.lang-btn svg {
  fill: #202124 !important;
}

.menu {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 60px;
}

.menu ul ul {
  display: none;
}

.menu .menu-item {
  float: left;
}

.menu a.active,
.menu .menu-item.active > a {
  font-weight: 500;
  color: #202124;
}

.menu .menu-item:last-child {
  margin-right: 0;
}

.menu a {
  display: block;
  float: left;
  padding: 0;
  line-height: 60px;
  font-size: 14px;
  color: #202124;
  text-decoration: none;
  letter-spacing: 0.1;
  position: relative;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}

.menu a:last-child {
  margin-right: 0;
}

.menu a:hover::before {
  width: 100%;
}

.menu a.active::before {
  width: 100%;
  background-color: #880033;
}

.menu .current-page-ancestor > a::before,
.menu .current_page_item > a::before,
.menu .active a::before {
  width: 100%;
  background-color: #880033;
}

.menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  top: -1px;
  left: 0;
  background-color: #ddd;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}

.menu > li {
  position: relative;
  display: inline-block;
  padding-right: 40px;
}

.menu > li:last-child {
  padding-right: 0;
}

.menu > li:hover > a {
  color: #202124;
}

.menu > li:hover .sub-menu {
  z-index: 5;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sub-menu {
  -webkit-transition: transform 0.3s ease, opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  list-style: none;
  background-color: #f8f9fa;
  position: absolute;
  width: 310px;
  left: -25px;
  top: 60px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.sub-menu .menu-item {
  width: 100%;
  position: relative;
  padding-right: 0 !important;
  margin-right: 0 !important;
  border-top: 1px solid #e8eaed;
}

.sub-menu .menu-item:hover::before {
  color: #880033 !important;
}

.sub-menu .menu-item::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  color: #adadad;
  width: 8px;
  font-size: 16px;
  line-height: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  position: absolute;
  opacity: 1;
}

.sub-menu .menu-item:first-child {
  border: none;
}

.sub-menu .menu-item a {
  width: 100%;
  font-size: 14px;
  padding: 15px 15px;
  padding-right: 30px;
  line-height: 18px;
  color: #5f6368;
}

.sub-menu .menu-item a b {
  font-weight: normal !important;
}

.sub-menu .menu-item a::before {
  display: none;
}

.sub-menu .menu-item:hover {
  border-color: transparent;
}

.sub-menu .menu-item a:hover {
  border-color: transparent;
  opacity: 1;
}

.sub-menu .menu-item {
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.sub-menu .menu-item:hover {
  background-color: #fff;
}

.sub-menu .menu-item:hover a {
  color: #202124;
}

.menu:last-child > li {
  padding-right: 0;
  padding-left: 40px;
}

.menu:last-child > li .sub-menu {
  right: -35px !important;
  left: auto;
}

.sub-menu::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}

.menu:last-child li .sub-menu::before {
  left: auto;
  right: 50px !important;
}

.header-menu-dd {
  display: none;
  background-color: rgba(247, 247, 247, 0.95);
  position: absolute;
  width: 100%;
  top: 61px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.force-img {
  width: 100%;
}

.s5-item {
  width: 232px;
  position: relative;
  display: block;
  text-decoration: none !important;
  overflow: hidden;
}

.s5-thumb {
  display: none !important;
}

.bz4-item {
  min-height: 220px;
  margin-bottom: 30px;
  position: relative;
  border-left: 3px solid #eaeaea !important;
  -webkit-transition: all 0.3s ease-in !important;
  transition: all 0.3s ease-in !important;
}

.bz4-item:hover {
  border-color: #008bc5 !important;
  -webkit-box-shadow: 0px 0px 0px 1px #008bc5;
  box-shadow: 0px 0px 0px 1px #008bc5;
  color: #880033;
}

.bz4-item p {
  position: relative;
  z-index: 1;
}

.bz4-item .count-bg {
  position: absolute;
  right: 20px;
  bottom: 0px;
  font-size: 80px;
  font-weight: bold;
  z-index: 0;
  color: #f8f9fa;
}

.bz5-item {
  height: 500px;
  width: 100%;
  position: relative;
  background-color: #202124;
  color: #fff;
  padding: 60px 70px;
  margin-bottom: 30px;
}

.bz5-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #202124;
  opacity: 0.3;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bz5-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bz5-text {
  z-index: 2;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

.bz5-text h3 {
  font-size: 24px;
}

.bz5-text p {
  overflow: hidden;
  height: 48px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bz5-item:hover p {
  height: 200px;
}

.form-control {
  border-radius: 0px;
  font-size: 14px;
  border-width: 1px;
  border-color: #e8eaed;
  color: #202124;
}

.form-control-lg {
  height: auto;
  padding: 12px 25px;
  font-size: 14px;
}

.form-control:hover,
.form-control:focus {
  border-color: #008bc5;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-box .form-group {
  border-bottom: 1px solid #e8eaed;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.form-box .form-group.no-border {
  border: none !important;
  padding-bottom: 0;
}

.form-box .form-group .col-sm-9 {
  padding-right: 0;
}

.form-box label {
  font-weight: 500;
}

.form-box .col-form-label {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
}

.form-box .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}

.form-box .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}

.form-box .form-control::-ms-input-placeholder {
  color: #bbbbbb;
}

.form-box .form-control::placeholder {
  color: #bbbbbb;
}

.search-pro .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}

.search-pro .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}

.search-pro .form-control::-ms-input-placeholder {
  color: #bbbbbb;
}

.search-pro .form-control::placeholder {
  color: #bbbbbb;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  font-weight: 500;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #e8eaed;
}

.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
  border-color: #e8eaed;
}

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #202124;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
  border-color: #008bc5;
  background-color: #008bc5;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: unset;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: unset;
}

.tender-filter .form-group {
  margin-right: 20px;
  width: 100%;
}

.tender-filter .form-group:last-child {
  margin-right: 0;
}

.form-tender-year {
  max-width: 85px;
}

.form-tender-type {
  max-width: 180px;
}

.form-tender-zah {
  max-width: 180px;
}

.form-tender-btn {
  max-width: 60px;
}

.form-tender-btn .btn {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 0px !important;
}

.form-tender-btn .btn svg {
  margin: 0;
}

.search-field {
  height: 60px;
  padding-left: 20px;
  border-width: 2px;
}

.search-btn {
  padding: 10px !important;
  height: 60px;
  width: 60px;
  border-radius: 0px !important;
}

.search-btn svg {
  margin: 0 !important;
}

.hlogo img {
  width: 100%;
}

.search .form-control {
  font-size: 14px;
  border: none;
  padding-left: 0;
  width: 140px;
}

.search .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search .form-control:focus::-webkit-input-placeholder {
  color: #eaeaea;
}

.search .form-control:focus:-ms-input-placeholder {
  color: #eaeaea;
}

.search .form-control:focus::-ms-input-placeholder {
  color: #eaeaea;
}

.search .form-control:focus::placeholder {
  color: #eaeaea;
}

.search .form-control::-webkit-input-placeholder {
  color: #202124;
}

.search .form-control:-ms-input-placeholder {
  color: #202124;
}

.search .form-control::-ms-input-placeholder {
  color: #202124;
}

.search .form-control::placeholder {
  color: #202124;
}

.search .input-group {
  border-bottom: 1px solid #eaeaea;
}

.search .btn {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 0;
  padding-left: 10px;
}

.home-slider .page-head {
  padding-bottom: 60px !important;
  color: #fff;
}

.page-head-wrap {
  position: relative;
  overflow: hidden;
  height: 584px;
  width: 100%;
  text-decoration: none !important;
}

.page-head {
  position: relative;
  background-color: #202124;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  height: 100%;
  font-size: 22px;
  font-weight: 400;
  z-index: 2;
  -webkit-font-smoothing: unset;
}

.page-head-bg {
  z-index: 1;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
  width: 100%;
  height: 125%;
}

.page-head-bg.blurry-load {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

.page-head-wrap.mini .page-head {
  height: 100%;
}

.page-head-wrap.mini .page-head::before {
  opacity: 0;
}

.page-head::before {
  content: "";
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 300px;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.page-head .slide-text {
  color: #fff;
  z-index: 2;
}

.page-head .slide-text h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 0;
}

.page-head .swiper-pagination {
  bottom: 36px !important;
}

.page-head-wrap.mini {
  height: 375px;
  z-index: 1;
}

.page-head-wrap.mini::before {
  opacity: 0.2;
}

.page-head-gradiant {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: #202124;
  background: -webkit-gradient(linear, left top, right top, from(rgba(32, 33, 36, 0.35)), to(rgba(32, 33, 36, 0)));
  background: linear-gradient(90deg, rgba(32, 33, 36, 0.35) 0%, rgba(32, 33, 36, 0) 100%);
}

.home-slider .swiper-pagination {
  bottom: 28px !important;
}

.swiper-pagination {
  bottom: 15px !important;
  height: 16px;
}

.home-slider .swiper-pagination-bullet {
  border: 2px solid #f8f9fa !important;
  opacity: 0.6;
  background-color: transparent;
}

.home-slider .swiper-button-custom-prev,
.home-slider .swiper-button-custom-next {
  bottom: 20px;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 2px solid #e8eaed;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: border-color 0.2s ease-in;
  transition: border-color 0.2s ease-in;
}

.swiper-pagination-bullet:hover {
  border-color: #454f5d;
}

.home-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff !important;
  border-color: #fff !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #454f5d;
  border-color: #454f5d !important;
}

.swiper-button-custom-prev,
.swiper-button-custom-next {
  position: absolute;
  bottom: 6px;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  z-index: 11;
  cursor: pointer;
  outline: none;
}

.swiper-button-custom-prev.swiper-button-disabled,
.swiper-button-custom-next.swiper-button-disabled {
  opacity: 0.2;
  cursor: unset;
}

.swiper-button-custom-prev {
  left: 20px;
  background-image: url(../images/slide-nav-prev.svg);
}

.swiper-button-custom-next {
  right: 20px;
  background-image: url(../images/slide-nav-next.svg);
}

.swiper-button-custom-prev.primary-navigation {
  background-image: url(../images/slide-nav-prev-primary.svg);
}

.swiper-button-custom-next.primary-navigation {
  background-image: url(../images/slide-nav-next-primary.svg);
}

.primary-navigation.swiper-button-disabled,
.primary-navigation.swiper-button-disabled {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.badge {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 1px;
  background-color: transparent !important;
  color: #202124 !important;
  white-space: pre-wrap;
  text-align: left;
}

.badge-mcs {
  background-color: #880033;
  color: #fff;
}

.badge-uss {
  background-color: #39f;
  color: #fff;
}

.badge-sha {
  background-color: #bb9753;
  color: #fff;
}

.badge-uni {
  background-color: #78c81e;
  color: #fff;
}

.badge-int {
  background-color: #0066a6;
  color: #fff;
}

.badge-coc {
  background-color: #f50008;
  color: #fff;
}

.page-title-wrap {
  position: relative;
  padding-bottom: 50px;
  padding-top: 50px;
}

.page-title {
  font-size: 34px;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
  -webkit-font-smoothing: unset;
}

.page-title::after {
  width: 52px;
  height: 2px;
  background-color: #008bc5;
  right: 0;
  position: absolute;
  top: 50%;
  margin-top: 0px;
}

.page-content {
  padding-top: 60px;
  padding-bottom: 100px;
}

.text-muted {
  color: #5f6368 !important;
}

.shadow {
  -webkit-box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253) !important;
  box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253) !important;
}

.card {
  border-radius: 0px;
  border: none;
  -webkit-transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

a.card {
  text-decoration: none;
  color: #202124;
}

.card-title {
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-text {
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #5f6368;
  margin-bottom: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body {
  padding: 28px 32px;
}

.card:hover .card-title {
  color: #880033;
}

.card-img-top {
  border-radius: 0px;
}

.card-img {
  position: relative;
}

.card-img::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.card:hover .card-img::before {
  opacity: 0;
}

.card-img .img-wrap {
  border-radius: 0px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.card-img .img {
  border-radius: 0px;
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: transform 0.6s ease-in;
  -webkit-transition: -webkit-transform 0.6s ease-in;
  transition: -webkit-transform 0.6s ease-in;
  transition: transform 0.6s ease-in;
  transition: transform 0.6s ease-in, -webkit-transform 0.6s ease-in;
}

.card:hover .card-img .img {
  opacity: 0.9;
}

.featured-news .card {
  height: 100%;
  z-index: 1;
  cursor: pointer;
  border: 1px solid #e8eaed;
}

.featured-news .card:hover::after {
  opacity: 1;
  width: 100%;
}

.featured-news .card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #e8eaed;
  opacity: 1;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}

.featured-news .card-img {
  padding-bottom: 0;
}

.featured-news .card-body {
  padding: 0;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 40px;
}

.featured-news .card-img .img-wrap,
.featured-news .card-img .img {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.featured-news .card:hover {
  z-index: 2;
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.featured-news .card .btn {
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
}

.featured-news .card-title {
  font-weight: 500 !important;
}

.row-title-wrap {
  margin-bottom: 40px;
}

.row-title {
  font-size: 36px;
  line-height: 34px;
  font-weight: 300;
  display: inline-block;
  padding-right: 70px;
  position: relative;
  margin-bottom: 0;
  -webkit-font-smoothing: unset;
}

.row-title::after {
  content: "";
  width: 52px;
  height: 2px;
  background-color: #008bc5;
  right: 0;
  position: absolute;
  top: 50%;
  margin-top: 0px;
}

.row-title-wrap .btn-link {
  color: #202124 !important;
  font-size: 14px;
}

.btn {
  outline: none;
  border-radius: 0px;
  padding: 11px 30px;
  font-size: 14px;
  cursor: pointer !important;
  border-radius: 45px;
  font-weight: 500;
}

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

.btn-outline-primary {
  color: #202124;
  border-color: #008bc5;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  color: #202124;
  border-color: #202124;
  background-color: transparent;
}

.btn svg {
  fill: #a0adbe;
  margin-left: 6px;
}

.btn:hover svg,
.btn:active svg,
.btn:focus svg {
  fill: #fff;
}

.btn-primary svg,
.btn-success svg,
.btn-danger svg {
  fill: #fff !important;
}

.btn-lg svg,
.btn-lg svg,
.btn-lg svg {
  margin-right: 10px;
}

.btn-group-lg > .btn,
.btn-lg {
  padding: 13px 26px;
  font-size: 16px;
}

.btn-white {
  color: #202124 !important;
  background-color: #fff !important;
}

.btn-white:hover {
  color: #008bc5 !important;
}

.btn-light.active,
.btn-light:active,
.btn-light:focus,
.btn-light:hover {
  color: #008bc5;
  background-color: #f8f9fa !important;
  border-color: transparent !important;
}

.btn-outline-success:hover {
  background-color: transparent !important;
  color: #60ad44 !important;
}

.btn-outline-success.active {
  background-color: #60ad44 !important;
  color: #fff !important;
}

.btn-outline-success:hover svg {
  fill: #60ad44 !important;
}

.btn-outline-success.active svg {
  fill: #fff !important;
}

.btn-danger {
  color: #fff !important;
}

.btn-outline-danger {
  color: #b93f39 !important;
  cursor: pointer;
}

.btn-outline-danger.btn-lg,
.btn-outline-success.btn-lg {
  border-width: 1px;
}

.btn-outline-success svg {
  fill: #60ad44;
}

.btn-outline-danger svg {
  fill: #b93f39;
}

.btn-outline-danger:hover {
  background-color: transparent;
}

.btn-outline-danger:hover svg {
  fill: #b93f39;
}

.btn-primary {
  background-color: #008bc5;
  border-color: #008bc5;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: #238dbb;
  border-color: #238dbb;
}

.btn-success.active {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-outline-secondary {
  color: #202124;
  border-color: #e8eaed;
}

.btn-outline-secondary:hover {
  border-color: #e8eaed;
  background-color: transparent;
  color: #008bc5 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-outline-secondary.active,
.btn-outline-secondary:active,
.btn-outline-secondary:focus {
  border-color: #c6c8ca !important;
  background-color: transparent !important;
  color: #008bc5 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn-outline-secondary:focus svg {
  fill: #fff;
}

.btn.big-icon i {
  margin-right: 5px;
  font-size: 20px;
  line-height: 14px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.btn-rounded {
  border-radius: 35px;
}

.more-arrow {
  margin-top: -3px;
}

.partners .card {
  border: 1px solid #e8eaed;
}

.partners .card:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.swiper-partners {
  margin-left: -25px;
  margin-right: -25px;
  margin-top: -25px;
  padding: 25px;
  padding-bottom: 70px;
}

.partner-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 15px 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
}

.lighttext300 {
  font-size: 16px;
  font-weight: 400;
}

.list-group.list-group-flush {
  background-color: transparent;
}

.list-group.list-group-flush .list-group-item {
  background-color: transparent;
}

.list-group .list-group-item-action {
  color: #202124;
}

.list-group .list-group-item-action:hover {
  color: #880033;
}

.list-group .list-group-item-action:hover small {
  color: #202124;
}

.list-group-flush .list-group-item {
  border-top: none;
}

.list-group-item {
  border: 1px solid #eaeaea;
}

.no-primary:hover {
  color: inherit !important;
  text-decoration: underline;
}

.nav-box {
  position: sticky;
  position: -webkit-sticky;
  top: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-box .nav-item a,
.nav-box .nav-link {
  font-weight: normal;
  text-decoration: none;
  display: block;
  padding-left: 20px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #202124;
  position: relative;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  border-top: 1px solid #e8eaed;
}

.nav-box .nav-item a:hover {
  color: #202124;
}

.nav-box .nav-item:last-child a,
.nav-box .nav-item:last-child .nav-link {
  border-top: 1px solid #e8eaed;
  border-bottom: 1px solid #e8eaed;
}

.nav-box .nav-item a::before,
.nav-box .nav-link::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f105";
  color: #adadad;
  width: 8px;
  font-size: 16px;
  line-height: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  position: absolute;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.nav-box .nav-link:hover,
.nav-box .nav-item a:hover {
  z-index: 2;
}

.nav-box .nav-item a::after,
.nav-box .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -1px;
  background-color: #ddd;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}

.nav-box .nav-item.current_page_ancestor .nav-item.current_nav-item > a,
.nav-box .nav-item a.active,
.nav-box .nav-item.current_page_ancestor > a,
.nav-box .nav-item.current_nav-item > a,
.nav-box .nav-link.active {
  background-color: #f8f9fa;
  color: #202124;
  font-weight: 500;
}

.nav-box .nav-item a.active::before,
.nav-box .nav-item.current_page_parent a::before,
.nav-box .nav-item.current_nav-item a::before,
.nav-box .nav-link.active::before {
  color: #880033;
  opacity: 1;
}

.nav-box .nav-item a.active::after,
.nav-box .nav-item.current_nav-item a::after,
.nav-box .nav-link.active::after {
  opacity: 1;
  background-color: transparent !important;
}

.nav-box .nav-item a:hover::after,
.nav-box .nav-link:hover::after {
  width: 100%;
}

.nav-box .nav-item a:hover::before {
  color: #880033;
}

.nav-box .nav-item a.active:hover,
.nav-box .nav-item.current_nav-item a:hover,
.nav-box .nav-link.active:hover {
  color: #202124;
}

.nav-box .nav {
  display: none;
}

.nav-box .nav .nav-item a,
.nav-box .nav .nav-link {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-box .nav-item a.active ~ .nav,
.nav-box .nav-item.current_nav-item a ~ .nav,
.nav-box .nav-link.active ~ .nav {
  display: block;
}

.nav-box .nav-item.current_page_parent a::before,
.nav-box .nav-item.current_page_ancestor.current_nav-item a::before,
.nav-box .nav-item.nav-item_has_children.current_nav-item a::before,
.nav-box .nav-item a.active.has-dropdown::before,
.nav-box .nav-item.current_nav-item a.has-dropdown::before,
.nav-box .nav-link.active.has-dropdown::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.nav-box .children a::before,
.nav-box .nav .nav-link::before {
  display: none;
}

.nav-box ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-box ul ul {
  display: none !important;
}

.nav-box ul .nav-item a,
.nav-box ul .nav-link {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.nav-box ul li:last-child a {
  border-bottom: 1px solid transparent !important;
}

.nav-box .nav-item.current_page_ancestor li a,
.nav-box .nav-item.current_nav-item li a {
  background-color: #fff;
  font-weight: normal;
}

.nav-box .nav-item.current_nav-item ul {
  display: block;
}

.nav-box .nav-item.current_page_ancestor ul {
  display: block;
}

.nav-box > .nav-item:last-child ul {
  display: none;
}

.search-pro {
  background-color: transparent;
  margin-bottom: 0 !important;
}

.search-pro .input-group-text {
  background-color: transparent;
  border-radius: 0px;
  border: 1px solid transparent;
  border-left: none;
  border-bottom-color: #e8eaed;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  padding-right: 0;
}

.search-pro .form-control {
  border: 1px solid transparent;
  border-bottom-color: #e8eaed;
  border-right: none;
  border-top: none;
  border-left: none;
  background-color: transparent;
  outline: none;
  padding-left: 0;
}

.search-pro .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.search-pro .form-control:hover,
.search-pro .form-control:focus {
  background-color: #fff !important;
  border-color: #008bc5;
}

.search-pro .form-control:hover ~ .input-group-append .input-group-text,
.search-pro .form-control:focus ~ .input-group-append .input-group-text {
  background-color: #fff !important;
  border-color: #008bc5;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.text-primary {
  color: #008bc5 !important;
}

.table {
  color: #202124;
}

.table thead th {
  padding: 24px 30px;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: 1px solid #e8eaed;
}

.table td,
.table th {
  border-top: 1px solid #e8eaed;
  vertical-align: middle;
  line-height: 18px;
  padding: 15px 20px;
}

.table th {
  font-weight: 500;
}

.table.table-sm td,
.table.table-sm th {
  padding: 10px 15px;
}

.table.table-sm td p:last-child,
.table.table-sm th p:last-child {
  margin-bottom: 0;
}

.table.table-sm {
  font-size: 14px;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #e8eaed;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa;
}

.table.no-style th,
.table.no-style td {
  border: none !important;
  padding-left: 0;
}

.table .thead-dark th {
  color: #008bc5;
  border-color: #e8eaed;
  background-color: transparent;
}

.table ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.nor18 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}

.tender-table {
  border-collapse: separate;
  border-spacing: 0 25px;
  margin-top: -25px;
  width: 100%;
  table-layout: fixed;
}

.tender-table thead th {
  padding: 20px 20px !important;
  color: #fff;
  border-spacing: 0 0px !important;
  background-color: #008bc5;
  height: 66px;
}

.tender-table td,
.tender-table th {
  padding: 20px 20px !important;
  position: relative;
}

.tender-table td {
  height: 120px;
}

.tender-table td strong {
  font-weight: 500;
  color: #008bc5;
}

.tender-table tr:hover td strong {
  color: #880033;
}

.tender-table td:first-child {
  width: 250px;
}

.tender-table th::before {
  opacity: 0.5;
}

.tender-table th::before,
.tender-table td::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  width: 1px;
  height: 20px;
  background-color: #e8eaed;
}

.tender-table th:last-child::before,
.tender-table td:last-child::before {
  display: none;
}

.tender-table td:first-child,
.tender-table th:first-child {
  padding-left: 30px !important;
}

.tender-table tbody tr {
  cursor: pointer;
  -webkit-transition: box-shadow 0.3s ease-in;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  line-height: 30px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 0px 1px #e8eaed;
  box-shadow: 0px 0px 0px 1px #e8eaed;
}

.tender-table tbody tr:hover {
  -webkit-box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253);
  box-shadow: 0 3px 30px rgba(169, 67, 30, 0.253);
}

.tender-table th,
.tender-table tr,
.tender-table td {
  border: none !important;
}

.tender-filter-bg {
  /* For IE8 and earlier */
  background-color: #fff;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: right center;
}

.tender-v2-wrap {
  position: relative;
}

.tender-v2-item {
  position: relative;
  color: #202124;
  text-decoration: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none !important;
}

.tender-v2-pad {
  padding: 30px 30px;
}

.tender-v2-pad:first-child {
  padding: 30px 20px;
  width: 120px;
  min-width: 120px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tender-v2-item strong {
  font-weight: 400;
  font-size: 17px;
}

.tender-v2-info {
  width: 100%;
  padding-right: 20px;
}

.tender-v2-more {
  min-width: 150px;
}

.tender-v2-date {
  min-width: 120px;
  padding-left: 20px;
  padding-right: 20px;
}

.tender-v2-date small,
.tender-v2-code small {
  display: inline-block;
  margin-bottom: 5px;
  line-height: 16px;
}

.tender-v2-date.primary {
  max-width: 70px;
  min-width: 70px;
  padding-left: 0px;
  padding-right: 0px;
}

.tender-v2-date.primary.gray,
.tender-v2-date.primary.gray h1 {
  color: #adadad !important;
}

.tender-v2-date.primary h1 {
  margin-bottom: 0;
  color: #008bc5 !important;
}

.tender-v2-code {
  min-width: 130px;
  padding-left: 10px;
  padding-right: 10px;
}

.tender-v2-item p {
  margin: 0;
}

.tender-v2-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-shadow: 0px 0px 0px 1px #e8eaed;
  box-shadow: 0px 0px 0px 1px #e8eaed;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: -1;
}

.tender-v2-item:hover::after {
  width: 102%;
  height: 102%;
  top: -1%;
  margin-left: -1%;
  -webkit-box-shadow: 0px 0px 0px 1px #008bc5;
  box-shadow: 0px 0px 0px 1px #008bc5;
}

.tender-v2-item:hover {
  color: #202124;
}

.tender-v2-item:hover .tender-v2-name {
  color: #880033 !important;
}

.tender-v2-item.disabled {
  cursor: unset;
}

.tender-v2-item.disabled .primary,
.tender-v2-item.disabled .primary h1 {
  color: #adadad !important;
}

.tender-v2-item.disabled:hover::after {
  width: 100%;
  height: 100%;
  top: -0%;
  margin-left: 0%;
  -webkit-box-shadow: 0px 0px 0px 1px #008bc5;
  box-shadow: 0px 0px 0px 1px #008bc5;
}

.tender-v2-item.disabled:hover .tender-v2-name {
  color: #202124 !important;
}

.tender-v3-item {
  display: inline-block;
  width: 100%;
  text-decoration: none !important;
  color: #202124;
  border: 1px solid #eaeaea;
  margin-bottom: 30px;
  border-radius: 0px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  overflow: hidden;
}

.tender-v3-item:hover {
  color: #202124;
  -webkit-box-shadow: 0 1px 7px #eaeaea;
  box-shadow: 0px 1px 7px #eaeaea;
}

.tender-v3-item:hover .tender-v3-item-title {
  color: #880033;
}

.tender-v3-item-detial {
  border-top: 1px solid #eaeaea;
  background-color: #f8f9fa;
}

.tender-v3-item-detial > div {
  padding: 12px 20px;
  border-right: 1px solid #eaeaea;
}

.tender-v3-item-detial > div:last-child {
  border-right: none;
}

.tender-v3-item-detial p {
  margin: 0;
  font-size: 14px;
  color: #424242;
}

.tv3-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.jtw-date {
  min-width: 150px;
  max-width: 150px;
}

.jtw-number {
  min-width: 150px;
  max-width: 150px;
}

.jtw-winner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  max-width: 300px;
}

.tender-v3-item small {
  font-size: 13px;
  color: #bdbdbd !important;
}

.tender-v3-item-title {
  font-size: 18px;
  padding: 21px 25px;
  font-weight: 400;
}

.borderbox {
  border: 1px solid #e8eaed;
  border-radius: 0px;
  padding: 30px;
}

.accordion-head {
  padding: 22px 32px;
  padding-right: 100px;
  position: relative;
  font-weight: 400;
  font-size: 17px;
  cursor: pointer;
}

.accordion-head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -13px;
  width: 26px;
  height: 26px;
  background-image: url(../images/accordion-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}

.accordion-head[aria-expanded="true"] {
  background-color: #f8f9fa;
  color: #880033;
}

.accordion-head[aria-expanded="true"] .btn {
  display: none !important;
}

.accordion-head[aria-expanded="true"] .accankbtn {
  display: block !important;
}

.accordion-head[aria-expanded="true"]::after {
  background-image: url(../images/accordion-minus.svg);
}

.accordion-head:hover {
  color: #880033;
}

.card-body ol {
  padding: 0;
  padding-left: 16px;
  margin: 0;
}

.accordion .card {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 0px;
  border: 1px solid #e8eaed;
}

.accordion .card:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.border {
  border: 1px solid #e8eaed;
}

.card.fborder {
  border-radius: 0px;
  border: 1px solid #e8eaed;
}

.card.fborder:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.joblist strong,
.joblist b {
  font-weight: 400;
}

.joblist .tender-v3-item-title {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid #e8eaed;
}

.joblist .accordion-head::after {
  display: none;
}

.joblist .accordion-head {
  font-weight: 500;
  padding: 0 !important;
}

.joblist .accordion-head small {
  font-size: 14px;
  color: #424242 !important;
}

.joblist .accordion-head small i {
  color: #bdbdbd !important;
}

.joblist .accordion-head {
  font-size: 14px;
}

.accordion > .card {
  overflow: unset;
}

.ji-title {
  min-width: 50%;
}

.ji-comp {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.ji-date {
  text-align: right;
  min-width: 120px;
}

.ank-link-btn {
  padding: 0;
  padding-left: 5px;
  padding-right: 5px;
  color: #008bc5;
}

.joblist .accordion-head .btn {
  padding: 6px 10px;
  margin-left: 10px;
  margin-top: -4px;
  border: none;
  color: #5f6368;
}

.joblist .accordion-head .btn i {
  margin-right: 5px;
}

.joblist .accordion-head .dropdown-toggle::after {
  display: none;
}

.joblist .tender-v3-item {
  border: none !important;
  margin-bottom: 0;
  padding: 0 25px;
  overflow: unset !important;
}

.joblist .tender-v3-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion > .card:first-of-type {
  border-bottom: 1px solid #e8eaed;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.joblist .tender-v3-item:hover .btn {
  opacity: 1;
}

.joblist .tender-v3-item .tender-v3-item-detial > div {
  padding-left: 0;
  padding-bottom: 21px;
  width: auto;
  border: none !important;
}

.joblist .tender-v3-item .tender-v3-item-detial {
  border: none !important;
  background-color: transparent !important;
}

.joblist .tender-v3-item .tender-v3-item-detial i {
  margin-right: 4px;
}

.joblist .card-body {
  border-top: 1px solid #e8eaed;
}

.joblist .dropdown-item {
  font-size: 12px;
}

.tender-v3-wrap .tender-v3-item-title .btn {
  padding: 6px 10px;
  margin-left: 10px;
  margin-top: -4px;
  border: none;
  color: #5f6368;
}

.tender-v3-wrap .tender-v3-item-title .btn i {
  margin-right: 5px;
}

.tender-v3-item:hover .tender-v3-item-title .btn {
  opacity: 1;
}

.hover-blue {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hover-blue:hover {
  -webkit-box-shadow: 0px 0px 0px 1px #008bc5;
  box-shadow: 0px 0px 0px 1px #008bc5;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid #e8eaed;
}

blockquote {
  padding: 42px 38px;
  margin-bottom: 30px;
  border: 1px solid #e8eaed;
  border-radius: 0px;
}

blockquote b,
blockquote strong {
  color: #880033;
}

.pro-year-swiper {
  -webkit-box-shadow: 0px 0px 0px 1px #e8eaed;
  box-shadow: 0px 0px 0px 1px #e8eaed;
}

.pro-year {
  padding: 18px 16px;
  width: 100%;
  text-align: center;
  border-right: 1px solid #e8eaed;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.pro-year:hover {
  background-color: #f8f9fa;
}

.pro-year-swiper .swiper-slide-active .pro-year:hover,
.pro-year-swiper .swiper-slide-active {
  color: #fff !important;
  font-weight: 500;
  background-color: #008bc5 !important;
}

.form-box {
  padding: 40px 70px;
  border: 1px solid #e8eaed;
}

.form-box:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #008bc5;
  background-color: #008bc5;
}

.small,
small {
  font-size: 90%;
}

.text {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

q {
  font-size: 25px;
}

.blockquote {
  position: relative;
  color: #202124;
  padding: 0;
  margin: 0;
  border-radius: 0 1em 1em 0;
  background-image: url(../images/quote-open-white.png);
  background-repeat: no-repeat;
  background-size: 3em;
  padding: 1.5em 5em;
  max-width: initial;
  min-height: 4.5em;
  border: 0;
  font-size: 21px;
  font-weight: normal;
}

.blockquote .small {
  font-size: 14px;
  color: #adadad;
}

.breadcrumb-wrap {
  background-color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.breadcrumb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  background-color: transparent;
  font-size: 13px;
}

.breadcrumb a {
  color: #5f6368;
}

.breadcrumb-item,
.breadcrumb-item a {
  max-width: 350px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #adadad;
  content: "/";
}

.mt50 .social-share {
  -webkit-transform: translateY(95px);
          transform: translateY(95px);
}

.social-share {
  text-align: right;
  color: #202124;
}

.social-share a {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-left: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  background-color: #a0adbe;
  color: #fff;
}

.social-share .facebook-color {
  background-color: #3b5999;
}

.social-share .twitter-color {
  background-color: #55acee;
}

.social-share .linkedin-color {
  background-color: #0077b5;
}

.share-btn {
  font-size: 20px;
}

.share-btn.facebook-color {
  color: #3b5999;
}

.share-btn.linkedin-color {
  color: #0077b5;
}

.ib__item {
  overflow: hidden;
  font-size: 15px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 0px;
  border: 1px solid #e8eaed;
  margin-bottom: 0px;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.ib__item .mg_fz17 {
  font-size: 18px;
  font-weight: 300;
  -webkit-font-smoothing: unset;
}

.ib__item .fitbg {
  background-position: center !important;
  background-size: auto 80% !important;
}

.ib__item:hover {
  z-index: 1;
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.ib__item.white .ib__item_block:first-child {
  border-right: 1px solid #fff !important;
}

.ib__item.big .ib__item_block.right-image,
.ib__item.big .ib__item_block.left-image {
  padding: 0px;
}

.ib__item .ib__item_block:first-child {
  border-right: 1px solid #e8eaed;
}

.ib__item .ib__item_block {
  position: relative;
  width: 50%;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.ib__item_block.left-image::before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

.ib__item .overlay {
  position: relative;
}

.ib__item .overlay::before {
  position: absolute;
  content: "";
  background-color: rgba(223, 151, 103, 0);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ib__item.big .ib__item_block.right-image .img-wrap,
.ib__item.big .ib__item_block.left-image .img-wrap {
  background-color: transparent;
}

.img-wrap {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.ib__item .number__item {
  position: relative;
  z-index: 2;
}

.ib__item-hidden {
  display: none !important;
}

.ib__item.white .ib__item_block.right-image::before {
  border-left: 10px solid #fff;
}

.ib__item_block.right-image::before {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

.hr-box1 {
  height: 245px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
  padding-right: 35px;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
  border: 1px solid #e8eaed;
  border-radius: 0px;
}

.hr-box1.active h5 {
  font-weight: 500;
}

.hr-box1 h5 {
  font-size: 14px;
  font-weight: 400;
  margin-top: 0px;
  min-height: 56px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: hidden;
}

.hr-box1 .hr-icon-ww {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.hr-box1 .hr-icon-wrap {
  width: 110px;
  border-radius: 50%;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hr-box1 .hr-icon {
  font-size: 50px;
  font-weight: bold;
  line-height: 50px;
}

.hr-box1 svg {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  fill: #e8eaed;
}

.hr-box1.active svg,
.hr-box1:hover svg {
  fill: #880033;
}

.hr-box1 a i {
  margin-left: 5px;
}

.hr-box1 a {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  text-decoration: none !important;
  width: 100%;
  height: 54px;
  text-align: center;
  display: inline-block;
  padding-left: 30px;
  padding-right: 30px;
  bottom: 40px;
  left: 0;
  position: absolute;
  line-height: 1.2;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: all 0.2s ease-in 0.1s;
  transition: all 0.2s ease-in 0.1s;
  opacity: 0;
}

.hr-box1.active a,
.hr-box1:hover a {
  opacity: 1;
}

.hr-box1.active .hr-icon-ww,
.hr-box1:hover .hr-icon-ww {
  color: #202124;
}

.hr-box1.active {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.hr-box1.active .hr-icon-wrap,
.hr-box1:hover .hr-icon-wrap {
  color: #fff;
}

.hr-box1.active a {
  display: none;
}

.hr-target {
  display: none;
}

.video-wrap {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  border-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  overflow: hidden;
}

.video-wrap iframe {
  border: none;
}

.vw-hover i {
  font-size: 60px;
  margin-bottom: 30px;
}

.vw-hover p {
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.vw-hover {
  width: 100%;
  height: 450px;
  font-size: 24px;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}

.vw-hover .force-img {
  width: 50%;
}

.vw-text {
  height: 50%;
  position: absolute;
  bottom: 50px;
}

.vw-text svg {
  fill: #fff;
  width: 100px;
  opacity: 0.75;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.vw-hover div {
  z-index: 1;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}

.vw-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.vw-hover:hover svg {
  opacity: 1;
}

.vw-hover:hover::before {
  opacity: 0.5;
}

.video-wrap .video {
  height: 0;
  overflow: hidden;
  background: #202124;
  -webkit-transition: height 0.3s ease-in;
  transition: height 0.3s ease-in;
}

.video-wrap .hide-hover {
  height: 0;
}

.video-wrap .hide-hover p {
  opacity: 0;
}

.video-wrap .show {
  height: 400px;
}

fieldset {
  margin-top: 40px;
  border: 1px solid #e8eaed;
  padding: 30px;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  -webkit-transition: border 0.3s ease-in;
  transition: border 0.3s ease-in;
}

legend {
  width: auto;
  font-size: 15px;
  font-weight: 500;
  padding: 0 10px;
}

fieldset:hover {
  border: 1px solid #008bc5;
}

/* bordered item */
.bordered__item {
  cursor: unset;
  border-radius: 0px;
  display: inline-block;
  position: relative;
  float: left;
  width: 100%;
  height: 190px;
  z-index: 1;
  margin-top: -1px;
  text-decoration: none !important;
  border: 1px solid #e8eaed;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-transition: box-shadow 0.3s ease-in;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

.bordered__item.big {
  height: 310px;
}

.text-news {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify !important;
  text-justify: inter-word;
}

.text-news img {
	max-width: 100%;
	height: auto;
}

.bordered__item.big .icon img {
  height: 80px;
  margin-bottom: 35px;
}

.bordered__item .icon p {
  font-weight: 500;
  color: #202124;
}

.bordered__item .txt {
  border-radius: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  color: #202124;
  text-align: left;
  padding: 30px;
  opacity: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #fff;
}

.bordered__item:focus .txt,
.bordered__item:active .txt,
.bordered__item:hover .txt {
  opacity: 1;
}

.bordered__item.width-1-4 {
  margin-left: -0.5px;
  margin-right: -0.5px;
  width: calc(25% + 0.5px);
}

.bordered__item.width-1-3 {
  width: 33.33333%;
  margin-left: -1px;
  margin-right: -1px;
}

.bordered__item.width-1-2 {
  width: calc(50% - 1px);
  margin-left: -1px;
  margin-right: -1px;
}

.bordered__item.width-1-1 {
  width: calc(100% - 4px);
  margin-left: -1px;
  margin-right: -1px;
}

.bordered__item:hover {
  overflow: hidden;
  overflow-y: auto;
  z-index: 2;
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.bordered__item.style2 {
  position: relative;
  display: inline-block;
  height: auto;
  overflow: hidden;
  -webkit-box-shadow: inset 0px 0px 0px 2px #eeeeee;
  box-shadow: inset 0px 0px 0px 2px #eeeeee;
}

.bordered__item.style2 .icon-wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  margin-bottom: 65px;
}

.bordered__item.style2 .icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.bordered__item.style2 .icon img {
  height: 75px;
  margin-top: -10px;
}

.bordered__item.style2 .title-wrap {
  position: absolute;
  height: 85px;
  text-align: center;
  bottom: 0;
  left: 0;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #eeeeee;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.bordered__item.style2 .title-wrap p {
  margin-bottom: -50px;
}

.bordered__item.style2 .title-wrap::before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  margin-left: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 10px solid #eee;
}

.bordered__item.style2 .title-wrap .btn {
  opacity: 0;
}

.bordered__item.style2:hover .title-wrap {
  height: 130px;
  color: #df9767;
}

.bordered__item.style2:hover .title-wrap p {
  margin-bottom: 10px;
}

.bordered__item.style2:hover .title-wrap .btn {
  opacity: 1;
}

.bordered__item.style3 {
  min-height: 160px;
  height: auto;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.bordered__item.style3 .icon-wrap {
  position: relative;
  width: 200px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.bordered__item.style3 .icon {
  /* position: absolute; */
  /* top: 0;left: 0; */
  width: 115px;
  height: 115px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.bordered__item.style3 .title-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  color: #000;
}

.bordered__item.style3:hover .title-wrap h4 {
  color: #df9767;
}

.worker-msg-img {
  border-width: 3px !important;
}

.nest-border1 {
  border-color: #73a039 !important;
}

.nest-border2 {
  border-color: #ce0037 !important;
}

.nest-border3 {
  border-color: #00b2a9 !important;
}

.nest-border4 {
  border-color: #796e65 !important;
}

.nest-border5 {
  border-color: #1c9cc8 !important;
}

.nest-border6 {
  border-color: #6d2077 !important;
}

.nest-border7 {
  border-color: #d57800 !important;
}

.nest-border8 {
  border-color: #ac4fc6 !important;
}

.nest-border9 {
  border-color: #a50034 !important;
}

.nest-border10 {
  border-color: #007681 !important;
}

.nest-color1 {
  color: #73a039 !important;
}

.nest-color2 {
  color: #ce0037 !important;
}

.nest-color3 {
  color: #00b2a9 !important;
}

.nest-color4 {
  color: #796e65 !important;
}

.nest-color5 {
  color: #1c9cc8 !important;
}

.nest-color6 {
  color: #6d2077 !important;
}

.nest-color7 {
  color: #d57800 !important;
}

.nest-color8 {
  color: #ac4fc6 !important;
}

.nest-color9 {
  color: #a50034 !important;
}

.nest-color10 {
  color: #007681 !important;
}

.job-filter-wrap .form-group {
  margin-bottom: 20px;
}

.custom-control-label {
  font-weight: normal !important;
}

.filter-btn svg {
  fill: #202124;
}

.filter-btn:hover svg {
  fill: #008bc5;
}

.filter-btn.active svg,
.filter-btn:active svg,
.filter-btn:focus svg {
  fill: #fff;
}

.counter-box-wrap {
  position: relative;
  margin-bottom: 30px;
  color: #5f6368;
  border: 1px solid #e8eaed;
  border-radius: 0px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.counter-box-wrap:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.counter-box-wrap h1 {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.counter-box-wrap:hover h1 {
  color: #880033;
}

.counter-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 400;
  padding: 30px;
  padding-top: 35px;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
}

.counter-box p {
  margin-bottom: 0;
}

.counter-box h1 {
  font-weight: 500;
  font-size: 45px;
  color: #454f5d;
}

.counter-box-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  height: 45%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 1;
  z-index: 0;
}

.counter-list-box {
  height: 74px;
  font-size: 21px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.counter-list-box:hover .counter-list-result {
  color: #880033;
}

.counter-list-box:hover .counter-list-progress-bg::before {
  width: 100%;
}

.counter-list-progress {
  color: #fff;
  width: 130px;
  min-width: 130px;
  max-width: 75%;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.counter-list-progress-border {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 8px;
}

.counter-list-progress-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #008bc5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.counter-list-progress-bg {
  z-index: 0;
  position: relative;
  left: 0;
  top: 50%;
  min-width: 130px;
  height: 10px;
  margin-top: -5px;
  margin-bottom: 10px;
  background-color: #e8eaed;
}

.counter-list-progress-year {
  position: absolute;
  top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  height: 100%;
  color: #454f5d;
  font-weight: normal;
  font-size: 18px;
}

.counter-list-result {
  padding-left: 35px;
  font-weight: 500;
  font-size: 45px;
  color: #454f5d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.counter-list-result small {
  color: #5f6368;
  font-size: 14px;
  font-weight: 400;
}

.thbz-item2 {
  overflow: hidden;
  text-decoration: none !important;
  color: #202124;
  width: 100%;
  margin-bottom: 30px;
  display: inline-block;
  border-radius: 0px;
  border: 1px solid #e8eaed;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.thbz-item-bg2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-height: 300px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}

.thbz-item-text2 {
  padding: 25px 30px;
  height: 100px;
  z-index: 2;
  background: #fff;
  position: relative;
}

.thbz-item-text2 .card-title {
  font-size: 21px !important;
  margin-bottom: 0;
}

.thbz-item2:hover {
  color: #880033;
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.thbz-item2:hover .thbz-item-bg2 {
  opacity: 0.9;
}

.thbz-item {
  position: relative;
  min-height: 700px;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  display: block;
  border-radius: 0px;
}

.thbz-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

.thbz-item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.thbz-item-text p {
  padding: 10px 30px;
}

.thbz-item-text {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #202124;
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.thbz-item-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  opacity: 0.3;
  top: 0;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.thbz-item-text .title {
  font-size: 18px;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.thbz-item:hover .thbz-item-text {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.thbz-item:hover .thbz-item-text::before {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.thbz-item:hover::before,
.thbz-item.active::before {
  opacity: 0.4;
}

.ab-wrap {
  position: relative;
}

.ab-icon-wrap {
  border: 1px solid #e8eaed;
  position: relative;
  width: 170px;
  border-radius: 0px;
}

.ab-icon-wrap .ab-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ab-icon-wrap .ab-icon img {
  width: 100%;
}

.ab-icon-wrap .ab-icon svg {
  max-width: 70px;
  max-height: 70px;
  fill: #454f5d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ab-wrap:hover .ab-icon svg {
  fill: #008bc5;
}

.ab-wrap .ab-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 35px;
}

.ab-wrap h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 0;
  color: #454f5d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ab-wrap p {
  color: #5f6368;
  margin-bottom: 0;
}

.ab-wrap h5 {
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: normal;
  color: #202124 !important;
}

.ab-wrap .ab-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.ab-small .ab-icon-wrap {
  width: 130px;
}

.ab-small .ab-icon-wrap.smallest {
  width: 80px;
}

.ab-small .ab-icon-wrap.smallest .ab-icon img {
  max-width: 44px !important;
}

.ab-small .ab-text {
  padding-left: 25px;
  padding-top: 10px !important;
  padding-right: 10px !important;
}

.hugefont h5 {
  font-size: 28px;
  font-weight: 500;
}

.bigfont h5 {
  font-size: 18px;
  font-weight: 500;
}

.bigfont p {
  font-size: 14px;
}

.or-wrap {
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  height: 100px;
  text-align: center;
}

.or-wrap .or-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background-color: #eaeaea;
}

.or-wrap .or-text {
  color: #adadad;
  padding-left: 50px;
  padding-right: 50px;
}

.line-space {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 37px;
  margin-bottom: 37px;
  background-color: #eaeaea;
}

[data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 30px, 0);
          transform: translate3d(0, 30px, 0);
}

.nh-project .card {
  cursor: pointer;
  height: auto !important;
  min-height: 100% !important;
}

.nh-project .card:hover {
  color: #880033;
}

.nh-project .card:hover .card-img .img {
  opacity: 0.9;
}

.nh-project .card-body {
  font-size: 14px;
  min-height: 68px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nh-project .card-img {
  padding-top: 0 !important;
}

.line120 {
  height: 120px;
}

.line80 {
  height: 80px;
}

.modal-body {
  padding: 0;
}

.gray-img {
  -webkit-filter: grayscale(80%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(80%);
}

.member-item {
  display: inline-block;
  width: 100%;
  color: #202124;
  text-decoration: none !important;
  margin-bottom: 45px;
  overflow: hidden;
  padding-left: 25px;
  padding-right: 25px;
}

.member-item .img-wrap {
  overflow: hidden;
  -webkit-filter: grayscale(80%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(80%);
}

.member-item p {
  margin-bottom: 5px;
  line-height: 1.4;
}

.member-item:hover {
  opacity: 0.9;
}

.member-modal-wrap {
  display: none;
  position: absolute;
  top: 0;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffec;
}

.member-modal-wrap.show {
  display: block;
}

.member-modal {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
}

.tt-menu-wrap {
  margin-bottom: 45px;
  border: 1px solid #e8eaed;
}

.tt-menu-wrap a {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  color: #202124;
  border-right: 1px solid #e8eaed;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.tt-menu-wrap a:last-child {
  border: none;
}

.tt-menu-wrap a:hover {
  color: #880033;
}

.tt-menu-wrap a.active::before {
  bottom: -12px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 12px solid #e8eaed;
}

.tt-menu-wrap a.active {
  background-color: #f8f9fa;
  font-weight: 500;
}

.gallery-slider .swiper-slide {
  background-color: #e8eaed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

.close-member-item {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  z-index: 2;
}

.modal-content {
  border: none;
  border-radius: 0px;
  background-color: #fff !important;
}

.modal-content .bg-light {
  background-color: #fff !important;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-backdrop {
  background-color: #f8f9faeb;
}

.medium-title {
  font-size: 17px;
  font-weight: 500;
}

.company-item-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  border: 1px solid #e8eaed;
  border-radius: 0px;
}

.company-item-box {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  padding: 25px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.company-item-box .row:nth-child(2),
.company-item-box .row:nth-child(3),
.company-item-box .row:nth-child(4),
.company-item-box .row:nth-child(5) {
  visibility: hidden;
  display: none;
}

.company-item-wrap:hover .row:nth-child(2),
.company-item-wrap:hover .row:nth-child(3),
.company-item-wrap:hover .row:nth-child(4),
.company-item-wrap:hover .row:nth-child(5) {
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-item {
  display: inline-block;
  width: 100%;
}

.company-slider {
  border-radius: 0px;
}

.sticky-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 3;
}

.swiper-container-thumbs {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.thumbslider {
  margin-bottom: 50px !important;
  padding-left: 32px;
  padding-right: 30px;
  border: 1px solid #e8eaed;
}

.thumbslider .swiper-button-custom-prev {
  left: 0px;
}

.thumbslider .swiper-button-custom-next {
  right: 0;
}

.thumbslider .swiper-button-custom-prev,
.thumbslider .swiper-button-custom-next {
  outline: 1px solid #e8eaed;
  background-color: #f8f9fa;
  top: 0;
  height: 100%;
}

.thumbslider .swiper-button-custom-prev::after,
.thumbslider .swiper-button-custom-next::after {
  position: absolute;
  outline: 1px solid #e8eaed;
  background-color: #f8f9fa;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumbslider .swiper-button-custom-prev.swiper-button-disabled,
.thumbslider .swiper-button-custom-next.swiper-button-disabled {
  opacity: 1;
}

.p35 {
  padding: 35px;
}

.history-menu-item {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  color: #5f6368;
  background-color: #fff;
  border-radius: 0px;
  outline: 1px solid #e8eaed;
}

.history-menu-item:hover {
  color: #202124;
}

.history-menu p {
  font-size: 13px;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.5;
}

.history-menu p:first-child {
  font-weight: 500;
  font-size: 15px;
  color: #5f6368;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.history-menu {
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  text-align: left;
  overflow: hidden;
  border-radius: 0px;
  border-right: none;
  cursor: pointer;
  background-color: transparent;
}

.nys46 .swiper-slide-active .history-menu,
.swiper-slide-thumb-active .history-menu,
.history-menu.active {
  background-color: #f8f9fa;
  color: #202124;
}

.nys46 .swiper-slide-active .history-menu {
  font-weight: 500;
  color: #880033;
}

.swiper-slide-thumb-active .history-menu p:first-child,
.history-menu.active p:first-child {
  color: #880033;
}

.history-menu-item:hover .history-menu p:first-child {
  color: #880033;
}

.nys46 .history-menu-item:hover {
  color: #880033;
}

.nys46 {
  border: 1px solid #e8eaed;
}

.hyh160 {
  height: 160px;
}

.history-title {
  display: none !important;
  opacity: 0;
  text-align: center;
  margin-top: 10px;
  width: 100%;
  padding: 15px;
  margin-block: 53px;
  background-color: #f8f9fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #f8f9fa;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.history-menu-item:hover .history-title {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.fz17 {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: unset;
}

.fz17 strong,
.fz17 strong {
  font-weight: 500;
}

.swiper-container-horizontal > .swiper-scrollbar {
  left: 2%;
  bottom: 0;
  width: 96%;
}

.history-content {
  position: relative;
  margin-bottom: 120px;
  border-radius: 0px;
}

.history-content:last-child {
  margin-bottom: 0;
}

.history-content:hover .history-cover {
  opacity: 0.9;
}

.history-content:last-child::after {
  content: unset;
}

.history-content::after {
  content: "";
  position: absolute;
  background-color: #e8eaed;
  bottom: -100px;
  left: 50%;
  width: 2px;
  height: 80px;
}

.history-cover {
  overflow: hidden;
  border-radius: 0px;
}

.history-cover,
.history-bg {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 550px;
}

.history-bg {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.history-text-wrap {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-top: -10px;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 5px;
  background-color: #454f5d83;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.history-year {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  position: relative;
  font-weight: 600;
  margin-top: -56px;
  margin-bottom: 30px;
  width: 96px;
  border-radius: 0px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background-color: #1c9cc8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.history-text {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 15px;
}

.custom-badge {
  position: absolute;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  margin-left: 5px;
  display: inline-block;
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-size: 12px;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background-color: #008bc5;
}

.custom-badge-1 {
  background-color: #008bc5;
}

.custom-badge-2 {
  background-color: #008bc5;
}

.company-slider .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slogan-wrap {
  height: 450px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
}

.slogan-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-animation: zoomIn 30s infinite;
  animation: zoomIn 30s infinite;
  z-index: 1;
}

.slogan-text {
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: 400;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  color: #fff;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

.branch-ttile {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8eaed;
  margin-bottom: 40px;
}

.branch-ttile h5 {
  margin-bottom: 0;
}

.branch-ttile .square {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: 15px;
  height: 15px;
  background-color: #eaeaea;
}

.cursor-pointer {
  cursor: pointer;
}

.custom-list-wrap2 {
  padding: 30px;
  border-radius: 0px;
  border: 1px solid #e8eaed;
}

.custom-list-wrap2 li {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-list-wrap2 li::after {
  background-color: #e8eaed;
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 1px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-list-wrap2 li:hover::after {
  height: 2px;
  background-color: #008bc5;
}

.custom-list-wrap2 li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background-color: #008bc5;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  margin-left: -1em;
  border: none;
  margin-top: 9px;
  -webkit-transform: scale(1.7);
  transform: scale(1.7);
}

.custom-list-wrap2 li img {
  max-width: 150px;
  min-width: 150px;
}

.custom-list-wrap2 li:last-child {
  border: none;
}

.custom-list2 {
  list-style: none;
  padding-left: 20px;
}

.custom-list-wrap {
  padding: 45px 45px;
  background-color: #f8f9fa;
  border-radius: 0px;
}

.custom-list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style: none;
}

.custom-list-wrap img {
  width: 100%;
  display: inline-block;
  float: left;
  margin-right: 15px;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e8eaed;
}

.custom-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 33px;
  background-color: #008bc5;
}

.custom-list li:last-child {
  border: none;
}

.custom-list li:hover {
  border-color: #008bc5;
}

.report-item {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 20px;
  padding-bottom: 20px;
  text-align: center;
  border: 1px solid #e8eaed;
  text-decoration: none !important;
  color: #202124;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 45px;
  border-radius: 0px;
}

.report-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.report-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.report-item p {
  margin-bottom: 0;
  font-weight: 500;
}

.report-item:hover {
  color: #880033;
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

/************ Pie Graph ***********/
.circle-graph h1 {
  text-align: center;
  margin: 0;
  z-index: 100;
  font-size: 48px;
}

.graph-one {
  height: 190px;
  /* set height for postioning */
}

.circle-graph-container {
  position: relative;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

canvas {
  position: absolute;
  top: 0;
}

.circle-graph {
  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;
}

/* --------------------------------*/
.nt-p {
  padding: 30px;
}

.news-item {
  border: 1px solid #e8eaed;
  border-radius: 0px;
  margin-bottom: 45px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-item-head {
  margin-bottom: 20px;
}

.news-item-head:hover h5 {
  color: #880033;
}

.news-item:hover h5 {
  color: #880033;
}

.news-item:hover .news-img-wrap .img {
  opacity: 0.9;
}

.news-item:hover {
  -webkit-box-shadow: 0px 1px 7px #e8eaed;
  box-shadow: 0px 1px 7px #e8eaed;
}

.news-img-wrap {
  position: relative;
  height: 100%;
  display: inline-block;
  width: 100%;
}

.news-img-wrap .img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-height: 400px;
  height: 100%;
  overflow: hidden;
  border-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.news-excerpt {
  color: #202124;
  opacity: 0.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-item a {
  text-decoration: none !important;
  color: #202124;
}

.news-item .link {
  color: #008bc5;
}

.sitemap-wrap {
  margin-bottom: 90px;
}

.sitemap-wrap b {
  font-weight: 500;
  font-size: 14px;
  color: #008bc5;
}

.sitemap-wrap a {
  text-decoration: none !important;
  color: #202124;
}

.sitemap {
  list-style: none;
  padding: 0px !important;
  margin: 0;
}

.sitemap li {
  margin: 15px 0;
}

.sitemap ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
  margin: 0;
}

.sitemap24 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  padding-left: 0;
}

.sitemap24 li {
  margin: 10px 0;
  display: inline-block;
  border: none !important;
}

.sitemap24 .sub-menu {
  top: 0 !important;
  left: 0 !important;
  padding: 0 !important;
  display: inline-block;
  position: relative;
  opacity: 1;
  visibility: visible;
  background-color: transparent !important;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  z-index: 2;
  width: auto;
}

.sitemap24 a {
  padding: 0 !important;
}

.sitemap24 .sub-menu a {
  background-color: #fff;
  padding: 0 !important;
  border: none !important;
}

.sitemap24 li::before,
.sitemap24 .sub-menu::before,
.sitemap24 .sub-menu a::before {
  content: unset !important;
}

.sitemap24 > li > a {
  font-weight: 500;
  margin-bottom: 10px;
}

.sitemap24 > li {
  width: 25%;
  padding-right: 80px;
  margin-bottom: 90px;
}

.sitemap24 > li > ul > li > .sub-menu {
  margin-top: 10px;
  padding-left: 20px !important;
}

.sitemap24 > li > ul > li > .sub-menu li:last-child {
  margin-bottom: 0 !important;
}

.search-form-lg {
  padding: 30px;
}

.search-form-btn {
  height: 100%;
  width: 120px;
  margin-left: 10px;
}

.search-item {
  display: inline-block;
  width: 100%;
  text-decoration: none !important;
  color: #202124;
  border-bottom: 1px solid #e8eaed;
  margin-bottom: 45px;
  padding-bottom: 15px;
}

.search-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.tooltip > .tooltip-inner {
  background-color: #454f5d;
  line-height: 18px;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: #454f5d;
}

.spinner-border.text-primary {
  color: #e8eaed !important;
}

.footer-row {
  margin-left: -40px;
  margin-right: -40px;
}

.footer-col {
  border-radius: 0px;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 40px;
  padding-right: 40px;
  z-index: 1;
  -webkit-transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

.footer-col:hover {
  z-index: 2;
  background-color: #fff;
}

.footer-main {
  padding-top: 45px;
  padding-bottom: 110px;
  background-color: #f8f9fa;
}

.footer-main h4 {
  font-size: 24px;
  font-weight: 400;
}

.footer-main p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.footer-main .list-group-item {
  padding-left: 0;
  padding-right: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 20px;
}

.footer-main .social h3 {
  font-size: 32px;
  font-weight: normal;
}

.footer-main .social-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background-color: #afafaf;
  line-height: 100px;
  text-align: center;
  color: #fff;
  font-size: 44px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-main .social-item:hover {
  opacity: 0.9;
  background-color: #008bc5;
}

.footer-main .facebook-color,
.footer-main .facebook-color:hover {
  background-color: #3b5999;
}

.footer-main .twitter-color,
.footer-main .twitter-color:hover {
  background-color: #55acee;
}

.footer-main .instagram-color,
.footer-main .instagram-color:hover {
  background-color: #e4405f;
  background-image: url(../images/insta-bg.jpg);
}

.footer-main .youtube-color,
.footer-main .youtube-color:hover {
  background-color: #cd201f;
}

.footer-main .linkedin-color,
.footer-main .linkedin-color:hover {
  background-color: #0077b5;
}

.footer-bottom {
  padding-top: 25px;
  padding-bottom: 30px;
  font-size: 13px;
}

.footer-bottom a {
  display: inline-block;
  color: inherit;
  padding: 0 20px !important;
  line-height: 11px;
  border-right: 1px solid #202124;
}

.footer-bottom a:last-child {
  padding-right: 0px;
  border: none;
}

.footer-bottom a:hover {
  text-decoration: underline !important;
}

.bar-btn-wrap {
  margin-right: -25px;
  display: none;
  padding: 30px;
  padding-left: 10px;
  outline: none;
  border: none;
  background: none;
}

.bar-btn-wrap:focus,
.bar-btn-wrap:active {
  outline: none;
}

.bar-btn {
  width: 22px;
  height: 16px;
}

.bar-line {
  width: 100%;
  height: 2px;
  background-color: #202124;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bar-line:last-child {
  width: 80%;
}

.bar-btn-wrap:hover .bar-line:last-child {
  width: 100%;
}

.mobile-menu-wrap {
  position: fixed;
  padding-top: 80px;
  padding-bottom: 90px;
  z-index: 99;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  overflow: auto;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mobile-menu-wrap.active {
  right: 0;
}

.mobile-menu-wrap ul {
  width: 100%;
  height: auto;
  display: inline-block;
  position: relative;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mobile-menu-wrap .menu-item {
  float: unset;
  display: inline-block;
}

.mobile-menu-wrap ul ul {
  display: inline-block;
  padding: 0;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 1;
  height: auto;
  visibility: visible;
  position: relative;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.mobile-menu-wrap ul ul a {
  padding-left: 15px !important;
}

.mobile-menu-wrap li {
  width: 100%;
  display: inline-block;
  border: none !important;
}

.mobile-menu-wrap .menu:last-child li:last-child .sub-menu {
  right: auto !important;
  left: auto;
}

.mobile-menu-wrap .sub-menu .menu-item::before {
  display: none;
}

.mobile-menu-wrap .menu a.active {
  color: #202124 !important;
  font-weight: 500 !important;
}

.mobile-menu-wrap .menu a.active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-bottom: -1px;
  color: #202124 !important;
}

.mobile-menu-wrap .menu a.hassub::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f105" !important;
  display: inline-block !important;
  color: #adadad;
  width: 8px;
  font-size: 16px;
  line-height: 10px;
  height: 10px;
  left: 100%;
  margin-left: -10px;
  top: 50%;
  margin-top: -5px;
  position: absolute;
  background-color: transparent !important;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.mobile-menu-wrap .sub-menu .menu-item {
  padding-right: 0 !important;
}

.mobile-menu-wrap .sub-menu .menu-item a {
  padding-left: 30px !important;
}

.mobile-menu-wrap .sub-menu .menu-item ul a {
  padding-left: 50px !important;
}

.mobile-menu-wrap .sub-menu .menu-item:hover a {
  border-bottom: 1px solid #e8eaed;
}

.mobile-menu-wrap .menu .menu-item {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.mobile-menu-wrap .menu a {
  line-height: 18px;
  padding: 10px 15px;
  display: inline-block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #e8eaed;
  color: #5f6368 !important;
}

.mobile-menu-wrap .menu a.active,
.mobile-menu-wrap .menu .menu-item.active a {
  font-weight: normal;
}

.mobile-menu-wrap .menu a:not(.active) strong,
.mobile-menu-wrap .menu a:not(.active) b {
  font-weight: normal;
}

.mobile-menu-wrap .closer-wrap {
  position: absolute;
  top: 12px;
  left: 10px;
  padding: 20px;
  cursor: pointer;
}

.mobile-menu-wrap .closer {
  width: 22px;
  height: 16px;
}

.mobile-menu-wrap .closer-line {
  width: 100%;
  height: 2px;
  background-color: #e8eaed;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu-wrap .closer-line:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-bottom: -1px;
}

.mobile-menu-wrap .closer-line:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -1px;
}

.mobile-menu-wrap .useful {
  margin-top: 30px;
}

.mobile-menu-wrap .useful li {
  background-color: #eaeaea;
}

.menu-backdor {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 98;
  display: none;
}

.mobile-menu-wrap .sub-menu {
  display: none;
}

.wpb_wrapper {
  height: 100%;
}

.ib__item.mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 0;
}

.ib__item.mobile p {
  margin-bottom: 0;
}

.ib__item.mobile .ib__item_block {
  width: 100%;
  padding: 30px;
}

.ib__item.big.mobile .ib__item_block.right-image .img-wrap,
.ib__item.big.mobile .ib__item_block.left-image .img-wrap {
  height: 240px;
}

.ib__item.big.mobile .ib__item_block.right-image {
  display: none !important;
}

.ib__item.big.mobile .ib__item_block.left-image {
  display: block !important;
}

.ib__item.mobile .ib__item_block::before {
  width: 100%;
  height: 50%;
  bottom: 0;
  top: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
}

@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 94%;
    max-width: 94%;
  }
}

@media (min-width: 1800px) {
  .container {
    width: 80%;
    max-width: 80%;
  }
}

@media (min-width: 1921px) {
  .container {
    max-width: 1920;
  }
}

@media (max-width: 1700px) {
  .counter-box h1 {
    font-size: 45px;
  }
  .counter-box {
    font-size: 15px;
  }
}

@media (max-width: 1440px) {
  .counter-box {
    padding: 20px;
  }
  .hr-box1 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .menu > li {
    padding-right: 35px;
  }
  .menu:last-child > li {
    padding-right: 0;
    padding-left: 35px;
  }
  .header-main {
    height: 160px;
  }
  .page-head-wrap {
    height: 480px;
  }
  .search .form-control {
    width: 130px;
  }
  .tender-v3-item small,
  .breadcrumb a,
  .breadcrumb,
  .footer-bottom {
    font-size: 12px;
  }
  .nav-box .nav-item a,
  .tender-v3-item-detial p,
  .form-control,
  .joblist .accordion-head small,
  .hr-box1 h5,
  .nh-project .card-body,
  .counter-list-result small,
  .footer-main p,
  .footer-main .list-group-item,
  .card-text,
  .search .form-control,
  .menu a {
    font-weight: normal;
    font-size: 14px !important;
  }
  .btn {
    font-size: 14px !important;
  }
  .card-title,
  .ib__item,
  .lighttext300,
  .counter-list-progress-year,
  .counter-box,
  .custom-list li,
  .ab-wrap h5 {
    font-size: 15px !important;
  }
  .accordion-head,
  .thbz-item-text .title,
  .medium-title {
    font-size: 16px;
  }
  .nor18,
  .tender-v3-item-title {
    font-size: 17px;
  }
  .text h6,
  .text .h6 {
    font-size: 18px;
  }
  .footer-main h4,
  .text h5 {
    font-size: 22px;
  }
  .row-title {
    font-size: 32px;
  }
  .footer-main .social h3 {
    font-size: 28px;
  }
  .page-title {
    font-size: 32px;
  }
  .counter-list-result,
  .counter-box h1 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .featured-news .card-img {
    padding-bottom: 0;
  }
  .featured-news .card-body {
    padding-bottom: 40px;
  }
  .partners .card {
    max-height: 160px;
  }
  .blockquote {
    padding: 1.5em 1em;
    font-size: 18px;
  }
  .slogan-wrap,
  .vw-hover {
    height: 400px;
  }
  .hlogo {
    width: 400px;
  }
  .page-head .slide-text h2 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  .page-head {
    font-size: 18px;
  }
  .joblist .tender-v3-item-detial > div {
    padding: 12px 20px;
  }
  .tender-v3-item-detial > div {
    padding: 8px 10px;
  }
  .jtw-winner {
    min-width: auto;
    max-width: 300px;
  }
  .jtw-date {
    min-width: 130px;
    max-width: 130px;
  }
  .jtw-number {
    min-width: 130px;
    max-width: 130px;
  }
  .vw-text {
    bottom: 40px;
  }
  .vw-text svg {
    width: 90px;
  }
  .history-cover {
    height: 500px;
  }
  .bigfont h5 {
    font-size: 18px !important;
  }
  .hugefont h5 {
    font-size: 28px !important;
  }
  .member-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1280px) {
  .member-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-main .list-group-item {
    font-size: 14px;
  }
  .breadcrumb-item,
  .breadcrumb-item a {
    max-width: 150px;
  }
  .sub-menu {
    padding-top: 22.5px;
    padding-bottom: 22.5px;
    padding-left: 13.5px;
    padding-right: 13.5px;
  }
  .sub-menu .menu-item a {
    padding: 13.5px 13.5px;
  }
  .nav-box .nav-item a,
  .tender-v3-item-detial p,
  .form-control,
  .joblist .accordion-head small,
  .hr-box1 h5,
  .nh-project .card-body,
  .counter-list-result small,
  .card-text,
  .search .form-control,
  .menu a {
    font-weight: normal;
    font-size: 12.6px !important;
  }
  .sub-menu {
    top: 54px;
  }
  .menu {
    height: 54px;
  }
  .menu a {
    line-height: 54px;
  }
  .content-padd {
    padding-left: 0px;
  }
  .history-cover {
    height: 450px;
  }
  .vw-text {
    bottom: 35px;
  }
  .vw-text svg {
    width: 70px;
  }
  .header-main {
    height: 144px;
  }
  .hlogo {
    width: 360px;
  }
  .search .form-control {
    width: 120px;
  }
  .page-head-wrap {
    height: 432px;
  }
  .joblist .tender-v3-item-detial > div {
    padding: 12px 20px;
  }
  .tender-v3-item-detial > div {
    padding: 6px 8px;
  }
  .btn-group-lg > .btn,
  .btn-lg,
  .nav-box .nav-link {
    font-size: 12.6px;
  }
  .bigfont p {
    font-size: 12.6px;
  }
  .text {
    font-size: 14px;
  }
  .breadcrumb a {
    font-size: 12px;
  }
  .page-title {
    font-size: 32px;
  }
  .branch-ttile {
    padding-bottom: 13.5px;
    margin-bottom: 36px;
  }
  .accordion-head,
  .tender-v2-item strong {
    font-size: 16px;
    line-height: 1.5;
  }
  .menu > li {
    padding-right: 31.5px;
  }
  .thbz-item-text .title {
    min-height: 94px;
  }
  .thbz-item {
    min-height: 600px;
  }
  .slogan-wrap,
  .vw-hover {
    height: 300px;
  }
  .news-img-wrap .img {
    max-height: 300px;
  }
  .page-head .slide-text h2 {
    font-size: 28.8px;
    margin-bottom: 4.5px;
  }
  .page-head .slide-text p {
    margin-bottom: 9px;
  }
  .page-head {
    font-size: 16.2px;
  }
  .page-head .slide-text p {
    margin-bottom: 10px;
  }
  .page-head-wrap.mini {
    height: 350px;
  }
  .breadcrumb {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
  .nav-box .nav-item a,
  .nav-box .nav-link {
    padding-left: 18px;
    padding-right: 36px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .page-content {
    padding-top: 54px;
    padding-bottom: 90px;
  }
  .footer-main h4,
  .text h5 {
    font-size: 19.8px;
  }
  .row-title {
    font-size: 29px;
  }
  .card-title,
  .ib__item,
  .lighttext300,
  .counter-list-progress-year,
  .counter-box,
  .custom-list li,
  .custom-list2 li,
  .ab-wrap h5 {
    font-size: 13.5px !important;
  }
  .featured-news .card-title {
    font-size: 16px !important;
  }
  .featured-news .card-body {
    padding: 0;
    padding-top: 18px;
    padding-left: 27px;
    padding-right: 27px;
    padding-bottom: 36px;
  }
  .btn {
    font-size: 12.6px !important;
    padding: 10px 27px;
  }
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto,
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-auto,
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-auto,
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-auto,
  .col-xl,
  .col-xl-1,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-auto {
    padding-left: 18px;
    padding-right: 18px;
  }
  .row {
    margin-right: -18px;
    margin-left: -18px;
  }
  .swiper-button-custom-prev,
  .swiper-button-custom-next {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .swiper-pagination-bullet {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .thumbslider .swiper-button-custom-prev,
  .thumbslider .swiper-button-custom-next {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .footer-main {
    padding-top: 40.5px;
    padding-bottom: 99px;
  }
  .custom-badge {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    margin-left: 4.5px;
    font-size: 10.8px;
    min-width: 19.8px;
    height: 19.8px;
    line-height: 19.8px;
  }
  .footer-main p {
    font-size: 13.5px !important;
  }
  .footer-main .list-group-item {
    padding-top: 14.4px;
    padding-bottom: 14.4px;
    line-height: 18px;
    font-size: 13.5px !important;
  }
  .footer-col {
    padding-top: 40.5px;
    padding-bottom: 40.5px;
  }
  .line120 {
    height: 108px;
  }
  .footer-main .social h3 {
    font-size: 25.2px;
  }
  .footer-main .social-item {
    font-size: 39.6px;
    line-height: 90px;
    width: 90px;
    height: 90px;
  }
  .footer-bottom {
    padding-top: 22.5px;
    padding-bottom: 27px;
  }
  .footer-bottom a {
    font-size: 10.8px;
    line-height: 10px;
    padding: 0 18px !important;
  }
  .tender-v3-item small,
  .footer-bottom {
    font-size: 10.8px;
  }
  .breadcrumb a,
  .breadcrumb {
    font-size: 12px;
  }
  .counter-box {
    padding: 20px;
  }
  .counter-list-result,
  .counter-box h1 {
    font-size: 35px;
  }
  .counter-box-icon {
    right: 21.6px;
    bottom: 21.6px;
    height: 40.5%;
    width: 100%;
  }
  .slogan-text {
    font-size: 27px;
  }
  .ab-small .ab-icon-wrap {
    width: 117px;
  }
  .ab-small .ab-text {
    padding-left: 22.5px;
    padding-top: 9px !important;
    padding-right: 9px !important;
  }
  .line-space {
    margin-top: 33.3px;
    margin-bottom: 33.3px;
  }
  blockquote {
    padding: 37.8px 34.2px;
    margin-bottom: 27px;
  }
  .history-menu p:first-child {
    font-size: 15px;
  }
  .history-menu {
    padding: 10.8px 18px;
  }
  .p35 {
    padding: 31.5px;
  }
  .fz17 {
    font-size: 16.2px;
  }
  .history-content::after {
    height: 72px;
    bottom: -90px;
  }
  .history-content {
    margin-bottom: 108px;
  }
  .history-year {
    font-size: 16.2px;
    width: 96px;
    height: 38.8px;
    line-height: 38.8px;
  }
  .history-text-wrap {
    padding: 36px;
  }
  .company-item-box {
    padding: 22.5px;
  }
  .accordion-head,
  .thbz-item-text .title,
  .medium-title {
    font-size: 14.4px;
  }
  .thbz-item-text2 {
    padding: 22.5px 27px;
    height: 90px;
  }
  .thbz-item-text2 .card-title {
    font-size: 19px !important;
  }
  .ab-small .ab-icon-wrap.smallest {
    width: 72px;
  }
  .report-item {
    padding: 18px;
    padding-bottom: 18px;
    margin-bottom: 40.5px;
  }
  .nt-p {
    padding: 27px;
  }
  .custom-list-wrap2 li {
    padding-top: 27px;
    padding-bottom: 27px;
  }
  .custom-list-wrap2 li img {
    max-width: 135px;
    min-width: 135px;
  }
  .ib__item .mg_fz17,
  .blockquote {
    font-size: 16.2px;
  }
  .ib__item .ib__item_block {
    padding: 36px;
  }
  .joblist .tender-v3-item-title {
    padding-bottom: 11.7px;
    padding-top: 18px;
  }
  .nor18,
  .tender-v3-item-title {
    font-size: 15.3px;
  }
  .joblist .tender-v3-item {
    padding: 0px 22.5px;
  }
  .accordion-head::after {
    right: 13.5px;
    margin-top: -11.7px;
    width: 23.4px;
    height: 23.4px;
  }
  .tender-v3-item-title {
    padding: 28.9px 22.5px;
  }
  .form-box {
    padding: 36px 67px;
  }
  .bigfont h5 {
    font-size: 16.2px !important;
  }
  .hr-box1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bigfont h5 {
    font-size: 16px !important;
  }
  .hugefont h5 {
    font-size: 28px !important;
  }
  .text-news {
    font-size: 14px !important;
  }
}

@media (max-width: 992px) {
  .blockquote {
    padding: 1em 1em;
    font-size: 15px;
  }
  .tenderstyle > div {
    max-width: 33.3333333% !important;
    width: 33.3333333% !important;
    border: none;
    border-bottom: 1px solid #e8eaed;
  }
  .slogan-text {
    font-size: 24px;
  }
  .header-main {
    height: 80px;
  }
  .hlogo {
    width: 200px;
  }
  .bar-btn-wrap {
    display: block;
  }
  .search,
  .header-menu {
    display: none !important;
  }
  .row-title {
    font-size: 18px;
    line-height: 24px;
  }
  .swiper-partners {
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px;
    padding-bottom: 60px;
  }
  .page-content {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .line120 {
    height: 80px;
  }
  .footer-row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .footer-col {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .footer-main .social-item {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 36px;
  }
  .footer-main {
    padding-bottom: 45px;
  }
  .thbz-item-text .title {
    min-height: 68px;
    padding: 10px 20px;
    font-size: 16px;
  }
  .menu .active a::before,
  .menu a::before {
    content: unset;
    display: none !important;
  }
  .text {
    min-height: 500px;
  }
  .thbz-item {
    min-height: 500px;
  }
  .sitemap24 > li {
    width: 33.3333%;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .slogan-wrap,
  .vw-hover {
    height: 350px;
  }
  .thbz-item {
    margin-bottom: 30px;
  }
  .page-head .slide-text h2 {
    font-size: 24px;
  }
  .page-head {
    font-size: 14px;
  }
  .featured-news .card-body {
    padding-bottom: 20px;
  }
  .footer-main .social-item {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .footer-main .social h3 {
    font-size: 24px;
    margin-bottom: 30px !important;
  }
  .line120 {
    height: 60px;
  }
  .page-head-wrap.mini {
    height: 280px;
  }
  .page-title {
    font-size: 24px;
  }
  .social-share {
    display: none;
    text-align: left;
  }
  .page-title-wrap {
    padding-bottom: 30px;
  }
  .text {
    min-height: 400px;
  }
  .thbz-item-text .title {
    min-height: 56px;
  }
  .ib__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ib__item .ib__item_block {
    width: 100%;
    padding: 20px;
  }
  .ib__item.big .ib__item_block.right-image .img-wrap,
  .ib__item.big .ib__item_block.left-image .img-wrap {
    height: 240px;
  }
  .ib__item.big .ib__item_block.right-image {
    display: none !important;
  }
  .ib__item.big .ib__item_block.left-image {
    display: block !important;
  }
  .worker-msg-img {
    width: 150px;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    margin-left: 15px;
    margin-bottom: 15px;
  }
  .bordered__item {
    width: 50% !important;
  }
  .joblist .accordion-head .btn {
    display: none;
  }
  .joblist .tender-v3-item .tender-v3-item-detial > div {
    padding: 10px 0px;
    width: 50%;
  }
  .tender-v3-item-title .dropdown {
    position: absolute;
    right: 25px;
    top: 15px;
  }
  .tenderstyle {
    width: 100%;
  }
  .tenderstyle > div {
    padding: 0px 10px;
    max-width: 50% !important;
    width: 50% !important;
    border: none;
    border-bottom: 1px solid #e8eaed;
  }
  .history-text-wrap {
    height: 100%;
    padding-top: 90px;
  }
  .history-text-wrap .history-text {
    overflow: unset;
    text-overflow: unset;
    display: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .table td,
  .table th {
    padding: 3px 5px;
  }
  .sitemap24 > li {
    width: 50%;
    padding-right: 30px;
  }
  .custom-list-wrap2 {
    padding: 15px;
  }
  .custom-list-wrap2 li {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .breadcrumb-item, .breadcrumb-item a {
    max-width: 100px;
  }
  .member-item {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 15px;
  }
  .member-item p {
    line-height: 1.3;
  }
  .member-item .excerpt {
    min-height: 70px;
  }
  blockquote {
    padding: 20px 25px;
    margin-bottom: 20px;
  }
  .accordion-head {
    padding: 15px 20px;
  }
}

@media (max-width: 640px) {
  .row-title::after {
    display: none;
  }
  .footer-bottom,
  .footer-bottom a {
    font-size: 12px;
  }
  .footer-bottom a {
    padding: 0 4px !important;
  }
  .line120 {
    height: 40px;
  }
  .footer-main .social h3 {
    font-size: 22px;
    margin-bottom: 20px !important;
  }
  .page-head-wrap.mini {
    height: 240px;
  }
  .company-item-wrap {
    padding-bottom: 0;
  }
  .company-item-box {
    padding: 10px;
    position: relative;
  }
  .company-item-box .row:nth-child(2),
  .company-item-box .row:nth-child(3),
  .company-item-box .row:nth-child(4),
  .company-item-box .row:nth-child(5) {
    visibility: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sitemap24 > li {
    width: 100%;
    padding-right: 0px;
  }
}

@media (max-width: 414px) {
  .bordered__item {
    width: 100% !important;
  }
}

/**
 * selectize.bootstrap3.css (v0.12.6) - Bootstrap 3 Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-dropdown-header {
  position: relative;
  padding: 3px 12px;
  border-bottom: 1px solid #e8eaed;
  background: #f8f8f8;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 12px;
  top: 50%;
  color: #333333;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 1px 0 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: rgba(0, 0, 0, 0);
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: rgba(77, 77, 77, 0);
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #333333;
  font-family: inherit;
  font-size: inherit;
  line-height: 20px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 2px solid #e8eaed;
  padding: 18px 12px;
  max-height: 60px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 12px 2px;
}

.selectize-input.full {
  background-color: #fff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 1px 3px;
  background: #efefef;
  color: #333333;
  border: 0 solid rgba(0, 0, 0, 0);
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8eaed;
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #808080;
  background: #ffffff;
  border: 0 solid rgba(77, 77, 77, 0);
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #ffffff;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #e8eaed;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(255, 237, 40, 0.4);
  border-radius: 0px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 3px 12px;
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #777777;
  background: #fff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5f5f5;
  color: #262626;
}

.selectize-dropdown .active.create {
  color: #262626;
}

.selectize-dropdown .create {
  color: rgba(51, 51, 51, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #333333 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 17px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fff;
}

.selectize-dropdown,
.selectize-dropdown.form-control {
  height: auto;
  padding: 0;
  margin: 2px 0 0 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0px;
}

.selectize-dropdown .optgroup-header {
  font-size: 12px;
  line-height: 1.42857143;
}

.selectize-dropdown .optgroup:first-child:before {
  display: none;
}

.selectize-dropdown .optgroup:before {
  content: " ";
  display: block;
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  margin-left: -12px;
  margin-right: -12px;
}

.selectize-dropdown-content {
  padding: 5px 0;
}

.selectize-dropdown-header {
  padding: 6px 12px;
}

.selectize-input {
  min-height: 34px;
}

.selectize-input .item {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.selectize-input.dropdown-active::before {
  display: none;
}

.selectize-input.focus {
  border-color: #008bc5;
  outline: 0;
}

.has-error .selectize-input {
  border-color: #a94442;
}

.has-error .selectize-input:focus {
  border-color: #843534;
}

.selectize-control.multi .selectize-input.has-items {
  padding-left: 9px;
  padding-right: 9px;
}

.selectize-control.multi .selectize-input > div {
  border-radius: 0px;
}

.form-control.selectize-control {
  padding: 0;
  height: auto;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
/*# sourceMappingURL=main.css.map */