/* Global css */
:root {
    --primary-color: #00008B;
    --background-light: #89c4f4;
}
::selection{
    color: var(--primary-color);
    background-color: var(--background-light);
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #0000c8;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    text-decoration: none;
}

body {
    font-family: 'EB Garamond', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}
p{
    color: #666;
    font-family: sans-serif;
}
.basic-look {
    font-family: sans-serif;
}

.bg-color {
    background-color: var(--primary-color);
}
.btn-color{
    background-color: var(--primary-color);
    color: #fff;

}
.btn-color:hover{
    background-color: #89c4f4;
    color: #00008B;
}
/* Spinner CSS */
.spinner-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #d3d3d3, #fff);
}

.spinner {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top: 2px solid #000;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Spinner end */

/* Content ===================== */
#content {
    transition: display 0.3s ease;
    display: none;
}

/* Content end */

/* Top navbar =========================================== */
.nav-top {
    background-color: #fff;
}

.nav-top a {
    text-decoration: none;
    color: var(--primary-color);
}

.hover-line {
    position: relative;
}

.hover-line::after {
    content: '';
    background-color: var(--primary-color);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: all 0.5s ease;
}

.nav-top a:hover .hover-line::after {
    width: 100%;
}

@media (max-width:600px) {
    .nav-top{
        display: none;
    }
}
/* Top navbar end */

/* Main navbar */
.navbar-nav .nav-item {
    margin-left: 35px;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 0;
    height: 2px;
    left: 8px;
    bottom: 7px;
    transition: width 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 80%;
}


.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  .fade-in-section.is-visible {
    opacity: 1;
    transform: none;
  }
  .line-division{
    width: 70%;
    margin: auto;
    height: 1px;
    background-color: #9999992e;
  }