@font-face {
    font-family: "solaimanlipi";
    src: url("../fonts/solaimanlipi/SolaimanLipi_22-02-2012.ttf"),
        url("../fonts/solaimanlipi/SolaimanLipi_29-05-06.ttf"),
        url("../fonts/solaimanlipi/SolaimanLipi_Bold_10-03-12.ttf");
}

/*
=============================================================================
>>>> color variable <<<<
==============================================================================
*/
:root {
    --theme-color: #006e87;
    /* --theme-color: #2F4159; */
    --highlight-color: #FF7400;
    --highlight-light-color:  #fbdcc2;
    /* --highlight-color: #11A1BC; */
    --sp-text-color: #1E1E1E;
    --bg-color: #d8ecf3;
    --deep-bg-color: #00596e;
    /* --bg-color: #F2F6FF; */
    --footer-bg-color: #22262F;
    --white-color: #ffffff;
    --black-color: #000000;
}

/*
=============================================================================
 1. DEFAULT STYLE START
==============================================================================
*/
body {
    font-family: solaimanlipi, sans-serif;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.5px;
}

a,
p,
b,
strong,
span {
    font-family: solaimanlipi, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--theme-color);
}

a:hover,
a:focus,
button:focus {
    list-style: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 1px;
}

.section-padding {
    padding: 50px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;

}

.section-title h2 span.zigzag-wrap {
    color: var(--highlight-color);
    position: relative;

}

.zigzag-border {
    position: absolute;
    left: 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    bottom: -18px;
}

.zigzag-border svg {
    width: 100%;
    height: 5px;
    animation: moveZigzag 7s linear infinite;
}

/* Animation */
@keyframes moveZigzag {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(10%);
    }
}

.sub-heading h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.theme-btn a {
    display: inline-block;
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.5s;
}

.theme-btn a:hover {
    background-color: var(--highlight-color);
}

