::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #fdd21230;
}
::-webkit-scrollbar-thumb {
	background: #e20714;
}
::-webkit-scrollbar-thumb:hover {
	background: #555;
}
@font-face {
	font-family: ob;
	src: url("font/Outfit-Bold.ttf") format("truetype");
}
@font-face {
	font-family: or;
	src: url("font/Outfit-Regular.ttf") format("truetype");
}
@font-face {
	font-family: osb;
	src: url("font/Outfit-SemiBold.ttf") format("truetype");
}
@font-face {
	font-family: om;
	src: url("font/Outfit-Medium.ttf") format("truetype");
}
@font-face {
	font-family: ol;
	src: url("font/Outfit-Light.ttf") format("truetype");
}
html,
body {
	overflow-x: hidden;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
}

header {
	background-image: url(blog2.jpg);
	background-size: 100%;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center;
	height: 49vw;
}

.tex h1{
    margin-top: 22%;
	display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
	color: white;
	font-size: 5vw;
	font-weight: 700;
	font-family: ob;
}
#brandlogo{
	width: auto;
	height: 50px;
}
/*nav*/
.navbar{
	min-height: auto;
	width: 100%;
	z-index: 5;
	background: white;
}
.navbar-nav{
	margin-left: auto;
}
.dropdown-menu{
	background: white;
}
.dropdown-menu.slide-down {
	animation: slideDown .5s ease forwards;
	border: 4px solid #e20714;
	border-radius: 15px;
}
#atag,#servicesDropdown{
	font-family: ob;
	font-size: 20px;
	color: black;
	transition: .4s;
	border: none;
	border-radius: 12px;
}
#atag:hover,#servicesDropdown:hover{
	background: linear-gradient(to bottom, #322f3f, #e20714);
	color: white;
	transform: scale(1.1);
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}


@keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


.connn,.connn2 {
	z-index: 20;
	display: grid;
	justify-content: right;
	align-items: center;
	row-gap: 20px;
}
.connn{
	top: 92%;
	right: 2.3%;
	position: fixed;
}
.connn2{
	top: 75%;
	right: 2.3%;
	position: absolute;
}

.connn img,.connn2 img {
	height: 35px;
	width: 35px;
	filter: brightness(100%);
}

.connn img:hover,.connn2 img:hover {
	filter: brightness(150%);
}


/* CSS for the blog section */
.blog-post {
    background: white;
    border: 1px solid #e20714;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    transition: .5s;
}

.blog-post:hover {
    background-color: #e2071616;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    font-family: ob;
}

.blog-author {
    font-size: 14px;
    color: #888;
    font-family: ol;

}

.blog-date {
    font-size: 14px;
    color: #888;
    font-family: ol;
}

.blog-content {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    font-family: or;
}
/* CSS for pagination */
.pagination {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pageno{
    color: black;
    border: 1px solid #e20714;
    font-size: 16px;
    font-family: ol;
    transition: background-color 0.3s ease;  
    margin: 0 5px;
    cursor: pointer;
    text-decoration: none;
    padding: 2px 12px;
    border-radius: 5px;
}

.page-link {
    display: inline-block;          
}
#pageno:hover{
    color: #e20714;
    background-color: #fdce06;
}

footer {
    padding: 2% 5% 2% 5%;
    background-image: url(bgfoot.png);
    background-attachment: scroll;
    background-position: center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
	color: white;
}

#info img {
    height: auto;
    width: 200px;
}

#info p {
    padding-left: 4%;
    line-height: 2;
    font-family: om;
}

#links{
	display: grid;
	align-items: center;
	justify-content: center;
	
}
#links2{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#links a {
    text-decoration: none;
    color: white;
    margin: 0 1% 0 1%;
    font-family: om;
}

#links a:hover {
    text-decoration: underline;
}

#last {
    margin: 5% 0 0 0;
}

#last p {
    text-align: center;
    font-family: osb;
}

#last a {
    text-decoration: none;
    color: white;
}

#last a:hover {
    text-decoration: underline;
}
@media screen and (max-width: 992px) {
	#atag,#servicesDropdown{
		padding: 2%;
	}
	footer {
        color: black;
        background-image: unset;
    }
    #links a {
        color: black;
    }
    #last a {
        color: black;
    }
}