

:root {
    /*:::HIKER:::*/
    /* HEX */
    --hk-white: #fff;
    --hk-black: #000;
    --hk-light-grey: #D7CDCB;
    --hk-deep-orange: #EC7C04;
    --hk-deep-blue: #154484;
    --hk-deep-blue-2: #092955;
    --hk-orange: #EC7C04;
    --hk-greyish-blue: #8494BC;
    --hk-light-orange: #F0A020;
    /* RGB */
    --hk-light-grey-rgb: 215, 205, 203;
    --hk-deep-orange-rgb: 236, 124, 4; 
    --hk-deep-blue-rgb:21, 68, 132; 
    --hk-orange-rgb: 244, 145, 50; 
    --hk-greyish-blue-rgb: 132, 148, 188;
    --hk-light-orange-rgb:240, 160, 32; 

}
@font-face {
    font-family: 'TragicGrotesk-Thin';
    src: url(../font/TragicGrotesk-Thin.woff2) format('woff2');
    font-weight: 300;
}
@font-face {
    font-family: 'TragicGrotesk-Regular';
    src: url(../font/TragicGrotesk-Regular.woff2) format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'TragicGrotesk-Bold';
    src: url(../font/TragicGrotesk-Bold.woff2) format('woff2');
}

* {
    box-sizing: border-box;
}
body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--hk-white);
    position: relative;
    scroll-behavior: smooth;
}
.hk-blog-content {
   height: auto;
   max-height: 150px;
   overflow: hidden;
   opacity: .7;
   padding: 0 10px;
}
.hk-blog-content *{
    font-size: 12px;
}
.hk-blog-content img {
    width: 100px!important;
    height: 100px!important;
    object-fit: contain!important;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px var(--hk-light-orange);
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--hk-light-orange);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--hk-deep-blue);
}

.hk-blog-container,
#hk-blog-container {
    height: auto;
    min-height: 100vh;
    transition: all 0.5s ease-in;
}
.hidden {
    opacity: 0;
  }
/* utils ----- */
div#paginationPosts {
    display: flex;
    justify-content: end;
    align-items: center;
}
.pagination,
.disabled>.page-link, .page-link.disabled {
    --bs-pagination-bg: transparent;
    --bs-pagination-border-color: transparent;
}
.disabled>.page-link, .page-link.disabled {
    opacity: .5;
}
li.page-item a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.page-link {
    color: var(--hk-deep-orange);
}
li.page-item.active .page-link {
    color: var(--hk-white);
    background: var(--hk-deep-orange);
    border-color: var(--hk-deep-orange);
}
img.localeImg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
a.nav-link.dropdown-toggle {
    font-size: 18px;
    text-transform: uppercase;
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--hk-white);
    text-decoration: none;
    background-color: var(--hk-deep-orange);
}
.dropdown-toggle::after {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
.navbar-brand {
    padding: 0!important;
}
.navbar {
    --bs-navbar-padding-y: 5px;
}

.hk-title-page,
.hk-subtitle-page {
    font-size: 16px;
    text-transform: uppercase;
    font-family: TragicGrotesk-Regular;
}
.hk-title-page {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}
/* buttons */
.btn {
    width: 100%;
    height: 40px;
    max-width: 180px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    font-family: TragicGrotesk-Bold;
}
.btn.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    --bs-btn-bg: var(--hk-deep-orange);
    --bs-btn-color: var(--hk-white);
    --bs-btn-border-color: var(--hk-deep-orange);
    --bs-btn-hover-color: var(--hk-white);
    --bs-btn-hover-bg: var(--hk-deep-orange);
    --bs-btn-hover-border-color: var(--hk-deep-orange);
    --bs-btn-active-color: var(--hk-white);
    --bs-btn-active-bg: var(--hk-deep-orange);
    --bs-btn-active-border-color: var(--hk-deep-orange);
    --bs-btn-border-radius: 14px;
    --bs-btn-border-width: 2px;
}

.btn.btn-primary.white {
    min-width: 280px;
    font-size: 18px;
    font-weight: 600;
    font-family: TragicGrotesk-Bold;
    --bs-btn-bg: var(--hk-white);
    --bs-btn-color: var(--hk-deep-blue);
    --bs-btn-border-color: var(--hk-white);
    --bs-btn-hover-color: var(--hk-white);
    --bs-btn-hover-bg: var(--hk-deep-blue);
    --bs-btn-hover-border-color: var(--hk-deep-blue);
    --bs-btn-active-color: var(--hk-deep-blue);
    --bs-btn-active-bg: var(--hk-deep-blue);
    --bs-btn-active-border-color: var(--hk-white);
}
.hk-circle {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}
.hk-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-toggler-icon{
    filter: brightness(100);
}
.navbar-toggler {
    --bs-navbar-toggler-border-color: var(--hk-orange);
    background-color: var(--hk-orange);
}

