* {
    font-size: 14px;
    font-family: "Montserrat";
    font-optical-sizing: auto;
    scroll-padding-top: 200px;
}

body {
    padding: 0 !important;
}

/* colors */

:root {
    --blue: #192162;
    --dark-blue: #001256;
    --light-blue: #F3F9FF;
    --grey: #EDEFEE;
    --black: #070707;

    --shadow: #25252568;
}

/* text */

h1{ 
    text-transform: uppercase;
    font-weight: 900;
    font-size: 42px; 
    color: var(--dark-blue); 
    margin: 10px 0;
}

/* mark {
    padding: 22px 10px 6px 10px;
    background: var(--light-blue)!important;
} */

h2 { 
    font-family: 'Goldman';
    font-size: 20px; 
    color: #273293; 
    text-transform: uppercase;
    margin: 10px 0;
    font-weight: 400;
}

p { 
    font-weight: 400;
    line-height: 24px;
    font-style: normal;
    margin: 5px 0;
}

.dark-blue-text {
    color: var(--dark-blue);
}
a { text-decoration: none!important; }


.fs-title { font-size: 60px }
.fs-subtitle { font-size: 35px }
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px;}
@media (min-width:990px) {
    .text-right-md { text-align: right;}
}
.row {margin:0!important}

@media (max-width: 767px) {
    p { font-size: 12px;}
    h1 , h1 span { font-size: 30px; }
    h2 { font-size: 18px; }
    .fs-title { font-size: 40px }
    .fs-subtitle { font-size: 25px }
    .fs-16 { font-size: 13px; }
    .fs-18 { font-size: 15px;}
}
@media (min-width: 768px)  and (max-width: 991px) {
    h1 , h1 span { font-size: 35px; }
    h2 { font-size: 19px; }
    .fs-title { font-size: 48px }
    .fs-subtitle { font-size: 30px }
    .fs-16 { font-size: 15px; }
    .fs-18 { font-size: 17px;}
}

/* helpers */
.nowrap { white-space: nowrap; }

/* different text */

.title-group {
    display: flex;
    flex-direction: column-reverse;
}

a.link {
    color: #0030E0;
    text-decoration: underline!important;
}
a.link:hover {
    color: var(--dark-blue);
}

hr{
    margin: 5px 10px 5px 0px;
    opacity: 1;
}

.hr-light {
    width: 30px;
    height: 14px!important;
    color: #828FFF;
    border: none;
}

.hr-dark {
    width: 30px;
    height: 14px!important;
    color: #273293;
    border: none;
}

/* buttons */

button {
    background-color: #273293;
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    padding: 10px 20px;
    width: auto;
    margin: 10px 0;
    transition: all .15s ease-in-out;
}

button:hover, button:focus {
    background: var(--blue);
}

button a {
    transition: all .15s ease-in-out;
    color: var(--dark-blue);
}

button a:hover {
    color: var(--green);
}

button.dark {
    background-color: var(--dark-blue);
    color: var(--blue);
}

.btn-white {
    background-color: white;
    color: var(--blue);
    border: 1px solid white;
}
.btn-white:hover , .btn-white:focus {
    background-color: var(--light-blue);
    color: var(--blue);
    
    border: 1px solid var(--light-blue);
}
.btn-outline {
    border: 1px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: var(--blue);
}

/* bg */

.blue-bg {
    margin-top: -1px;
    margin-bottom: -1px;
    background: var(--blue)!important;
}

.darkblue-bg {
    background: var(--blue);
}

.lightblue-bg {
    background: var(--light-blue);
}

.values-bg {
    background-size: 140%;
    background-position: bottom;
    background-image: url('/assets/website/img/values.png');
}

#track-trace {
        background-image: linear-gradient(to bottom, var(--blue) 50%, var(--light-blue) 50%);
}

#isles {
    background-size: cover;
    background-position: center;
    background-image: url('/assets/website/img/isles-bg.png');
}



.values-bg .blue, #isles .blue {
    background-image: linear-gradient(to top, #000d3dcc, #0023a3cd);
}
 
/* header */

