.nosel {
    user-select:none;
}

/*Navbar all transition time, including transparent to color change*/
.navbar {
    transition: all 0.5s;
}

/*Change navbar color once scrolled*/
.navbar-scrolled {
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/*Navbar brand logo*/
.colorbrand {
    color: black !important;
}

/*Navbar border*/
.bordnav > li > a {
    border-color: transparent;
    transition: border-bottom 0.1s ease;
}

.bordnav > li > a:hover{
    border-bottom: 2px solid rgb(129, 129, 236);
}

.bordnav > li > a.active{
    border-bottom: 2px solid  rgb(13, 110, 253); 
}

/*Btn mobile homepage text color*/
a.text-btn-color-mobile-homepage:hover, a.text-btn-color-mobile-homepage:focus {
    color: var(--bs-primary) !important;
}

/*Svg waves transitions*/
.spacer {
    aspect-ratio:908/74;
    width:100%;
    background-repeat: no-repeat;
    background-position:center;
    background-size:cover;
    margin-top: -6px;
    margin-bottom: -6px;
}

.layer1 {
    background-image: url('./assets/layered-waves-1.svg');
}

.layer2 {
    background-image: url('./assets/layered-waves-2.svg');
}

.layer3 {
    background-image: url('./assets/layered-waves-3.svg');
}

.layer4 {
    background-image: url('./assets/layered-waves-4.svg');
}

.layer5 {
    background-image: url('./assets/layered-waves-5.svg');
}

.layer6 {
    background-image: url('./assets/layered-waves-6.svg');
}


/*Copyright footer*/
.footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 4px;
    color: white;
}

/*Text shadow*/
.text-details *:not(a):not(span) {
    text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

/*Text justified*/
.justified-text {
    text-align: justify;
}

.center-all {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.pricing-box{
    border-top: solid #426ec1;
    border-left: none;
}

.img-water {
    width: 38%;
}

.img-cloud {
    width: 24%;
}

@media (max-width: 991px) {
    .img-water {
        width: 65%;
    }
    .img-cloud {
        width: 54%;
    }
    .mainfooter {
        background-attachment: scroll !important;
    }
    .pricing-box{
        border-top: none;
        border-left: solid thick #426ec1;
    }
    /*Navbar brand logo*/
    .colorbrand {
        color: #271E79 !important;
    }
    /*Navbar border*/
    .bordnav a {
        display: inline-block;
        padding-left: 10px;
    }
    .bordnav > li > a {
        border-color: transparent;
    }
    .bordnav > li > a:hover{
        border-color:transparent;
        border-bottom: none;
    }
    .bordnav > li > a.active{
        border-bottom:none;
        border-left: solid 2px rgb(13, 110, 253);
    }
    .bordnav li:first-child a {
        margin-bottom: 5px;
    }
    .bordnav li:nth-child(3) a {
        margin-top: 5px;
    }
    /*Remove premanent Menu button border*/
    .navbar .navbar-toggler {
        border: 0 solid white;
    }
    /*Remove Menu button border on focus*/
    .navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 0;
    }
    /*Hamburger animation https://forum.bootstrapstudio.io/t/change-hamburger-icon/8990/2*/
    /*Top bar*/
    .navbar-toggler-icon {
        background-image: none!important;
        background-color: #271E79;
        height: 3px;
        width: 25px;
        border-radius: 1.5px;
        margin: 10px 0;
        position: relative;
        transition: all 0.35s ease-out;
        transform-origin: center;
      }
      /*Middle bar*/
      .navbar-toggler-icon::before {
        display: block;
        background-color: #271E79;
        height: 3px;
        border-radius: 1.5px;
        content: "";
        position: relative;
        top: -7px;
        transform-origin: center;
      }
      /*Bottom bar*/
      .navbar-toggler-icon::after {
        display: block;
        background-color: #271E79;
        height: 3px;
        border-radius: 1.5px;
        content: "";
        position: relative;
        top: 4px;
        transition: all 0.35s ease-out;
        transform-origin: center;
      }
      .navbar-dark .navbar-toggler-icon,
      .navbar-dark .navbar-toggler-icon::before,
      .navbar-dark .navbar-toggler-icon::after {
        background-color: var(--bs-gray-100);
      }
      .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
        transform: rotate(45deg);
      }
      .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
        opacity: 0;
      }
      .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
        transform: rotate(-90deg) translateX(7px);
      }
}

@media (min-width: 1316px) {
    .text-details {
        top:30%;
    }

}