* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Avenir;
  src: url("../fonts/avenir-next/AvenirNextLTPro-Regular.otf");
}
@font-face {
  font-family: Avenir-bold;
  src: url("../fonts/avenir-next/AvenirNextLTPro-Bold.otf");
}
body {
  margin: 0;
  padding: 0;
  font-family: Avenir;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.grid-max {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.w-100 {
  width: 100%;
}

.w-80 {
  width: 80%;
}

.w-50 {
  width: 50%;
}

.mt-1 {
  margin-top: 10px;
}

body .p-hide {
  padding: 0 !important;
}

.btn {
  cursor: pointer;
  padding: 8px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}
.btn .icon {
  margin-left: 15px;
}

.btn-white {
  background-color: #fff;
  color: #3E3A39;
}

.btn-blue {
  background-color: #00205B;
  color: #fff;
}

.btn-border-none {
  border: none;
}

.title-1 {
  font-style: normal;
  font-size: 42px;
  font-family: Avenir;
}

.title-2 {
  font-style: normal;
  font-size: 36px;
  font-family: Avenir;
}
.title-2 span {
  color: #014E98;
}

.title-3 {
  font-style: normal;
  font-size: 30px;
  font-family: Avenir;
}

.title-4 {
  font-style: normal;
  font-size: 24px;
  font-family: Avenir;
}

.text-1 {
  font-size: 30px;
  font-family: Avenir;
}

.text-2 {
  font-size: 24px;
  font-family: Avenir;
}

.text-3 {
  font-size: 19px;
  font-family: Avenir;
}

.fw-title {
  font-family: Avenir-bold;
}

@media only screen and (max-width: 768px) {
  .title-1 {
    font-size: 38px;
  }

  .title-2 {
    font-size: 30px;
  }
}
.text-center {
  text-align: center;
}

.color-white {
  color: #fff;
}

.color-gray {
  color: #3E3A39;
}

.color-cyan {
  color: #00A8E2;
}

.color-middle-blue {
  color: #014E98;
}

.fw-bold {
  font-weight: bold;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.overflow {
  overflow: hidden;
}

@keyframes iconLinks {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
.header-page {
  z-index: 5;
  position: relative;
}
.header-page .bg-white {
  background-color: #fff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  padding: 5px 35px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header-page .bg-white .logo-header {
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .logo-header {
    width: 120px;
  }
}
.header-page .bg-white .header-content {
  display: flex;
  align-items: center;
}
.header-page .bg-white .header-content .divider {
  width: 2px;
  background-color: #00A8E2;
  height: 30px;
  margin: 0px 20px;
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .header-content .divider {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .header-content .header-links {
    display: none;
  }
}
.header-page .bg-white .header-content .header-links .header-link {
  font-family: Avenir;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #3E3A39;
  text-decoration: none;
  margin: 0px 15px;
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .header-content .header-links .header-link {
    margin: 0px 8px;
  }
}
.header-page .bg-white .header-content .header-links .active {
  color: #00A8E2;
}
.header-page .bg-white .header-content .header-search {
  overflow: hidden;
  cursor: pointer;
  width: 25px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  transition: width 300ms;
}
.header-page .bg-white .header-content .header-search #icon-search {
  display: none;
  transition: opacity 300ms;
}
.header-page .bg-white .header-content .header-search:hover {
  width: 180px;
  background-color: #00205B;
}
.header-page .bg-white .header-content .header-search:hover .icon-blue {
  display: none;
}
.header-page .bg-white .header-content .header-search:hover .icon-white {
  display: block;
  width: 35px;
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .header-content .header-search .icon-blue {
    display: none;
  }
  .header-page .bg-white .header-content .header-search #icon-search {
    display: block;
  }
  .header-page .bg-white .header-content .header-search:hover {
    width: 25px;
    background-color: white;
  }
  .header-page .bg-white .header-content .header-search:hover .icon-blue {
    display: none;
  }
  .header-page .bg-white .header-content .header-search:hover .icon-white {
    display: none;
  }
}
.header-page .bg-white .header-content .header-search img {
  width: 28px;
}
.header-page .bg-white .header-content .header-search input {
  height: 30px;
  margin-left: 13px;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  outline: none;
  font-size: 16px;
}
.header-page .bg-white .header-content #header-icon-open {
  width: 35px;
  display: none;
  cursor: pointer;
  transition: opacity 300ms;
}
@media only screen and (max-width: 768px) {
  .header-page .bg-white .header-content #header-icon-open {
    display: block;
  }
}
.header-page .bg-white .header-content #header-icon-open .line {
  height: 3px;
  width: 100%;
  margin: 7px;
  background-color: #3E3A39;
}
.header-page .bg-white .header-content #header-icon-close {
  height: 45px;
  position: absolute;
  display: none;
  right: 18px;
  cursor: pointer;
  animation: iconLinks 300ms;
}
@media only screen and (min-width: 768px) {
  .header-page .bg-white .header-content #header-icon-close {
    right: -200px;
  }
}
.header-page .header-content-sm {
  width: calc( 100% - 10px );
  height: 65vh;
  position: absolute;
  top: 100%;
  margin-top: -200%;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 80px 5px;
  transition: margin-top 400ms;
}
@media only screen and (max-width: 768px) {
  .header-page .header-content-sm {
    display: flex;
  }
}
.header-page #header-search-sm {
  background-color: #00205B;
  z-index: 1;
}
.header-page #header-search-sm .close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  cursor: pointer;
}
.header-page #header-search-sm input {
  height: 30px;
  margin-left: 13px;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  outline: none;
  font-size: 18px;
}
.header-page #header-search-sm .form {
  margin-top: 50px;
  border-bottom: 1px solid #014E98;
}
.header-page #header-links-sm {
  background-color: #DBDEE1;
  z-index: 1;
}
.header-page #header-links-sm a {
  text-decoration: none;
  color: #3E3A39;
  margin-bottom: 20px;
}
.header-page #header-links-sm .active {
  color: #00A8E2;
}

