
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
body ul,
body ul li,
p,
ul li a,
form,
label,
button,
nav.navbar.navbar-expand-lg.navbar-light,
a.navbar-brand.logo,
a.nav-link,
.navbar-light .navbar-nav .nav-link {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

form input,
select {
    height: 46px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #8C87A6;

}

ul {
    list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.upload_btn_wrapper input::-webkit-file-upload-button, .profile-content-wrapper input#profile-pic::-webkit-file-upload-button {
    width: 100%;
    height: 100%;
}

.upload_btn_wrapper input::file-selector-button,
.profile-content-wrapper input#profile-pic::file-selector-button {
    width: 100%;
    height: 100%;
}

input[type=number] {
    -moz-appearance: textfield;
}

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}

html body {
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

:focus,
.btn-light.focus,
.btn-light:focus,
.bootstrap-select .dropdown-toggle:focus,
select.goog-te-combo {
    outline: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

/*--header--*/
header {
    background-color: #000;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header .nav-item {
    position: relative;
}

header .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
}

header .navbar-nav {
    gap: 10px;
}

header .dropdown-menu {
    border-radius: 0;
    padding: 0;
    padding: 15px;
    left: -31px !important;
}

header .dropdown-menu li a.active{
    background-color: #BA701D;
    color: #fff;
}

#sticky-header {
    position: relative; /* Initially, header is positioned relative */
    /* transition: top 0.18s ease-in-out;  */
    width: 100%;
    z-index: 9999;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.dropdown-grid {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
}

.download-item {
    color: #BA701D;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-top: 1px solid #EDEDED;
    padding-top: 10px;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.download-item:hover {
    color: #111;
}

header .dropdown-menu .dropdown-item {
    text-transform: uppercase;
}

header .dropdown-menu li {
    font-size: 14px;
}
header .dropdown-menu li a{
    padding: 6px 10px;
    display: inline-block;
}
.dropdown-menu.show:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid #fff;
    /* right: 15px; */
    left: 50px;
    top: -18px;
}

header .dropdown-menu li:last-child {
    border-bottom: 0;
}

header .dropdown-item.active,
header .dropdown-item:active {
    color: #000;
    text-decoration: none;
    background-color: transparent;
}

header .dropdown-item:focus,
header .dropdown-item:hover {
    color: #000;
    background-color: transparent;
}

header .dropdown-toggle::after {
    content: url("../images/arrow-down.svg");
    border: 0;
    margin-left: 0;
    vertical-align: 0;
    position: relative;
    top: -2px;
}

header .navbar-brand {
    color: #fff;
}

a:hover {
    color: #ffffffb0;
}

header .nav-link:hover,
header .nav-link:focus {
    color: #ffffffb0;
}

header .navbar-nav .nav-link {
    position: relative;

}

header .navbar-nav .nav-link.active,
header .navbar-nav .show>.nav-link ,li.nav-item.dropdown.active .nav-link{
    color: #fff;
    font-weight: 600;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

header .navbar-nav .nav-link.active::before,
header .navbar-nav .show>.nav-link::before,li.nav-item.dropdown.active .nav-link::before {
    content: url(../images/menu-dots.svg);
    position: absolute;
    margin: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -4px;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.nav-item .header-btn {
    font-family: 'Kenyan Coffee Rg';
    padding: 10px 17px 10px 17px;
    border: none;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    background-color: #BA701D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
}
.header-btn img{
    max-width: 28px;
}
.nav-item .header-btn:hover {
    background-color: #BA701D;
    color: #fff;
}

header .navbar-toggler {
    background-color: #fff;
}

/*--header-end--*/
/*--banner-wrap--*/

.banner-wrap {
    position: relative;
    background: url("../images/banner-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 88px 0 0px 0;
}

.about-banner {
    position: relative;
    background: url("../images/top-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px 0;
}

.about-left {
    padding-left: 100px;
}

.light-img-bg {
    position: relative;
    background: url("../images/light-bg-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 68px 0 68px 0;
    background-position: bottom;
}

.gradient-light-bg {
    background: -webkit-gradient(linear, left top, left bottom, from(#FFF6E5), to(rgba(255, 246, 229, 0)));
    background: -o-linear-gradient(top, #FFF6E5 0%, rgba(255, 246, 229, 0) 100%);
    background: linear-gradient(180deg, #FFF6E5 0%, rgba(255, 246, 229, 0) 100%);
}

.main-bg-dark {
    background-color: #0B090A;
    margin-top: 100px;
}

.btn.theme-btn-light {
    padding: 16px 26px 16px 26px;
    border: 4px solid #fff;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: 0.2em;
    margin-top: 40px;
}

.btn.theme-btn-light:hover,
.btn.theme-btn-light:active {
    background-color: #fff;
    color: #000;
}

.btn.theme-btn-dark {
    padding: 16px 26px 16px 26px;
    border: 4px solid #000;
    color: #000;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
    letter-spacing: 0.2em;
    margin-top: 40px;
}

.mw-187 {
    max-width: 187px;
}

.btn.theme-btn-dark:hover,
.btn.theme-btn-dark:active {
    background-color: #000;
    color: #fff;
}

.banner-content h2 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
    color: #fff;
    margin-bottom: 15px;
}

.default-p-light {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

.default-p-dark {
    color: #121212;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.heading1 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    text-align: left;
    color: #121212;
    margin-bottom: 15px;
}

.heading2 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 38px;
    font-weight: 400;
    line-height: 46px;
    color: #121212;
}

.heading3 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 68px;
    font-weight: 400;
    line-height: 82px;
    color: #121212;
}

.heading4 {
    color: #121212;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.heading5 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 30px;
    line-height: 41px;
    color: #121212;
    margin-bottom: 0;
    text-transform: uppercase;
}

.heading6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    color: #121212;
}

.heading7 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 58px;
    line-height: 70px;
    margin-bottom: 0;
    color: #BA701D;

}

.down-bg2 {
    margin: 15px 0 35px 0;
    padding: 56px;
    background-image: url("../images/down-bg-main.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.who-was-bg {
    background-image: url("../images/who-was-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.who-was-inner {
    padding: 0 100px;
    margin-top: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

.gallery-wrap .figure {
    -webkit-box-shadow: 0px 4px 174px 0px #00000026;
            box-shadow: 0px 4px 174px 0px #00000026;
}

.gallery-wrap .figure-caption {
    color: #121212;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.03em;
    padding: 10px 20px;
}

.gallery-wrap .figure-img {
    margin-bottom: 0;
}

.gallery-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-columns: auto 20px auto;
    grid-template-columns: auto auto;
    gap: 20px;
}
.gallery-container img{
    height: 100%;
}
.misnary-grid-wrap{
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
     gap:15px 
}
.misnary-grid-wrap img{
    width: 100%;
    height: 100%;
     margin-bottom: 15px; 
}

.gallery-container2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 20px auto;
    grid-template-columns: auto auto;
    gap: 20px;
}

.gallery-container3 {
    display: -ms-grid;
    display: grid;
    gap: 20px;
}

.gallery-container>div img {
    width: 100%;
    height: 100%;
}

.common-p {
    padding: 100px 0;
}

.common-p-2x {
    padding: 200px 0 100px 0;
}

.common-p2 {
    padding: 19px 0 36px 0;
}

.common-p-37 {
    padding: 37px 0;
}

.common-p-56 {
    padding: 56px 0;
}

.common-p-180 {
    padding: 180px 0;
}

.fw-500 {
    font-weight: 500;
}

.banner-right {
    margin-bottom: -109px;
}

.banner-right img {
    -webkit-box-shadow: 0px 4px 205px 0px #00000033;
            box-shadow: 0px 4px 205px 0px #00000033;
}

/*--banner-wrap-end--*/
/*--gallery--*/

.grid-item {
    margin-bottom: 22px;
    position: relative;
}

.grid-item>img {
    width: 100%;

}

.simple-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.grid-item:hover .grey-overlay {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}

.overlay {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #00000073;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}

.link-img {
    max-width: 32px;
}

/*--gallery-end--*/
/*--remarkable--*/
.remark-wrap {
    margin-top: 10px;
}

.remark-wrap ul li a {
    background-color: #FFF6E5;
    padding: 16px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 23px;
}

.remark-wrap ul li:last-child a {
    margin-bottom: 0px;
}

.remark-wrap p {
    font-family: 'Kenyan Coffee Rg';
    font-size: 26px;
    font-weight: 400;
    color: #121212;
    margin-bottom: 0;
    padding-left: 13px;
}

.w-24 {
    min-width: 24px;
}

.video-wrap {
    position: relative;
    text-align: center;
}

.video-wrap .play {
    max-width: 60px;
}

.play-btn-wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: #b66e1c;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;


}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #b66e1c;
                box-shadow: 0 0 0 0 #b66e1c;
    }

    50% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        -webkit-box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
                box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #b66e1c;
                box-shadow: 0 0 0 0 #b66e1c;
    }

    50% {
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        -webkit-box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
                box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

#videoModal .btn-close ,#videoModal2 .btn-close{
    background-color: #BA701D;
    opacity: 1;
    border-radius: 100%;
    position: absolute;
    top: -11px;
    z-index: 9999;
    right: -10px;
    width: 15px;
    height: 15px;
    padding: 11px;
    font-size: 13px;
}

.gurmukhi-font {
    font-family: 'Tiro Gurmukhi', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.family-tree-bg .heading1 {
    margin-bottom: 50px;
}

/*--origin-section--*/
.yellow-light-bg {
    background-color: #FFF6E5;
}

.origin-wrap {
    padding: 95px 110px 95px 110px;
}

.origin-wrap2 {
    padding: 0px 110px 0px 0px;
}

.origin-banner-right img {
    width: 100%;
}

/*--origin-section-end--*/
/*--hukumnama-section--*/

.hukumnama-left {
    background-image: url("../images/before-hukumnama.png");
    background-repeat: no-repeat;
    background-position: center left;

}

.hukumnama-right {
    background-image: url("../images/after-hukumnama.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.refrence-bg {
    padding: 50px 72px;
}

.refrence-bg::before {
    content: "";
    background-image: url("../images/ref-design1.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    display: inline-block;
    height: 360px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
}

.refrence-bg::after {
    content: "";
    background-image: url("../images/ref-design2.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    display: inline-block;
    height: 360px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
}


.hukumnama-left img {
    margin-left: 50px;
}

/*--hukumnama-section-end--*/
/*--download-section--*/
.fs-28{
    font-size:28px;
    font-family: 'Kenyan Coffee Rg';
}
.download-content::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 6px;
    background-color: rgb(0, 0, 0);
    margin-right: 18px;
    position: absolute;
    left: -25%;
    top: 21px;
    max-width: 68%;
}

.download-wrap {
    margin-bottom: 82px;
    position: relative;
}

.download-wrap::after {
    content: "";
    background: #FFF6E5;
    width: 100%;
    height: 67%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.download-content {
    position: relative;
}

.signature-section img {
    width: 350px;
}

.signature-section {
    background-color: #C3883C;
    padding: 20px 0;
}

.genration-wrap-inner {
    padding: 84px 79px 71px 0;
}

.origin-p {
    padding: 0 30px 0px 111px;
}

.women-img-wrap img {
    width: 100%;
    height: 294px;
    -o-object-fit: cover;
       object-fit: cover;
}

.women-img-wrap2 img {
    width: 100%;
    height: 190px;
    -o-object-fit: cover;
       object-fit: cover;
}


.women-img-wrap,
.women-img-wrap2 {
    margin-bottom: 24px;
}

/*--download-section-end--*/
/*-timeline-*/
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #000;
    top: -56px;
    bottom: -56px;
    left: 50%;
    margin-left: -3px;
}

.time-line-inner {
    padding: 10px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.time-line-inner::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    right: -18px;
    background-color: #000;
    border: 10px solid #fff;
    top: 46%;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -23px;
}

.content {
    padding: 30px;
    position: relative;
    max-width: 400px;
    border: 1px solid #DADADA;
}

.Dob-count {
    display: inline-block;
    background-color: #C3883C;
    font-family: 'Kenyan Coffee Rg';
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.03em;
    text-align: center;
    color: #fff;
    padding: 10px;
    z-index: 8888;
}

.left-heading-left {
    position: absolute;
    top: 50%;
    width: 50%;
    padding: 10px 50px;
    right: 50%;
}

.left-heading-right {
    position: absolute;
    top: 50%;
    width: 50%;
    padding: 10px 50px;
    left: 50%;
}

.left-heading-left h4 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #94591D;
    text-align: right;
    max-width: 130px;
    margin-left: auto;
}

.left-heading-right h4 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #94591D;
    text-align: left;
    max-width: 130px;
    margin-right: auto;
}

.timeline .content h5 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.03em;
    color: #000;

}

.timeline .content ul li {
    margin-bottom: 20px;
}

.timeline .content ul li:last-child {
    margin-bottom: 0px;
}

.timeline .content p {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 0;
    color: #121212;
    line-height: 1.4;
}

.family-tree-bg {
    background-image: url("../images/family-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.download-detail-bg {
    background-image: url("../images/download-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.download-detail-bg2 {
    background-image: url("../images/download-bg-2.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.download-detail-bg3 {
    background-image: url("../images/read-book-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
}
     .download-detail-bg3 img{
        max-width: 80%;
        margin: auto;
    }
/* .download-detail-bg img{
    width: 100%;
} */
/*-timeline-end-*/
.kingship-table table thead {
    background-color: #FFF6E5;
}

.kingship-table table td,
.kingship-table table th {
    border-color: #ADADAD;
    padding: 19px 28px;
    vertical-align: middle;
}

.kingship-table table th img {
    margin-bottom: 10px;
    margin-right: 10px;
}

.kingship-table table td img {
    margin-right: 10px;
}

.who-was-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 53px;
}

.who-was-wrap p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: left;
}

.who-was-wrap img {
    margin-right: 21px;
}

.kamboj-table table {
    background-color: #EDEDED;
    max-width: 461px;
    margin-top: 25px;
}

.kamboj-table table th,
.kamboj-table table td {
    border-color: #DCDCDC;
    padding: 22px 30px;
    vertical-align: middle;
    width: 50%;
    line-height: 1.4;
}

.kamboj-table table th {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #6D6D6D;
}

.kamboj-table table td {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #121212;
}

/*--contact-us--*/
.contact-wrap input {
    height: 55px;
    font-size: 16px;
}

.contact-inner {
    max-width: 72%;
    margin: 40px auto;
}

.contact-wrap img {
    width: 100%;
}

.contact-wrap input::-webkit-input-placeholder, .contact-wrap textarea::-webkit-input-placeholder {
    color: #A8A8A8;
}

.contact-wrap input::-moz-placeholder, .contact-wrap textarea::-moz-placeholder {
    color: #A8A8A8;
}

.contact-wrap input:-ms-input-placeholder, .contact-wrap textarea:-ms-input-placeholder {
    color: #A8A8A8;
}

.contact-wrap input::-ms-input-placeholder, .contact-wrap textarea::-ms-input-placeholder {
    color: #A8A8A8;
}

.contact-wrap input::placeholder,
.contact-wrap textarea::placeholder {
    color: #A8A8A8;
}

.contact-wrap input,
.contact-wrap textarea {
    border: 1px solid #D8D8D8;
    padding: 22px 17px;
    border-radius: 0;
    resize: none;
}

.contact-wrap form {
    margin-top: 40px;
}

.contact-wrap .form-control:focus {
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    border-color: #111;
    outline: 0px;
    -webkit-box-shadow: rgba(13, 110, 253, 0.25) 0px 0px 0px 0.25rem;
            box-shadow: rgba(13, 110, 253, 0.25) 0px 0px 0px 0.25rem;
}

/*--contact-us-end--*/
/*--blog--*/
.blog-img img {
    width: 100%;
}

.blog-outer {
    border: 1px solid #D8D8D8;
}

.blog-list {
    padding: 13px 30px 30px 30px;
}

.blog-list h5 {
    color: #121212;
    font-family: 'Kenyan Coffee Rg';
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 11px;
}

.blog-list p {
    font-size: 14px;
}

.blog-img img {
    width: 100%;
    max-height: 316px;
    -o-object-fit: cover;
       object-fit: cover;
}

a.btn.blog-btn.theme-btn-dark {
    padding: 14px 12px;
    margin-top: 19px;
}

.date-text {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

.blog-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-sidebar h5 {
    font-size: 20px;
    margin-bottom: 3px;
}

.blog-sidebar .blog-img img {
    height: 100%;
}

.blog-sidebar .blog-list {
    padding: 20px;
}

.blog-sidebar .date-text {
    font-size: 12px;
}

.blog-sidebar .blog-img {
    max-width: 40%;
}

.blog-sidebar-list li {
    margin-bottom: 25px;
}

.yellow-text {
    color: #BA701D;
}

.pagination-wrap {
    margin: 50px 0;
}

/*--blog-end--*/
/*--pagination--*/
.pagination-wrap .active>.page-link,
.page-link.active {
    z-index: 3;
    color: #fff;
    background-color: #BA701D;
    border-color: #BA701D;

}

.pagination-wrap .page-item:first-child .page-link,
.pagination-wrap .page-item:last-child .page-link {
    border-radius: 0;
}

.pagination-wrap .page-link {
    font-family: 'Kenyan Coffee Rg';
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: center;
    color: #000;
    padding: 10px 20px;
}

.pagination-wrap .pagination {
    row-gap: 9px;
}

.pagination-wrap li {
    margin-right: 20px;
}

.pagination-wrap li:last-child {
    margin-right: 0px;
}

.pagination-wrap .page-link:hover {
    color: #111;
}

/*--kingship-table--*/
/*--articles--*/
.articles-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 20px auto 20px auto 20px auto;
    grid-template-columns: auto auto auto auto;
    grid-gap: 20px;
}

.articles-container li {
    border: 1px solid #D8D8D8;
}

/*--articles-end--*/
/*--footer--*/
footer {
    background: #0D0D0D;
    padding: 62px 0 0 0px;

}

.footer-bottom {
    background: #292929;
    padding: 15px 10px 15px 10px;
    margin-top: 35px;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
}

.footer-bottom a:hover {

    color: #d9d0d0;

}

.footer-logo {
    margin-bottom: 17px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-widget ul li {
    padding: 7px 0;
}

.footer-widget ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget ul li a:hover {
    color: #d9d0d0;
}

.footer-widget form input {
    border: 0;
    border-radius: 0;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.footer-widget form input::-webkit-input-placeholder {
    color: #2C2C2D80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget form input::-moz-placeholder {
    color: #2C2C2D80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget form input:-ms-input-placeholder {
    color: #2C2C2D80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget form input::-ms-input-placeholder {
    color: #2C2C2D80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget form input::placeholder {
    color: #2C2C2D80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.footer-widget .btn.theme-btn-light {
    border: 3px solid #fff;
}

.navigation-btn {
    position: fixed;
    bottom: 32px;
    background-color: #0D0D0D;
    border: 1px solid #fff;
    display: inline-block;
    padding: 8px 16px;
    right: 32px;
}

.footer-download ul li h6 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 14px;
    color: #fff;
}

.footer-download ul li h2 {
    font-family: 'Kenyan Coffee Rg';
    font-size: 28px;
    color: #fff;
}

.footer-widget.footer-download ul li {
    border: 1px solid #FFF6E5;
    padding: 9px 18px;
}

.footer-widget.footer-download a {
    text-align: right;
    padding-left: 14px;
}
.footer-widget.footer-download  ul li:nth-child(2) a img{
    border-left: 1px solid #fff;
    padding-left: 16px;
}
.footer-widget.footer-download  ul li:nth-child(3) a img{
    border-left: 1px solid #fff;
    padding-left: 16px;
}
/* .contact-wrap .spinner-border{
    border: #0d0d0d;
} */
.loader{
    display: none;
}
.error{
    font-size: 14px;
}
.msgsuccess{
    display: none ;
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
    padding: 0.5rem 0.9rem;
    /* display: inline-block; */
    font-size: 14px;
}

