/********** Template CSS **********/
:root {
  --primary: #ec1c24;
  --secondary: #9B9B9B;
  --light: #F5F5F5;
  --dark: #161616;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: .5s;
  background-color: #1a1a1a;
}

.navbar .navbar-brand {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav {
  margin-left: 100px;
}

@media screen and (max-width: 1160px) {
  .navbar .navbar-nav {
    margin-left: 14px;
  }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #a70811;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}

.navbar .btn:hover {
  color: #FFFFFF !important;
  background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.header-carousel .owl-carousel-item h2 {
  margin-bottom: 150px;
  text-shadow: 0 0 30px rgb(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item p.pd {
    font-size: 20px !important;
    font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h2 {
    font-size: 30px;
    font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 15px;
  transition: .5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #FFFFFF;
  border-radius: 5px;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/** 非首页的header */
/*** Header ***/
.not-home-header-carousel .carousel-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.not-home-header-carousel .owl-carousel-item h2 {
  margin-bottom: 220px;
  text-shadow: 0 0 30px rgb(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .not-home-header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .not-home-header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .not-home-header-carousel .owl-carousel-item h5,
  .not-home-header-carousel .owl-carousel-item p {
    font-size: 14px !important;
    font-weight: 400 !important;
  }

  .not-home-header-carousel .owl-carousel-item p.pd {
    font-size: 20px !important;
    font-weight: 400 !important;
  }

  .not-home-header-carousel .owl-carousel-item h2 {
    font-size: 30px;
    font-weight: 600;
  }
}

.not-home-header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.not-home-header-carousel .owl-nav .owl-prev,
.not-home-header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  font-size: 22px;
  transition: .5s;
}

.not-home-header-carousel .owl-nav .owl-prev:hover,
.not-home-header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.not-home-header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-home-header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 15px;
  transition: .5s;
}

.not-home-header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #FFFFFF;
  border-radius: 5px;
}

.not-home-header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../image/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + .75rem);
  }

  .choose-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }

  .choose-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }

  .choose-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

.home-banner-title {
  font-family: 'Microsoft YaHei', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.pt-20 {
  padding-top: 5rem !important;
}

/*** Service ***/
.service-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
  border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 38px;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

.service-item:hover .btn {
  width: 140px;
}

.service-container-part1 {
  background-color: #000;
}

.service-container-part2 {
  background-color: #000;
  position: relative;
  z-index: 2;
}

.service-container-part2 img {
  height: 352px;
  width: 100%;
}

.service-container-part2 .image-link {
  display: block;
  height: 22rem;
}

.service-container-part2 .content {
  height: 7rem;
}

.service-container-part3 {
  position: relative;
  margin-top: 8rem;
}

.service-container-part3 .service-container-part3-item {
  background-color: #ddd4d5;
  padding: 3rem 2.5333rem;
  cursor: pointer;
  height: 22rem;
}

.service-container-part3 .service-container-part3-item .item-title {
  color: #7b050d;
  font-size: 1.25rem;
}

.service-container-part3 .container-xxl {
  position: relative;
  z-index: 2;
  top: -8rem;
  margin-bottom: -8rem;
}

.service-container-part3 .service-container-part3-item .item-text {
  color: #000 !important;
}

.service-container-part3 .service-container-part3-item .line {
  width: 77px;
  height: 2px;
  background-color: #7b050d;
}

.service-container-part3-item img {
  width: 5rem;
  margin: 0 auto;
}

.service-part3-bg {
  display: none;
  position: absolute;
  z-index: 1;
  top: -27rem;
  ;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: url('../image/service/COA-13.jpg') no-repeat center center/cover;
  height: 25.4rem;
}

@media (max-width: 991.98px) {
  .service-container-part2 .content1 {
    height: 8rem;
  }

  .service-container-part2 .content2 {
    height: 11rem;
  }

  .service-container-part3-item-1 {
    height: 24rem;
  }

  .service-container-part3-item-1 .service-container-part3-item {
    height: 24rem !important;
  }
}

/*** Service Portfolio ***/
#service-portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

#service-portfolio-flters li:hover,
#service-portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.service-portfolio-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-portfolio-inner img {
  transition: .5s;
}

.service-portfolio-inner:hover {
  background-color: rgb(167 7 18);
}

.service-portfolio-inner:hover img {
  transform: scale(1.1);
}

.service-portfolio-inner:hover .line {
  background-color: #fff;
}

.service-portfolio-inner:hover .item-text {
  color: #fff !important;
}

.service-portfolio-inner:hover .item-title {
  color: #fff;
}

.service-portfolio-inner:hover .item-img-1 {
  content: url('../image/service/ICON-15.png');
}

.service-portfolio-inner:hover .item-img-2 {
  content: url('../image/service/ICON-16.png');
}

.service-portfolio-inner:hover .item-img-3 {
  content: url('../image/service/ICON-17.png');
}

.service-portfolio-inner:hover .item-img-4 {
  content: url('../image/service/ICON-18.png');
}

.service-portfolio-inner:hover .item-img-6 {
  content: url('../image/service/ICON-20.png');
}

.service-portfolio-inner:hover .item-img-5 {
  content: url('../image/service/ICON-19.png');
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Products Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: .5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
  transition: .5s;
}

.portfolio-inner:hover img {
  transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
  bottom: 0;
  opacity: 1;
}

/* Products */
.products-container-part1 {
  background-color: #000;
}

.products-container-part2 img {
  width: 100%;
}

.products-container-part2 .title {
  color: #a80812;
}

.products-container-part2 .text {
  color: #fff;
}

.products-container-part2 .line {
  background-color: #a80812;
}

.products-container-part2 .img-box {
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.products-container-part2 .img-box:hover {
  box-shadow: #a80812 0 3px 15px;
}

.products-container-part2 .container-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.products-container-part3 {
  background-color: #000;
  position: relative;
  z-index: 1;
}

.products-part3-bg {
  display: none;
  position: absolute;
  z-index: 1;
  top: -14rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: url('../image/service/COA-13.jpg') no-repeat center center/cover;
  height: 25.4rem;
}

.products-container-part3 .container-xxl {
  position: relative;
  z-index: 2;
}

.product-1 ul,
.product-2 ul {
  color: white;
  padding-left: 0;
  margin-bottom: 0;
}

.product-1 li,
.product-2 li {
  letter-spacing: .5px;
  list-style: none;
}


@media (max-width: 991.98px) {
  .products-container-part2 .container-title {
    width: 100%;
    top: 1rem;

  }

  .space {
    height: 2rem !important;
  }
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 22, .7);
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-social {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  opacity: 0;
}

.team-item:hover .team-social .btn {
  opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Footer ***/
.footer .container .col-lg-3.col-md-6 {
  margin-top: 0;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.btn-primary {
  background-color: #a70811;
  border-color: #a70811;
}

.text-primary {
  color: #ec1c24 !important;
}

.bg-primary {
  background-color: #a70811 !important;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #ec1c24;
  border-color: #ec1c24;
}

.bg-dark {
  background-color: #70000e !important;
}

.text-secondary {
  color: #ffffff !important;
}

.coastlinetek-part1 img {
  width: 100%;
}

.coastlinetek-card1 {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  max-width: 100%;
  -webkit-box-shadow: 0 2px 6px 0 #a70811;
  -moz-box-shadow: 0 2px 6px 0 #a70811;
  box-shadow: 0 2px 6px 0 #a70811;
  box-sizing: border-box;
  background-color: #ddd4d5;
}

.coastlinetek-text-white {
  color: #171c2d;
  font-size: 1.3rem;
  font-weight: normal;
}

.coastlinetek-card1 hr {
  opacity: 1;
  height: 2px;
  background-color: #a70811 !important;
  width: 15%;
}

.coastlinetek-card1 .btn {
  display: block;
  margin-top: 1.5em;
  background: #a70811;
}

body {
  color: #171c2d;
}

.copyright {
  color: #ffffff;
}

.owl-carousel h1,
.owl-carousel p {
  text-shadow: 4px 2px 2px #000000;
}

.owl-carousel .btn-primary {
  background: url(../image/CO6.png) no-repeat center center;
  width: 233px;
  height: 92px;
  border: none;
  line-height: 76px;
}

.owl-carousel .btn-light {
  background: url(../image/CO7.png) no-repeat center center;
  width: 233px;
  height: 92px;
  border: none;
  line-height: 76px;
  color: #000000;
}

.container-part1 {
  background-color: #000000;
}

.container-title {
  padding-bottom: 20px;
}

.container-title h1 {
  color: #ffffff;
  font-size: 2.5em;
  padding-bottom: 5px;
}

.container-title .bg-primary {
  background-color: #ffffff !important;
}

.container-part2,
.container-part4 {
  background-color: #ddd4d5;
}

/* .container-part4 {
  margin-bottom: 72px;
} */

.container-part3 {
  background-color: #000000;
}

.portfolio-inner {
  background-color: #87848b;
}

.portfolio-inner .text-primary {
  font-size: 20px;
  color: #ffffff !important;
  line-height: 20px;
}

.portfolio-inner:hover {
  background-color: #a80812;
}

.container-part5 {
  background-color: #000000;
}

.coastlinetek-card2 {
  width: 100%;
  height: 290px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #87848b;
}

.coastlinetek-card2 hr {
  opacity: 1;
  height: 2px;
  background-color: #ffffff !important;
  width: 15%;
}

.coastlinetek-card2 .btn {
  display: block;
  margin-top: 0.5em;
  background: #70000c;
}

.row:nth-child(2) .coastlinetek-card2 .btn {

  margin-top: 2em;

}

.coastlinetek-card2 .coastlinetek-text-white,
.coastlinetek-card2 span {
  color: #ffffff;
}

.navbar-light .navbar-toggler {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #ffffff;
}

.btn-primary:focus {
  color: #ffffff;
  background-color: #ec1c24;
  border-color: #ec1c24;
  box-shadow: 0 0 0 .25rem #ffffff
}

.btn-primary:active,
.btn-primary.active {
  color: #ffffff;
  background-color: #ec1c24;
  border-color: #ec1c24
}

.coastlinetek-card2:hover {
  background-color: #a80812;
}



/* COMMON */
.common-h2-title-no-line {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  padding-top: 80px;
  margin-bottom: 2rem;
  color: white;
}

.common-h2-title {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  padding-top: 80px;
  margin-bottom: 4rem;
  color: white;
}

.common-h2-title.white {
  color: #fff;
}

.common-h2-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #ff262b;
}

.common-h2-title.white::after {
  background-color: #fff;
}

.common-h2-title>.title {
  word-break: break-all;
  word-wrap: break-word;
}

.common-h2-title>.content {
  font-size: 1.5rem;
}

@media screen and (max-width: 992px) {
  .common-h2-title {
    font-size: 26px;
    font-weight: bold;
    padding-top: 40px;
    margin-bottom: 2rem;
    color: white;
  }

}

.common-h3-title-no-line {
  position: relative;
  font-size: 40px;
  padding-top: 2rem;
  margin-bottom: 1rem;
}

.common-h3-title-no-line h3 {
  color: #a80812;
  font-weight: 700;
  font-size: 22px;
}

.m-0-auto {
  margin: 0 auto;
}

.hyphens-auto {
  hyphens: auto;
}

img {
  margin: 0;
  padding: 0;
  display: block;
}

.header-carousel {
  background-color: #000;
}

.container-part3-item>div {
  cursor: pointer;
  overflow: hidden;
  background-color: #dcd5d5;
  transition: all 0.3s ease;
}

.container-part3-item>div p {
  color: black;
  transition: all 0.3s ease;
}

.container-part3-item>div:hover p {
  color: white;
}

.container-part3-item>div:hover {
  background-color: #a80812;
}

.container-part3-item>div img {
  aspect-ratio: 16/9;
  transition: 0.3s ease-in-out;
}

.container-part3-item>div:hover img {
  transform: scale(1.125);
}

.container-part3-item>div div {
  height: 4rem;
  line-height: 4rem;
  transition: 0.3s ease-in-out;
}

.container-part3-item>div:hover div {
  line-height: 5rem;
}

.container-part3-item p {
  color: white;
}

.email {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.email:hover {
  letter-spacing: 1px;
}

.draco-key-item .key-item-title {
  color: #A70811;
  font-size: 22px;
  font-weight: bold;
  line-height: 50px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.draco-key-item .key-item-title2 {
  font-size: 16px;
  padding-left: 20px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
}



.draco-key-item .key-item-desc {
  padding: 0 40px;
}

@media screen and (max-width: 992px) {
  .draco-key-item .key-item-title2 {
    font-size: 16px;
    padding-left: 20px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .draco-key-item .key-item-desc {
    padding: 0 20px;
  }
}

.markets {
  color: white;
}

.markets-p,
.products-p {
  color: white;
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
}

.nav-products:focus,
.nav-products.active {
  color: white !important;
}

.nav-item {
  cursor: pointer;
}

.applications .parts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  color: white;
  padding: 0 50px;
}

@media screen and (max-width: 992px) {
  .applications .parts {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 0;
  }
}

.applications .parts>.part-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  padding-top: 0;
}

.applications .parts .app-img {
  text-align: center;
  display: flex;
  align-items: center;
}

.applications .parts .app-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.applications .parts .app-title {
  width: 100%;
  color: white;
  text-align: center;
  align-self: flex-start;
  margin-top: 25px;
  margin-bottom: 10px;
}

.applications .parts .app-list {
  width: 100%;
  letter-spacing: .5px;
  align-self: flex-start;
}

.applications .parts .app-list li {
  margin-bottom: 10px;
}

.join-us .arraw-2 {
  transform: rotate(-180deg);
  transition: transform 0.3s ease;
}

.join-us .collapsed .arraw-2 {
  transform: rotate(0deg);
}