*{
    font-family: 'Montserrat', sans-serif;
}

.my-button {
    border-radius: 10px;
    padding: 7px 15px;
    font-size: .9em;
}

.btn-outline-my-primary {
    border-color: #024687;
    color: #024687;
}

.btn-outline-my-primary:hover {
    background-color: #024687;
    color: white;
}


.navbar {
    font-size: .95em;
}

.navbar .navbar-brand {
    font-size: 1.1em;
}

.navbar-collapse a {
    margin-left: 1.5em;
    font-weight: 500;
    padding-bottom: 1px;
}

.navbar-collapse a.active {
    color: #024687 !important;
    font-weight: 600;
}

.navbar-collapse a.active::after {
    display: block;
    content: '';
    width: 25px;
    margin: 2px auto;
    border: 1px solid #024687;
}

.navbar a.btn {
    background-color: lightgray;
    font-size: .95em;
    padding: 7px 15px;
}

.navbar .navbar-toggler .btn-order {
    font-size: .7em;
}

.navbar-toggler:focus {
    box-shadow: inset 0 0 0;
}

.hero {
    margin-top: 7em;
}

.hero h1 {
    font-size: 2.8em;
}

.homepage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#whatsapp_number {
    width: 75%;
}

.select2-selection {
    box-shadow: none !important;
    border: 1px solid #b4b3b3 !important;
}

.select2-selection:focus {
    box-shadow: none !important;
    border-color: #024687 !important;
}

.inside-airport-container .nav-item a {
  color: black;
  border-radius: 7px;
}

.inside-airport-container .nav-item a.active {
  color: #024687;
  font-weight: 500;
  border-radius: 0;
  border-bottom: 1px solid #024687;
  /* background-color: #024687; */
}

.homepage h1 {
    font-size: 3rem;
}

.footer {
    font-size: .95em;
}

.footer h6 {
    font-weight: 700;
}

.footer li {
    list-style-type: none;
    margin-bottom: 6px;
}

.footer-link {
    text-decoration: none;
    color: black;
    transition: .3s;
}

.footer-link:hover {
    color: #024687;
}

.additional-form {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    margin-left: 25px;
}

.additional-form.open {
    animation: slide-down 0.3s linear both;
}

.additional-form.close {
    animation: slide-up 0.3s linear both;
}

.day-form {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    margin-left: 25px;
}

.day-form.open {
    animation: slide-down-day 0.3s linear both;
}

.day-form.close {
    animation: slide-up-day 0.3s linear both;
}

.additional-transportation-form {
    padding: 18px 28px;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #0247873d;
}

@keyframes slide-down-day {
    0% {
        visibility: hidden;
        height: 0;
    }
        
    75% {
        visibility: visible;
        height: 70px;
    }

    100% {
        visibility: visible;
        height: auto;
    }
}

@keyframes slide-up-day {
    from {
      visibility: visible;
      height: 70px;
    }
  
    to {
      visibility: hidden;
      height: 0;
    }
}

@keyframes slide-down {
    0% {
        visibility: hidden;
        height: 0;
    }
        
    75% {
        visibility: visible;
        height: 50px;
    }

    100% {
        visibility: visible;
        height: auto;
    }
}

@keyframes slide-up {
    from {
      visibility: visible;
      height: 50px;
    }
  
    to {
      visibility: hidden;
      height: 0;
    }
}

.remove-multicity {
    width: 15px;
    height: 15px;
    position: absolute;
    right: -20px;
    top: 9px;
    cursor: pointer;
    background-color: red;
    padding: 1px 4px 17px 3px;
    border-radius: 50% !important;
    color: white;
    font-size: .7em;
}

input, select {
    /* height: 38px; */
    font-size: .9rem !important;
    /* background-color: rgb(235, 235, 235) !important; */
}

::placeholder {
    color: rgb(180, 180, 180) !important;
    transition: all 0.25s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
    transform: translate(5px);
}

input:focus, select:focus, textarea:focus {
    box-shadow: none !important;
    border-color: #024687 !important;
}

.form-label {
    font-weight: 500;
}

.input-group-text,
.form-control,
.form-check-input,
.form-select {
    border: 1px solid #b4b3b3;
}

option[disabled] {
    background-color: #b9b9b9;
}

/* input:focus, select:focus {
    box-shadow: 0 0 10px #30C67C !important;
    box-shadow: none !important;
} */

input[name="whatsapp_number"]::-webkit-outer-spin-button,
input[name="whatsapp_number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[name="whatsapp_number"][type=number] {
    -moz-appearance: textfield; /* Firefox */
}