.bgi {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.back_to_top i.fa {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 60px;
    background: var(--theme-color);
    color: var(--white-color);
    text-align: center;
    font-size: 40px;
    line-height: 43px;
    border-radius: 5px;
    z-index: 25;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.bredcumb-section {
    text-align: center;
    padding: 50px 0;
}

.bredcumb-section h2 {
    color: #fff;
}

.bredcumb-section ul li {
    display: inline-block;
    color: #fff;
    padding: 5px;
}

.bredcumb-section ul li a {
    display: block;
    /* padding: 10px; */
    color: #fff;
}

.bredcumb-section ul li.active {
    font-weight: 600;
}

.bredcumb-section ul li a:hover {
    text-decoration: underline;
}

/* .breadcrumb-section {
    background: var(--bg-color);
    padding: 15px 0;
}

.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-section .breadcrumb li a {
    color: var(--highlight-color);
    font-size: 1.5rem;
    font-weight: 500;
}

.breadcrumb-section .breadcrumb li.active {
    color: var(--sp-text-color);
    font-size: 1.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--highlight-color);
} */

/*call to action style start*/
.call-to-action-section {
    background: var(--highlight-color);
    padding: 20px 0;
}

.call-to-action-wrapper {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-to-action-wrapper p {
    margin: 0;
}

.call-to-action-wrapper a {
    color: var(--white-color);
    font-weight: 600;
}

.call-to-action-wrapper a:hover {
    text-decoration: underline;
}

/*call to action style end*/
/**
================================================================================
  1. DEFAULT STYLE END
================================================================================
*/

/**
===================================================================================
===============================  FRONT PAGE STYLE START  ==========================
===================================================================================
 */
/**
================================================================================
Top Bar style start
================================================================================
*/
.topbar {
    padding: 5px 0;
    background-color: var(--theme-color);
}

.topbar .phone {
    display: grid;
    grid-template-columns: 18px 1fr;
    grid-gap: 5px;
    align-items: center;
}

.topbar .phone a {
    color: var(--white-color);
}

.topbar .htacb {
    text-align: right;
}

.topbar .htacb ul li {
    display: inline-block;
}

.topbar .htacb ul li a {
    display: block;
    padding: 0 10px;
    color: var(--white-color);
}

.topbar .htacb ul li.special a {
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.topbar .htacb ul li.special a::after {
    position: absolute;
    content: "";
    left: 0;
    top: -10px;
    width: 100%;
    height: 50px;
    background-color: var(--highlight-color);
    z-index: -1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/**
================================================================================
Top Bar style end
================================================================================
*/
/**
================================================================================
header style start
================================================================================
*/
header {
    padding: 10px 0;
    background-color: var(--white-color);
    transition: all 0.5s;
}

header.header-section.fixed-top .header-cont-wrapper {
    grid-template-columns: 150px 1fr;
}

header.header-section.fixed-top {
    padding: 3px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.header-cont-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 10px;
    align-items: center;
}

.navigation-menu ul li {
    display: inline-block;
}

.navigation-menu ul li a {
    font-weight: bold;
    display: block;
    padding: 7px;
    color: var(--sp-text-color);
    transition: all 0.5s;
}

.navigation-menu ul li.active a,
.navigation-menu ul li:hover a {
    color: var(--highlight-color);
}

/*side nav for mobile*/
.mobile-header .two-grid {
    align-items: center;
}

.mobile-header .mnv {
    text-align: right;
}

.mobile-header span i {
    font-size: 2rem;
}

.msidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    background-color: var(--theme-color);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.msidenav a {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 25px;
    color: var(--white-color);
    display: block;
    transition: 0.3s;
}

.msidenav a:hover {
    color: #f1f1f1;
}

.msidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

/*header style 2 start*/
.header-cont-wrap {
    display: grid;
    /* grid-template-columns: 1fr 25%; */
    align-items: center;
    grid-gap: 10px;
}

.info-wrap {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    grid-gap: 10px;
}

.single-info {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-gap: 15px;
}

.single-info .info-cont h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.single-info i {
    font-size: 30px;
    width: 40px;
    height: 40px;
    text-align: center;
    background: var(--bg-color);
    line-height: 40px;
    color: var(--theme-color);
}

.single-info .info-cont p {
    margin: 0;
}

/*header.header-section-2 {*/
/*    padding: 30px 0;*/
/*}*/

.main-nav-wrap {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    grid-gap: 10px;
}

.main-nav-wrap ul li {
    display: inline-block;
}

.main-nav-wrap ul li a {
    display: block;
    padding: 15px 10px;
    color: var(--white-color);
}

.main-nav-wrap ul li.active a {
    border-bottom: 3px solid var(--highlight-color);
}

.main-nav-wrap ul li:hover a {
    border-bottom: 3px solid var(--highlight-color);
}

.main-navigation.fixed-top {
    box-shadow: 0 0 5px gray;
}

.main-navigation {
    background: var(--theme-color);
    border-top: 5px solid var(--highlight-color);
    transition: all 0.5s ease-in-out;
}

.main-nav-wrap button {
    border: none;
    background: var(--highlight-color);
    color: var(--white-color);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px;
    transition: all 0.5s;
}

.main-nav-wrap button:hover {
    color:  var(--highlight-color);
    background-color:  var(--highlight-light-color);
}

.main-nav-wrap button:focus
{
    outline: 0px dotted; 
    outline: 0px auto -webkit-focus-ring-color;
}
/*header style 2 end*/
/**
================================================================================
header style end
================================================================================
*/

/**
================================================================================
hero section start
================================================================================
*/

.single-slide-item {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: all 5s ease;
}

#hero-slider .owl-item.active .single-slide-item {
    transform: scale(1.05);
}

#hero-slider .owl-prev {
    position: absolute;
    left: 0;
    top: 45%;
}

#hero-slider .owl-prev:focus {
    outline: none;
}

#hero-slider .owl-prev span {
    font-size: 35px;
    display: block;
    border: 2px solid var(--theme-color);
    width: 35px;
    color: #fff;
    height: 35px;
    transition: all .5s;
}

#hero-slider .owl-prev span:hover {
    background: var(--theme-color);
    transition: all .5s;
}

#hero-slider .owl-next {
    position: absolute;
    right: 0;
    top: 45%;
}

#hero-slider .owl-next:focus {
    outline: none;
}

#hero-slider .owl-next span {
    font-size: 35px;
    display: block;
    border: 2px solid var(--theme-color);
    width: 35px;
    color: #fff;
    height: 35px;
    transition: all .5s;
}

#hero-slider .owl-next span:hover {
    background: var(--theme-color);
    transition: all .5s;
}

#hero-slider img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 5s ease;
}


