@charset "UTF-8";

body {
    font-family: 'Montserrat', sans-serif;
    color:#555;
    font-weight:500;
    font-size:14px;
    line-height: 1.9em;    
}

html, body {
    
}

a {
    color: #002F5F!important
}

a.text-link {
    text-decoration: none;
}

.titillium-web-extralight {
font-family: "Titillium Web", sans-serif;
font-weight: 200;
font-style: normal;
}

.titillium-web-light {
font-family: "Titillium Web", sans-serif;
font-weight: 300;
font-style: normal;
}

.titillium-web-regular {
font-family: "Titillium Web", sans-serif;
font-weight: 400;
font-style: normal;
}

.titillium-web-semibold {
font-family: "Titillium Web", sans-serif;
font-weight: 600;
font-style: normal;
}

.titillium-web-bold {
font-family: "Titillium Web", sans-serif;
font-weight: 700;
font-style: normal;
}

.titillium-web-black {
font-family: "Titillium Web", sans-serif;
font-weight: 900;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}
  
/*--- UTILITIES ---*/

.position-sticky {
    z-index: 10;
}

.round_container {
    border-radius: 50%;
    overflow: hidden;
}
.round_container img {
    width: 100%;
}
.round_container.md {
    width: 120px;
    height: 120px;
}
.round_container.lg {
    width: 160px;
    height: 160px;
}

.bg-image-column {
    width: 100%;
    aspect-ratio: 1.2 / 1; /* height in relation to width */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.row_spans span {
    display: inline-block;
    padding-right: 1rem;
    margin-right: 1rem;
    border-right: 1px solid #fff;
}
.row_spans span:last-child {
    border-right: none;
}

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; margin-bottom: 1rem; } 
.embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.btn-play,
.video .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
@media (min-width: 180px){
    .btn-play {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius:16px;
        font-size: 24px;
        text-decoration: none;
        background: rgb(0,0,0,0.4);
        transition: transform 0.3s ease;
    }
}
@media (min-width: 768px){
    .btn-play {
        width: 75px;
        height: 75px;
        border-radius:16px;
        font-size: 32px;
    }
}
@media (min-width: 992px){
    .btn-play {
        width: 96px;
        height: 96px;
        border-radius:16px;
        font-size: 36px;
    }
}
.btn-play:hover {
    background: rgb(79,192,234);
}

.category_link a {
    text-decoration: none!important;
    color: #111!important;
}
.category_link {
    text-decoration: none!important;
    color: #111!important;
    position: relative;
}

.category-listing > *:nth-child(even) {
    background-color: #F4F6F8!important;
}

.uppercase {
    text-transform: uppercase;
}

.border-none {
    border:none!important
}

.fw-300 {
    font-weight: 300!important;
}
.fw-400 {
    font-weight: 400!important;
}
.fw-600 {
    font-weight: 600!important;
}
.fw-700 {
    font-weight: 700!important;
}
.fw-900 {
    font-weight: 900!important;
}

.text-shadow {
    text-shadow: 1px 1px 3px rgb(0,0,0,0.5);
}

@media (min-width: 180px){
    .logo_footer {
        width: 75%;
        max-width: 140px;
    }
}
@media (min-width: 576px){
    .logo_footer {
        width: 100%;
        max-width: 140px;
    }
}

/*--- Layout ---*/

@media (min-width: 1400px){
    .container {
        max-width: 1340px;
    }
}
@media (min-width: 2400px){
    .container {
        max-width: 1860px;
    }
}
@media (min-width: 180px){
    .header {
        min-height: 60vh;
    }
}
@media (min-width: 992px){
    .header {
        height: 100vh;
    }
}

/* Underline From Left */
.hvr-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}
.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    background: #3bbbe6;
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
@media (min-width: 180px){
    .hvr-underline-from-left:before {
        right: 0;
    }
}
@media (min-width: 992px){
    .hvr-underline-from-left:before {
        right: 100%;
    }
    .hvr-underline-from-left:hover:before, 
    .hvr-underline-from-left:focus:before, 
    .hvr-underline-from-left:active:before {
        right: 0;
    }
}