.small-nav {
    background-color: var(--dark-blue);
    color: var(--blue);
    height: 35px;
}

@media (max-width: 768px) {
    .small-nav img { height: 15px; }
    .small-nav .fs-16 { font-size: 12px; }
    .small-nav { padding: 2px 5px !important;}
}

.small-nav a:hover {
    color: var(--light-green);
}

.nav {
    background-color: transparent;
    transition: all .15s ease-in-out;
}

.nav.scrolled { 
    background-color: var(--blue); 
    box-shadow: 4px 4px 6px var(--shadow);
}

.collapsing {
    transition-property: height, visibility;
    transition-duration: .35s;
}

.scrolled .nav-link { color: var(--green)!important; }

@media (min-width: 768px) and (max-width:990px){
    .navbar-collapse.collapse {
        display: none!important;
    }
    
    .navbar-collapse.collapse.show {
        display: block!important;
        transition: all 0.5s ease;
    }
}

@media (max-width:768px) {
    .navbar-collapse.collapse {
        display: none;
        transition: all 0.5s ease;
    }   
}

@media (max-width:991px) {
    .nav {
        background-color: var(--blue);
    }

    .navbar-nav .nav-link {
        color: var(--green)!important;
    }
}

/* hero */

#home-slider {
    position: relative;
    height: 600px;
    background: url('/assets/website/img/trucks_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right -150px;
}

#page-slider {
    position: relative;
    height: 260px;
    background: url('/assets/website/img/trucks_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right -150px;
}

#contacts {
    background: url(/assets/website/img/road-bottom.svg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}

/* footer */