#hero-slider .owl-item.active img {
    transform: scale(1.05);
}

/**
================================================================================
hero section end
================================================================================
*/


/**
================================================================================
donation style start
================================================================================
*/


.d-wrapper {
    background-color: var(--theme-color);
    padding: 50px;
    border-radius: 15px;
}

.d-wrapper form {
    display: grid;
    grid-template-columns: 1fr 200px 1fr 200px;
    grid-gap: 15px;
    align-items: center;
}

.d-wrapper form .form-group {
    margin-bottom: 0;
}

.d-wrapper form button {
    border: none;
    font-weight: bold;
    color: var(--white-color);
    background-color: var(--highlight-color);
    border-radius: 5px;
    padding: 7px;
    cursor: pointer;
    transition: all 0.5s;
}

.d-wrapper form button:hover {
    background-color: var(--footer-bg-color);
}

/**
================================================================================
donation style end
================================================================================
*/
/**
================================================================================
about us section style start
========
========================================================================
*/
section.about-section {
    margin-bottom: 50px;
}

section.about-section .theme-btn {
    margin-top: 40px;
}

.about-thumb {
    padding: -10px;

}

/**
================================================================================
about us section style end
================================================================================
*/
/**
================================================================================
press release section style start
================================================================================
*/
/* .press-release-section {
    background: var(--bg-color);
} */

.blog-wrapper {
    padding: 0 15px !important;
    overflow: hidden;
}