.footer-page {
  padding: 4em;
  background: #DBDEE1;
}
.footer-page .grid-max {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .footer-page .grid-max {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }
}
.footer-page .divider {
  height: 30px;
  width: 1px;
  background-color: #424242;
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .footer-page .divider {
    display: none;
  }
}
.footer-page .log-footer {
  margin: 0 23px 0 0;
  height: 35px;
}
@media only screen and (max-width: 768px) {
  .footer-page .log-footer {
    margin: 0 0 24px;
  }
}
.footer-page p {
  font-family: Avenir;
  font-weight: 300;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .footer-page p {
    margin: 15px 0px;
  }
}
.footer-page .redes {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .footer-page .redes {
    margin-bottom: 15px;
  }
}
.footer-page .redes .icon {
  margin: 0px 5px;
  height: 40px;
}

.content-home, .content-blog {
  position: relative;
}
.content-home .back-white, .content-blog .back-white {
  position: absolute;
  height: 70%;
  width: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .content-home .back-white, .content-blog .back-white {
    height: 58.5%;
  }
}

.content-home {
  overflow: hidden;
  background-color: #efefef;
}
.content-home .swiper-home {
  overflow: visible;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}
.content-home .swiper-home a {
  text-decoration: none;
}
.content-home .swiper-home .swiper-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0px 30px;
  height: 80px;
  background-color: #00205B;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.content-home .swiper-home .slide-home-btn {
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .content-home .swiper-home .slide-home-btn {
    bottom: 24px;
    right: 17px;
    z-index: 2;
    font-size: 12px;
    padding: 8px 15px;
  }
}
.content-home .swiper-home .slide-home-card {
  position: relative;
  height: 80vh;
}
.content-home .swiper-home .slide-home-card .title {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .content-home .swiper-home .slide-home-card .title {
    width: 95%;
  }
}
.content-home .swiper-home .slide-home-card .slide-home-content-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.content-home .swiper-home .slide-home-card .cover {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.content-home .swiper-home .slide-home-card .overlay {
  position: absolute;
  height: 90%;
  width: 100%;
  bottom: 0;
  background: linear-gradient(360deg, #000000 -5.48%, rgba(0, 0, 0, 0) 81.27%);
}
.content-home .swiper-home .slide-home-card .slide-home-content {
  height: 100%;
  position: relative;
  z-index: 1;
}
.content-home .swiper-home .swiper-pagination {
  width: 60%;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 29px;
}
@media only screen and (max-width: 768px) {
  .content-home .swiper-home .swiper-pagination {
    text-align: left;
    padding-left: 19px;
    width: 60%;
    left: 0;
    right: inherit;
    margin: auto;
    bottom: 34px;
  }
}
.content-home .swiper-home .swiper-pagination .swiper-pagination-bullet {
  height: 3px;
  width: 40px;
  border-radius: 0;
  background-color: #000D24;
}
@media only screen and (max-width: 768px) {
  .content-home .swiper-home .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
  }
}
.content-home .swiper-home .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

.home-news {
  padding: 2em 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .home-news {
    padding: 2em 1.8em;
  }
}
.home-news .news-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.home-news .news-list .new-card {
  display: flex;
  align-items: stretch;
  margin: 2em 0px;
}
.home-news .news-list .new-card .new-btn {
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .home-news .news-list .new-card {
    flex-direction: column;
    align-items: center;
  }
}
.home-news .news-list .new-card .new-img {
  width: 52%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-news .news-list .new-card .new-img {
    width: 100%;
    height: 200px;
  }
}
.home-news .news-list .new-card .new-img .image {
  width: 100%;
  height: 110%;
  top: -5%;
  object-fit: cover;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .home-news .news-list .new-card .new-img .image {
    top: 0%;
    height: 100%;
    width: 100%;
    left: 0%;
  }
}
.home-news .news-list .new-card .new-content {
  width: calc( 48% - 55.5px );
  padding: 28px;
  height: 400%;
  background-color: #fff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-news .news-list .new-card .new-content {
    width: calc( 95% - 55.5px );
    padding-bottom: 20px;
  }
}
.home-news .news-list .new-card .new-content .new-date {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.home-news .news-list .new-card .new-content .new-date .date {
  padding: 8px 15px 5px 15px;
  background-color: #00A8E2;
  color: #ffff;
  border-radius: 20px;
  font-size: 14px;
}
.home-news .news-list .new-card .new-content .new-text {
  font-size: 15px;
  line-height: 23px;
  color: #3E3A39;
  margin-top: 15px;
}

.new-btn {
  padding: 10px 20px 8px 20px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #014E98;
  color: #014E98;
  transition: background-color 300ms;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .new-btn {
    transform: translate(0px, 35px);
    padding: 10px 20px 8px 20px;
  }
}
.new-btn:hover {
  background-color: #BAC5D1;
}
.new-btn .icon {
  margin-left: 10px;
  margin-top: -3px;
}

.new-btn-active {
  background-color: #aebbca;
}

.btn-lg {
  font-size: 25px;
  padding: 12px 3em;
}
@media only screen and (max-width: 768px) {
  .btn-lg {
    font-size: 18px;
    text-align: center;
  }
}

.paginator,
.wp-pagenavi {
  display: flex;
  justify-content: center;
}
.paginator .link,
.wp-pagenavi .link {
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 20px;
  margin: 3px;
}
.paginator .link a,
.wp-pagenavi .link a {
  font-family: Avenir;
  text-decoration: none;
  font-size: 23px;
  color: #999999;
}
.paginator .wp-pagenavi,
.wp-pagenavi .wp-pagenavi {
  margin: 2.8em 0px 3em;
}
.paginator .wp-pagenavi span.pages,
.wp-pagenavi .wp-pagenavi span.pages {
  display: none;
}
.paginator .wp-pagenavi > span.current,
.paginator .wp-pagenavi > a.page,
.paginator .wp-pagenavi > a,
.wp-pagenavi .wp-pagenavi > span.current,
.wp-pagenavi .wp-pagenavi > a.page,
.wp-pagenavi .wp-pagenavi > a {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  border: 1px solid #014E98;
  text-decoration: none;
  color: #424242;
  font-weight: bold;
  margin: 0px 5px;
  transition: background-color 300ms;
  font-family: Avenir;
}
.paginator .wp-pagenavi > span.current:hover,
.paginator .wp-pagenavi > a.page:hover,
.paginator .wp-pagenavi > a:hover,
.wp-pagenavi .wp-pagenavi > span.current:hover,
.wp-pagenavi .wp-pagenavi > a.page:hover,
.wp-pagenavi .wp-pagenavi > a:hover {
  background-color: #c1c1c1;
}
.paginator .wp-pagenavi > span.current.nextpostslink,
.paginator .wp-pagenavi > a.page.nextpostslink,
.paginator .wp-pagenavi > a.nextpostslink,
.wp-pagenavi .wp-pagenavi > span.current.nextpostslink,
.wp-pagenavi .wp-pagenavi > a.page.nextpostslink,
.wp-pagenavi .wp-pagenavi > a.nextpostslink {
  background: #014E98;
  color: white;
  margin-left: 5px;
}
.paginator .wp-pagenavi > span.current.previouspostslink,
.paginator .wp-pagenavi > a.page.previouspostslink,
.paginator .wp-pagenavi > a.previouspostslink,
.wp-pagenavi .wp-pagenavi > span.current.previouspostslink,
.wp-pagenavi .wp-pagenavi > a.page.previouspostslink,
.wp-pagenavi .wp-pagenavi > a.previouspostslink {
  background: #014E98;
  color: white;
  margin-right: 5px;
}
.paginator .wp-pagenavi > span.current,
.wp-pagenavi .wp-pagenavi > span.current {
  background: #014E98;
  color: white;
}
.paginator .wp-pagenavi > span.current:hover,
.wp-pagenavi .wp-pagenavi > span.current:hover {
  background: #014E98;
}
.paginator .active,
.wp-pagenavi .active {
  background: #014E98;
}
.paginator .active a,
.wp-pagenavi .active a {
  color: #ffff;
}
.paginator .next,
.wp-pagenavi .next {
  background: #4B525B;
  margin-left: 5px;
}
.paginator .item,
.wp-pagenavi .item {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  border: 1px solid #014E98;
  text-decoration: none;
  color: #424242;
  font-weight: bold;
  margin: 0px 8px;
  transition: background-color 300ms;
}
.paginator .item:hover,
.wp-pagenavi .item:hover {
  background-color: #c1c1c1;
}
.paginator .arrow,
.wp-pagenavi .arrow {
  padding: 2.5px 0px;
  background-color: rgba(0, 22, 63, 0.4);
  border: 1px solid rgba(0, 22, 63, 0.4);
}
.paginator .active,
.wp-pagenavi .active {
  background-color: #00205B;
  border: 1px solid #00205B;
  color: white;
}
.paginator .prev img,
.wp-pagenavi .prev img {
  transform: rotate(180deg);
}

.more-news {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-left: -12px;
  margin-right: -12px;
}
@media only screen and (max-width: 768px) {
  .more-news {
    margin-left: -7px;
    margin-right: -7px;
  }
}
.more-news .more-new {
  width: 31%;
  margin: 10px 1%;
}
@media only screen and (max-width: 768px) {
  .more-news .more-new {
    width: 98%;
  }
}
.more-news .start-card {
  height: 300px;
  background-color: #00A8E2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .more-news .start-card {
    height: 200px;
  }
}
.more-news .start-card h5 {
  width: 75%;
  text-align: center;
}
.more-news .simple-card {
  height: 500px;
}
@media only screen and (max-width: 768px) {
  .more-news .simple-card {
    height: 450px;
  }
}
.more-news .simple-card .content {
  position: absolute;
  width: 80%;
  bottom: 40px;
  left: 30px;
}
.more-news .featured-card {
  width: 64%;
  height: 300px;
  background-color: #00A8E2;
  margin: 10px 1%;
}
@media only screen and (max-width: 768px) {
  .more-news .featured-card {
    width: 98%;
    height: 450px;
  }
}
.more-news .featured-card .content {
  position: absolute;
  width: 55%;
  bottom: 30px;
  left: 30px;
}
.more-news .simple-card, .more-news .featured-card {
  position: relative;
}
.more-news .simple-card .date, .more-news .featured-card .date {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 8px 15px 5px 15px;
  background-color: #fff;
  color: #3E3A39;
  border-radius: 20px;
  font-size: 14px;
}
.more-news .simple-card .cover, .more-news .featured-card .cover {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.more-news .simple-card .overlay, .more-news .featured-card .overlay {
  position: absolute;
  width: 100%;
  height: 85%;
  bottom: 0;
  background: linear-gradient(360deg, #000000 -5.48%, rgba(0, 0, 0, 0) 81.27%);
}

.go-subaru {
  text-decoration: none;
  display: flex;
  color: #3E3A39;
  align-items: center;
}
.go-subaru p {
  font-size: 39px;
}
@media only screen and (max-width: 576px) {
  .go-subaru {
    width: 100%;
    justify-content: center;
  }
}
.go-subaru .icon {
  margin: 4em 15px 4em 5px;
}
@media only screen and (max-width: 576px) {
  .go-subaru .icon {
    margin: 1.3em 15px 1.3em 5px;
  }
}
@media only screen and (max-width: 768px) {
  .go-subaru .icon {
    height: 30px;
  }
  .go-subaru p {
    font-size: 22px;
  }
}

.content-blog {
  background-color: #f5f5f5;
}
.content-blog .blog-header-img {
  width: 100%;
  height: 450px;
  position: relative;
}
.content-blog .blog-header-img .loading-bar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 5px;
  background-color: #00A8E2;
}
.content-blog .blog-header-img .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-blog .blog-header-img .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 2;
  background: linear-gradient(360deg, #000000 -5.48%, rgba(0, 0, 0, 0) 81.27%);
}
.content-blog .blog-content {
  width: 84%;
  max-width: 1200px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  padding: 40px 3% 0px 3%;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content {
    padding: 40px 5% 0px 5%;
    width: 90%;
    margin-top: 0px;
    margin-left: 0%;
  }
}
.content-blog .blog-content .top {
  display: flex;
  justify-content: space-between;
}
.content-blog .blog-content .top a {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .top a {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .top p {
    font-size: 18px;
  }
}
.content-blog .blog-content .content {
  margin: 60px 0px;
  font-family: Avenir;
  font-size: 16px;
}
.content-blog .blog-content .content h1 {
  width: 60%;
  margin: 0 0 29px;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .content h1 {
    width: 100%;
  }
}
.content-blog .blog-content .content h3 {
  font-family: Avenir;
  font-size: 24px;
  margin: 20px 0 0;
}
.content-blog .blog-content .content p {
  font-family: Avenir;
  font-size: 16px;
  line-height: 22px;
  color: #3E3A39;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .content .d-flex {
    flex-direction: column;
  }
  .content-blog .blog-content .content .d-flex .w-50 {
    width: 100%;
  }
  .content-blog .blog-content .content .d-flex .w-50 h4 {
    padding: 20px 0 !important;
    width: 100%;
    font-size: 25px !important;
    line-height: 32px !important;
  }
}
.content-blog .blog-content .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00205B;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .bottom {
    display: none;
  }
}
.content-blog .blog-content .bottom a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 35px;
}
.content-blog .blog-content .bottom a .icon {
  margin-left: 15px;
}
.content-blog .blog-content .bottom-1-sm {
  width: 112%;
  margin-left: -6%;
  margin-top: -40px;
  margin-bottom: 40px;
  justify-content: center;
  display: none;
}
.content-blog .blog-content .bottom-1-sm a {
  padding: 25px 15px;
}
@media only screen and (max-width: 768px) {
  .content-blog .blog-content .bottom-1-sm {
    display: flex;
  }
}
.content-blog .blog-content .margin-top {
  margin-top: 40px;
}
.content-blog .related-news {
  position: relative;
  z-index: 2;
  width: 84%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  padding: 60px 3% 0px 3%;
}
@media only screen and (max-width: 768px) {
  .content-blog .related-news {
    padding: 40px 5% 0px 5%;
    width: 90%;
    margin-top: -40px;
    margin-left: 0%;
  }
}
.content-blog .related-news .title {
  display: flex;
  justify-content: space-between;
}
.content-blog .related-news .title .next-slide {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .content-blog .related-news .title .next-slide {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .content-blog .related-news .hiden-sm {
    display: none;
  }
}
.content-blog .related-news .swiper-blog {
  display: none;
}
@media only screen and (max-width: 768px) {
  .content-blog .related-news .swiper-blog {
    display: block;
  }
}
.content-blog .related-news .swiper-blog .swiper-slide {
  width: 80%;
}

.content-cars {
  padding-top: 0;
  padding-bottom: 3em;
}
.content-cars .section-models {
  flex-wrap: wrap;
  justify-content: center;
}
.content-cars .section-models .links-models {
  width: 100%;
  display: flex;
}
.content-cars .section-models .links-models a {
  font-size: 16px;
  margin: 0 -1px;
  font-family: Avenir;
  font-weight: bold;
  padding: 10px 26px 8px 16px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.content-cars .section-models .links-models a img {
  height: 25px;
  margin: 0 8px 0 0;
}
.content-cars .section-models .links-models .active {
  color: white;
  background-color: #00205B;
}
@media only screen and (max-width: 768px) {
  .content-cars .section-models .links-models {
    justify-content: center;
    width: 100%;
    margin-left: 0%;
  }
}
.content-cars .section-models .links-version {
  padding-top: 3em;
  width: 15%;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.content-cars .section-models .links-version a {
  font-size: 18px;
  margin-bottom: 15px;
  padding: 10px 0px;
  padding-left: 0;
  width: 85%;
  transition: opacity 200ms;
  position: relative;
}
.content-cars .section-models .links-version a::before {
  background: #00A8E2;
  height: 2px;
  width: 0px;
  margin-right: 0px;
  content: "";
  display: inline-block;
  position: relative;
  top: -6px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.content-cars .section-models .links-version a:hover::before {
  width: 17px;
  margin-right: 9px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.content-cars .section-models .links-version .active {
  color: #00205B;
  background-color: #f0f2f5;
  border-left: 3px solid #00A8E2;
  font-weight: bold;
  padding-left: 15px;
}
.content-cars .section-models .links-version .active:hover::before {
  width: 0;
  margin-right: 0px;
}
@media only screen and (max-width: 768px) {
  .content-cars .section-models .links-version {
    width: 80%;
  }
  .content-cars .section-models .links-version a {
    padding: 5px 0px;
    width: 100%;
    padding-left: 5px;
    margin-bottom: 5px;
  }
}
.content-cars .section-models .links-version .item-version-hidden {
  display: none;
  background-color: red;
}
.content-cars .section-models .section-content {
  width: 83%;
  margin-left: 2%;
  margin-top: 0em;
}
.content-cars .section-models .section-content .section-btn {
  width: 100%;
  margin-top: 2em;
  margin-bottom: 3em;
  margin: 2.5rem 0;
  padding: 1em 0;
  border-top: 1px solid #ececec;
}
.content-cars .section-models .section-content .section-btn .btn-lg {
  font-size: 16px;
  padding: 13px 3em 9px;
}
.content-cars .section-models .section-content .gallery .title-3 {
  border-bottom: 1px solid #ececec;
  position: relative;
  margin: 0 0 27px;
}
.content-cars .section-models .section-content .gallery .title-3::after {
  width: 100px;
  height: 2px;
  background: #01a8e2;
  display: block;
  position: absolute;
  bottom: -0.11rem;
  content: "";
}
.content-cars .section-models .section-content .gallery .images {
  position: relative;
  margin-top: 3em;
}
.content-cars .section-models .section-content .gallery .images .next-swiper,
.content-cars .section-models .section-content .gallery .images .prev-swiper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  width: 56px;
}
.content-cars .section-models .section-content .gallery .images .next-swiper.swiper-button-disabled,
.content-cars .section-models .section-content .gallery .images .prev-swiper.swiper-button-disabled {
  opacity: 0.4;
}
@media only screen and (max-width: 768px) {
  .content-cars .section-models .section-content .gallery .images .next-swiper,
.content-cars .section-models .section-content .gallery .images .prev-swiper {
    width: 40px;
    right: 0%;
  }
}
.content-cars .section-models .section-content .gallery .images .prev-swiper {
  bottom: -77px;
}
.content-cars .section-models .section-content .gallery .images .swiper-images {
  margin-left: 0;
  width: 90%;
  margin-top: 1em;
}
.content-cars .section-models .section-content .gallery .images .swiper-images .swiper-wrapper {
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .content-cars .section-models .section-content .gallery .images .swiper-images .swiper-wrapper {
    padding-bottom: 60px;
  }
}
.content-cars .section-models .section-content .gallery .images .card-model {
  width: 300px;
  position: relative;
  cursor: pointer;
}
.content-cars .section-models .section-content .gallery .images .card-model:hover .over {
  opacity: 1;
  visibility: visible;
}
.content-cars .section-models .section-content .gallery .images .card-model:hover .over span {
  transform: translateY(0px);
  opacity: 1;
}
.content-cars .section-models .section-content .gallery .images .card-model .over {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: all 0.3s ease-in-out;
  display: flex;
  place-items: flex-center;
  transition: all 200ms;
  opacity: 0;
  visibility: hidden;
  justify-content: center;
  align-items: center;
}
.content-cars .section-models .section-content .gallery .images .card-model .over span {
  opacity: 0;
  width: 40px;
  height: 40px;
  transition: all 300ms;
  background: url("../img/icons/search-icon-white.svg") center no-repeat;
  background-size: 25px;
  transform: translateY(110px);
}
.content-cars .section-models .section-content .gallery .images .card-model .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.content-cars .section-models .section-content .gallery .images .card-model .new-btn {
  position: absolute;
  background-color: #014E98;
  color: #fff;
  width: 98px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -10px;
}
.content-cars .section-models .section-content .gallery .images .card-model .new-btn:hover {
  background-color: #015baf;
}
.content-cars .section-models .section-content .gallery .videos {
  position: relative;
  margin-top: 3em;
}
.content-cars .section-models .section-content .gallery .videos .next-swiper-video,
.content-cars .section-models .section-content .gallery .videos .prev-swiper-video {
  cursor: pointer;
  position: absolute;
  right: 1%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 56px;
}
.content-cars .section-models .section-content .gallery .videos .next-swiper-video.swiper-button-disabled,
.content-cars .section-models .section-content .gallery .videos .prev-swiper-video.swiper-button-disabled {
  opacity: 0.4;
}
@media only screen and (max-width: 768px) {
  .content-cars .section-models .section-content .gallery .videos .next-swiper-video,
.content-cars .section-models .section-content .gallery .videos .prev-swiper-video {
    width: 40px;
    right: 0%;
  }
}
.content-cars .section-models .section-content .gallery .videos .prev-swiper-video {
  bottom: -77px;
}
.content-cars .section-models .section-content .gallery .videos .swiper-videos {
  margin-top: 1em;
  margin-left: 0;
  width: 90%;
}
.content-cars .section-models .section-content .gallery .videos .swiper-videos .card-video .video {
  width: 100%;
  height: 310px;
  object-fit: cover;
  cursor: pointer;
}

.content-premios .header-premios {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0px 2em;
}
.content-premios .header-premios .grid-max {
  max-width: 1241px;
}
.content-premios .header-premios .swiper-wrapper {
  align-items: center;
}
.content-premios .header-premios .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 35px 0;
  position: relative;
  z-index: 2;
}
.content-premios .header-premios .icons .item-img {
  max-width: 150px;
  max-height: 150px;
  margin: 10px auto 10px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .content-premios .header-premios .icons .item-img {
    max-width: 80px;
    max-height: 80px;
  }
}

.margin-top {
  margin-top: 1em;
}

.media-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2.2em 0px 1em 0px;
}
@media only screen and (max-width: 768px) {
  .media-list {
    justify-content: center;
  }
}
@media only screen and (max-width: 576px) {
  .media-list {
    margin: 2.2em 22px 1em 22px;
  }
}
.media-list .foto-card, .media-list .video-card {
  width: 31.5%;
  margin: 1em 0px;
  position: relative;
}
.media-list .foto-card:hover .over, .media-list .video-card:hover .over {
  opacity: 1;
  visibility: visible;
}
.media-list .foto-card:hover .over span, .media-list .video-card:hover .over span {
  transform: translateY(0px);
}
.media-list .foto-card:hover .image, .media-list .foto-card:hover .video, .media-list .video-card:hover .image, .media-list .video-card:hover .video {
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  .media-list .foto-card, .media-list .video-card {
    width: 100%;
    margin: 1em 0px 3em 0px;
  }
}
.media-list .foto-card .over, .media-list .video-card .over {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease-in-out;
  display: flex;
  place-items: flex-end;
  transition: all 200ms;
  opacity: 0;
  visibility: hidden;
}
.media-list .foto-card .over span, .media-list .video-card .over span {
  color: white;
  transition: all 300ms;
  width: 100%;
  padding: 16px 19px 16px 38px;
  background: url("../img/icons/search-icon-white.svg") center left 14px no-repeat;
  background-size: auto 17px;
  font-weight: 800;
  font-size: 18px;
  transform: translateY(110px);
}
.media-list .foto-card .image, .media-list .foto-card .video, .media-list .video-card .image, .media-list .video-card .video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: box-shadow 200ms;
}
.media-list .foto-card .content-btn, .media-list .video-card .content-btn {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 4px;
  width: 100%;
  right: 9px;
}
@media only screen and (max-width: 768px) {
  .media-list .foto-card .content-btn, .media-list .video-card .content-btn {
    margin-top: -30px;
  }
}
.media-list .foto-card .content-btn .new-btn, .media-list .video-card .content-btn .new-btn {
  margin-top: 5px;
}
.media-list .video-card {
  background-color: #fff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 0px;
}
.media-list .video-card:hover {
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
}
.media-list .video-card:hover .video {
  box-shadow: inherit;
}
.media-list .video-card .video {
  height: 210px;
}
.media-list .video-card .content-btn {
  position: relative;
  top: inherit;
  width: 100%;
  right: inherit;
  padding: 0 10px 13px;
  box-sizing: border-box;
}
.media-list .video-card .content-btn .new-btn {
  padding: 10px 40px 8px 40px;
  width: 100%;
  justify-content: center;
  font-size: 14px;
}

#data_table_wrapper {
  margin-top: 1em;
  margin-bottom: 1.5em;
}
#data_table_wrapper .table-archivo {
  padding-top: 2em;
}
#data_table_wrapper .table-archivo .new-btn {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  #data_table_wrapper .table-archivo .new-btn {
    margin-top: 0;
    transform: translate(0);
  }
}
#data_table_wrapper .table-archivo th {
  text-align: left;
}

