@font-face {
    font-family: 'Popins';
    src: url('../assets/fonts/popins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* color varialbes */
    --primary-white: #FFFAE6;
    --primary-orange: #FF9F66;
    --primary-orange-dark: #FF5F00;
    --primary-navy-blue: #002379;
    --light-green-color: #d3ffea;
    --dark-green-color: #1e3932;
    --white: #ffffff;
    --light-1: #efefef;
}

::selection {
    background-color: var(--primary-orange);
    color: var(--dark-green-color);
}

/* for text in body */
* {
    font-family: 'Popins', sans-serif;

}

footer .nav-link,footer p,h6,fs-5,a{
color: var(--primary-white);
}

/* header */
.nav-item:hover .dropdown-menu {
    display: block;
    transition: all 0.5s ease-in-out;
}

/* header icons */
.icons {
    color: var(--primary-navy-blue);
    border-radius: 40%;
}

.icons:hover {
    background-color: var(--light-green-color);
}

p {
    font-size: 14px;
}

.nav-link,
.dropdown-item {
    font-size: 13px;
}

.nav-item {}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

/*===== BLOG STYLE ONE =====*/


.blog-style-one {
    transition: all 0.15s ease-in-out;
    margin-top: 50px;
}
.blog-style-one:hover{
        box-shadow: var(--bs-box-shadow) !important;
}

.blog-style-one .blog-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.blog-style-one .blog-image .category {
    background-color: var(--primary-navy-blue);
    color: var(--white);
    font-size: 13px;
    padding: 7px 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 30px;
}

.blog-style-one .blog-image img {
    width: 100%;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.blog-style-one .blog-image:hover img {
    -webkit-transform: rotate(1deg) scale(1.1);
    -moz-transform: rotate(1deg) scale(1.1);
    -ms-transform: rotate(1deg) scale(1.1);
    -o-transform: rotate(1deg) scale(1.1);
    transform: rotate(1deg) scale(1.1);
}

.blog-style-one .blog-content {
    padding: 30px;
    border: 1px solid var(--light-1);
    border-radius: 0 0 8px 8px;
    border-top: none;
}

label{
    font-size: 14px!important;
}

table td{
    font-size: 14px!important;
    
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-style-one .blog-content {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .blog-style-one .blog-content {
        padding: 20px;
    }
}

.blog-style-one .blog-content .blog-title {
    display: block;
    margin-bottom: 10px;
}

.blog-style-one .blog-content .blog-title a {
    font-weight: 600;
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    line-height: 30px;
}

@media (max-width: 767px) {
    .blog-style-one .blog-content .blog-title a {
        line-height: 24px;
    }
}

.blog-style-one .blog-content .blog-title a:hover {
    color: var(--primary-navy-blue);
}

.blog-style-one .blog-content span {
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-3);
    margin-top: 8px;
    margin-right: 12px;
    display: inline-block;
}

.blog-style-one .blog-content .text {
    color: var(--dark-3);
    margin-top: 16px;
}

.blog-style-one .blog-content .more {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-navy-blue);
    margin-top: 30px;
    display: inline-block;
}

.blog-style-one .blog-content .more:hover {
    color: var(--primary-dark);
}

/*# sourceMappingURL=blog-01.css.map */

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
  }
  