/*--- NAVBAR ---*/
@media (min-width: 180px){
    .navbar-brand {
        position: absolute;
        top: 0.5rem;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 999;
    }
}
@media (min-width: 992px){
    .navbar-brand {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
    }
}

.navbar-brand img {
    width: 80px;
  }
  .navbar-nav {
    align-items: center;
  }
  .navbar-nav .nav-item {
    padding: 0 1.4em;
  }
  .navbar .navbar-nav .nav-link {
    color: #332f2c!important;
    font-size: 1.4em;
    padding: 0.5em 0;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  @media screen and (min-width: 768px) {
    .navbar-brand {
      margin-right: 0;
      padding: 0;
    }
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
  

/*--- TEXT ---*/

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.display-1,.display-2,.display-3,.display-4,.display-5 {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.h6,.h6 {
    line-height: 1.6em;
}

.small, small {
    line-height: 1.6em
}

@media (min-width: 180px){    
    .shape { width: 100px}
    .display-1 {line-height: 1em;}
}
@media (min-width: 576px){     
}
@media (min-width: 768px){
}
@media (min-width: 992px){
    .display-1 {font-size: 5.2rem;}
    .display-2 {font-size: 4.8rem;}
    .display-3 {font-size: 4.4rem;}
    .display-4 {font-size: 4rem;}
    .display-5 {font-size: 3.6rem;}
    .h1, h1 {font-size: 3rem;}
    .h2, h2 {font-size: 2.2rem;line-height:1.4em}
    .h3, h3 {font-size: 2rem;}
    .h4, h4 {font-size: 1.8rem;line-height:1.5em;}
    .h5, h5 {font-size: 1.4rem;line-height:1.5em;}
    .h6, h6 {font-size: 1.2rem;line-height:1.5em;}
}
@media (min-width: 1200px){
    
}
@media (min-width: 1400px){
    .display-1 {font-size: 5.6rem;}
    .display-2 {font-size: 4.8rem;}
    .display-3 {font-size: 4.4rem;}
    .display-4 {font-size: 4rem;}
    .display-5 {font-size: 3.6rem;}
    .h1, h1 {font-size: 3rem;}
    .h2, h2 {font-size: 2.2rem;line-height:1.4em}
    .h3, h3 {font-size: 2rem;}
    .h4, h4 {font-size: 1.8rem;line-height:1.5em;}
    .h5, h5 {font-size: 1.4rem;line-height:1.5em;}
    .h6, h6 {font-size: 1.2rem;line-height:1.5em;}
}
@media (min-width: 2400px){
    .display-1 {font-size: 6.8rem;}
    .display-2 {font-size: 4.8rem;}
    .display-3 {font-size: 4.4rem;}
    .display-4 {font-size: 4rem;}
    .display-5 {font-size: 3.6rem;}
    .h1, h1 {font-size: 3rem;}
    .h2, h2 {font-size: 2.2rem;line-height:1.4em}
    .h3, h3 {font-size: 2rem;}
    .h4, h4 {font-size: 1.8rem;line-height:1.5em;}
    .h5, h5 {font-size: 1.4rem;line-height:1.5em;}
    .h6, h6 {font-size: 1.2rem;line-height:1.5em;}
}

/*-- OWL CAROUSEL ---*/

.owl-4-column .owl-item {
    height: 100%;
}

.owl-carousel.owl-1-column.min-height .item {
    min-height: 520px
}

.owl-carousel.owl-1-column .owl-nav button[class^='owl-'] {
    background:rgb(0,0,0,0.5);
    color: #fff!important;
}

@media screen and (min-width: 180px) {
    .owl-carousel.owl-1-column .owl-nav {
        position: absolute !important;
        top: initial;
        bottom: 3rem;
        right: 0;
        width: auto;
        transform: initial;
    }
}

@media screen and (min-width: 180px) {
    .owl-carousel.owl-1-column .owl-prev {
        right:110px!important
    }
    .owl-carousel.owl-1-column .owl-next {
        right:50px!important
    }
}

.owl-carousel.owl-trips .owl-stage {
    display: flex;
}

.owl-carousel.overflow-both .owl-stage-outer {
    overflow: visible;
    clip-path: inset( -100vw );
}

@media screen and (min-width: 768px) {
    .owl-4-column .card {
        min-height:600px;
    }
}

.owl-carousel-home .owl-dots {
    width: 100%;
    padding-top:1rem;
    text-align:center
}
.owl-carousel-home .owl-dots button.owl-dot {
    background: #eee!important;
}
.owl-carousel-home .owl-dots button.owl-dot.active {
    background: #3680c5!important;
}

.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
}

.owl-carousel .owl-dot {
    width: 20px;
    height: 20px;
    background-color: rgb(0,0,0,0.3);
    display: inline-block;
    border-radius:50%;
    margin: 3px;
}


@media screen and (min-width: 180px) {
    .owl-carousel .owl-dots {
        position: absolute!important;
        width: 100%;
        bottom:-50px;
        text-align:center
    }
    .owl-carousel .owl-nav {
        position: absolute!important;
        width: 100%;
        /*top:105%;*/
        top:50%;
        transform: translateY(-50%);
        height: 50px;
    }
}
@media screen and (min-width: 576px) {
    .owl-carousel .owl-nav {
        width: 100%;
        
    }
}
.owl-carousel .owl-nav {
    z-index: 1;
}
.owl-carousel .owl-nav button[class^='owl-'] {
    width:50px;
    height: 50px;
    border-radius: 50%;
    color:#333!important;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0!important;
    margin: 0.3rem;
}
.owl-carousel .owl-nav button[class^='owl-'] {
    width:50px;
    height: 50px;
    border-radius: 50%;
    color:#333!important;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:0!important;
    margin: 0.3rem;
    background-color: #fff;
    border:1px solid #dee2e6
}
.owl-carousel.gallery_slider .owl-nav button[class^='owl-'],
.owl-3-column.gallery_slider .owl-nav button[class^='owl-'] {
    background:#fff;
}
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel button.owl-dot {
    font-size: 0!important;
}
.owl-nav .owl-prev:before {
    font-family: FontAwesome;
    content: "\f053";
    font-size: 18px;
    line-height: 50px;    
}
.owl-nav .owl-next:before {
    font-family: FontAwesome;
    content: "\f054";
    font-size: 18px;
    line-height: 50px;    
}

.owl-carousel.owl-3-column .card-body {
    min-height:210px
}

@media screen and (min-width: 180px) {
    .owl-carousel.owl-3-column .owl-prev {
        left:-30px
    }
    .owl-carousel.owl-3-column .owl-next {
        right:-30px
    }
    .owl-carousel.gallery_slider .owl-prev {
        left:-30px
    }
    .owl-carousel.gallery_slider .owl-next {
        right:-30px
    }
}
@media screen and (min-width: 768px) {
    .owl-carousel.owl-3-column .owl-prev {
        left:-80px
    }
    .owl-carousel.owl-3-column .owl-next {
        right:-80px
    }
}


.owl-carousel button.owl-dot {
    background: rgb(0,0,0,0.3)!important;
    color: #fff;
    border: none;
    padding: 0!important;
    font: inherit;
    width: 15px;
    height: 15px;
    background: rgb(255,255,255,0.4);
    border-radius:50%;
    margin:6px;
}
.owl-carousel button.owl-dot.active {
    background: #3bbbe6!important;
}


/*--- COMPONENTS ---*/

.active>.page-link, .page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #0176b0 !important;
    border-color: #0176b0 !important;
}

.card-labels {
    position: absolute;
    display: flex;
    align-items: center;
    bottom:0;
    left:3rem;
}
.card-labels span {
    display: inline-flex;
    align-items:center;
    white-space: nowrap;
}
.card-footer {
    border-top: none;
    background-color: transparent;
}

.card-primary.card-outline {
    border-top: 2px solid #002F5F!important;
}
.card-info.card-outline {
    border-top: 2px solid #3bbbe6!important;
}

.card .card-body a {
    text-decoration: none!important;
}
.card .card-body a:hover {
    text-decoration: underline!important;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active {
    color: #2c2d32!important;
    background-color: transparent;
    border-bottom: 2px solid #002F5F!important;
}
.nav-tabs .nav-link {
    color: #4f515c!important;
    background: 0 0;
    border: none;
    padding: 1rem 1.6rem!important;
    font-size: 1.4em;
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: normal;
}
@media (min-width: 180px){
    .nav-tabs .nav-item,
    .nav-tabs .nav-link {
        width: 100%;
    }
}
@media (min-width: 576px){
    .nav-tabs .nav-item,
    .nav-tabs .nav-link {
        width: initial;
    }
}


.accordion .accordion-item {
    background-color: transparent!important;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-left: none;
    border-right: none;
}

.accordion .accordion-button:not(.collapsed) {
    color: #333;
    background-color: rgb(0,0,0,0.1);
}

.accordion .accordion-button {
    background-color: transparent!important;
    font-size:1.4rem!important;
    font-weight: 600;
}
.accordion.tab_content .accordion-button {
    background-color: transparent!important;
    font-size:1rem!important;
    font-weight: 600;
    line-height: 1em!important;
}

.accordion .accordion-body {
    background: rgb(255, 255, 255, 0.5);
}

.accordion-item:first-of-type {
    border-radius: 0!important;
}

/*--- SPACING ---*/


/*--- TEXT COLOR ---*/

.text-primary {
    color: #002F5F!important
}
.text-secondary {
    color: #C19A43!important;
}
.text-success {
    color: #9ec084!important;
}
.text-info {
    color: /*#48b0c7*/#3bbbe6!important;
}
.text-warning {
    color: #C19A43!important;
}
.text-success {
    color: #9ec084!important;
}
.text-light {
    color: #fff9e6!important;
}
.text-dark {
    color: #343f46!important;
}
.text-muted {
    color:#5a6167!important
}

/*--- BACKGROUNDS ---*/

.bg-lines-bl:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://ushuaiashipping.com/wp-content/themes/ushuaia_shipping/img/lines-bl.svg);
    background-size: 400px;
    background-position: 0 bottom;
    background-repeat: no-repeat;
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

.bg-light-gradient {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#F4F6F8+0,F4F6F8+100&0+1,1+100 */
background: linear-gradient(to bottom,  rgba(246,244,240,0) 0%,rgba(246,244,240,0) 1%,rgba(246,244,240,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.bg-dark-gradient {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#F4F6F8+0,F4F6F8+100&0+1,1+100 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,80%) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    
    }

.bg-primary {
    background-color: #002F5F!important
    /*background-color: #00557e!important*/
}
.bg-secondary {
    background-color: #C19A43!important;
    /*background-color: #ecb731!important;*/
}
.bg-success {
    background-color: #9ec084!important;
}
.bg-warning {
    background-color: #C19A43!important;
}
.bg-light {
    background-color: #F4F6F8!important
    /*background-color: #f6f4f0!important*/
}
.bg-dark {
    background-color: #212121!important
}
.bg-info {
    background-color: #3bbbe6!important
}
.bg-darken {
    background: rgb(0,0,0,0.6);
}

.bg-image {
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.bg-footer {
    background-repeat:no-repeat;
    background-position: bottom;
    background-size: cover;
    position: relative;
}

.bg-image.bg-01::before {    
    background-image: url(../img/everest-21.jpg)
}

/*--- FORM ---*/

/*--- BUTTONS ---*/

.btn {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    padding: 0.675rem 0.95rem;
}

@media (min-width: 180px){
    .btn-lg {
        padding: 0.8rem 1.8rem !important;
        font-size: 1rem !important;
    }
}
@media (min-width: 576px){
    .btn-lg {
        padding: 1rem 2.2rem!important;
        font-size: 1rem!important;
    }
}
.btn-success {
    color: #5697d3;
    background-color: #eee541;
    border-color: #eee541;
}
.btn-white {
    color: #002452!important;
    background-color: #fff;
    border-color: #eee;
}
.btn-success:hover {
    color: #fff;
    background-color: #eee541;
    border-color: #eee541;
}
.btn-warning {
    color: #212529!important;
    background-color: #C19A43;
    border-color: #C19A43;
}

.btn-primary {
    color: #fff!important;
    background-color: #002F5F!important;
    border-color: #002F5F!important
}
.btn-primary:hover { 
    color: #fff;
    background-color: #00578f;
    border-color: #00578f;
}
.btn-outline-primary {
    color: #002F5F!important;
    border:2px solid #002F5F!important;
}
.btn-outline-primary:hover { 
    color: #fff!important;
    background-color: #002F5F!important;    
}
.btn-outline-white {
    color: #fff !important;
    border: 2px solid #fff !important;
}
.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #002F5F!important;
    border-color: #002F5F!important;
}

.btn-secondary {
    color: #002452!important;
    background-color: #C19A43!important;
    border-color: #C19A43!important;
}
.btn-secondary:hover { 
    color: #002452;
    background-color: #C19A43;
    border-color: #C19A43;
}

.btn-dark {
    color: #fff!important;
    background-color: #212121;
    border-color: #212121;
}
.btn-dark:hover { 
    color: #fff!important;
    background-color: #151549;
    border-color: #151549;
}
.btn-info {
    color: #fff;
    background-color: #3bbbe6!important;
    border-color: #3bbbe6!important;
}
.btn-info:hover { 
    color: #fff;
    background-color: #148bb3;
    border-color: #148bb3;
}


.btn-round {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}
.btn-round i {
    color:#fff;
    font-size: 18px;
}
.btn-round.sm {
    width: 32px;
    height: 32px;    
}
.btn-round.sm i {
    color:#fff;
    font-size: 14px;
}
.btn-round.md {
    width: 42px;
    height: 42px;    
}
.btn-round.md i {
    color:#fff;
    font-size: 16px;
}

/*--- ACCORDION ---*/

.myaccordion {
     box-shadow: 0 0 1px rgba(0,0,0,0.1);
   }
 
   .myaccordion .btn {
     text-align:left!important
    }
 
    .myaccordion .btn i {
     font-size: initial!important;
    }
   
   .myaccordion .card,
   .myaccordion .card:last-child .card-header {
     border: none;
   }
   
   .myaccordion .card-header {
     border-bottom-color: #EDEFF0;
     background: transparent;
   }
   
   .myaccordion .fa-stack {
     font-size: 16px;
     background:#C19A43!important;
     border-radius:50%;
     width:2em!important;
     height: 2em!important;
   }
   
   .myaccordion .btn {
     width: 100%;
     font-weight: 600;
     font-size:1.1em;
     color: #002F5F!important;
     padding: 0;
   }
   
   .myaccordion .btn-link:hover,
   .myaccordion .btn-link:focus {
     text-decoration: none;
   }
   
   .myaccordion li + li {
     margin-top: 10px;
   }


   .blog-post img {
    margin: 1rem 0 3rem;
    width: 100%!important;
    height: auto!important;
   }

   /*--- CONTACT FORM 7 ---*/

.wpcf7-form label {
    display: block
}
.wpcf7-form-control {
    padding: 0.5rem 0.75rem;
    background-color: #f5f8fd!important;
    line-height: 1;
    font-weight: 400;    
    display: block;
    width: 100%;
    /*height: calc(1.5em + 0.75rem + 2px);*/
    font-size: 1rem;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.wpcf7-submit {
    display: block;
    width: auto;
    color: #fff!important;
    background-color: #242d3b!important;
    border-color: #242d3b!important;
    float:right;
    margin-top: 20px;
    font-weight: 600;
    color: #212529;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.9rem 1.9rem!important;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0.25rem;
}