body {
  margin: 0;
  padding: 0;
  display: block;
  color: #333;
  line-height: 1.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
}

.container-main {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  height: 100%;
  box-sizing: border-box;
}

.header-main {
  height: 90px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.header-main .container {
  height: inherit;
}

.header-main .top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

.header-main .top-container .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header-main .top-container .logo .logo-helper {
  width: 260px;
}

.header-main .top-container .logo .logo-helper img {
  width: 100%;
}

.header-main .top-container .menu-wrapper {
  height: inherit;
}

@media (max-width: 991px) {
  .header-main {
    height: auto;
  }
  .header-main .top-container {
    flex-direction: column;
  }
  .header-main .top-container .logo .logo-helper {
    text-align: center;
    padding: 1rem 0;
  }
  .header-main .top-container .logo .logo-helper img {
    width: auto;
    height: 30px;
  }
  .header-main .top-container .menu-wrapper {
    height: auto;
  }
}

.navbar-nav {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-item {
  height: inherit;
}

.navbar-nav .nav-item .nav-link {
  height: inherit;
  display: block;
  text-decoration: none;
  color: #004990;
  padding: 0.4rem 1rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav .nav-item .nav-link::after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 2px;
  background: transparent;
  left: 0;
  bottom: 0;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #a3243b;
}

.navbar-nav .nav-item .nav-link:hover::after {
  background-color: #ddd;
}

.navbar-nav .nav-item .nav-link.is-active {
  color: #a51134;
}

.navbar-nav .nav-item .nav-link.is-active::after {
  background-color: #a51134;
}

.navbar-nav .nav-item .nav-link.is-active:hover::after {
  background-color: #a51134;
}

.section-title {
  padding: 20px 0;
  text-align: center;
}

.section-title .title {
  font-size: 1.8rem;
  font-weight: 100;
  color: #003143;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .section-title .title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
}

.section-subtitle .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #003143;
  display: inline-block;
}

.section-subtitle .title::after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: #750042;
  display: block;
  margin-top: 15px;
}

section.about {
  background-color: #f6fafe;
  background-image: url("../images/bg1.jpg");
  background-size: cover;
  background-position: bottom;
  padding: 2rem 0;
}

section.about .section-content {
  text-align: center;
} 
section.about .section-content.bordered {
  border-left: 8px solid #960055;
  padding-left: 2rem;
}

section.about.dark {
  color: #fff;
  background-color: #004990;
  background-image: none;
  position: relative;
}

section.about.dark .section-title .title {
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.7);
}



section.about.dark::after {
  background-color: #003143;
  right: 0;
}

@media (max-width: 991px) {
  section.about .section-content {
    text-align: center;
  }
}

section.services .section-content {
  padding: 0 0 2rem 0;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 auto;
}

.service-list.boxed {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.service-list.boxed li {
  flex: 0 0 30%;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  margin: 1%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.service-list.boxed li::before {
  content: ' ';
  width: 40px;
  height: 40px;
  display: block;
  overflow: hidden;
  margin-right: 1rem;
  background-image: url("../images/service-icon-single.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .service-list.boxed {
    flex-direction: column;
  }
  .service-list.boxed li {
    flex: 1 0 100%;
  }
}

.footer-main {
  background-color: #00161e;
  padding: 2rem 0 0 0;
  margin-top: auto;
}

.footer-main .footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-main .footer-nav li a {
  color: #9ca2a4;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.footer-main .footer-text {
  display: block;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca2a4;
}

section.contact .section-content {
  padding: 0 0 2rem 0;
}

section.contact .section-content .contact-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

section.contact .section-content .contact-main {
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #f4f4f4;
}

@media  (max-width: 990px){
  section.contact .section-content .contact-main {
    padding: 1rem;
  }
}

section.contact .section-content .contact-main .address{
  text-align: center;
}

section.contact .section-content .contact-aside {
  padding: 2rem 0;
}

section.contact .section-content .contact-aside .address {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media  (max-width: 990px){
  section.contact .section-content .contact-aside .address {
    flex-direction: column;
    column-gap: 0;
    row-gap: 2rem;
    align-items: flex-start;
  }
}
section.contact .section-content .contact-aside .address .logo{
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media  (max-width: 990px){
  section.contact .section-content .contact-aside .address .logo{
    width: 100%;
  }
}
section.contact .section-content .contact-aside .address > div{
  flex: 1;
}
section.contact .section-content .contact-aside .address .logo img{
  width: auto;
  max-width: 100%;
  max-height: 60px;
}
@media  (max-width: 990px){
  section.contact .section-content .contact-aside .address .logo img{
    max-height: 40px;
  }
}
section.contact .section-content .contact-aside .address:last-of-type {
  border: none;
}

section.contact .section-content .address .address-title {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #004990;
}

section.contract-news {
  padding: 30px 0;
  color: #333;
}

section.contract-news a {
  text-decoration: none;
  color: darkcyan;
}

section.contract-news .content-wrapper {
  display: flex;
  flex-direction: column;
}

section.contract-news .content-wrapper .contract-col .section-content {
  display: flex;
  column-gap: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}
@media (max-width: 991px) {
  section.contract-news .content-wrapper .contract-col .section-content {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
section.contract-news .content-wrapper .contract-col .contract-item-logo {
  display: flex;
  align-items: center;
}

section.contract-news .content-wrapper .contract-col .contract-item-logo img {
  max-width: 250px;
}

section.contract-news .content-wrapper .contract-col .vehicle-info {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li > .title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li > .title2 {
  font-weight: bold;
  font-size: 0.8rem;
  margin: 0.3rem 0;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li .list-info {
  margin: 0;
  padding: 0;
  list-style: none;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li .list-info li {
  display: flex;
  align-items: center;
  line-height: normal;
  margin-bottom: 0.5rem;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li .list-info li label {
  color: #999;
  font-size: 0.9em;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li .list-info li label::after {
  content: ':';
  right: 1rem;
}

section.contract-news .content-wrapper .contract-col .vehicle-info li .list-info li .value {
  flex: 1;
}

section.contract-news .content-wrapper .news-col {
  margin-top: 1.5rem;
}

section.contract-news .content-wrapper .news-col .news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

section.contract-news .content-wrapper .news-col .news-list .title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

section.contract-news .content-wrapper .news-col .news-list .content {
  font-size: 0.9em;
  color: #666;
}

@media (max-width: 991px) {
  section.contract-news .content-wrapper {
    flex-direction: column;
  }
  section.contract-news .content-wrapper .news-col {
    margin-top: 30px;
    background-color: transparent;
    padding: 0;
  }
}
/*# sourceMappingURL=style.css.map */