:root {
    --primary: #9d8d7a;
    --secondary: #34ad54;
    --light: #eef9ff;
    --dark: #091e3e;
}
@font-face {
  font-family: 'lato-regular';
  src: url(../../fonts/lato-regular-webfont.eot);
  src: url(../../fonts/lato-regular-webfont.eot?#iefix) format('embedded-opentype'),
       url(../../fonts/lato-regular.otf) format('otf'),
       url(../../fonts/lato-regular-webfont.ttf) format('truetype'),
       url(../../fonts/lato-regular-webfont.woff) format('woff'),
       url(../../fonts/lato-regular-webfont.woff2) format('woff2');
}

@font-face {
    font-family: 'Ivy Mode';
    src: url('../../fonts/IvyMode-Regular.eot');
    src:url('../../fonts/IvyMode-Regular.eot?#iefix') format('embedded-opentype'),
        url('../../fonts/IvyMode-Regular.woff2') format('woff2'),
        url('../../fonts/IvyMode-Regular.woff') format('woff'),
        url('../../fonts/IvyMode-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'lato-regular';
}
*{
     font-family: 'lato-regular';
}
.mlr0{
    margin-left: 0px;
    margin-right: 0px;
}
.pl0{
    padding-left: 0px!important;
}
.pr0{
    padding-right: 0px!important;
}
.mt10{
    margin-top: 10px;
}
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: 1.2s ease-in-out infinite sk-rotateplane;
    animation: 1.2s ease-in-out infinite sk-rotateplane;
}
@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}
@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0);
        -webkit-transform: perspective(120px) rotateX(0) rotateY(0);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}
#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility linear;
    visibility: visible;
    opacity: 1;
}
.fw-bold,
h1,
h2 {
    font-weight: 800 !important;
}
.fw-semi-bold,
h3,
h4 {
    font-weight: 700 !important;
}
.fw-medium,
h5,
h6 {
    font-weight: 600 !important;
}
.btn,
.navbar-dark .navbar-nav .nav-link {
    /* font-family: Nunito, sans-serif; */
    font-weight: 600;
    transition: 0.5s;
}
.btn-primary,
.btn-secondary {
    color: #fff;
    box-shadow: inset 0 0 0 50px transparent;
}
.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}
.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}
.btn-square {
    width: 36px;
    height: 36px;
}
.btn-sm-square {
    width: 30px;
    height: 30px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-lg-square,
.btn-sm-square,
.btn-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 10px 0;
    color: #091e3e !important;
    font-size: 18px;
    outline: 0;
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary);
}
.navbar-dark .navbar-brand h1 {
    color: #fff;
}
.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.sticky-top .navbar-brand img {
    width: 120px;
}
.bg-dark {
    background-color: #5e7495 !important;
}
.contact_box h4,
.contact_box h5,
.recent_posts .h5 {
    font-size: 18px;
}
.trend_cat img {
    height: 420px;
    object-fit: cover;
}
.blog-item {
    position: relative;
}
.content_overlay,
.trend_cat .blog-img:after {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
.content_overlay h4 {
    color: #fff;
    font-size: 25px;
}
.content_overlay {
    color: #fff;
}
.trend_cat .blog-img:after {
    content: "";
    background-color: #000;
    opacity: 0.4;
    height: 100%;
}
#pagination-container a {
    z-index: 3;
    color: #fff;
    background: #06a3da;
    border-color: #06a3da;
    padding: 8px 16px;
}
.light-theme .current {
    background: #c98c2f;
    color: #fff;
    border-color: #ccc;
    box-shadow:
        0 1px 0 rgb(255 255 255),
        0 0 2px rgb(0 0 0 / 30%) inset;
    cursor: default;
    padding: 8px 16px;
}
@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #fff;
    }
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }
    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}
@media (min-width: 992px) {
    .navbar-dark,
    .navbar-dark .navbar-nav .nav-link.active::before,
    .navbar-dark .navbar-nav .nav-link:hover::before {
        width: 100%;
        left: 0;
    }
    .navbar-dark {
        position: relative;
        top: 0px;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }
    .sticky-top.navbar-dark {
        position: fixed;
        background: #fff;
    }
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: 0.5s;
    }
    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}
.section-title::after,
.section-title::before {
    position: absolute;
    content: "";
    height: 5px;
    bottom: 0;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, 0.7);
    z-index: 1;
}
@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }
    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}