/*********** PRODUCTO - AUTOS **************/
.cover_page {
  width: 100%;
  background: #00205B;
  padding: 20px 0 19px;
  margin: 0 0 25px;
  border-bottom: 2px solid #00A8E2;
}
@media only screen and (max-width: 576px) {
  .cover_page {
    padding: 17px 18px;
    box-sizing: border-box;
  }
}
.cover_page.mb_0 {
  margin: 0;
}
.cover_page.theme_dark {
  background: #efefef;
  border-top: 2px solid #00A8E2;
  border-bottom: none;
}
.cover_page.theme_dark h3.color-white {
  color: #3E3A39;
}

/*********** PREMIOS **************/
.bg_winner {
  background: #f9f9f9;
}
.bg_winner.white {
  background: white;
}
.bg_winner .home-news {
  padding: 2.2em 0 5em 0;
}

/*********** BLOG **************/
body .content-bg-blog {
  background: white;
}

body .home-news .news-list.list_blog_subaru {
  display: grid;
  grid-gap: 1.75rem;
  gap: 1.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 40px;
}
@media only screen and (max-width: 576px) {
  body .home-news .news-list.list_blog_subaru {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
body .home-news .news-list.list_blog_subaru .new-card {
  flex-direction: column;
  margin: 0;
}
body .home-news .news-list.list_blog_subaru .new-card:hover .new-img .image {
  transform: scale(1.1);
}
body .home-news .news-list.list_blog_subaru .new-card .new-img {
  width: 100%;
  transition: all 300ms;
  height: 220px;
  overflow: hidden;
}
body .home-news .news-list.list_blog_subaru .new-card .new-img .image {
  width: 100%;
  top: 0;
  height: 220px;
  position: relative;
  transition: all 300ms;
}
body .home-news .news-list.list_blog_subaru .new-card .new-content {
  width: 100%;
  padding: 20px;
  height: auto;
  box-sizing: border-box;
}
@media only screen and (max-width: 576px) {
  body .home-news .news-list.list_blog_subaru .new-card .new-content .new-btn {
    transform: translate(0px, 0px);
  }
}

/*********** ARCHIVOS TABLE **************/
body table.dataTable.stripe tbody tr.odd, body table.dataTable.display tbody tr.odd,
body table.dataTable.display tbody tr.even > .sorting_1, body table.dataTable.order-column.stripe tbody tr.even > .sorting_1,
body table.dataTable.display tbody tr.odd > .sorting_1, body table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background: white;
}
body .tags_all {
  padding: 8px 15px 5px 15px;
  background-color: #00A8E2;
  color: #ffff;
  border-radius: 20px;
  font-size: 13px;
}
body .dataTables_wrapper .dataTables_paginate .paginate_button.current, body .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
body .dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background: #01a8e2;
  border: none;
  color: white !important;
  padding: 4px 3px 1px;
  font-size: 14px;
}
body table.dataTable thead th, body table.dataTable thead td {
  border-bottom: 1px solid #3d3a39;
}
body .dataTables_wrapper .dataTables_filter input {
  height: 39px;
}
body .dataTables_wrapper .dataTables_filter input:hover, body .dataTables_wrapper .dataTables_filter input:focus {
  box-shadow: none;
  outline: none;
}
body .dataTables_wrapper .dataTables_length select {
  height: 39px;
  margin: 0 3px;
}

.loader_product {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 2;
  display: none;
  justify-content: center;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 576px) {
  body .content .gallery,
body .content #gallery-1 {
    display: grid;
    grid-gap: 1.2rem;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 576px) {
  body .content .gallery .gallery-item,
body .content #gallery-1 .gallery-item {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  body .content .gallery .gallery-item img,
body .content #gallery-1 .gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 576px) {
  body .content .gallery br,
body .content #gallery-1 br {
    display: none;
  }
}

/*# sourceMappingURL=app.css.map */
