/* global start */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,200..900&display=swap');

:root {
    --color-primary: #d82a2c;
    /* --color-content: #6b7b84; */
    --font-IBM-Plex: "IBM Plex Serif", serif;
    --font-literata: "Literata", serif;
}

body {
    font-family: var(--font-literata);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-IBM-Plex);
}

p {
    color: var(--color-content);
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: var(--color-primary);
}

.color-primary {
    color: var(--color-primary);
}

.color-content {
    color: var(--color-content);
}

.background-primary {
    background-color: var(--color-primary);
}

.a-hover-underline:hover {
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1264px;
    }
}

@media only screen and (min-width: 768.1px) and (max-width: 992px) {
    .container {
        max-width: 950px;
    }
}

/* @media only screen and (max-width: 768px){ */
/* @media only screen and (min-width: 768.1px) and (max-width: 992px){ */
/* @media only screen and (min-width: 350px) and (max-width: 400px) { */

/* global end */

/* margin padding start */

.border-bottom-last:last-child {
    border-bottom: 0 !important;
}

.padding-first-last:first-child {
    padding-top: 0 !important;
}

.padding-first-last:last-child {
    padding-bottom: 0 !important;
}

.border-end-last:last-child {
    border-right: 0 !important;
}

@media only screen and (max-width: 768px) {
    .border-end {
        border-right: 0 !important;
    }
}

/* margin padding end */

/* header start */

.navbar-brand img{
	width: 220px;
}

.main-menu .nav-item .nav-link{
    color: #fff;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
}

.side-menu .nav-item .nav-link{
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .offcanvas.offcanvas-end {
        width: 350px;
    }
    .offcanvas.offcanvas-start {
        width: 350px;
    }
}

@media only screen and (min-width: 350px) and (max-width: 400px) {
    .offcanvas.offcanvas-end {
        width: 310px;
    }
    .offcanvas.offcanvas-start {
        width: 310px;
    }
	.navbar-brand img{
		width: 200px;
	}
}

/* header end */

/* footer start */
.footer-ul {
    list-style: none;
    padding-left: 0;
}

.footer-ul li {
    margin-bottom: 5px;
}

.footer-ul li a {
    color: rgba(108, 117, 125);
}

.footer-ul li a:hover {
    color: var(--color-primary);
}

/* footer end */

/* section start */
.card-main img {
    filter: brightness(0.7);
}

.card-main .card-img-overlay {
    top: unset;
}

@media only screen and (max-width: 768px) {
    .card-main .card-img-overlay h2 {
        font-size: 1.1rem;
    }
}

/* section end */