@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
html {
    scroll-behavior: smooth;
  }
:root {
    /* 1225ab; */
    --primary-bg: #212c65; 
    --secondary-bg: white;
    --primary-text: white;
    --secondary-text: black;
    --gray-bg-light: #e9ecef;
    --gray-bg-dark: #dfe0e1;
}

body {
    font-family: 'Lato', sans-serif;
}
.bg-white{
    background-color: #ffffff;
}
.primary-color{
    color: var(--primary-bg);
}
.primary-theme {
    background-color: var(--primary-bg) !important;
    color: var(--primary-text) !important;
}

.secondary-theme {
    background-color: var(--secondary-bg) !important;
    color: var(--secondary-text) !important;
}


.primary-theme .navbar-toggler {
    border-color: var(--primary-text) !important;
    color: var(--primary-text) !important;
}
.secondary-theme .navbar-toggler {
    border-color: var(--primary-bg) !important;
    color: var(--secondary-text) !important;
}

.secondary-theme .nav-link {
    color: var(--primary-bg) !important;
    font-weight: 700;
    font-size: large;
}

.secondary-theme .nav-link:hover {
    font-weight: 900;
}

.round-icon i{
    padding: 10px;
    width: 41.2px;
    height: 41.2px;
    font-size: large;
    text-align: center;
    text-decoration: none;
    border: 2px solid;
    color: white;
    border-color: white;
    background-color: var(--primary-bg);
    border-radius: 50%;
}

.inverse-icon-color i{
    color: var(--primary-bg) !important;
    border-color: var(--primary-bg) !important;
    background-color: white !important;
}

.round-icon i:hover {
    opacity: 0.7;
    text-decoration: none;
    color: var(--primary-bg);
    background-color: white;
    border: 2px solid;
    border-color: var(--primary-bg);
    transition: all 1s ease;
}

.primary-theme a.round-icon{
    text-decoration: none;
    color: var(--primary-text) !important;
}
.secondary-theme a.round-icon{
    text-decoration: none;
    color: var(--primary-bg) !important;
}

/* Paragraph */
p {
    font-size: 1.1rem;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.5rem !important;
}

li {
    font-size: 1.1rem;
}

pre {
    font-size: 1.1rem;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.5rem !important;
}
td{
    font-weight: 600;
}
/* Headers */
.h1,
h1 {
    font-size: 1.8rem !important;
    font-weight: bold;
}

.h2,
h2 {
    font-size: 1.6rem !important;
    font-weight: bold;
}

.h3,
h3 {
    font-size: 1.5rem !important;
    font-weight: bold;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    padding-left: 0px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0.25rem;
}


.navbar-brand a{
    text-decoration: none;
}

.navbar-brand .site-name{
    color:var(--primary-bg);
    font-weight: 900;
    text-align: center;
    font-size: 21px;
}

@media screen and (max-width: 768px) {
    .navbar-brand img{
        width: 45px;
        height: 45px;
    }
    .navbar-brand .site-name{
        font-size: 17px;
    }
}


.cover-img-bg-div{
    height: 300px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--primary-bg);
}
.cover-img-bg-div .title{
    position: relative;
    top: 40%;
    left: 10%;
    font-weight: bold;
    max-width: 50%;
    font-size: 2.5rem !important;
}
.fixbutts{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
}
@media screen and (max-width: 768px) {
    .cover-img-bg-div{
        height: 150px;
    }
    .cover-img-bg-div .title{
        top: 20%;
        left: 10%;
        font-size: 1.4rem !important;
    }
    .fixbutts{
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100% !important;
    }
}
.round-borders-ico{
    border: 0.5rem solid var(--primary-bg);
    border-radius: 1rem;
}
.rounded-1{
    border-radius: 1rem;
}

.card-effect {
    padding: .75rem 1.25rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}