/* Navbar ---------------  */
header {
    position: fixed;
    z-index: 3;
    width: 100%;
    top: 0;
    /* background: rgba(9, 25, 46, 0.5); */
    background: #EDF3FA;
}
.hk-navbar-logo {
    width: auto;
    height: 50px;
}
.navbar-nav {
    width: 100%;
    gap: 12px;
    justify-content: end;
    color: var(--hk-white);
    font-size: 20px;
}
.nav-link {
    font-family: TragicGrotesk-Regular;
    letter-spacing: 1px;
    --bs-nav-link-font-weight: 400;
    --bs-nav-link-font-size: 20px;
    --bs-nav-link-color: #013D84;
}
.navbar-nav .nav-link.hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--hk-light-orange);
}
button.navbar-toggler {
    color: rgb(255 255 255 / .10)!important;
}

section {
    overflow: hidden;
}

/* Home ---------------  */
.hk-main-banner-content {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100vh;
}
.hk-mask {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(var(--hk-deep-blue-rgb), 0.6);
}
.hk-main-banner-img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    right: 0;
    object-fit: cover;
}

.hk-main-caption {
    position: relative;
    z-index: 2;
    top: 45%;
    width: 80%;
    height: calc(100% - 300px);
    color: var(--hk-white);
    margin: 0 auto;
    display: grid;
    gap: unset;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    transform: translateY(-40%);
}