footer {
    background-image: linear-gradient(to top, #001A7A, #0023A1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}


.blue-overlay {
    background-image: linear-gradient(to top, #001A7A, #0031e000);
}
.blue-overlay-dif {
    background: #001a7acc;
}

footer .social {
    display: flex;
    justify-content: end;
}

footer .social img { 
    height: 40px;
    margin: 0 5px 10px;
}
.small-footer a {  color: white;  margin: 0 5px;}
.small-footer a:hover {  color: #97b7d7; }

@media (max-width: 991px) {
    footer .social {
        justify-content: start;
    }

    footer .social img { 
        height: 35px;
        margin: 0 4px;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


#header .container {
    transition: all 0.5s;
    background: white;
    border-radius: 1rem;
    padding: 0 30px;
    border-bottom-right-radius: 40rem;
    box-shadow: 4px 4px 10px var(--shadow);
}

@media (max-width:991px) {
    #header .container {
        flex-direction: column;
    }

    .menu-small{
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    #header .logo img {
        max-height: 62px!important;
    }

    .d-flex-mobile {
        display: block!important;
    }
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 999;
}

#header .logo a {
    color: #111;
}

#header .logo a span {
    color: #88c43f;
}

#header .logo img {
    max-height: 75px;
    padding: 10px 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px;
}

.nav-menu .active>a {
    font-weight: 600!important;
    color: var(--blue);
}
.nav-menu a {
    display: block;
    position: relative;
    color: var(--black);
    font-weight: 500;
    transition: 0.3s;
    font-size: 15px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
    color: var(--blue);
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    right: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #3F3F41;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #3F3F41;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 22px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 30px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #302F32;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #000;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 22px;
    outline: none;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #328FCE;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}



/* cards */

.card {
    background-color: white;
    border: none;
    display: flow-root;
    border-radius: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.blue-card {
    background-color: #273293;
    border: none;
    display: flow-root;
    margin: 5px 0;
    border-radius: 1rem;
    border-bottom-right-radius: 20rem;
    box-shadow: 0 4px 6px var(--shadow);
}

@media(min-width:768px) {
    .card-img img{
        width: 100%;
        max-height: 80px;
        margin-top: 10px;
    }
}

@media(min-width:991px) { 
    .card-img {
       padding: 0;
    }
}


@media(min-width:768px) and (max-width:990px) {
    .card-img {
        display: grid;
        justify-content: start;
    }
}

@media(max-width:768px) {
    .card-img {
        display: flex;
        align-items: center;
    }
    .card-img img{
        width: auto;
        margin-right: 15px;
        max-height: 60px;
    }
}

.icon-card {
    background-color: var(--blue);
    border-radius: 1rem;
    width: 100px;
    height: 100px;
    justify-self: center;
    box-shadow: 0 4px 6px var(--shadow);
    justify-content: center;
    align-items: center;
    display: grid;
}

@media (max-width:768px) {
    .icon-card {
        width: 80px;
        height: 80px;
    }

    .icon-card img{
        height: 50px;
    }
}
.partner-card {
    background-color: rgba(255, 255, 255, 0.831);
    border-radius: 1rem;
    box-shadow: 0 4px 6px var(--shadow);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px); 
}

.partner-card img { height: 70px; }
@media (max-width:991px) {
    .partner-card img { height: 50px; }
    .nav-menu>ul {
        display: grid;
        justify-content: center;
        text-align: center;
    }
}


.partner-card.visible, #services .card.visible, #diferences .dif-card.visible {
    opacity: 1;
    transform: translateY(0); 
}

/* container */

.container {
    padding: 40px 0;
}

@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* sections */

.page-section {
    height: 260px;
}

.page-blue-overlay {
    background-image: linear-gradient(to right, #000B32, #0023a3d6, #0023a32b);
}

.blue-gradient {
    height: 100%;
    background: radial-gradient(#273293f0, #0d1132f5);
}
.blue-gradient-box{
    height: 200px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, var(--blue), #19216200);
}

.slider-text {
    height: 100%;
    background: url('/assets/website/img/road.svg');
    background-size: contain;
    background-position: center right -15vw;
    background-repeat: no-repeat;
}

@media (max-width:991px) {
    .slider-text {
        background-size: cover;
    }

    button {
        margin: 5px 0;
    }
}

.form-control {
    height: auto!important;
    font-size: unset!important;
    padding: 8px 12px !important;
    border: none;
    box-shadow: none;
    background: var(--grey);
    border-radius: 4px;
}
.form-control:focus {
    border: none;
    box-shadow: none;
    background: var(--light-blue);
}
.form-group {
    height: 70px;
    margin-bottom: 10px;
}

input:-internal-autofill-selected {
    background-color: #c5ff6124;
}

input[type=date].form-control {
    line-height: unset;
}

.form-label {
    color: var(--blue);
    font-weight: 500;
    font-size: 14px;
}

.modal-title { font-size: 28px }
.modal-header {
    background: var(--blue)!important;
}
/* .modal-content { padding: 20px 40px; } */
.modal-content a:hover, .modal-content a:focus { 
    color: var(--light-green); 
}

@media (max-width: 991px) {
    
    .modal-title { font-size: 22px }
}

#about-page, #services-page, #quotation-page {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;    
}

#about-page {
    background-image: url('/assets/website/img/about.png');    
    background-position: center -120px;
}
#services-page, #quotation-page {
    background-image: url('/assets/website/img/box-mockup.png');    
    background-position: center right -300px;
}

#about {
    position: relative;
}

.diferences-img {
    background-image: url('/assets/website/img/about.png');    
    background-size: cover;
    width: 50%;
    position: absolute;
    height: 100%;
}

.about-bg{
    width: 300px;
    height: 100%;
    right: 0;
    position: absolute;
    background-image: linear-gradient(to left, #011563, #0030E0);
}
.about-stamp {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/assets/website/img/rlr-stamp-sided.svg');
}

.differences-stamp {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-image: url('/assets/website/img/rlr-stamp-sided.svg');
}

.differences-bg{
    width: 100%;
    height: 100%;
    right: 0;
    position: relative;
    background-image: linear-gradient(to left, #011563, #0030E0);
}
.differences-img{
    width: 50%;
    height: 100%;
    position: relative;
    background: url('/assets/website/img/about.png');
}

#diferences {
    position: relative;
    /* background: url('/assets/website/img/main-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; */
}

.diferences-icons { justify-content: space-between; }

@media (max-width:1200px) {
    .diferences-icons { justify-content: center; }
}

#challenges {
    background: url('/assets/website/img/circle.png');
    background-repeat: no-repeat;
    background-size: 550px;
    background-position: bottom center;
}