.carousel-control-next,
.carousel-control-prev {
    width: 10%;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
.section-title::before {
    width: 150px;
    left: 0;
    background: #9d8d7a;
    border-radius: 2px;
}
.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}
.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}
.section-title::after {
    width: 6px;
    background: #fff;
    -webkit-animation: 5s linear infinite section-title-run;
    animation: 5s linear infinite section-title-run;
}
.section-title.text-center::after {
    -webkit-animation: 5s linear infinite section-title-run-center;
    animation: 5s linear infinite section-title-run-center;
}
.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
    -webkit-animation: 5s linear infinite section-title-run-sm;
    animation: 5s linear infinite section-title-run-sm;
}
@-webkit-keyframes section-title-run {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 145px;
    }
}
@-webkit-keyframes section-title-run-center {
    0%,
    100% {
        left: 50%;
        margin-left: -75px;
    }
    50% {
        left: 50%;
        margin-left: 45px;
    }
}
@-webkit-keyframes section-title-run-sm {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 85px;
    }
}
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: 0.5s;
}
.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}
.service-item .service-icon i {
    transform: rotate(45deg);
}
.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}
.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #ddd;
    border-radius: 2px;
    transition: 0.5s;
}
.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}
.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}
.blog-item .blog-img img,
.link-animated a,
.team-item,
.team-item .team-img img,
.testimonial-carousel .owl-item .testimonial-item {
    transition: 0.5s;
}
.testimonial-carousel .owl-item.center .testimonial-item {
    background: #fff !important;
    box-shadow: 0 0 30px #ddd;
}
.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.team-social a.btn {
    position: relative;
    margin: 100px 3px 0;
    opacity: 0;
}
.team-item:hover {
    box-shadow: 0 0 30px #ddd;
}
.team-item:hover .team-social {
    background: rgba(9, 30, 62, 0.7);
}
.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s;
}
.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.05s;
}
.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.1s;
}
.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.15s;
}
.blog-item:hover .blog-img img,
.team-item:hover .team-img img {
    transform: scale(1.15);
}
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.bg-header {
    background:
        linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)) 0 0 / cover,
        url(../img/carousel-1.jpg) center center/cover no-repeat;
}
.link-animated a:hover {
    padding-left: 10px;
}
@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}



/*custom css start*/
.top_stripe_head {
    background: #9d8d7a;
    padding: 3px 0px;
}
.top_stripe_head ul {
    display: flex;
    margin-bottom: 0px;
    gap: 65px;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
}
.top_stripe_head ul li {
    font-size: 10px;
    color: #fff;
    position: relative;
    padding: 2px 3px;
    list-style: none;
    letter-spacing: 2px;
}
.top_stripe_head ul li:after {
    content: "";
    position: absolute;
    top: 9px;
    width: 50px;
    height: 2px;
    background: #b29f82;
    left: calc(100% - -6px);
}
.bg-light {
    background-color: #faf7f3 !important;
}
.btn-primary {
    background-color: #774e4f;
    border-color: #774e4f;
}
.btn-primary:hover {
    color: #000;
    background-color: #f8f3ec;
    border-color: #f8f3ec;
}
a:hover{
    color:#774e4f;
}
.btn-primary:active{
    color: #fff;
    background-color: #774e4f;
    border-color: #774e4f;
}
.btn-check:focus+.btn-primary, .btn-primary:focus{
    color: #fff;
    background-color: #774e4f;
    border-color: #774e4f;
    box-shadow: 0 0 0 .25rem #ededed;
}
a{
    color: #774e4f;
    text-decoration: none;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus{
    box-shadow: 0 0 0 .25rem #ededed;
}
h4.blog_list_title{
    font-family: 'Ivy Mode';
    font-size:24px;
}
.blogs_banner_pc_img{
    width: 100%;
    padding-bottom: 20px;
}
.blogs_banner_pc_img img{
    width: 100%;
}
.blogs_banner_mob_img{
    display: none;
}
@media(max-width:599px){
    .blogs_banner_pc_img{
        display: none;
    }
    .blogs_banner_mob_img{
        display: block;
        padding-bottom: 20px;
    }
    .blogs_banner_mob_img img{
        width: 100%;
    }
}

@media(max-width:480px){
    .top_stripe_head ul {
        gap: 30px;
    }
    .top_stripe_head ul li {
        font-size: 9px;
        padding: 2px 2px;
    }
    .top_stripe_head ul li:after{
        top: 6px;
        width: 19px;
    }
    .top_stripe_head ul li:nth-child(3):after{
        display: none;
    }
    .glow_logo_blog{
        max-width: 100%;
    }
    .glow_logo_blog img{
        width: 90px!important;
    }
    h4.blog_list_title {
        font-size: 20px;
    }
    h2.blog_list_title{
        font-size: 20px;
    }

}
/* custom css end */