.hk-main-banner-content.hk-services .hk-main-caption { 
    gap: unset;
    height: calc(100% - 230px);
}
.hk-title-box ,
.hk-link-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.hk-title-box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    flex-direction: column;
}
.hk-link-box {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
img.hk-main-caption-icon {
    height: 110px;
    margin: 0 auto 28px auto;
}

/* section.hk-global-transport */
section.hk-global-transport {
    width: 100%;
    height: auto;
    padding: 80px 12px;
}
.hk-global-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.hk-global-title-box {
    display: flex;
    gap: unset;
    align-items: center;
    justify-content: center;
}
.hk-global-title-box>img {
    width: 60px;
    height: auto;
}
.hk-title,
.hk-global-title-box>.title {
    color: var(--hk-deep-blue);
   text-transform: uppercase;
   font-family: TragicGrotesk-Bold;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}
.hk-global-title-line {
    width: 100%;
}
.hk-global-title-line>img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.hk-global-title-paragraphs {
    margin: 32px 0 0 0;
}
.hk-global-title-paragraphs .hk-global-text-box p {
    font-family: TragicGrotesk-Regular;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 24px 0;
}
.hk-global-banner {
    width: 100%;
    height: 350px;
    margin: 60px 0 0 0;
}
/* .hk-global-banner {
    width: 100%;
    height: 350px;
    margin: 60px 0 0 0;
    width: 100%;
    height: 350px;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/hk-home-solutions.jpg);
} */

.hk-global-banner>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .hk-global-banner.hk-home {
    height: 330px;
} */
.hk-global-banner.hk-home>img {
    object-position: bottom;
}

/* Section.hk-services */
Section.hk-services {
    color: var(--hk-white);
    background-color: var(--hk-deep-blue-2);
}
.hk-hk-logistics-banner {
    width: 100%;
    height: auto;
    margin: 0 0 100px 0;
}
.hk-hk-logistics-banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.hk-services-box,
.hk-services-banner-box {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 80px 0;
}
.hk-services-banner-box {
    height: calc(100vh - 400px);
}
.hk-services-box {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 48px auto;
}
.hk-services-box.right {
    margin: 0 auto 48px auto;
}
.hk-services-box>p{
    width: 100%;
    font-family: TragicGrotesk-Regular;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    margin: 30px 0;
}
.hk-services-title {
    text-transform: uppercase;
    font-family: TragicGrotesk-Bold;
    font-weight: 600;
}
.hk-services-title span {
  color: var(--hk-deep-orange);  
}
.hk-services-banner-box>img {
    position: absolute;
    right: unset;
    left: -12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.hk-services-banner-box.right>img {
    right: -12px;
    left: unset;
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}
 /* slider */
 .swiper {
    width: 100%;
    height: 100%;
    margin: 0 0 120px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.swiper-slide p {
    margin: 24px 0;
    font-size: 60px;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    letter-spacing: 7px;
    color: #15448480;
    font-weight: bold;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
Section.hk-services .swiper {
    margin: 0 0 24px 0;
}
section.hk-services .swiper .swiper-slide p {
    font-size: 46px;
}

/* Section.hk-are-different ---------- */
section.hk-are-different {
    width: 100%;
    height: auto;
    background-color:  #E5E5E580;
}
.hk-are-different>.container,
.hk-are-different>.container>.row {
    height: 100%;
}
.hk-are-different-title {
    width: 100%;
    text-align: center;
    margin: calc(160px - 12px) 0 12px 0;
}
.hk-are-different-box {
    border: 1px solid transparent;
}
.hk-are-different-box>img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.hk-txt-wrapper {
    margin: 24px 0;
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
}
.hk-txt-wrapper>h3 {
    margin: 0;
    font-family: TragicGrotesk-Bold;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--hk-deep-orange);
}
.hk-txt-wrapper>p {
    font-family: TragicGrotesk-Regular;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--hk-black);
}

/* section.hk-members ---------- */
section.hk-members {
    width: 100%;
    height: auto;
    padding: 60px 0;
}
.hk-members-logo {
    width: 100%;
    height: 180px;
}
.hk-members-logo>img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
/* section.hk-banner-bg ---------- */
section.hk-banner-bg {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 280px;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-image: url(../img/hk-banner-bg.png);
}
section.hk-banner-bg.hk-home {
    height: 420px;
}

.hk-banner-wrapper {
    color: var(--hk-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.hk-banner-wrapper .title {
    font-family: TragicGrotesk-Bold;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}
.hk-banner-wrapper .desc {
    font-family: TragicGrotesk-Regular;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;    
}
.hk-banner-wrapper.hk-home {
    display: block;
}
.hk-banner-wrapper.hk-home .content {
    width: 100%;
    display: block;
    position: absolute;
    right: unset;
    text-align: center
}
.hk-banner-wrapper.hk-home .content h4 {
    font-size: 30px;
}
.hk-banner-wrapper.hk-home .content a {
    margin: 0 auto;
}
/* section.contact-form ---------- */
section.hk-contact-form {
    padding: 60px 0;
}
.hk-contact-title>.hk-title {
    text-align: left;
    text-transform: unset;
}
.hk-contact-title>img {
    width: 70px;
    height: 70px;
    margin: 24px 0;
    object-fit: contain;
}
.hk-contact-title>p,
.hk-contact-title>small {
    font-family: TragicGrotesk-Regular;
    font-size: 22px;
    font-weight: 400;
    text-align: left;

}
.hk-contact-title>small {
    font-size: unset;
}
.hk-contact-inputs {
    margin: 48px 0;
}
.hk-contact-inputs form .form-control {
    height: 60px;
    padding: 12px;
    border-radius: 10px;
    --bs-border-color: transparent;
    --bs-border-width: 2px;
    background-color:  rgba(229, 229, 229, 0.5);
}
.hk-contact-inputs form textarea.form-control {
    height: unset;
    resize:none
}
.hk-contact-inputs form .form-control::placeholder {
    font-family: TragicGrotesk-Regular;
    color: var(--hk-black);
    font-weight: 400;
}
.hk-contact-form-captcha {
    display: flex;
    gap: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0 1rem 0;
}
.btn-dark.hk-send-btn {
    border-radius: 14px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    height: 46px;
    letter-spacing: 1px;
}
.btn-dark.hk-send-btn>img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin: 1px 0 0 0;
}
img.img-flag {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
/* Footer ---------- */
footer {
    width: 100%;
    height: auto;
    position: absolute;
    padding: 24px 12px;
    color: var(--hk-white);
    background-color: var(--hk-deep-blue-2);
}
.hk-footer-container {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.hk-footer-logo {
    grid-column: 1 / 2;
}
.hk-footer-menu {
    grid-column: 1 / 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hk-footer-locations {
    grid-column: 1 / 2;
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hk-footer-iso {
    margin: 0 auto;
}
.hk-footer-iso a img {
    width: auto;
    height: 60px;
}
.hk-footer-terms {
    grid-column: 1 / 2;
}
.hk-footer-logo>a>img {
    width: 100%;
}
.hk-footer-info>a {
    margin: 6px 0;
}
.hk-footer-container a {
    font-family: TragicGrotesk-Regular;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hk-white);
    display: inline-block!important;
}
.hk-footer-terms,
.hk-footer-terms a {
    letter-spacing: 0.1em;
    font-family: TragicGrotesk-Regular;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: unset;
}
.hk-footer-info .hk-phone,
.hk-footer-info .hk-mail {
    text-transform: unset;
    font-weight: 400;
}
.hk-social-media>a,
.hk-footer-info>a>img {
    display: block;
    width: 16px;
    height: 16px;
    line-height: 1;
}
.hk-footer-info>a>img {
    display: inline;
    object-fit: contain;
}

.hk-social-media {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: start;
    margin: 12px 0 0 0;
}
.hk-social-media>a>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hk-marquee {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.hk-marquee .wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    animation: hiker-marquee 8s linear infinite;
}
.hk-marquee .wrapper>p{
    position: relative;
    display: flex;
    color: #0e366c;
    font-size: 16vw;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    padding: 0 12px 0 0;
    white-space: nowrap;
    font-family: TragicGrotesk-Regular;
    font-weight: 600;
}
.hk-marquee .wrapper:hover {
    animation-play-state: paused;
}
@keyframes hiker-marquee {
    0% { transform: translateX(-100%) }
    100% { transform: translateX(0) }
}
/* About page ------ */
section.hk-global-transport.hk-about {
    padding: 120px 0 60px 0;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hk-main-banner-content.hk-about {
    height: calc(50vh + 74px);
}
.hk-main-banner-content.hk-about .hk-main-caption {
    gap: unset;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
}
.hk-main-banner-content.hk-about .hk-main-caption .hk-title-box,
.hk-main-banner-content.hk-about .hk-main-caption .hk-title-box .hk-title-page {
    margin: 0;
    text-align: left;
}

.hk-main-banner-content.hk-about .hk-main-caption .hk-link-box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin: 0;
    align-items: end;
    justify-items: end;
    justify-content: end;
}
.hk-main-banner-content.hk-about,
.hk-main-banner-content.hk-services,
.hk-main-banner-content.hk-contact {
    height: 225px;
}
.hk-main-banner-content.hk-services {
    height: 260px;
}
.hk-global-title-box.hk-about {
    display: flex;
    flex-direction: column;
}
.hk-global-title-box.hk-about img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}
.hk-about-text {
    text-align: center;
    font-size: 18px;
    color: var(--hk-black);
}
section.hk-visionmision {
    padding: 60px 12px;
    background-color: var(--hk-deep-blue-2);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hk-visionmision .hk-wrapper {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
}
.hk-visionmision .hk-wrapper .hk-vision {
    grid-column: 1/2;
    grid-row: 1/1;
    margin: 0 0 0 auto;
}
.hk-visionmision .hk-wrapper .hk-mision {
    grid-column: 1/2;
    grid-row: 2/3;
    margin: 0;
}
.hk-visionmision .hk-wrapper .hk-vision,
.hk-visionmision .hk-wrapper .hk-mision {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--hk-white);
    justify-content: center;
    align-items: center;
    width: 100%;
}
.hk-visionmision .hk-wrapper .hk-vision span,
.hk-visionmision .hk-wrapper .hk-mision span {
    color: var(--hk-deep-orange);
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
}
.hk-visionmision .hk-wrapper .hk-vision p,
.hk-visionmision .hk-wrapper .hk-mision p {
    font-size: 16px;
    width: 100%;
    text-align: center;
}
.hk-visionmision-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
}
section.hk-about-slider {
    background: #E5E5E580;
}
section.hk-about-slider .swiper-slide p,
section.hk-about-slider  {
    color: #DADADA;
    line-height: 1;
    margin: 0;
}
section.hk-about-slider .swiper {
    transform: translateY(-60px);
    margin: 0 0 60px 0;
}
.hk-are-different.hk-about .hk-txt-wrapper>h3 {
    line-height: 1;
    min-height: 48px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.hk-are-different.hk-about .hk-txt-wrapper>p {
    font-size: 20px;
}
.hk-banner-bg.hk-about {
    background-image: url(../img/hk-banner-global-transport2.jpeg);
    background-position: center center;
}
.hk-banner-bg.hk-home {
    background-image: url(../img/hk-banner-global-home2.jpeg);
    background-position: center 38%;
}
.hk-banner-wrapper .title.hk-about {
    text-transform: uppercase;
} 
/* Servicios ------------ */
.hk-banner-layout {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--hk-deep-blue-2);
    opacity: .55;
}
.hk-main-banner-content.hk-services .hk-main-banner-img,
.hk-main-banner-content.hk-contact .hk-main-banner-img {
    object-position: center top;
}
.hk-main-banner-content.hk-services .hk-main-banner-img.services {
    object-position: bottom;
}
.hk-main-banner-content.hk-contact .hk-main-banner-img {
    height: 100%;
}
.hk-main-banner-content.hk-services .hk-title-box,
.hk-main-banner-content.hk-contact .hk-title-box {
    align-items: start;
    text-align: left;
}
section.hk-service {
    background: var(--hk-white);
    padding: 0 0 60px 0;
}
.hk-air-service {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    padding: 0;
    margin: 24px 0;
}
.hk-main-banner-content.hk-services .hk-link-box,
.hk-main-banner-content.hk-contact .hk-link-box {
    justify-content: end;
}
.hk-air-service h3 {
    color: var(--hk-deep-blue-2);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
}
.hk-air-service h3 span{ 
    color: var(--hk-deep-orange);
}
.hk-air-service p{
    font-size: 18px;
}
.hk-service-tab {
    width: 100%;
    height: 70vh;
    border-radius: 10px;
    background: url(../img/air-services-tab.png);
    margin: 0 0 12px 0;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: bottom;
    -webkit-transition: background 200ms ease-in-out 300ms;
    -moz-transition: background 200ms ease-in-out 300ms;
    -o-transition: background 200ms ease-in-out 300ms;
    transition: background 200ms ease-in-out 300ms;
}
.hk-service-tab img.banner {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: none;
}
.hk-service-tab-menu {
    position: absolute;
    top: 0;
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 32px;
    height: auto;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px;
}
.hk-service-tab-content * {
    display: none;
}
.hk-service-tab-menu .btn {
    border-radius: 20px;
    text-transform: uppercase;
    color: var(--hk-deep-orange);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;
}
.hk-service-tab-menu .btn.btn.btn-primary {
    color: var(--hk-white);
    max-width: 100%;
}
.hk-service-tab-item img{
    display: none;
}
.hk-service-tab-link {
    position: absolute;
    bottom: 24px;
}
.hk-service-tab-link a {
    margin: 0 auto;
    opacity: .45;
}
.hk-service-tab-link a:hover,
.hk-service-tab-link a:active {
    opacity: 1;
}
section.hk-service.land {
    background: rgba(242, 242, 242, 1);
    margin: 24px 0;
}
.hk-service-tab.land {
    height: 50vh;
    background-image: url(../img/land-services-tab.png);
}
.hk-service-tab-menu.land .btn {
    max-width: 250px;
}

.hk-service-tab.mar {
    background-image: url(../img/mar-services-tab.png);
}

section.hk-services-slider .swiper-slide p,
section.hk-services-slider  {
    color: var(--hk-white);
    line-height: 1;
    margin: 0;
}
section.hk-services-slider .swiper {
    transform: translateY(-60px);
    margin: 0 0 60px 0;
}
.hk-services-slider-banner {
    width: 100%;
    height: 300px;
    text-align: center;
}
.hk-services-slider-banner img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.hk-service-industries-item {
    padding: 0;
    width: 100%;
    margin: 12px auto;
}
.hk-service-industries-item h3 {
    color: var(--hk-orange);
}
.hk-are-different-title.services {
    margin: 60px 0 24px 0;
}
.hk-txt-wrapper>h3.services {
    font-size: 16px;
    line-height: 1.2;
    margin: 12px 24px;
}
.hk-title.services,
.hk-title.faq {
    margin: 0 0 18px 0;
    text-align: left;
    font-size: 2vw;
}
.hk-title.services {
    font-size: 28px;
}
.hk-title.faq {
    font-size: 28px;
    margin: 24px 0;
    text-align: center;
}

.hk-title.services span,
.hk-title.faq span {
    color: var(--hk-orange);
}
section.hk-map-services {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 76px);
    padding: 0 0 60px 0;
}
.hk-map-services-wrapper {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr) .5fr;
}
.hk-map-services .map {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    margin: 0 0 24px 0;
}
.hk-map-services-text {
    width: 100%;
    height: auto;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    transform: translate(0, 100px);
    padding: 12px;
}

.hk-map-services-text p {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}
/* FAQ  */
.accordion-item {
    margin: 0 0 24px 0;
    --bs-accordion-color: var(--hk-black);
    --bs-accordion-bg: rgba(229,229,229,.25);
    --bs-accordion-border-color: #B1B1B1;
}
.accordion-button {
    font-weight: 500;
    font-size: 16px;
    height: 70px;
    --bs-accordion-btn-bg: rgba(229,229,229,.25);
}
.accordion-body {
    font-weight: 500;
}
.accordion-item:not(:first-of-type) {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed) {
    --bs-accordion-active-color: var(--hk-black);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-border-color: transparent;   
}
.accordion-button:focus {
    box-shadow: unset
}
section.blog {
    background: #E5E5E580;
}
.hk-search-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: unset;
    margin: 30px 0;
}
.hk-search-wrapper .search-title {
    color: var(--hk-deep-blue);
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}
.hk-blog-box {
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 10px;
    margin: 0 0 48px 0;
}
.hk-blog-box  .hk-blog-banner,
.hk-blog-box  .hk-blog-banner.detail {
    width: 100%;
    height: 150px;
}

.hk-blog-box  img.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.hk-blog-box.detail img.photo {
    max-width: 100%;
    max-height: 100%;
}
.hk-blog-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
}
.hk-blog-title,
.hk-blog-body {
    padding: 12px;
}
.hk-blog-date {
    padding: 0 24px;
}
.hk-blog-body img {
    width: 100%;
    object-fit: contain;
}
.hk-blog-title-container img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.hk-blog-title {
    font-size: 20px;
    color: var(--hk-light-orange);
    margin: 0;
    text-transform: uppercase;
}
.hk-blog-body {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    overflow: hidden;
    overflow-x: scroll;
}
.hk-blog-body .btn {
    align-self: center;
    height: 35px;
    border-radius: 10px;
    cursor: pointer!important;
    margin: 12px 0 0 0;
}
.hk-blog-box.detail .hk-blog-body {
    flex-direction: column;
}
.hk-blog-box.detail .hk-blog-body {
    padding: 14px;
}
.hk-blog-link {
    width: 100%;
    height: 100%;
    align-self: flex-end;
    padding: 0;
    white-space: nowrap;
}
.hk-blog-link a {
    width: 115px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    color: var(--hk-deep-orange);
    text-transform: uppercase;
    font-size: 18px;
    border-color: transparent;
}
.hk-blog-link a.btn.btn-outline-primary:hover,
.hk-blog-link a.btn.btn-outline-primary:active {
    color: var(--hk-deep-orange);
    border-color: transparent;
    background-color: transparent;
    border-radius: 0;
}
.hk-blog-link a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transform: translateX(0);
    transition: all .3s ease;
}
.hk-blog-link a.btn.btn-outline-primary:hover img,
.hk-blog-link a.btn.btn-outline-primary:active img {
    transform: translateX(-5px);
}
/* Tab servicios  */
.hk-tabpanel-banner,
.hk-tabpanel-service {
    width: 100%;
    height: auto;
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.hk-tabpanel-service h2,
.hk-tabpanel-service h3 {
    font-size: 28px;
    margin: 48px 0 0 0;
    color: var(--hk-deep-blue-2);
}
.hk-tabpanel-service h3 {
    font-size: 22px;
    margin: 0;
}
.hk-tabpanel-service ul li span {
    color: var(--hk-deep-orange);
    font-weight: bold;
}
.hk-tabpanel-banner {
    width: 100%;
    height: 100%;
}
.hk-tabpanel-banner img {
    max-width: 90%;
    height: 100%;
    object-fit: cover;
    margin: 48px auto 0 0;
    border-radius: 6px;
}

.hk-tab-container .nav-tabs {
    --bs-nav-tabs-border-color: var(--hk-white);
    justify-content: center;
}
.hk-tab-container .nav-tabs .nav-link {
    --bs-nav-link-color: var(--hk-deep-orange);
    border-radius: 24px;
}
.hk-tab-container .nav-tabs .nav-link.line:hover {
    border-color: transparent;
}
.hk-tab-container .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    --bs-nav-tabs-link-active-color: var(--hk-white);
    --bs-nav-tabs-link-active-border-color: var(--hk-deep-orange);
    --bs-nav-tabs-link-active-bg: var(--hk-deep-orange);
}

