
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}
body {
-webkit-user-select: none;  /* Chrome all / Safari all */
-moz-user-select: none;     /* Firefox all */
-ms-user-select: none;      /* IE 10+ */
-o-user-select: none;
user-select: none;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

    /* Basic styling for the button */
    
.all-note{
    margin-top: 20px;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
}
.all-note ul{
    margin-left: 0px !important;
    padding: 20px !important;
}
.all-note ul li a{
    color: #001f74;
font-weight: bold;
}
.all-note ul li a:hover{
color:#06BBCC;
}

.all-note ul li{
padding: 20px 0px;
    text-align: center;
    border-top: solid 3px rgba(0, 0, 0, 0.521);
    list-style: none;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}



/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.new-course{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-right: 20px;
}
.notes_content{
    width: 90%;
    margin-top: 30px !important;
    padding: 20px;
    margin: auto;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.topic_name{
    margin-top: 20px;
    text-align: center;
}
.nothing_found{

    display: grid;
    justify-items: center;
    align-items: center;
justify-content: center;
align-content: center;
margin-top: 40px;
}
.nothing_found_bg{
    height: 100%;
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
    justify-content: center;
}
.nothing_found_bg img{
    width: 60%;
}
#highlighted{
    background-color:yellow;
}
.search-text{
    display: grid;
justify-items: center;
align-items: center;
justify-content: center;
}
.search-text p{
    position: absolute;
bottom:40px;
}
.search-content {
    padding: 50px 0px;
    top: -50px;
    display: flex;
    left: auto;
    margin: auto;
    align-items: center;
    justify-content: center;
}
#search-icon{
    background-color: #06BBCC;
color: white;
padding: 10px;
cursor: pointer;
border-radius: 25px;
}
#cut-button{
    position: absolute;
right: 5px;
top: 5px;
}
.search-container {
display: none;
position: fixed;
top: 50%;
left: 50%;
height: 45%;
width: 40%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
}

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px); /* Adjust the blur amount as needed */
z-index: 999;
display: none;
}
@media only screen and (min-width: 1024px) {
.notes_data img {
width: 40% !important;
}

}
@media only screen and (max-width: 767px) {
.notes_data img {
width: 100% !important;
}
.search-container{
width: 90%;
height: auto;
}
.search-content{
left:auto;
}
.search-text p{
display: none;
}
}
#web-logo-notes{
    width:250px;
            }
            #laptop-search button i{
                padding: 0px;
            }
            #laptop-search{
            display: grid;
        justify-items: end;
        align-items: center;
        justify-content: center;
        }
        #laptop-search button{
            position: absolute;
        margin-left: -38px;
        margin-top: 1px;
        border-radius: 50%;
            }
            .search-input {
                padding-left: 20px !important;
        padding: 7px;
        border: 1px solid #ccc;
        border-radius: 50px;
        font-size: 16px;
        width: 350px;
        outline: none;
        
    }
    #mobile-search{
        display: none ;
    }
    @media only screen and (min-width: 766px) {
    #search-icon{
        display: none;
    }
    nav img{
        width: 250px;
    }
    
    }
    @media only screen and (max-width: 1120px) {
        .search-input {
        width: 250px;
        }
        nav img{
            width: 230px;
        }
    }
    @media only screen and (max-width: 767px) {
        #web-logo-notes{
        width:200px;
        }
        #laptop-search{
                display: none;
        }
        .search-input {
        padding: 9px;
    
        border-radius: 10px 0px 0px 10px;
        }
        nav img{
    width: 200px;
}
.blog-notes h4, p {
    font-size: medium;
}
    }
    .search-container {
        display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    }

 

    .search-button {
        padding: 10px 20px;
        background: linear-gradient(135deg, #7e5bf6, #df5bd3);
        color: white;
        border: none;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    /* Change button color on hover */
    .search-button:hover {
        background-color: #01a1af;
    }
    .blog-notes {
    display: grid;
    align-content: center;
    justify-content: start;
    justify-items: start;
}

.blog-notes h4 {
    font-size: large;
    font-weight: 200;
}

.blog-notes p {
    font-weight: bolder;
    font-size: larger;
    background-color: yellow;
    padding: 5px 10px 0px 2px;
}

article.blog-SEO {
    margin-top:50px;
    padding: 30px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

article.blog-SEO h2 {
    font-size: large;
}

article.blog-SEO h3 {
    font-size: medium;
}
article.blog-SEO img {
    width: 100%;
    margin-bottom: 20px;
}
.my-title h3 {
    font-size: large;
}