input[type=checkbox]:checked,
input[type=radio]:checked {
    background-color: #024687 !important;
    border: 0;
}

textarea::placeholder {
    font-weight: 500;
    color: #b9b9b9 !important;
    transition: .3s;
}

input::placeholder {
    font-size: .9rem;
    font-weight: 500;
    color: #b9b9b9 !important;
    transition: .3s;
}

.my-button-highlight {
    border: 0;
    border-radius: 10;
    background: linear-gradient(90deg, #024687 0%, #2aa869 100%);
    color: white;
    font-weight: 500;
}

.my-button-highlight:hover {
    background: linear-gradient(90deg, #024687 0%, #2aa869 100%);
    color: white;
}

.btn.my-button-highlight:active {
    background: linear-gradient(90deg, #024687 0%, #2aa869 100%);
    color: white;
}

.btn-my-primary {
    border-radius: 10;
    background-color: #024687;
    border: 2px solid #024687;
    color: white;
    font-weight: 500;
}

.btn-my-primary[disabled] {
    border-radius: 10;
    background-color: #024687;
    border: 2px solid #024687;
    color: white;
    font-weight: 500;
}

.btn-my-primary:hover {
    background-color: #024687;
    border: 2px solid #024687;
    color: white;
    font-weight: 500;
}

.btn.btn-my-primary:active {
    background-color: #024687;
    border: 2px solid #024687;
    color: white;
}

.btn-outline-my-primary {
    border-radius: 0;
    border: 2px solid #024687;
    color: #024687;
    /* font-weight: 600; */
}

.btn-outline-my-primary:hover {
    background-color: #024687;
    color: white;
}

.btn.btn-outline-my-primary:active {
    background-color: #024687;
    border: 2px solid #024687;
    color: white;
}

.btn-outline-my-light {
    border-radius: 0;
    border: 2px solid white;
    color: white;
}

.btn-outline-my-light:hover {
    background-color: white;
    color: #024687;
}

.btn.btn-outline-my-light:active {
    border: 2px solid white;
    background-color: white;
    color: #024687;
}

.bg-my-primary {
    background-color: #024687;
}

.move-link {
    color: #024687;
    text-decoration: none;
    transition: .3s;
}

.secondary-link {
    color: grey;
    transition: .3s;
    text-decoration: none;
}

.secondary-link:hover {
    color: #024687;
}

.move-link:hover {
    margin-left: 4px;
    /* color: black; */
}

.text-my-primary {
    color: #024687;
}

.text-my-primary-highlight {
    color: white;
    background-color: #024687;
}

.fw-ebold {
    font-weight: 800;
}

.sub-heading::after {
    content: '';
    display: block;
    width: 60px;
    border: 1px solid #024687;
    margin-top: 5px;
}

.sub-heading-center::after {
    content: '';
    display: block;
    width: 60px;
    border: 1px solid #024687;
    /* margin-top: 5px; */
    margin: 5px auto;
}


/* ========== */

.navbar-brand {
    font-size: .95em !important;
}

.navbar-nav .nav-link {
    /* font-weight: 400; */
    font-size: .95rem;
    /* transition: .3s; */
}

.billboard-left,
.billboard-right {
    min-height: 60vh;
}

.billboard-left {
    position: relative;
    background-size: 100% auto;
    /* background-size: contain; */
    background-position: center;
    background-repeat: no-repeat;
}

.billboard-left::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.billboard-right {
    display: flex;
    align-items: center;
}

.service-card {
    position: relative;
    border-radius: 10px;
    padding: 20px 30px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
}

.service-header h6 {
    font-size: .9em;
}

.service-content {
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-content h3 {
    margin-bottom: 5px;
}

.service-content p {
    font-size: .9rem;
    line-height: 20px;
}

.service-content a {
    font-size: .9rem;
    font-weight: 500;
}

/* .service-card .service-card-content {
    z-index: 99 !important;
} */

/* .service-card::after {
    border-radius: 10px;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
} */

@media (max-width: 991px) {

    .navbar-collapse a {
        margin-left: 0;
    }

    .navbar-collapse a.active::after {
        display: none;
        /* margin: 2px 0 !important; */
    }
}

@media (max-width: 577px) {
    html {
        font-size: 90%;
    }

    .container {
        padding: 0 2em;
    }

    .remove-multicity {
        top: 5px;
        font-size: .9em;
    }

    .text-brand {
        display: none;
    }

    .homepage {
        width: 100%;
    }

    .homepage h1 {
        font-size: 2.5rem;
    }

    #whatsapp_number {
        width: 68%;
    }
}