@media (min-width: 991px) {
    .spacing {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .spacing-top {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 575px) {
    #challenges { background: none; }
}

@media (min-width: 575px) and (max-width:768px) {
    #challenges { background: none; }
    
}

@media (min-width:767px) and (max-width:991px) {

    #challenges { 
        background: url('/assets/website/img/circle-rotated.png');
        background-repeat: no-repeat;
        background-size: 250px;
        background-position: bottom 30px right;
    }
    #challenges .container { margin-bottom: 30px; }
}

#partners {
    background: url('/assets/website/img/partners.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* testemonials carousel */

#customers-testimonials .item {
    padding: 10px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
    max-width: 90px;
    margin: -14px 30px 20px auto;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
  
.owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  letter-spacing: 1.4px;
}

.owl-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url(/assets/website/img/icons/carousel-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 30px; 
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url(/assets/website/img/icons/carousel-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 30px; 
}

.owl-carousel .owl-nav button.owl-prev span, .owl-carousel .owl-nav button.owl-next span{
    display: none;
}

.owl-carousel .owl-nav button.owl-prev:hover,  .owl-carousel .owl-nav button.owl-next:hover{
    filter: opacity(0.7);
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: flex;
}

@media (max-width:768px) {
    .owl-carousel .owl-nav button.owl-next {
        margin-right: -15px;
    }
    .owl-carousel .owl-nav button.owl-prev {
        margin-left: -15px;
    }
}

/* home shape */

.container-test {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
    top: 0;
  }


  .nav__inner {
    height: 840px;
    position: relative;
    width: 100%;
  }
  
  .nav__bg {
    position: absolute;
    filter: url(#round);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .nav__bg:before {
    content: '';
    position: absolute;
    background-color: var(--blue);
    background-size: cover;
    width: 100%;
    height: 100%;
  }

  .container-test-img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: -80px;
  }
  

  .nav__inner-img {
    height: 820px;
    position: relative;
    width: 100%;
  }
  
  .nav__bg-img {
    position: absolute;
    filter: url(#round);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  
  .nav__bg-img:before {
    content: '';
    position: absolute;
    background: url('/assets/website/img/main-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 1600px) {
    .nav__bg:before {
        clip-path: polygon(0% 56%, 0 0, 100% 2rem, 100% calc(60% - 2rem), 15% 100%);
      }
    .nav__bg-img:before {
        clip-path: polygon(0% 52%, 0 0, 100% 2rem, 100% calc(50% - 2rem), 20% 100%);
    }
}

@media (max-width: 575px) {
    .nav__bg:before {
        clip-path: polygon(0% 93%, 0 0, 100% 2rem, 100% calc(91% - 2rem), 15% 100%);
    }
    .nav__bg-img:before {
        clip-path: polygon(0% 92%, 0 0, 100% 2rem, 100% calc(90% - 2rem), 20% 100%);
    }
}

@media (min-width:576px) and (max-width:990px) {
    .nav__bg:before {
        clip-path: polygon(0% 86%, 0 0, 100% 2rem, 100% calc(80% - 2rem), 15% 100%);
    }
    .nav__bg-img:before {
        clip-path: polygon(0% 82%, 0 0, 100% 2rem, 100% calc(80% - 2rem), 20% 100%);
    }
}

@media (min-width:991px) and (max-width:1999px) {
    .nav__bg:before {
        clip-path: polygon(0% 80%, 0 0, 100% 2rem, 100% calc(78% - 2rem), 15% 100%);
    }
    .nav__bg-img:before {
        clip-path: polygon(0% 78%, 0 0, 100% 2rem, 100% calc(78% - 2rem), 20% 100%);
    }
}

@media (min-width:1200px) and (max-width:1599px) {
    .nav__bg:before {
        clip-path: polygon(0% 76%, 0 0, 100% 2rem, 100% calc(70% - 2rem), 15% 100%);
    }
    .nav__bg-img:before {
        clip-path: polygon(0% 72%, 0 0, 100% 2rem, 100% calc(70% - 2rem), 20% 100%);
    }
}




  
/*
---------------------------------------
hover effect navbar
---------------------------------------
*/

.navbar-nav .nav-link:before, .navbar-nav .nav-link span:before, .navbar-nav .nav-link:after, .navbar-nav .nav-link span:after {
	content: "";
	position: absolute;
}

.navbar-nav .nav-link:before, .navbar-nav .nav-link span:before {
	top: -webkit-calc(50% - .3em);
	top: calc(50% - .3em);
	left: -.25em;
	width: .5em;
	height: .5em;
	opacity: 0;
	-webkit-transform: translate3d(-.6em, 0, 0) rotate(45deg);
	transform: translate3d(-.6em, 0, 0) rotate(45deg)
}

.navbar-nav .nav-link:after, .navbar-nav .nav-link span:after {
	bottom: -webkit-calc(50% - .35em);
	bottom: calc(50% - .2em);
	right: -.25em;
	width: .5em;
	height: .5em;
	opacity: 0;
	-webkit-transform: translate3d(.6em, 0, 0) rotate(45deg);
	transform: translate3d(.6em, 0, 0) rotate(45deg)
}

.navbar-nav .nav-link:before, .navbar-nav .nav-link:after {
	-webkit-transition: -webkit-transform .3s ease-out, opacity .3s;
	transition: transform .3s ease-out, opacity .3s
}

.navbar-nav .nav-link span:before, .navbar-nav .nav-link span:after {
	-webkit-transition: -webkit-transform .3s ease-out .15s, opacity 0s .05s;
	transition: transform .3s ease-out .15s, opacity 0s .05s
}

.navbar-nav .nav-link:hover {
	overflow: visible
}

.navbar-nav .nav-link:hover:before, .navbar-nav .nav-link:hover span:before {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	opacity: 1
}

.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link:hover span:after {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
	opacity: 1
}

.navbar-nav .nav-link:before, .navbar-nav .nav-link span:before {
	border-right: .15em solid rgba(255, 255, 255, 0.4);
	border-top: .15em solid rgba(255, 255, 255, 0.4);
}

.navbar-nav .nav-link:after, .navbar-nav .nav-link span:after {
	border-left: .15em solid rgba(255, 255, 255, 0.4);
	border-bottom: .15em solid rgba(255, 255, 255, 0.4);
}


.scrolled .navbar-nav .nav-link:before, .scrolled .navbar-nav .nav-link span:before {
	border-right: .15em solid var(--shadow);
	border-top: .15em solid var(--shadow);
}

.scrolled .navbar-nav .nav-link:after, .scrolled .navbar-nav .nav-link span:after {
	border-left: .15em solid var(--shadow);
	border-bottom: .15em solid var(--shadow);
}


.navbar-nav  .nav-link:hover, .navbar-nav  .nav-link:focus {
	outline: none;
    color: var(--blue);
}
.navbar-nav .nav-item {

	padding: 10px!important;
}
.navbar-nav .nav-link {
	color: white;
    font-size: 18px;
    padding: 10px 15px!important;
	/**/
	position: relative;
	display: block;
}

.navbar-toggler, .navbar-toggler:focus , .navbar-toggler:focus-visible {
    border: none;
    box-shadow: none;
}
.navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background: url('/assets/website/img/menu.svg');
    background-size: contain;
}

button.navbar-toggler:hover, button.navbar-toggler:focus {
    filter: brightness(0);
    background:transparent;
    scale: 1.05;
    transition: all 0.3s ease-out;
}

@media (max-width:991px) {
    .nav-link {
        width: fit-content;
    }

    /* .navbar-collapse {  } */
}

.btn-close {
    background: url('/assets/website/img/close.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    display: flex;
    background-position: center;
}
.btn-close:hover {
    background: url('/assets/website/img/close.svg');
    background-size: 20px;
    background-repeat: no-repeat;
    display: flex;
    background-position: center;
    opacity: 0.8;
}

/* legal */
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    background-color: #273293;
    border-color: #273293;
}