@charset "UTF-8";

:root {
    --primary-color: #696f1d;
    --primary-shade-color: #83a658;
    --secondary-color: #163573;
}

@font-face {
    font-family: "Kokila";
    src: url("../fonts/kokila.ttf") format("ttf");
}

body {
    font-family: "Rubik", sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.not-footer {
    flex: 1;
}

h1 {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 45px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h3 {
    color: var(--secondary-color);
    font-size: 33px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
}

h5 {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
}

p.lead {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.light-font {
    font-weight: 300;
}

.btn {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.6rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

.btn-primary {
    border-radius: 3px;
    background-color: var(--primary-color);
    font-weight: 500;
    padding: 0.6rem 2rem;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-image: linear-gradient(
        122deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
    color: #fff;
}

.btn-light {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0.5rem;
    padding: 0.6rem 2rem;
    line-height: 1.8;
}

.btn-group-lg > .btn,
.btn-lg {
    padding: 0.6rem 2rem;
    font-size: 15px;
}

.light-bg {
    background-color: #faf6fb;
}

.section {
    padding: 30px 0 20px 0;
}

.section-title small {
    color: #998a9b;
}

/* NAVBAR
----------------------*/

.nav-menu {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background-color: rgb(163, 166, 88);
    background: -moz-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: -webkit-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    -webkit-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.nav-active {
    color: white !important;
    position: relative; /* Ensure the underline works correctly */
}

.navbar-nav > .nav-item > .nav-link.nav-active {
    color: white;
}

.nav-link.active {
    color: white !important; /* Change color if needed */
    position: relative; /* Ensure the underline works correctly */
}

.nav-link.active:after {
    content: "";
    border-bottom: 2px solid white;
    left: 1rem;
    right: 1rem;
    bottom: 5px;
    height: 1px;
    position: absolute;
}

li.nav-item {
    margin-left: 10px;
}

/* HERO
----------------------*/

.header {
    padding: 100px 0 0;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.bg-gradient-custom {
    background-image: -moz-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: -webkit-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: -ms-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
}

.tagline {
    font-size: 23px;
    font-weight: 300;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.img-holder {
    height: 0;
    padding-bottom: calc(100vh - 294px);
    overflow: hidden;
}

.banner-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.hero-section {
    background-image: -moz-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: -webkit-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: -ms-linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    background-image: linear-gradient(
        135deg,
        rgba(22, 53, 115, 1) 0%,
        rgba(163, 166, 88, 1) 100%
    );
    position: relative;
}

.hero-section .wave {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    bottom: -150px;
}

.hero-section .wave svg {
    width: 100%;
}

.hero-section,
.hero-section > .container > .row {
    height: 60vh;
    min-height: 880px;
}

.hero-section.inner-page {
    height: 60vh;
    min-height: 0;
}

.hero-section.inner-page .hero-text {
    text-align: center;
}

.hero-section h1 {
    color: #fff;
}

.hero-section p {
    color: #fff;
}

/*  FOOTER
----------------------*/

.social-icons a {
    background-color: var(--primary-color);
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 0.3rem;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
}

.footer-hr {
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgb(255 255 255);
}

.social-icons a:hover {
    text-decoration: none;
    background-image: linear-gradient(
        122deg,
        var(--secondary-color) 0%,
        var(--primary-color) 100%
    );
}

/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 506px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/mobile-frame.png) center center no-repeat;
    background-size: 245px 492px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 15px;
    transition: 0.5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #ffffff;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    background-color: var(--secondary-color);
}

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

.bg-primary-gradient {
    background: linear-gradient(
        to bottom right,
        var(--primary),
        var(--secondary)
    );
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-item img.client-img {
    width: 135px;
    height: 135px;
    object-fit: cover;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #000;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff487e;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ff487e;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.contact-info,
.contact-form {
    width: 100%;
    margin: auto;
}

.contact-info {
    font-size: 0.9rem;
}

.contact-form__title,
.contact-info__title {
    font-size: 2rem;
    font-weight: 600;
}

.contact-info__paragraph {
    line-height: 1.7;
    opacity: 0.9;
}

.contact-info__title-2 {
    font-weight: 600;
}

.contact-info__title-2 .contact-info__item {
    opacity: 0.9;
}

.contact-form__paragraph {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    width: 90%;
}

.contact-form__input {
    font-size: 0.87rem;
    padding: 0.87rem 1.4rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.01);
    width: 100%;
    margin-bottom: 0.87rem;
}

textarea.contact-form__input {
    height: 130px;
    resize: none;
}

.contact-form__input:focus {
    border: 1px solid var(--primary-color);
    outline: none;
    box-shadow: none;
}

.post-entry {
    margin-bottom: 30px;
}

.post-entry img {
    height: 200px;
    object-fit: cover;
}

.post-entry .post-text .post-meta {
    color: var(--primary-shade-color);
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.post-entry .post-text h3 {
    font-size: 20px;
    font-family: "Noto Sans Devanagari";
    color: #000000;
}

.post-entry .post-text h3 a {
    color: #000000;
}

.post-entry .post-text h3 a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

.post-entry .post-text .readmore {
    color: var(--secondary-color);
}

.sidebar-box {
    /* margin-bottom: 30px; */
    padding: 25px;
    font-size: 15px;
    width: 100%;
    float: left;
    background: #fff;
}

.sidebar-box *:last-child {
    margin-bottom: 0;
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.categories li,
.sidelink li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted gray("300");
    list-style: none;
}

.categories li:last-child,
.sidelink li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories li a,
.sidelink li a {
    display: block;
}

.categories li a span,
.sidelink li a span {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
}

.categories li.active a,
.sidelink li.active a {
    color: #000000;
    font-style: italic;
}

.search-form {
    background: #f7f7f7;
    padding: 10px;
}

.search-form .form-group {
    position: relative;
}

.search-form .form-group input {
    padding-right: 50px;
}

.search-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-content h1,
.blog-content p,
.blog-content ul,
.latest-blog a {
    font-family: "Noto Sans Devanagari";
}

.blog-content img {
    max-width: 100% !important;
    height: auto !important;
}

table {
    border-spacing: 1;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: scroll;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
table * {
    position: relative;
}
table td,
table th {
    padding-left: 8px;
}
th {
    height: 60px;
    background: #36304a;
    color: #fff;
    line-height: 1.2;
    font-weight: unset;
}
table tbody tr {
    height: 50px;
    border-bottom: 1px solid #f2f2f2;
}
table tbody tr:last-child {
    border: 0;
}
table td,
table th {
    text-align: left;
}
table td.l,
table th.l {
    text-align: right;
}
table td.c,
table th.c {
    text-align: center;
}
table td.r,
table th.r {
    text-align: center;
}

tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

tbody tr:hover {
    color: #555555;
    background-color: #f5f5f5;
    cursor: pointer;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #dee2e6;
    border-style: solid;
    border-width: 0;
}

tbody tr {
    color: #808080;
    line-height: 1.2;
    font-weight: unset;
}

.latest-blog-meta {
    font-size: 10px;
    display: block;
}

/*--------------------*/
/* FAQ */
/*--------------------*/
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.faq-content .panel-title a[aria-expanded="true"] {
    color: var(--primary-color);
}

.faq-content .panel-title a:hover {
    color: var(--primary-color);
}

#faq {
    background-color: #f8f8f8;
    display: inline;
    float: left;
    position: relative;
    width: 100%;
}

.faq-content {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
}

.faq-content .panel-default {
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.06);
}

.faq-content .panel-default > .panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #ddd;
    padding: 0;
}

.faq-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
    text-align: left;
    padding: 15px;
    border-top: 1px solid var(--primary-color);
    background-color: #fff;
}

.faq-content .panel-title {
    text-align: left;
    font-size: 20px;
}

.faq-content .panel-title a {
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.faq-content .panel-title a > span {
    margin-right: 5px;
}

a.back-to-top {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 100px;
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 30px;
    background: var(--primary-color) url(../images/up-arrow.png) no-repeat
        center 47%;
    background-size: 18px 18px;
    text-indent: -9999px;
}

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
    -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
    transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
    -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
    transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
    -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
    transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}
/* end of fade-move animation for details lightbox - magnific popup */

/****************************/
/*     Details Lightbox     */
/****************************/
.lightbox-basic {
    position: relative;
    max-width: 500px;
    height: 100%;
    margin: 2.5rem auto;
    padding: 15px;
    background-color: #ffffff;
    text-align: center;
}

/* Close X Button */
.lightbox-basic button.mfp-close.x-button {
    position: absolute;
    border-radius: 45px;
    top: -7px;
    right: -55px;
    width: 44px;
    height: 44px;
    color: #000000;
}
/* end of close x button */

.popupImage {
    border-radius: 0.5rem;
    width: 100%;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: white;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

.post.post-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.243);
}

.post.post-row .post-img {
    width: 40%;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post.post-row .post-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    -webkit-transition: 1.6s -webkit-transform;
    transition: 1.6s transform, 1.6s -webkit-transform;
}

.post.post-row .post-icon {
    width: 65px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post.post-row .post-icon img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
    -webkit-transition: 1.6s -webkit-transform;
    transition: 1.6s transform, 1.6s -webkit-transform;
}

.post.post-row .post-button {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post.post-row .post-body {
    flex: 1;
}

.post-img:hover > img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.post .post-title a {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    outline: none;
}

.post .post-title a:hover,
a:focus {
    color: var(--primary-shade-color);
}

.post .post-category {
    margin-bottom: 5px;
}

.post-category a {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.post-category a:after {
    content: ",";
    display: inline-block;
}

.post-category a:last-child:after {
    display: none;
}

.post .post-meta {
    margin-bottom: 10px;
    padding: 0px;
}

.post-meta li {
    display: inline-block;
    color: #97989b;
    font-size: 12px;
}

.post-meta li a {
    color: #97989b;
    font-weight: 500;
}

.post-meta li:after {
    content: "•";
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

.post-meta li:last-child:after {
    display: none;
}

.aside-widget {
    margin-bottom: 30px;
    margin-left: 15px;
}

.section {
    padding-top: 30px;
}

.section-row {
    margin-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
}

.section-title .title {
    position: relative;
    display: inline-block;
    background-color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 10px;
    z-index: 20;
}

.section-title:after {
    content: "";
    display: inline-block;
    height: 2px;
    background-color: #e8eaed;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    z-index: 10;
}

.category-widget ul {
    padding: 0px;
}

.category-widget ul li {
    padding: 10px 0px;
    list-style: none;
    border-bottom: 1px solid #e8eaed;
}

.category-widget ul li a {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #2b2a2a;
}

.category-widget ul li a span {
    float: right;
    color: var(--primary-color);
    margin-left: 15px;
}

.post.post-widget {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.243);
}

.post.post-widget .post-img {
    width: 130px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.post.post-widget .post-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-transition: 1.6s -webkit-transform;
    transition: 1.6s transform, 1.6s -webkit-transform;
}

.post.post-widget .post-icon {
    width: 50px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.post.post-widget .post-icon img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    -webkit-transition: 1.6s -webkit-transform;
    transition: 1.6s transform, 1.6s -webkit-transform;
}

.post.post-widget .post-body {
    flex: 1;
    padding: 0;
    background: transparent;
}

.post.post-widget .post-title {
    line-height: 10px;
}

.post.post-widget .post-category a {
    font-size: 11px;
}

.post.post-widget .post-title a {
    font-size: 12px;
    margin-bottom: 0;
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.blog-hero-section {
    height: 15vh;
    min-height: 0;
}

.blog-header {
    position: relative;
    margin: 0;
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #1b1c1e;
}

#post-header {
    padding-top: 240px;
    padding-bottom: 80px;
}

.blog-header .blog-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.blog-header .blog-header-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(27, 28, 30, 0)),
        color-stop(90%, rgba(27, 28, 30, 0.8))
    );
    background: linear-gradient(
        180deg,
        rgba(27, 28, 30, 0) 0%,
        rgba(27, 28, 30, 0.8) 90%
    );
}

.blog-header {
    color: #fff;
}

.blog-header p.lead {
    font-size: 20.25px;
}

.blog-header .post-category {
    margin-bottom: 10px;
}

.blog-header ul {
    padding: 0;
}

.blog-header .post-meta li {
    color: #fff;
}

.blog-header .post-meta li a {
    text-decoration: none;
}

.feature-icon {
    height: 50px;
    width: auto;
}

.media {
    align-items: center;
}

/* FEATURES
----------------------*/
.card.features {
    border: 0;
    border-radius: 3px;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card.features:before {
    content: "";
    position: absolute;
    width: 3px;
    background-color: rgb(163, 166, 88);
    background: -moz-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: -webkit-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    top: 0;
    bottom: 0;
    left: 0;
}

.card-text {
    font-size: 14px;
}

.card.features:hover {
    transform: translateY(-3px);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
}

.circle-icon {
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Video Play Button */

.video-wrapper {
    position: relative;
}

.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    display: block;
    box-sizing: content-box;
    width: 2rem;
    height: 2.75rem;
    padding: 1.125rem 1.25rem 1.125rem 1.75rem;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    background: -moz-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: -webkit-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 50%;
    background: -moz-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: -webkit-linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    background: linear-gradient(
        135deg,
        rgb(163, 166, 88) 0%,
        rgb(22, 53, 115) 100%
    );
    transition: all 200ms;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-play-button span {
    position: relative;
    display: block;
    z-index: 3;
    top: 0.375rem;
    left: 0.25rem;
    width: 0;
    height: 0;
    border-left: 1.625rem solid #fff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

button.mfp-close,
button.mfp-arrow {
    background-color: transparent !important;
}

/* end of video play button */

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }

    .tagline {
        font-size: 17px;
    }

    .img-holder {
        height: 0;
        padding-bottom: calc(100vh - 261px) !important;
        overflow: hidden;
    }

    .header {
        height: auto !important;
    }
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 14px;
    }
    .navbar-nav > .nav-item > .nav-link.nav-active:after {
        content: "";
        border-bottom: 2px solid white;
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
    .circle-icon {
        width: 70px;
        height: 70px;
    }

    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-item {
        text-align: center;
    }
    .hero-section .wave {
        bottom: -122px;
    }
    .card.features {
        margin-bottom: 2rem;
    }
    [class^="col-"]:last-child .card.features {
        margin-bottom: 0;
    }
}

@media (max-width: 425px) {
    .img-holder {
        padding-bottom: calc(85vh - 294px) !important;
    }

    .video-play-button {
        top: 60%;
    }
}

@media (max-width: 320px) {
    .img-holder {
        padding-bottom: calc(70vh - 294px) !important;
    }
}

.pagination {
    flex-wrap: wrap;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link:focus,
.page-link:hover {
    color: var(--primary-shade-color);
}

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

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-search {
    padding: 0.5rem 1rem !important;
    cursor: pointer;
}

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