/* Line */
.hk-tab-container .nav-tabs .nav-link.line {
    --bs-nav-link-color: var(--hk-deep-grey);
    border-radius: unset;
}
.hk-tab-container .nav-tabs .nav-item.show .nav-link.line, .nav-tabs .nav-link.line.active {
    --bs-nav-tabs-link-active-color: var(--hk-deep-orange);
    --bs-nav-tabs-link-active-border-color: transparent;
    --bs-nav-tabs-link-active-bg: transparent;
    border-bottom-color: var(--hk-deep-orange);
}

@media (min-width: 576px) {
    .hk-blog-body .btn {
        margin: 0;
    }
    .hk-blog-body img {
        width: unset;
        object-fit: unset;
    }
    .hk-blog-body {
        overflow-x: unset;
    }
    .hk-footer-info>a {
        margin: 6px 6px 6px 0;
    }
    .hk-marquee .wrapper {
        animation: hiker-marquee 15s linear infinite;
    }
    .hk-air-service {
        grid-template-columns: .75fr 1.5fr;
    }
    .hk-air-service h3 {
        font-size: 2.75vw;
    }
    .hk-service-tab-menu {
        width: 90%;
        top: 12px;
        flex-direction: row;
        overflow: hidden;
        overflow-x: scroll;
    }
    .hk-service-tab {
        background-size: cover;
    }
}