.single-blog {
    box-shadow: 0 0 1px grey;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.single-blog .cont {
    padding: 15px 15px 15px 15px;
    display: block;
}

.single-blog .cont .meta {
    margin-bottom: 5px;
}

.single-blog .cont .meta ul {
    line-height: 0;
}

.single-blog .cont .meta ul li {
    display: inline-block;
    padding-right: 10px;
}

.single-blog .cont .meta ul li a {
    color: var(--theme-color);
    font-size: 14px;
}

.single-blog .cont h3 a {
    font-family: "Hind Siliguri", sans-serif;
    color: var(--sp-text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.single-blog:hover .cont h3 a {
    color: var(--highlight-color);
}

/**
================================================================================
press release section style end
================================================================================
*/

/**
================================================================================
stuff section style start
================================================================================
*/
.stuff-section {
    background: var(--bg-color);
}

.stuff-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.stuff-section .theme-btn {
    float: right;
}

.stuff-wrapper .single-stuff {
    text-align: center;
    box-shadow: 0 0 15px gray;
    padding: 15px;
    border-radius: 5px;
}

.stuff-wrapper .single-stuff .cont ul li {
    display: inline-block;
}

.stuff-wrapper .single-stuff .cont ul li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--theme-color);
    color: #fff;
    font-size: 20px;
    transition: all 0.5s;
}

.stuff-wrapper .single-stuff .cont ul li a:hover {
    background: var(--highlight-color);
}

.stuff-wrapper .single-stuff .cont {
    margin-top: 15px;
}

.stuff-wrapper .single-stuff .cont p {
    margin-bottom: 0;
}

.stuff-wrapper .single-stuff .cont h4 {
    font-weight: 700;
    font-size: 1.28rem;
}

.stuff-wrapper .single-stuff .cont h6 {
    font-weight: 600;
}

.stuff-wrapper .single-stuff .cont ul {
    margin-top: 15px;
}

/**
================================================================================
stuff section style end
================================================================================
*/
/* *
================================================================================
our activity section style start
================================================================================
*/
.our-activity-wrapper {
    display: flex;
}

.our-single-activity {
    width: 200px;
    height: 200px;

    text-align: center;
    background: var(--theme-color);

    border-radius: 50%;
    margin: 15px;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

.our-single-activity a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.our-single-activity a i {
    font-size: 2rem;
}

.our-single-activity a p {
    font-size: 1.5rem;
    text-transform: capitalize;
    margin-top: 15px;
}

.our-single-activity:hover {
    background: var(--highlight-color);
    transform: scale(1.01);
}

.our-single-activity:after {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 95%;
    height: 95%;

    border: 2px solid white;
    background-color: var(--theme-color);
    content: "";
    border-radius: 50%;
    transform: translate(-5%, -5%);
    z-index: -1;
}

/* .our-single-activity:after {
    position: absolute;
    left: 5%;
    top: 5%;
    width: 95%;
    height: 95%;
    border: 2px solid white;
    content: "";
    border-radius: 50%;
    transform: translate(-5%, -5%);
    z-index: -1;
} */

/**
================================================================================
our activity section style end
================================================================================ */


/**
================================================================================
info section style start
================================================================================
*/

.sec-widget {
    border: 1px solid var(--highlight-color);
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 35px 25px;
}

.sec-single-cont h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0;
}

.sec-widget ul li:hover a {
    font-weight: bold;
}

.sec-widget ul li a {
    display: block;
    color: var(--sp-text-color);
    padding: 7px 0;
    transition: all 0.5s;
}

.sec-widget ul li a i {
    color: var(--highlight-color);
    margin-right: 10px;
}

/**
================================================================================
info section style end
================================================================================
*/
/**
================================================================================
magazine section style start
================================================================================
*/
.magazine-section {
    background: var(--bg-color);
}

/* .magazine-wrapper {
    max-height: 365px;
} */

.two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.magazine-wrapper .small {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px;
}

.magazine-wrapper .two-grid {
    grid-template-columns: 60% 40%;
    grid-gap: 10px;
}

.magazine-wrapper .single-mag img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.magazine-wrapper .single-mag {
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
}

.magazine-wrapper .single-mag:hover {
    transform: scale(1.015);
}

.magazine-wrapper .single-mag h5 a {
    font-size: 1.3rem;
    color: var(--theme-color);
    display: block;
    line-height: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.magazine-wrapper .single-mag h5 a:hover {
    color: var(--highlight-color);
}

.magazine-wrapper .big .single-mag h5 {
    margin-top: 15px;
}

.sibebar-widget {
    text-align: center;
    padding: 0 20px 25px 20px;
    position: relative;
    z-index: 1;
}

.sibebar-widget::after {
    position: absolute;
    content: "";
    background-color: var(--bg-color);
    border: 1px solid var(--highlight-color);
    border-radius: 15px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 65%;
    z-index: -1;
}

.sibebar-widget .m-w-cont {
    padding: 10px 15px;
}

.sibebar-widget .m-w-cont h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

/**
================================================================================
magazine section style end
================================================================================
*/
/**
================================================================================
project section style start
================================================================================
*/
.project-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url('/assets/theme/sonamoni/images/pattern/pattern.png');
    color: var(--theme-color);
}

.project-section h2 {
    color: #fff;
}

.project-section .section-title h2 {
    text-align: center;
}

.single-project img {
    border-radius: 15px;
}

.single-project h3 a {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    display: block;
}

.single-project h3 a:hover {

    color: var(--highlight-color);
}

.registration-section {
    background: var(--deep-bg-color);
    color: white;
}

.registration-section h2 {
    /* background: var(--deep-bg-color); */
    color: white;
}

.reg-thumb img {
    border-radius: 15px;
}

.post-slider .owl-dots,
.organization-wrapper .owl-dots {
    text-align: center;
}

.post-slider .owl-dots button.owl-dot,
.organization-wrapper .owl-dots button.owl-dot {
    width: 7px;
    height: 7px;
    background-color: var(--highlight-color);
    border-radius: 50%;
    margin: 25px 2px 0 2px;
}

.post-slider .owl-dots button.owl-dot.active,
.organization-wrapper .owl-dots button.owl-dot.active {
    width: 30px;
    height: 5px;
    border-radius: 5px;
}

/**
================================================================================
project section style end
================================================================================
*/
/**
================================================================================
organization section style start
================================================================================
*/
.organization-section {
    background: var(--bg-color);
}

.organization-item {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
}

.organization-item h4 {
    font-size: 1.1rem;
    padding: 15px 0;
}

.organization-item ul li {
    display: inline-block;
}

.organization-item ul li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--theme-color);
    text-align: center;
    color: white;
    transition: all 0.5s ease-in-out;
}

.organization-item ul li a:hover {
    background-color: var(--highlight-color);
}


/**
================================================================================
organization section style end
================================================================================
*/
/*gallery mobile view start*/
.mobile-filter-menu {
    display: none;
}

ul#mobile_filter {
    position: absolute;
    list-style: none;
    margin: 0;
    background: var(--button-color);
    color: #fff;
    padding: 20px;
    right: 0;
    box-shadow: 0 5px 10px #999;
    display: none;
}

