@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


@font-face {

    font-family: 'Rajdhani-Bold';
    src: url(../fonts/Rajdhani-Bold.ttf);
}









/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000!important;
    text-align: center;
    position: relative;
    overflow: hidden!important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000!important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000!important;
    color: #fff!important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000!important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Rajdhani-Bold', Sans-Serif;
    font-size: 58px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Rajdhani-Bold', Sans-Serif;
    font-size: 50px;
    line-height: 55px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
     text-transform: uppercase;
}

h3 {
    font-family: 'Rajdhani-Bold', Sans-Serif;
    font-size: 21px;
    line-height: 25px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
     text-transform: uppercase;
}

h4 {
    font-family: 'Rajdhani-Bold', Sans-Serif;
    font-size: 50px;
    line-height: 55px;
    color: #181818;
    font-weight: 700;
    margin: 0 0 10px;
     text-transform: uppercase;
}

h5 {
    font-family: 'Rajdhani-Bold', Sans-Serif;
    font-size: 43px;
    line-height: 45px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
     text-transform: uppercase;
}

h6 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-weight: 500;
    margin: 20px 0;
    text-transform: uppercase;
}
p {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0 0 10px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

header {
    position: absolute;
    padding: 12px 0 0 0;
    z-index: 999;
    width: 100%;
    border-bottom: solid 1px #ffffff4a;
}
.menuSec {
    padding: 0px 0;
}
.menuSec ul li i {
    color: #fff;
    position: absolute;
    top: 35%;
    right: 0%;
}
.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 25px 22px;
    font-size: 13px;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.menuSec ul li a:hover, .menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #ffcc9a;
}
.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #ffcc9a;
    left: -50px;
    width: 230px;
    text-align: left;
    top: 75px;
}

.menuSec li>ul>li>a {
    font-weight: 500;
    border: none;
    padding: 8px 20px !important;
    color: #000 !important;
    overflow: hidden;
    font-size: 11px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
    background-color: #000;
    color: #fff !important;!i;!;
    /* font-size: 11px; */
}
.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}


/*header css start */

/*banner css start */

