/* Navbr */
.navbar {
    margin: 0px;
    /* Todo */
    /* background-color: transparent!important; */

}

.nav-link {
    color: black;
}

.navbar-brand {

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    margin-top: 1%;
}

.navbar {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar.trans {
    background: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

    @media(max-width:991px) {
        .nav-item{
            font-size: 3rem;
        }
        .navbar-nav{
        position: absolute; 
        top: 50%; left: 50%; 
        -ms-transform: translate(-50%, -50%); 
        transform: translate(-50%, -50%);
    }
    .hero-links{
        position: absolute;bottom: 5%;
    }
}

.navbar-nav .nav-link.active {
    color: #33AAAC;
}

.nav-link:hover {
    color: #33AAAC;
}

.nav-link:focus {
    color: #33AAAC;
}

/* End OF Navbar */

li {

    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 20px;

    margin-right: 20px;
    color: #000000;
}

/* Cards*/
.blog-card {
    flex-shrink: 1;
    /* background-color: #E1FDFE; */
    border-radius: 20px;
    padding: 20px;
    margin: 2%;

}

.card-images-holder {
    width: 100%;
    text-align: center;
    padding: 1%;

}

.card-images {
    width: 90%;
    width: inherit;
    border-radius: 35px;
}

.blog-card-heading {

    margin-top: 10px;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.blog-card-date {
    margin-top: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
}

.blog-card-description {
    margin-top: 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 21px;
}

.blog-card-bottom {
    margin-top: 10px;
    display: inline-block;
}

@media (max-width:1200px) and (min-width:992px) {
    .blog-card {
        margin: unset;
    }
}

/* End OF Cards*/
@media(min-width:1200px) {
    .blog-card {
        max-width: 29%;
    }

    .blog-section {
        height: 100vh;
    }

    .blog-section-heading {
        margin-top: 10%;
    }

}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top-container {
    position: fixed;
    visibility: visible;
    opacity: 1;
    right: 5px;
    top: 60%;
}

.back-to-top {
    /* margin: 5px; */
    /* position: fixed; */
    visibility: visible;
    opacity: 1;
    right: 5px;
    /* bottom: 15px; */
    z-index: 996;
    background-color: white;
    border: 0.5px solid black;
    /* Todo for mobile view
    width: 100px;
   */
    border-radius: 50px;
    transition: all 0.4s;
    /* box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.30); */
}

.back-to-top i {
    font-size: 28px;
    color: black;
    line-height: 0;
}

.back-to-top:hover {
    background: black;
    color: #fff;
}

.back-to-top i:hover {
    color: white;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(../images/menu-dots.svg);
    /* background-image: var(--bs-navbar-toggler-icon-bg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler {
    border: unset;
}

.navbar-toggler:focus {
    border: unset;
    box-shadow: unset;
}

.form-control {
    border: none;
    background: none;
    border-bottom: 2px solid black;
    transition: border-color .4s ease-out;
    border-radius: 0;
}

.form-control:active,
.form-control:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
    border-color: black;
}

.form-control.valid {
    border-color: green;
}

.form-control.invalid {
    border-color: red;
}

.form-control+small {
    color: red;
    opacity: 0;
    height: 0;
    transition: opacity .4s ease-out;
}

.form-control.invalid+small {
    opacity: 1;
    height: auto;
    margin-bottom: 20px;
    transition: opacity .4s ease-out;
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl{

    width: 100%!important;
}