body {
    background-image: url('../png/home/bg-blasting-grey.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

row {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.navbar-brand {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    margin-right:0px;
    justify-content: space-between;
    margin-left: 0px;
}

.bootins {
    position: relative;
    width: 100%;
    color: white;
    font-weight: bold;
    text-shadow: black 1px 1px 1px;
    background: rgb(36, 116, 186);
    border-width: 0px;
    padding: 10px;
    box-shadow: 1px 1px 3px black
}

.equipment-image{
    width:200px;
}
.equipment-image2 {
    width: 300px;
}

.form-template{
    width:98%;
    height:auto;
    background-color:white;
    border-radius:1rem;
}

#consultationForm{
    width:100%;
    height:auto;
    padding:30px;
}

#consultationForm2 {
    width: 100%;
    height: auto;
    padding: 30px;
}

.mid-section5 {
    width: 100%;
    padding: 25px;
    background-image: url(../png/footer-bkg.webp);
    background-size: cover;
    min-height: 200px;
}

.nav-item:hover{
    background-color:dimgrey;
}


.toast {
    display: block !important;
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    opacity: 0.95;
    animation: fadein 0.3s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 0.95;
        transform: translateX(0);
    }
}

@keyframes fadeout {
    from {
        opacity: 0.95;
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