@media (min-width: 768px) { 
    .hk-blog-link {
        width: 120px;
    }
    .hk-blog-box.detail .hk-blog-body {
        flex-direction: row;
    }
    .hk-blog-title-container {
        flex-direction: row;
    }
    .hk-main-banner-content.hk-services {
        height: calc(40vh + 76px);
    }
    .hk-blog-title {
        font-size: 24px;
        padding: 12px 12px 0 24px;
    }
 }

@media (min-width: 992px) {
    .hk-social-media {
        margin: 24px 0 0 0;
    }
    .hk-banner-wrapper.hk-home .content {
        width: auto;
        right: 78px;
    }
    section.hk-visionmision {
        height: calc(100vh + 76px);
    }
    .hk-banner-wrapper .title {
        font-size: 36px;
        text-align: left;
    }
    .hk-visionmision .hk-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }
    .hk-visionmision .hk-wrapper .hk-vision, .hk-visionmision .hk-wrapper .hk-mision {
        width: 80%;
        gap: 24px;
    }
    .hk-visionmision .hk-wrapper .hk-vision p, .hk-visionmision .hk-wrapper .hk-mision p {
        font-size: 18px;
        width: 80%;
    }
    .hk-visionmision .hk-wrapper .hk-vision {
        grid-column: 1 / 2;
        grid-row: 1 / 1;
        margin: 0 0 0 auto;
    }
    .hk-visionmision .hk-wrapper .hk-mision {
        grid-column: 2 / 3;
        grid-row: 1 / 1;
        margin: 0 0 0 24px;
    }
    
    .hk-main-banner-content.hk-about,
    .hk-main-banner-content.hk-contact {
        height: calc(30vh + 76px);
    }
    .hk-main-banner-content.hk-services {
        height: calc(50vh + 76px);
    }
    .hk-main-caption {
        gap: 0;
    }
    .hk-title-box, .hk-link-box {
        margin: 0;
    }

    .hk-banner-wrapper .title.hk-about {
        font-size: 2.25vw;
    }
    .col-xxl-6 {
        flex: 0 0 auto!important;
        width: 25%!important;
    }
    header {
        position: fixed;
    }

    /* utils ---------- */
    .hk-title-page {
        font-size: 3.2vw;
    }

    /* section.hk-global-transport ---------- */
    section.hk-global-transport {
        height: 100vh;
        padding: 120px 12px;
    }
    .hk-global-wrapper {
        gap: 60px;
    }
    .hk-global-title-box {
        gap: 24px;
    }
    .hk-global-title-line>img {
        width: auto;
        height: 28px;
    }
    .hk-global-title-paragraphs .hk-global-text-box p {
        font-size: 25px;
        margin: unset;
    }

    /* section.hk-logistic ---------- */
    .hk-services-box,
    .hk-services-banner-box {
        position: relative;
        width: 100%;
        height: calc(100vh - 220px);
        margin: 0 0 80px 0;
    }
    .hk-services-box {
        width: 80%;
        margin: 0 auto;
    }
    .hk-services-box>p {
        width: 80%;
    }
    .hk-hk-logistics-banner {
        height: 200px;
    }
    .hk-services-box.right {
        margin: 0 auto 0 180px;
    }
    .hk-services-box>p{
        width: 80%;
    }
    /* Section.hk-are-different ---------- */
    section.hk-are-different {
        height: auto;
        padding: 0 0 60px 0;
    }

    /* section.hk-members ---------- */
    section.hk-members {
        height: 60vh;
    }
    .hk-banner-wrapper {
        flex-direction: row;
    }

    /* section.contact-form ---------- */
    .select2-container--default .select2-selection--single,
    .select2-container--default .select2-selection--multiple {
        height: 60px!important;
        padding: 0.5rem .25rem;
        border-radius: 10px;
        border-color: transparent;
        border: 2px solid transparent;
        background-color: rgba(229, 229, 229, 0.5)!important;
    }
    .select2-container--default .select2-selection--multiple {
        padding: 1px!important;
    }
    .select2-selection .select2-selection--single,
    .select2-container--default .select2-selection--multiple:hover,
    .select2-container--default.select2-container--focus .select2-selection--multiple {
        color: var(--bs-body-color);
        background-color: var(--bs-body-bg);
        border:1px solid #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow{
        top: 50%!important;
        right: 4px;
        transform: translateY(-50%);
    }
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        font-size: 14px;
    }

    section.hk-contact-form {
        padding: 120px 0;
    }
    .hk-contact-inputs {
        margin: unset;
    }
    .hk-contact-title {
        width: 80%;
        display: block;
        margin: 24px auto 0 auto;
    }
    .hk-contact-form-captcha {
        flex-direction: row;
    }
    section.hk-contact-form {
        padding: 120px 0;
    }

    .hk-main-banner-content.hk-services .hk-title-box, .hk-main-banner-content.hk-contact .hk-title-box {
        margin: 0;
    }
    /* Footer ---------- */
    footer {
        padding: 48px 24px 24px;
    }
    .hk-footer-container {
        gap: unset;
        grid-template-columns: 1fr .5fr 1fr 1fr;
        grid-template-rows: 1fr auto;
    }
    .hk-footer-logo {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .hk-footer-menu {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .hk-footer-locations {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        gap: unset;
    }
    .hk-footer-terms {
        grid-column: 1 / 6;
        grid-row: 2 / 3;
    }
    .hk-footer-menu,
    .hk-footer-locations,
    .hk-footer-terms {
        display: flex;
        gap: 6px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .hk-footer-info>a {
        margin: unset;
    }
    
    .hk-footer-terms {
        flex-direction: row;
        justify-content: space-between;
        margin: 60px 0 0 0;
    }
    .hk-copy-right {
        width: 60%;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 12px;
    }
    
    .hk-footer-info-title {
        margin: 0 0 12px 0;
    }
    
    .hk-footer-locations>a>img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }

    .hk-footer-logo>a {
        width: auto;
        height: 66px;
        display: block;
    }

    .hk-footer-logo>a>img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .hk-main-banner-content.hk-services .hk-main-caption { 
        gap: 30px;
        width: 80%;
        height: calc(100% - 300px);
    }
    .hk-main-banner-content.hk-services .hk-title-box {
        margin: 0;
    }
    .hk-main-banner-content.hk-services .hk-link-box {
        margin: 0 0 24px 0;
    }
    
    .hk-service-tab,
    .hk-service-tab.land {
        height: 80vh;
        background-size: cover;
        margin: 0 0 60px 0;
    }
    .hk-service-tab-menu { 
        top: 56px;
        width: 80%;
        flex-direction: row;
        overflow: unset;
    }
    .hk-service-tab.mar .hk-service-tab-menu {
        width: 95%;
        overflow: unset;
        gap: unset;
    }
    .hk-service-tab-menu .btn.btn.btn-primary,
    .hk-service-tab-menu .btn {
        max-width: 180px;
        white-space: normal;
    }
   
    .hk-air-service {
        padding: 12px;
        margin: 66px 0 30px 0;
    }
    section.hk-service.land {
        margin: 66px 0 0 0;
    }
    .hk-services-slider-banner img {
        object-fit: cover;
    }
    .hk-services-slider-banner {
        height: calc(100vh - 86px);
    }
    section.hk-services .swiper {
        margin: 0 0 120px 0;
    }
    section.hk-services .swiper .swiper-slide p {
        font-size: 12vw;
    }
    .hk-service-industries-item {
        padding: 24px;
        width: 80%;
        margin: 0 auto;
    }
    .hk-title.services {
        font-size: 2.2vw;
    }
    .hk-txt-wrapper>h3.services {
        font-size: 24px;
    }
    .hk-map-services .map {
        max-height: 900px;
    }
    .hk-map-services-text p {
        width: 60%;
    }
    .hk-map-services-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .hk-map-services-text {
        transform: translate(50%, 100px);
    }
    .hk-title.services {
        margin: 0 0 30px 0;
    }
    .hk-title.faq {
        font-size: 2.2vw;
        margin: 48px 0 60px 0;
    }
    .hk-service-tab-link a {
        opacity: 1;
    }
    .hk-search-wrapper {
        flex-direction: row;
    }
    .hk-search-wrapper .search-title {
        font-size: 2vw;
    }
    .hk-blog-body {
        flex-direction: row;
    }
    .hk-blog-body .btn {
        align-self: end;
        height: 40px;
        --bs-btn-border-radius: 14px;
    }
    .hk-search-wrapper {
        gap: 24px;
        margin: 60px 0;
    }
    .hk-circle {
        width: 54px;
        height: 54px;
    }
    .hk-blog-box.detail .hk-blog-banner {
        width: 100%;
        height: 300px;
    }
}

@media (min-width: 1200px) { 
    .h2, h2 {
        font-size: 2.25rem;
    }
    .swiper-slide p {
        font-size: 16vw;
    }
    section.hk-about-slider .swiper-slide p {
        font-size: 20vw;
    }
 }

@media (min-width: 1400px) {  }

@media (min-width: 2000px) {

    .hk-blog-container,
    #hk-blog-container {
        height: auto;
        min-height: 60vh;
    }
    .hk-circle {
        width: 64px;
        height: 64px;
    }
    .nav-link {
        --bs-nav-link-font-size: 1.5vw;
    }
    .hk-navbar-logo {
        height: 100px;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%!important;
    }
    .btn,
    .btn-dark.hk-send-btn {
        height: 80px;
        max-width: 380px;
        font-size: 1.5vw;
    }
    .btn-dark.hk-send-btn {
        width: 380px;
    }
    .btn.btn-primary.white {
        font-size: 1.5vw;
        min-width: 490px;
    }
    .hk-link-box {
        margin: 0 0 48px 0;
    }
    .hk-circle {
        width: 80px;
        height: 80px;
    }
    .swiper-slide p {
        font-size: 16vw;
        line-height: 1;
    }
    .hk-services-title,
    .hk-services-box>p,
    .hk-title, .hk-global-title-box>.title,
    .hk-txt-wrapper>h3,
    .hk-banner-wrapper .title {
        font-size: 2vw;
    }
    .hk-txt-wrapper>p,
    .hk-global-title-paragraphs .hk-global-text-box p,
    .hk-subtitle-page,
    .hk-contact-title>p {
        font-size: 1.5vw;
    }
    .hk-contact-title>small {
        font-size: 1vw;
    }
    .hk-are-different-box>img {
        width: 250px;
        height: 250px;
    }
    section.hk-global-transport {
        height: 70vh;
    }
    .hk-global-title-paragraphs {
        margin: 100px 0 0 0;
    }
}