.main-banner-img {
    width: 100%;
    object-fit: cover;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/


/* search box css */
body.search-open {
    overflow: hidden;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 0;
    font-size: 50px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font: 18px;
    opacity: 1 !important;
    width: 50px;
    height: 50px;
}

.close:hover {
    background: #e21d1a;
    color: white;
    opacity: 1 !important;
    top: 2rem;
    right: 2rem;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000b0;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.search-box.search-elem .inner {
    width: 70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.search-box.search-elem label {
    color: white;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
}

.search-box.search-elem button.submit {
    outline: none;
    position: absolute;
    top: 0;
    right: 15px;
    height: 70px;
    color: #ffffff;
    width: 171px;
    height: 55px;
    background: #000000;
    font-family: 'Poppins';
    font-size: 22px;
    cursor: pointer;
    border: 0;
}

.top-cart ul li i {
    margin-right: 13px;
    font-size: 20px;
}

.search-box.search-elem button.submit[disabled] {
    width: 171px;
    height: 55px;
    font-size: 20px;
    color: white;
    background: linear-gradient(to top, #e70e0e 0%, #f66565 100%);
    display: inline-block;
}

.search-box.search-elem input[type=text] {
    padding: 20px;
    height: 55px;
    width: 80%;
    font-size: 32px;
    font-family: 'Poppins';
    font-weight: 300;
    border: none;
    border-bottom: solid 2px #e21d1a;
    transition: border 0.3s;
    border-radius: 0;
}

.search-box.search-elem input[type=text]:focus {
    border-bottom: solid 2px #55cd6c;
    box-shadow: none;
}

.search-box.search-elem label.placeholder {
    position: absolute;
    top: 13px;
    left: 2rem;
    font-size: 32px;
    font-weight: 300;
    font-family: 'Poppins';
    color: #999;
    transition: all 0.3s;
}

.search-box.search-elem label.placeholder.move-up {
    top: -25px;
    color: white;
    font-size: 17px;
    font-family: 'Poppins';
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.search-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.875rem;
    padding: 0 10px;
    display: inline-block;
    color: white;
}


/* .search-btn:hover {
  color: #00A896;
} */


/* end search box css */


.navbar-btn {
    text-align: right;
}

.btn1 {
    background: #ffcc9a;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px;
    height: 50px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    color: #121111;
    text-transform: uppercase;
    font-family: 'Montserrat';
    gap: 14px;
    transition: 0.5s ease-in-out;
}
.btn1 span {
    position: relative;
}

/*.btn1 span:before {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    width: 42px;
    height: 42px;
    content: "";
    position: absolute;
    border-radius: 50%;
    top: -9px;
    right: -12px;
}*/


/*.btn1 img {
    object-fit: cover;
    width: 100%;
   background: #ffcc9a;
    position: relative;
    padding: 3px 0;
}
*/

/*banner
*/
span.text-colr {
    color: #ffcc9a;
}

.header-btn a.btn1 {
    background: transparent;
    border: solid #fff 1px;
    color: #fff;
}

.header-btn.wow.fadeInRight {
    margin-top: 5%;
}







    /* Banner */
    section.banner {
        background-image: url(../images/banner.png);
        height: 1060px;
        display: flex;
        align-items: center;
        background-size: cover;
        position: relative;
        z-index: 0;
        background-position: right;
    }
    .banner-slider {
        width: 60%;
        position: unset;
    }
    
 .banner-slider p {
    width: 75%;
}
    .container-fluid {
        padding: 0 6%;
    }
    
.follow-banner h3 {
    position: relative;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    margin-left: 130px;
    letter-spacing: 3px;
    font-family: 'Montserrat';
}

.follow-links a i {
    color: #484848;
    font-size: 20px;
    border: 1px solid #484848;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
    background: #1a1a1a;
}

.follow-links {
    position: relative;
    display: flex;
    margin: 0;
    gap: 30px;
}

.follow-banner {
    position: absolute;
    bottom: 9%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-links a i:hover {
    background: #ffcc9a;
    color: #fff;
}
section.banner:before {
    position: absolute;
    content: '';
    background: #484848;
    width: 430px;
    height: 1px;
    bottom: 11%;
    z-index: -1;
}
.follow-banner h3:before {
    position: absolute;
    content: '';
    background: #ffffff;
    width: 50px;
    height: 1px;
    top: 46%;
    transform: translate(0, -50%);
    left: -80px;
}
.banner-slider .slick-slide {
    margin: 0;
}
.banner-slider .slick-prev:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr1.png);
    background-size: contain;
    width: 44px;
    height: 50px;
}

.banner-slider .slick-next:before {
    position: absolute;
    content: '';
    background-image: url(../images/arr2.png);
    background-size: contain;
    width: 44px;
    height: 50px;
}

.banner-slider .slick-prev, .banner-slider .slick-next {
    z-index: 99;
    top: unset;
    bottom: 60px;
}

.banner-slider .slick-prev {
    left: unset;
    right: 340px;
}

.banner-slider .slick-next {
    right: 270px;
}


.banner-slider ul.slick-dots {
    position: absolute;
    display: flex;
    width: auto;
    height: auto;
    margin: 0 auto;
    bottom: 120px;
    right: 120px;
    padding: 20px 20px;
    gap: 40px;
}


.banner-slider .slick-dots li button {
    font-size: 35px;
    font-family: 'Rajdhani-Bold';
    line-height: 0;
    display: flex;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    outline: none;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.banner-slider .slick-dots li button:before {

    content: '';

}

.banner-slider ul.slick-dots li {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 30px;
    margin: 0;
    width: 50px;
    transition: 0.5s;
}


.banner-slider ul.slick-dots li.slick-active {
    margin: 0;
    position: relative;
    opacity: 1;
    width: 140px;
}

.banner-slider ul.slick-dots li::before {
    content: '';
    position: absolute;
    bottom: -30px;
    background: #fff;
    width: 50px;
    left: 0;
    height: 4px;
    border-radius: 10px;
    right: 0;
}

.banner-slider ul.slick-dots li.slick-active button {
    opacity: 1;
    font-size: 58px;
}
.banner-slider ul.slick-dots li.slick-active::before {
background: #ffcc9a;
width: 140px;
}


    /* end */



/*aboutus sect*/


.aboutus {
    background: url(../images/abt-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}

.blk-bk {
    /* border: solid; */
    padding: 55px;
    background: #181818;
    border-radius: 20px;
}

.missi-txt::before {
    position: absolute;
    content: "";
    background: #2a2d2d;
    height: 2px;
    width: 159px;
    top: 31px;
}
.missi-txt {
    /* text-decoration: underline; */
    position: relative;
}

.missi-txt h6 {
    font-size: 16px;
    margin: 0 0 23px;
}

.missi-txt::after {
    position: absolute;
    content: "";
    background: #d8e1e1;
    height: 2px;
    width: 24px;
    top: 31px;
    right: 133px;
}

.behind-bars {
    background: #181818;
    margin-top: -10%;
}

.behind-bar-txt {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-top: 5%;
}

.bar-detail {
    text-align: center;
    margin: 20px 0;
    height: 195px;
}
.bar-detail a {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.bar-img:hover {
    background: #ffcc9a;
/*    height: 518px;*/
    border-radius: 10px;
}

.bar-detail p {
    border-bottom: solid 1px #ffffff4a;
    padding: 0 0 18px 0;
}

.ser-slid .slick-active {
    opacity: 1;
}

.bar-img:hover .bar-detail h3 {
    color: #100f0f;
}

.bar-img:hover .bar-detail p {
    color: #100f0f;
}

.bar-img:hover .bar-detail a {
    color: #100f0f;
}
/*.ser-slid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ffcc9a;
    width: 60px;
    background: #ffcc9a;
}

.ser-slid .slick-dots li button:before {
        width: 16px;
    height: 3px;
    content: '';
    text-align: center;
    opacity: 1.25;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    border-radius: 0;
}

.ser-slid .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 33px;
    padding: 0;
    cursor: pointer;
}*/




.ser-slid .slick-dots li.slick-active {
    width: 180px;
    opacity: 1;
}
.ser-slid .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #ffcc9a;
}
.ser-slid .slick-dots li button:before {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 1;
}
.ser-slid .slick-dots li {
    width: 50px;
    height: 4px;
    border-radius: 10px;
}

.ser-slid .slick-dots li button:before {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 1;
        font-size: 0;

}





.change {
    background: url(../images/abt-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}


.chang-txt {
    text-align: center;
    margin: 0 auto;
    width: 60%;
}

.chang-txt p {
    color: #181818;
    }

    .chang-btn a.btn1 {
    background: transparent;
    border: solid #000000 1px;
    color: #0d0d0d;
}

/* Little change */
 section.little-change {
    position: relative;
    /*background: #ffcc9a;*/
    padding: 80px 0;

    background: url(../images/abt-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover
}

.top-heading {
    text-align: center;
}

.btn1.btn-2 {
    border: 1px solid #000;
    color: #181818;
}

.btn1.btn-2 span img {
    filter: invert(1);
}
.top-heading h2 {
    font-size: 50px;
    color: #181818;
}

.top-heading p {
    color: #181818;
    margin-bottom: 20px;
}
.littl-wrap {
    border-radius: 20px;
    padding: 100px 0 0;
    position: relative;
    z-index: 1;
}
.little-box h3 {
    font-size: 43px;
    line-height: 1;
    margin-bottom: 30px;
}

/*.little-box {
    margin: 0 0 0 64px;
}*/

.little-box ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 30px 0 40px;
}

.little-box ul li h5 {
    font-size: 27px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Rajdhani-Bold';
    margin: 0;
}

.little-box ul li h5 span {
    font-size: 11px;
    display: block;
    text-transform: capitalize;
}

.little-box a.btn1 span img {
    filter: invert(1);
    transition: 0.5s;
}

.little-box a.btn1:hover span img {
    filter: unset;
}

.little-box a.btn1:hover {
    color: #fff;
}
.little-slider .slick-dots li button:before {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 1;
}

.little-slider .slick-dots li {
    width: 50px;
    height: 4px;
    border-radius: 10px;
}

.little-slider .slick-dots li.slick-active {
    width: 110px;
    opacity: 1;
}


.little-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    background: #ffcc9a;
}

.little-slider .slick-dots {
    width: fit-content;
    right: 0;
    top: unset;
    bottom: 22%;
}
.little-slider.slick-initialized.slick-slider.slick-dotted {
    margin: 0;
}
.prisnore-img img {
    position: absolute;
    right: 0;
    height: 500px;
    object-fit: cover;
    width: 40%;
    border-radius: 10px 0 0 10px;
}

.little-box p {
    width: 110%;
    line-height: 27px;
    margin-bottom: 20px;
}
.prisnore-img img {
    position: absolute;
    right: 0;
    height: 500px;
    object-fit: cover;
    width: 40%;
    border-radius: 15px;
    bottom: 0;
}

.little-box p {
    width: 100%;
    line-height: 24px;
    margin-bottom: 12px;
    font-size: 13px;
}

.little-slider .slick-dots li button:before {
   
    font-size: 0;
}


section.little-change:before {
    position: absolute;
    content: '';
    background: #181818;
    width: 96%;
    right: 0;
    bottom: 0;
    height: 600px;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}

.sew-molly-circle {
    fill: #364b60;
    width: 180px;
    height: 180px;
    transform-origin: center;
    font-family: 'Montserrat';
    font-size: 10px;
    animation: 5s abc linear infinite;
    z-index: 9;
    position: relative;
    background: #fff;
    border-radius: 50%;
}

@keyframes abc {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.play-vvid a {
    color: #ffcc9a;
    font-size: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.play-vvid {
    position: relative;
    width: fit-content;
}


/* end  */

/* Testmonial Start */
/*

*/
.testi-slider .slick-slide.slick-current .testi-slider-item::before {
    filter: invert(1.4);
}


.testimonials {
    background: #181818;
    position: relative;
    z-index: 0;
    /*margin-top: -11%;*/
}
.test-txt {
    text-align: center;
    width: 75%;
    margin: 0 auto;
    padding-top: 15%;
}
.testi-user-details img {
    width: 53px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.testi-slider-item {
    /* background: #11171a; */
    padding: 40px 0 0 21px;
    position: relative;
    /* height: 350px; */
    border-radius: 20px;
}

.testi-slider .slick-slide.slick-current .testi-user-details img {
    width: 70px;
  
}

.testi-slider-item i.fas.fa-quote-left {
    color: #ffcc9a;
    position: absolute;
    /* background: #ffcc9a; */
    /* width: 50px; */
    /* height: 50px; */
    /* display: flex
; */
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -33px;
    font-size: 50px;
}
.testi-slider .slick-track {
    padding: 50px 0;
    display: flex;
    justify-content: start;
}

.testi-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
    width: 375px !important;
}

.testi-slider-item p {
    color: #666666;
    font-size: 13px;
}

.testi-user-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.testi-user-name h4 {
    /* font-family: 'Rajdhani'; */
    color: #fff;
    margin: 0;
    font-size: 20px;
    /* line-height: normal; */
    /* font-weight: 600; */
    line-height: 20px;
    margin: 0;
}

.testi-user-name span {
    font-size: 13px;
    font-family: 'Montserrat';
    color: #ffffff61;
    margin: 0;
    line-height: 12px;
    opacity: 0.5;
}

.testi-slider-item .rating-star {
    margin-bottom: 22px;
}

.testi-slider .slick-slide.slick-current testi-slider-item {
    background: var(--lmustard);
}

.testi-slider .slick-slide.slick-current .testi-slider-item {
    background: #ffcc9a;
    /* box-shadow: 0 0 8px 0 #ccc; */
    /* margin-left: 10px; */
    /* color: #fff; */
    padding: 60px 10px 60px 31px;
}

.testi-slider .slick-slide.slick-current {
    width: 500px !important;
    transition: 0.5s all;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .testi-user-details {
    margin-top: 55px;
    margin-bottom: 20px;
}

.testi-slider .slick-slide.slick-current .testi-slider-item i.fas.fa-quote-left {
    /* background: #c21b31; */
    color: #fff;
    font-size: 50px;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li a {
    color: #f79a48;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li .grey-star {
    opacity: 1;
}

.testi-slider .slick-slide.slick-current .testi-slider-item .rating-star ul li.grey-star {
    opacity: 1;
}

.testi-slider .slick-list {
    padding-left: 62px;
    padding-right: 0;
}
.rating-star ul {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.testi-item-single i.fas.fa-quote-left {
    background: #af8d53;
}

.testi-item-single {
    background: #141516;
}

span.desg {
    font-size: 13px;
    font-family: 'Montserrat';
    color: rgba(255, 255, 255, .8);
}

.testi-slider-item p {
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 300;
}
.testi-slider .slick-slide.slick-current .testi-slider-item p {
    color: #181818;
}

.testi-slider .slick-slide.slick-current .testi-slider-item h4 {
    color: #fff;
}

.testi-slider .slick-slide.slick-current .testi-slider-item span {
    color: #fff;
}
.test-head p {
    margin: 0 auto;
    text-align: center;
    width: 50%;
}
.rating-star a {
    text-decoration: none;
    color: #fd8f00;
    white-space: initial;
}

.testi-slider-item::before {
    position: absolute;
    content: "";
    background: url(../images/quote.png);
    height: 73px;
    width: 103px;
    left: 50%;
    top: 50%;
    z-index: 0;
    transform: translate(-50%);
}

/*.sec-padding {
    padding-right: 0;
    padding-left: 4%;
}*/
/* testimonial End */


/*latest stories */

.latest-stories{
    background: #181818;
}

.stories-txt {
    text-align: center;
    width: 72%;
    margin: 0 auto;
}

ul.event-det {
    display: flex;
    align-items: center;
    gap: 15px;
    /* border: solid; */
    background: #252525;
    /* margin: 0; */
    border-radius: 20px;
}

li.img-width {
    width: 100%;
}

span.news {
    font-size: 15px;
    color: #ffcc9a;
}

.icons::before {
    position: absolute;
    content: "";
    background: #fafafa2b;
    height: 1px;
    width: 97%;
    top: -11px;
    left: -13px;
}
.icons {
    display: flex;
    align-items: center;
    gap: 17px;
    /* border-top: solid 1px; */
    /* padding: 20px 0; */
    position: relative;
    margin-top: 25px;
}

.alignlist {
    display: flex;
    gap: 10px;
    justify-content: end;
    text-align: end;
    margin-left: 43%;
    align-items: baseline;
}

.icons i {
    color: #fff;
}
.icons p {
    margin: 0;
}

/*Contact home STart*/

.h-map {
    position: relative;
}

section.contact-sec {
    padding: 265px 0 0;
    position: relative;
        background: #181818;
}
.h-map iframe {
    width: 100%;
    height: 500px;
    filter: invert(1) brightness(0.5) grayscale(1);
}

section.contact-sec .container-fluid {
    padding: 0;
}

.h-map h3 {
    color: #fff;
    position: absolute;
    bottom: 70px;
    left: 5%;
    z-index: 9;
    font-size: 56px;
    /* font-weight: 100; */
    text-transform: uppercase;
    /* font-family: 'SchoolBookNew'; */
    text-shadow: 0 1px 0px #fff;
    line-height: 52px;
}

.get-in-touch-form {
    width: 35%;
    box-shadow: 0 0 40px 0 #00000021;
    padding: 32px 20px;
    position: absolute;
    top: -150px;
    right: 66px;
    z-index: 9;
    background: #ffcc9a;
    border-radius: 10px;
}
ul.contact-no {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.get-in-touch-form input {
    /*width: 100%;*/
    height: 48px;
    /*border: 1px solid #1d1b1b63;
    border-radius: 6px;
    padding: 0 19px;
    outline: none;
    color: #111010;
    margin-bottom: 20px;
    margin-top: 13px;
    background: transparent;*/
}
.submit-btn {
    text-align: end;
    position: relative;
    right: 0;
    margin-top: 10%;
}
.get-in-touch-form input::placeholder{
    color: #111010;
    font-size: 14px;
    font-weight: 500;
}

ul.donar li {
    font-family: 'Rajdhani-Bold';
    font-size: 25px;
    color: #111010;
}
.submit-btn button {
    border: 0;
    /* margin-top: 40px; */
    background: var(--yellow);
    /* padding: 5px 20px 5px 25px; */
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Bebas-Regular';
    text-transform: uppercase;
    /* display: flex; */
    align-items: center;
    justify-content: end;
    width: 31%;
    margin-left: auto;
    color: #1b1b1b;
    border: solid #af2119;
    /* border-radius: 25%; */
    height: 50px;
    /* text-align: center; */
}
.submit-btn button:hover{
    background-color: #af2119 !important;
    color: #fff !important
}
.submit-btn:before {
    content: '';
    position: absolute;
    width: 73%;
    height: 1px;
    background: #2b292924;
    top: 50%;
    left: -19px;
    z-index: -1;
}
.submit-btn a.btn1 {
    border: solid 1px #000;
}
.get-in-touch-form h4 {
    font-size: 30px;
    /* font-family: 'ample-t'; */
    /* text-transform: uppercase; */
    /* text-shadow: 0 0 1px #171616; */
    line-height: 30px;
    margin-bottom: 25px;
    color: #111010;
}

.get-in-touch-form p {
    color: #191818;
   
}

.get-in-touch-form label {
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 600;
    /* text-transform: uppercase; */
    color: #141313;
    /* margin-bottom: 8px; */
    text-transform: capitalize;
}


.get-in-touch-form textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ebebeb;
    border-radius: 30px;
    padding: 20px 25px;
    outline: none;
    color: #515151;
    margin-bottom: 30px;
}

.submit-btn button span {
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s all;
}

.submit-btn button:hover span {
    transform: scale(0.9);
    transition: 0.5s all;
    margin-right: -8px;
}

.w-blur-leaf {
    position: absolute;
    right: 41%;
    top: 60px;
    animation: scale-rotate 5s linear infinite;
}

.single-leaf2 {
    position: absolute;
    top: 55px;
    left: 15%;
    animation: leaf-jiggle 3s linear infinite;
}

ul.donar {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 20px;
}

ul.donar li {
    font-size: 25px;
    font-family: 'RAJDHANI-BOLD';
    color: #121111;
    margin: 0 0 0px 5px;
}
.get-in-touch-form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-top: -12px;
}

.get-in-touch-form .form-group input {
    width: 15px;
    margin: 0;
    margin-right: 10px;
}

.get-in-touch-form .form-group input[type="text"] {
    width: 82%;
    margin-bottom: 20px;
    margin-top: 30px;
    margin-left: 12px;
    padding: 24px;
    /*background: #131212;*/
    height: 28px;
    color: #fff;
}

.get-in-touch-form input[type="radio"] {
    margin: 20px 6px;
}


.donar input[type="radio"] {
    height: 14px;
    /* width: 18px; */
     /*opacity: 0; */
    margin: 0 12px 0 0px;
}


span.checkmark::after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: red;
}

span.checkmark {
    position: relative;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}


/*
.input[type="radio"]::after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.input[type="radio"] {
    position: relative;
}
*/


/*.get-in-touch-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: none;
   
}

input[type="checkbox"] {
    position: relative;
}
input[type="checkbox"]:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1111;
    border: 3px solid #be2623;
    border-radius: 12px;
}
*/
/*Contact home End*/


/*Footer Start*/



.contact-f {
    margin-left: 7%;
}
footer {
    background: #1c1c1c;
    padding: 80px 0 30px;
    margin-top: -8px;
}

footer h5 {
    font-size: 24PX;
    color: #fff;
    /* font-family: 'SchoolBookNew'; */
    /* font-weight: 500; */
}
.quicklink ul {
    column-count: 2;
}

.quicklink ul li a {
    font-size: 12px;
    line-height: 40px;
    color: #d2d2d2;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.quicklink {
    border-right: 1px solid #ffffff1c;
    height: 200px;
}

.contact-f ul li a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    font-size: 12px;
    color: #c1c1c3;
    line-height: 38px;
}

.contact-f ul li a i {
    font-size: 20px;
    width: 25px;
}

/*.f-web {
    text-align: end;
}*/

.f-card {
    text-align: end;
}

.f-web p {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.footerbottom {
    background: #252525;
    padding: 10px 20px;
    border: 1px solid #ffffff17;
    margin-top: 25px;
}

.f-media ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    margin: 0;
}

.f-media ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}

.f-media ul li a:hover {
    background: var(--yellow);
}

.contact-f ul li a:hover {
    color: var(--yellow);
}

.quicklink ul li a:hover {
    color: var(--yellow);
}
.quicklink ul li a:hover{
    color: #efac1a !important;
}


.loc-img {
    position: absolute;
    top: 20%;
    left: 43%;
}
/*Footer End*/

/*inner pages*/


.banner-image img {
    width: 100%;
}

.banner-image {
    position: relative;
}


.title-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /*  background: #b7040461; */
    display: flex;
    align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: start;
}

.inner-aboutus {
    /* background: url(../images/abt-bk.png); */
    width: 100%;
    height: 100%;
    background-size: cover;
    background: #181818;
}



.inner-little-change {
    position: relative;
    /* background: #ffcc9a; */
    padding: 80px 0;
    background: url(../images/abt-bk.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}
.inner-testimonials {
    background: #181818;
    position: relative;
    z-index: 0;
     margin-top: -11%; 
}


.inner-little-change::before {
    position: absolute;
    content: '';
    background: #181818;
    width: 92%;
    left: 61px;
    bottom: 0;
    height: 614px;
    /* border-radius: 20px 0 0 20px; */
    z-index: 6;
    border-radius: 35px;
}

.prs-img {
    position: relative;
    z-index: 7;
}
.inner-top-heading {
    text-align: center;
    margin-bottom: 10%;
}


.inner-top-heading h2 {
    font-size: 50px;
    color: #181818;
}
.inner-top-heading p {
    color: #181818;
    margin-bottom: 20px;
}

.title-new h2 {
    font-size: 58px;
}

.bread-crumbs a {
    color: #fff;
    font-size: 20px;
    font-family: 'Rajdhani-Bold';
}

span.bread-crumbs {
    font-size: 20px;
    color: #ffcc9a;
    font-family: 'Rajdhani-Bold';
    text-transform: uppercase;
}

.abt-text h2 {
    font-size: 40px;
}



/* donate page css */

.donate-pg-sc {
    padding: 80px 0;
    background: #181818;
}

.donate-pg-cnt input[type="checkbox"] {
    width: 18px;
    height: 16px;
    border: none;
}

.donate-pg-cnt label {
    color: #7C7C7C;
    font-size: 14px;
    top: -2px;
    position: relative;
}

.donate-pg-cnt h4 {
    font-size: 34px;
    color: #fff;
    position: relative;
    /* padding-bottom: 10px; */
    /* margin-bottom: 40px; */
    /* margin-top: 20px; */
    font-family: 'Rajdhani-Bold';
    font-weight: 400;
    /* text-transform: capitalize; */
}
.donate-pg-cnt input[type="text"] {
    width: 100%;
    height: 55px;
    padding: 10px;
    border: 1px solid #E3E3E3;
    margin-bottom: 30px;
    background: transparent;
    border-radius: 10px;
    color: #fff;
}
.donate-pg-cnt input[type="text"]::placeholder,
.donate-pg-cnt textarea::placeholder {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.donate-pg-cnt textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #E3E3E3;
    margin-bottom: 30px;
    background: transparent;
    border-radius: 10px;
}

.donate-pg-cnt input[type="submit"] {
    border: 0;
    padding: 18px 50px;
    font-size: 17px;
    background: #e99d00;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
    width: auto;
}

.donate-pg-cnt input[type="submit"]:hover {
    color: #000000;
    background: #FCB11A;
}
input[type="checkbox"] {
    position: relative;
    display: none;
}

input[type="checkbox"]:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1111;
    border: 1px solid #ffcc9a;
    background: transparent;
}


.dnte-btn a.btn10 {
    width: 16%;
    height: 58px;
    font-size: 13px;
    font-family: 'Montserrat';
}

.dnte-btn {
    margin-top: 10px;
}


footer.dont{
    background: #181818;
    padding: 80px 0 30px;
    margin-top: -8px;
}

/*Donate end*/



.contact_page {
    /* position: relative; */
    /* overflow: hidden; */
    /* padding: 80px 0 10px; */
    background: #181818;
}

.contact_form_sec {
    position: relative;
    padding: 70px 0;
}

.contact_form p {
    font-size: 16px;
    line-height: 25px;
    color: #333;   
    font-weight: 500;
    margin: 0 0 20px;
}



.contact_detail_box figure img {
    margin: auto;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.contact_detail_box h2 {
    font-size: 30px;
    line-height: 35px;
    color: #000;
    font-weight: 800;
    margin: 20px 0 10px 0;
    transition: 0.5s ease-in-out;
}

.contact_detail_box p {
    font-size: 13px;
    line-height: 25px;
    color: #fff;
    margin: 0;
    /* height: 40px; */
    transition: 0.5s ease-in-out;
    font-family: 'Rajdhani-Bold';
}
.contact_detail_box {
    padding: 30px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    /* box-shadow: 0px 0px 10px #ff0000; */
    /* background-color: #ff0000; */
    height: 157px;
    border: solid #ffffff6e 1px;
}
.contact_detail_box i {
    color: #0470b2;
    font-size: 30px;
    margin-bottom: 20px;
}
.contact_form h1{
  color: #0178bd;
}
img.contact-dot-bottom {
    position: absolute;
    z-index: 2;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
}
.contact_detail_box img {
    margin: 0 0 20px;
}

.contact_detail_box:hover * {
    color: #000;
}

.contact_detail_box:hover {
    background: #ffcc9a;
    /* border-radius: 0 20px 0 20px; */
}

.contact_detail_box:hover img {
    filter: brightness(150.5);
}

.contact_detail_box h4 {
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 600;
    /* margin: 0 0 10px; */
    border-bottom: solid 1px #ffffff4a;
    padding: 10px 0;
    width: 44%;
}
a.btn.btn_badam.cntbtn {
    height: 48px;
    width: 100%;
    border-radius: 0;
    border: none;
    background: #ff0000;
    /* border-bottom: solid 5px #992729; */
    /* border-bottom-color: transparent; */
    /* border-bottom-style: groove; */
    font-size: 20px;
    color: white;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
        font-family: 'Railway';
}
.contact_detail_box img {
    height: 56px;
    width: 56px;
}

.get-form label {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 13px;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: #ffffff52;
}
.contact-heading-inner h2 {
    font-size: 50px;
    line-height: 60px;
    text-align: center;
}
.contact-heading-inner p {
    color: #ffffff;
    font-size: 13px;
    line-height: 25px;
    font-family: 'Montserrat';
    /* width: 41%; */
    margin: 0 auto;
    padding-bottom: 4%;
}

.contact-button {
    display: flex;
    justify-content: center;
    margin-top: 3%;
}
.contact-button a.btn10 {
    width: 15%;
    margin-top: 3%;
}

section.contactus-inner.pt-8.pb-8 {
    background: #181818;
}
.contact-heading-inner {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.f1 .form-control {
    display: block;
    width: 100%;
    padding: 11px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.get-form textarea.form-control {
    min-height: calc(13.5em + 0.75rem + 2px);
}
.get-form .form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
section.contact_page.position-relative.pt-8.pb-8 .row {
    justify-content: center;
}



.product-inner-sec .product-side-bar ul li {
    margin: 20px 0;
    border-bottom: solid 1px #ffffff3b;
    padding: 10px 0;
}
.product-inner-sec .product-side-bar ul li a input {
    height: 15px;
    width: 15px;
    border: 2px solid #000;
    margin-right: 30px;
}
.product-inner-sec .product-side-bar ul li a label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    gap: 30px;
    font-family: 'Montserrat';
}

section.product-inner-sec.all-section {
    background: #181818;
}

h4.themes-h4 {
    font-size: 27px;
    color: #fff;
    line-height: 30px;
}

.product-inner-sec .product-side-bar ul li a label:hover {
    color: #ffcc9a;
}

ul.event-det-1 {
    display: flex;
    align-items: center;
    gap: 15px;
    /* border: solid; */
    /* background: #222222; */
    /* margin: 0; */
}

ul.event-det-1 li {
    font-size: 28px;
    /* font-family: 'bignoodletitling'; */
    color: #fff;
    line-height: 35px;
}
/*li.img-width {
    width: 60%;
}*/

.story-box {
    border: solid 2px #ffffff1c;
    padding: 23px;
    border-radius: 15px;
}

.event-det-1 a {
    font-size: 27px;
    color: #fff;
    font-family: 'Rajdhani-Bold';
    text-transform: uppercase;
    margin: 0;
    /* width: 33%; */
    display: block;
}


.event-det-1 h6 {
    font-size: 13px;
    line-height: 13px;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: 'Rajdhani-Bold';
    border-bottom: solid 1px #ffffff38;
    padding: 10px 0;
}

.stor-btn a.btn1 {
    font-size: 11px;
    font-weight: 500;
    color: #121111;
    display: flex;
    align-items: center;
    justify-content: center;
        font-family: 'Montserrat';
}

.stor-btn.wow.fadeInRight {
    width: 30%;
}



li.img-width-1 {
    width: 48%;
}


.stor-btn-1.wow.fadeInRight {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.stor-btn-1 a.btn1 {
    width: 26%;
    display: flex;
    align-items: center;
    justify-content: center;
}



section.story-detail.pt-8.pb-8 {
    background: #181818;
}


.sd-desp {
    margin: 4% 0;
}




.shrd-story h2 {
  
    font-size: 43px;
    line-height: 35px;
}



ul.sd1-img {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
}

.det-box {
    /* border: solid; */
    background: #ffcc9a;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10%;
}

td.style {
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 25px;
    color: #181818db;
}

td.style1 {
    font-size: 13px;
    font-family: 'Montserrat';
    font-weight: 500;
    line-height: 25px;
    color: #181818db;
    text-align: end;
}

.det-box h6 {
    font-size: 21px;
    font-family: 'Rajdhani-Bold';
    color: #181818;
}

.style p {
    font-size: 10px;
    font-family: 'Montserrat';
    color: #1c1c1c;
    line-height: 11px;
    width: 73%;
    margin: 0px 0 0 42px;
}
.style img {
    margin: 0 10px 0 0;
}

.stry-det-btn {
    display: flex;
    gap: 20px;
    align-items: center;
}


.stry-det-btn a.btn1.bnt2 {
    border: solid 1px #fff !important;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.stry-det-btn a.btn1.bnt2 img {
    filter: invert(1);
}


tr.green {
    border-color: #00000024;
    border-style: solid;
    border-width: 0;
}



.bdr {
    border-left: solid 1px #ffffff4a;
    padding: 0 0 0 20px;
}







/*responsive*/


@media only screen and (min-width: 1366px) and (max-width: 1465px){}


@media only screen and (min-width: 1200px) and (max-width: 1365px){

    section.little-change:before {   
    width: 97%;
   
}


.get-in-touch-form .form-group input {
  
    margin-right: -13px;
}



}


@media only screen and (min-width: 768px) and (max-width: 991px){


section.banner {
    background-position: center;
}

.banner_text h1 {
   
    font-size: 43px;
    line-height: 54px;
}

.banner-slider p {
    width: 100%;
}
.follow-banner {
      bottom: 18%;
 
}
section.banner:before {
       width: 400px; 
    bottom: 20%;
   
}
.abt-img img {
    width: 100%;
}

.behind-bar-txt {   
    width: 100%;
  
}



.top-heading h2 {
    font-size: 37px;
  
}


section.little-change:before {   
    width: 96%;  
    height: 724px;
   
}


.little-box h3 {
    font-size: 30px;
    
}


.test-txt {  
    width: 100%;   
}

.testi-user-name h4 {  
    font-size: 18px;
   
}
.testi-user-name span {
    font-size: 11px;
}
.stories-txt {
  
    width: 100%;
   
}

ul.event-det {
    margin-bottom: 20px;
}
.get-in-touch-form {
    width: 63%;
    padding: 40px 10px;
    top: -188px;
    right: 9px;
    
}

.get-in-touch-form label {
    font-size: 11px;
   }


.h-map h3 {
       font-size: 43px;
   }


.contact-f {
    margin-left: 0;
}
.navbar-btn a.btn1 {
    padding: 0 13px;
}

}

@media only screen and (min-width: 992px) and (max-width: 1199px){


.navbar-btn a.btn1 {
    padding: 0 13px;
        font-size: 9px;
}
.follow-banner h3 {
       margin-left: 89px;
   }


.behind-bar-txt {
    width: 100%;
   
}

section.little-change:before {
  
    width: 97%;    
    height: 634px;
  
}
.little-slider .slick-dots {
        bottom: 13%;
}

.get-in-touch-form {
    width: 55%;
}



}
html{
    overflow-x: hidden;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.little-box ul li img {
    width: 54px;
    height: 54px;
    border-radius: 100%;
}
.stor-btn a.btn1 {
    padding: 10px 20px;
}
.product-side-bar ul li a {
    color: #ffcc9a;
    font-size: 16px;
}
section.product-inner-sec.all-section .stor-btn.wow.fadeInRight {
    width: fit-content;
}
.qr-code img {
    width: 100%;
    height: 540px;
    object-fit: contain;
}
.qr-code h2 {
    color: #000;
    text-align: center;
}
h5#exampleModalLabel {
    color: #000;
}
.modal-body .qr-code img {
    height: auto;
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
.banner-slider {
    width: 100%;
}
.slicknav_menu i.fas.fa-sort-down {
    opacity: 0;
}
.slicknav_nav a:hover {
    background: #000;
    color: #fff;
}
.slicknav_nav .slicknav_arrow {
    font-size: 18px !important;
}
.slicknav_nav a {
    display: block;
    font-size: 17px;
}
li.slicknav_collapsed.slicknav_parent {
    background: #000;
    padding: 5px 0;
}
ul.donar li label {
    padding: 3px 10px !important;
}
.banner-slider p {
    width: 100%;
}
.banner-slider h1 {
    font-size: 40px;
    line-height: 48px;
}
.blk-bk {
    padding: 55px 20px;
}
.abt-text h2 {
    font-size: 23px;
}
.behind-bars h2 {
    font-size: 35px;
    line-height: 45px;
}
.stories-txt {
    width: 100%;
}
.latest-stories h2 {
    font-size: 32px;
    line-height: 45px;
}
.behind-bars h2 {
    font-size: 35px;
    line-height: 45px;
}

.stories-txt {
    width: 100%;
}

.latest-stories h2 {
    font-size: 32px;
    line-height: 45px;
}

.event-det h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
}

.event-det p {
    font-size: 12px;
    line-height: 20px;
}

.event-det .icons {
    gap: 6px;
}

.event-det .icons p {
    font-size: 9px;
}

.latest-stories .lightSpeedIn {
    margin-bottom: 20px;
}

ul.event-det {
    padding: 6px  3px;
}
.little-change .top-heading h2 {
    font-size: 30px;
}
.little-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    }
    section.little-change:before {
    position: absolute;
    content: '';
    background: #181818;
    width: 100%;
    right: 0;
    bottom: auto;
    height: 1000px;
    border-radius: 20px 0 0 20px;
    z-index: 1;
    top: 630px;
}
.prisnore-img img {
    position: initial;
    width: 100%;
    height: 350px;
    margin-top: -50px;
}

.sew-molly-circle {
    width: 80px;
    height: 80px;
    position: relative;
    right: -240px;
    top: -60px;
}

.play-vvid a {
    right: -480px;
    margin: 0 auto;
    top: -24%;
}
.testimonials .test-txt {
    width: 100%;
}

.testimonials .test-txt h2 {
    font-size: 30px;
    line-height: 39px;
}
.testi-slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
    width: 269px !important;
}
.testimonials .test-txt {
    width: 100%;
}

.testimonials .test-txt h2 {
    font-size: 30px;
    line-height: 39px;
}

section.contact-sec {
    padding-top: 0;
}

.get-in-touch-form {
    width: 100%;
    box-shadow: 0 0 40px 0 #00000021;
    padding: 32px 8px;
    position: relative;
    top: 0;
    right: 0px;
    z-index: 9;
    background: #ffcc9a;
    border-radius: 10px;
}
.testi-slider .slick-slide.slick-current .testi-slider-item {
    padding: 60px 120px 60px 10px;
}
ul.donar {
    gap: 12px;
}
.contact-f {
    margin-left: 0%;
}
.quicklink {
    border-right: 1px solid #ffffff1c;
    height: auto;
}
section.inner-title img {
    height: 450px;
    object-fit: cover;
    object-position: -690px 0;
}
.inner-little-change::before {
    width: 100%;
    left: 0;
    height: 300px;
    border-radius: 0;
}
.story-box {
    padding: 23px 10px;
}

.story-box ul.event-det-1 {
    display: inline-block;
    text-align: center;
}

li.img-width-1 {
    width: 100%;
}

li.img-width-1 img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    margin-bottom: 20px;
}

section.product-inner-sec.all-section .stor-btn.wow.fadeInRight {
    margin: 0 auto;
}
.sd-img img {
    width: 100%;
    margin-bottom: 20px;
    height: 400px;
    object-fit: contain;
}

.shrd-story h2 {
    font-size: 37px;
    line-height: 35px;
}

.stry-det-btn {
    gap: 13px;
}
.contact-heading-inner {
    width: 100%;
}
.f-web {
    text-align: center;
    margin-bottom: 8px;
}
.f-card {
    text-align: center;
}



}




ul.donar li label {
    font-size: 25px;
    font-family: 'RAJDHANI-BOLD';
    color: #121111;
    margin: 0 0 0px 5px;
}
.donar input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity:0;
}
.donar input[type="radio"]:checked + label {
    background: #000;
    color: #fff;
    border-radius: 5px;
}
ul.donar li {
    position: relative;
}
ul.donar li label {
    border: 1px solid #000;
    padding: 3px 20px;
    font-size: 18px;
    border-radius: 5px;
}


form.dntfrm input {
    width: 11%;
}