.mobile-filter-menu p {
    margin: 0;
    width: 100%;
    text-align: right;
    color: var(--button-color);
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 50px;
    cursor: pointer;
}

.mobile-filter-menu p i.fa {
    font-size: 25px;
    margin-left: 10px;
    font-weight: 900;
}

.mobile-filter-menu {
    position: relative;
}

ul#mobile_filter li {
    padding: 5px;
    text-transform: capitalize;
}

/* video section start  */
/* .video-section {
    background: var(--bg-color);
} */

.video-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    align-items: start;
}

.video-wrapper h5 {
    font-size: 0.85rem;

}

.video-wrapper .single-video .thumb {
    position: relative;
    margin-bottom: 15px;
}

.video-wrapper .single-video .thumb i.fa {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
    font-size: 25px;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
}

.video-wrapper .single-video .thumb img {
    border-radius: 5px;
}

.video-wrapper .single-video:hover h5 {
    color: var(--highlight-color);
}

/* video section end */


/*gallery mobile view end*/
.gallery-section {
    background: var(--bg-color);
}

.gallery-border-style {
    position: relative;
    text-align: center;
    /* border-bottom: 1px solid #ddd; */
}

/* .gallery-border-style:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 3px;
    border-bottom: 3px solid var(--theme-color);
    border-radius: 5px;
} */

.gallery-title h5 {
    color: var(--button-color);
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.gallery-filter-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* float: right; */
}

.gallery-filter-menu ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--button-color);
    padding: 5px 10px;
    text-transform: capitalize;
    cursor: pointer;
}

.gallery-filter-menu ul li.active {
    color: var(--highlight-color);
}

.gallery-images {
    padding-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.single-image a img {
    display: inline-block;
    width: 100%;
    /* width: 376px; */
    height: 200px;
    padding: 5px;
    margin: 5px;
    box-shadow: 0 0 5px #999;
    border-radius: 10px;
    transition: all 0.2s;
}

.single-image a img:hover {
    -ms-transform: scale(1.5);
    /* IE 9 */
    -webkit-transform: scale(1.5);
    /* Safari 3-8 */
    transform: scale(1.03);
    transition: all 0.2s;
}

.mix {
    display: none;
}

/**
================================================================================
footer style start
================================================================================
*/
footer {
    /* background-color: var(--footer-bg-color); */
    background-color: transparent;
    background-image: linear-gradient(180deg, #006e87 0%, #003a47 100%);
    color: var(--white-color);
}

.footer-widget {
    overflow: hidden;
}

.footer-widget img {
    width: 120px;
}

.footer-widget .sub-heading h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-widget ul li a {
    display: block;
    color: var(--white-color);
    padding: 5px 0;
}

.footer-widget ul li a:hover {
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid var(--white-color);
    padding: 25px 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom ul {
    text-align: right;
}

.footer-bottom ul li {
    display: inline-block;
}

.footer-bottom ul li a {
    color: var(--white-color);
    font-weight: bold;
}

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

.mobile-footer-wrapper {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    grid-gap: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--theme-color);
    z-index: 25;
    box-shadow: 0 0 5px gray;
}

.mobile-footer-wrapper a {
    display: block;
    color: white;
    padding: 10px 0;
    text-transform: uppercase;
    text-align: center;
}

.mobile-footer-wrapper a i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/**
================================================================================
footer style end
================================================================================
*/

/*back to top start*/
/*.back_to_top i.fa {
    color: var(--theme-color);
    font-size: 35px;
    background: #ccc;
    padding: 20px;
    position: fixed;
    right: 5%;
    bottom: 10%;
    z-index: 9999;
    border-radius: 2px;
}

i.fa.fa-arrow-up:hover {
    cursor: pointer;
    transform: rotateZ(720deg);
    transition: all 0.4s;
}*/
/*back to top end*/


/* details page start  */
section.page-content-section h1 {
    font-size: 2.1rem;
}

section.page-content-section .featured-image img {
    border-radius: 10px;
    box-shadow: 0 0 15px gray;
    margin-bottom: 20px;
}

@media(max-width: 480px){
    
   .main-navigation {
    background: white;
}

.main-nav-wrap a{
    text-align: right;
} 
}

/* details page end  */