@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&family=Playfair+Display:ital,wght@0,400..900;1,400..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
}


/***** 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: #f15b43;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 36px;
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
    width: 100%;
    height: 55px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

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

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #f15b43;
    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: "Playfair Display", serif;
    font-size: 80px;
    line-height: 90px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 10px;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #f15b43;
    font-weight: 700;
    margin: 0 0 10px;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 55px;
    color: #364f75;
    font-weight: 800;
    margin: 0 0 10px;
}

h4 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    line-height: 37px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 10px;
}

h5 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    line-height: 30px;
    color: #364f75;
       font-weight: 600;
    margin: 0 0 10px;
}

h6 {
     font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 55px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 10px;
}

p {
    color: #383838;
    font-size: 15px;
    line-height: 25px;
     font-family: "Montserrat", sans-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;
    z-index: 999;
    width: 100%;
    /* border-bottom: solid 1px #ffffffb0; */
}

.header-logo h6 {
    font-size: 26px;
    margin: 0;
    line-height: 26px;
}

.menuSec {
    padding: 15px 0 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: 8px 19px;
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.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: #f15b43;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    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: #ffffff;
    color: #000000 !important;
}

.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 */

img.img-fluid.main-banner-img {
    height: 855px;
    object-fit: cover;
}

.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;
    display: inline-block;
    color: white;
}



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


/* end search box css */



/*topsec*/


.topSec {
    /* background: #183b4a; */
    /* border-bottom-right-radius: 22px; */
    /* border-bottom-left-radius: 22px; */
    padding: 12px 0;
    border-bottom: solid 1px #ffffff8f;
}
.account_list {
    display: flex;
    /* align-items: center; */
    justify-content: start;
    margin: 0;
}

ul.account_list li {
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.account_list p {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 13px;
    margin: 0;
}
span.sp {
    /* display: flex
; */
    /* margin-left: 10px; */
    margin-right: 20px;
}

ul.social-details {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 25px;
    font-size: 15px;
    position: relative;
    /* text-align: right; */
    margin: 0;
}
.social-details a {
    font-size: 15px;
    color: #ffffff;
}

ul.account_list li a {
    color: #fff;
}


.top-btn a.btn10 {
    width: 80%;
}

.top-btn {
    display: flex
;
    justify-content: end;
}

.banner_text p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

a.btn.btn_badam {
    border: solid 3px #fff;
    border-radius: 29px;
    width: 20%;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 15px;
    font-weight: 600;
    height: 55px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.header-btn {
    display: flex
;
    align-items: center;
    /*justify-content: center;*/
    gap: 20px;
}


.header-btn a.btn10 {
    width: 20%;
}


/**logos-slider-Start*/*/


/*.brand-text h5 img {
    height: 34px;
    width: 172px;
}*/
.brand-text h5 {
    position: relative;
    margin-bottom: 0px;
}
.brand-text h5:before {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: #000;
    right: 40px;
    bottom: 16px;
}
section.brand-sec.hover-area {
    padding: 60px 0px;
    background: #fff;
}
.brand-slider .slick-active {
    opacity: 1.5;
}

.brand-text img.brand-1 {
    width: 70%;
}

.center-content{
    margin: 0 auto;
    text-align: center;
}




.brand-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

.brand-slider .slick-slide {
    margin: 0;
}

/*logos-slider-End*/


.diff-head {
    text-align: center;
}


ul.vol li img {
    /* width: 20%; */
    filter: invert(1);
}
.vol-box {
    /* border: solid; */
    background: #364f75;
    padding: 89px 40px;
    border-radius: 44px;
}
ul.vol {
    display: flex
;
    align-items: center;
    gap: 17px;
    margin: 0 0 28px 0;
}

li.secwidth {
    width: 25%;
}

.vol-box p {
    color: #fff;
    margin: 30px 0;
}
.vol-box a.btn10 {
    width: 45%;
}


.vol-box-1 {
    /* border: solid; */
    background: #f15b43;
    padding: 89px 40px;
    border-radius: 44px;
}

.vol-box-1 p {
    color: #fff;
    margin: 30px 0;
}

.vol-box-1 a.btn.btn_badam {
    width: 45%;
}

.vol-box-2 {
    /* border: solid; */
    background: #364f75;
    padding: 89px 40px;
    border-radius: 44px;
    background: url(../images/part-bk.png);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}
.vol-box-2 p {
    color: #fff;
    margin: 30px 0;
}

.vol-box-2 a.btn10 {
    width: 45%;
}


.counter {
    display: flex
;
    align-items: center;
    justify-content: center;
    background: #364f75;
    z-index: 6;
    position: absolute;
    padding: 40px 20px;
    bottom: -60px;
    left: 17px;
    width: 95%;
    border-radius: 29px;
}
/*span.colr {
    color: #f4941c;
    font-size: 39px;
}*/

.items1 h4 {
    font-size: 15px;
    font-family: 'Montserrat';
    text-align: center;
    margin: 20px 0 0;
    color: #ffffff;
    font-weight: 500;
}

.items1 h2 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 800;
}

.int-img {
    position: relative;
}

.int-img img {
    border-radius: 20px;
}

.awrd-detail1::before {
    position: absolute;
    content: "";
    background: #ffffff61;
    height: 74px;
    width: 1px;
    top: 0;
}

.awrd-detail1 {
    position: relative;
}

.awrd-detail1:nth-child(2)::before {
    display: none;
}

.int-head {
    margin: 0 0 0 60px;
}

ul.off-hr li i {
    margin: 7px 15px 7px 0;
    color: #f15b43;
}

ul.off-hr li {
    font-size: 15px;
    font-family: 'Montserrat';
    color: #383838;
    font-weight: 600;
    line-height: 36px;
}

.int-head p {
    margin: 25px 147px 10px 0;
    line-height: 27px;
}
.abt_counter {
    /* border: 2px solid #082f97; */
    width: 70%;
    text-align: center;
    height: 183px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    /* position: absolute; */
    bottom: 0%;
    left: 10%;
    background: #f15b43;
    border-radius: 24px;
}

.abt_counter h2 {
    font-size: 65px;
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 700;
    /* line-height: 70px; */
    margin-bottom: 25px;
}

.abt_counter h4 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 20px;
    font-family: 'Montserrat';
}
span.years {
    font-size: 26px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    color: #fff;
    margin: 12px 0;
}

.int-head a.btn10 {
    width: 35%;
    margin: 20px 0;
}

.chap-head {
    text-align: center;
}

ul.raise-fund {
    background: #f15b43;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
        padding: 3px 10px 2px;
    color: #fff;
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
    /* border-top-left-radius: 21px; */
    /* border-bottom-left-radius: 22px; */
    background: linear-gradient(to right, #f15b43 71.1%, #ffffff 9.1%);
    border-radius: 24px;
    gap: 271px;
    margin-top: -14px;
}
.champ-btn a.btn.btn_badam {
    border: solid 3px #f15b43;
    border-radius: 29px;
    width: 30%;
    color: #f15b43;
}

.champ-btn a.btn.btn_badam:hover {
    background: #f15b43;
    color: #fff;
}

.champ-btn {
    display: flex
;
    align-items: center;
    gap: 7px;
    margin: 32px;
}
.champ-btn a.btn10 {
    width: 30%;
}

/*.chap-detail {
  
    box-shadow: 0 0 0 4px #8080801f;
    border-top-right-radius: 20px;
}*/

.chap-detail h5 {
    margin: 32px;
}


.chap-detail p {
    margin: 32px;
}

span.gry-font {
    font-size: 15px;
    font-family: 'Montserrat';
    color: #787878;
    margin: 32px;
    font-weight: 700;
}


.champ-img h4 {
    font-size: 22px;
    color: #364f75;
    margin: 0 32px;
    /* text-align: center; */
    line-height: 22px;
}

.champ-img {
    border: solid 1px #f15b4359;
    padding: 25px 10px;
    border-radius: 26px;
}

.champ-img img {
    border-radius: 19px;
    position: relative;
    z-index: -2;
}

ul.raise-fund-1 {
    background: #f15b43;
    display: flex
;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    padding: 3px 10px 2px;
    color: #fff;
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 600;
    /* border-top-left-radius: 21px; */
    /* border-bottom-left-radius: 22px; */
    background: linear-gradient(to right, #364f75 79.1%, #ffffff 9.1%);
    border-radius: 24px;
    gap: 333px;
    margin-top: -14px;
}




.chp-btn {
    display: flex
;
    justify-content: center;
}


.chp-btn a.btn10 {
    width: 17%;
    margin: 30px 0 0;
}

.video-div {
    position: relative;
}



/*
.abs-vid {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translate(-50%);
}*/

.abs-vid i {
    font-size: 21px;
    color: #f15b43;
    /* border: solid; */
    border-radius: 45px;
    /* padding: 20px; */
    width: 75px;
    height: 75px;
    /* padding-left: 27px; */
    /* padding-top: 17px; */
    background: transparent;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: solid 2px;

}

.abs-vid i:hover {
    background: #f15b43;
    color: #fff;
    border: transparent;
}

.call-to-action {
    background: url(../images/action-bk.jpg);
    width: 100%;
    height: 800px;
    background-size: cover;
}


.call-to-action-1 {
    background: url(../images/action-bk.jpg);
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
}

.act-head p {
    color: #fff;
    margin: 40px 35px 40px 0px;
}

.abs-vid {
    display: flex
;
    align-items: center;
    gap: 20px;
}

.abs-vid h2 {
    color: #fff;
}


.action-form input {
    background: #ffffff;
    width: 100%;
    padding: 18px;
    border: 1px solid #c4c4c4;
    border-radius: 44px;
    color: #000;
    margin-bottom: 30px !important;
}

.action-form {
    background: #364f7594;
    padding: 55px;
    border-radius: 33px;
}

.evn-head {
    text-align: center;
}

.blogbox img {
    width: 100%;
}

.blogbox {
    position: relative;
}

.date {
    position: absolute;
    right: 43px;
    background: #f15b43;
    padding: 28px 30px;
    top: 22px;
    border-radius: 20px;
    text-align: center;
}

span.date-txt {
    font-size: 40px;
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 800;
}

span.month {
    font-size: 26px;
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 700;
    text-transform: uppercase;
}

.event-detail {
    position: absolute;
    bottom: 58px;
    left: 34px;
}
.event-detail p {
    color: #fff;
    margin: 0 0 45px;
}
ul.ev-tim {
    display: flex
;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}


ul.ev-tim li i {
    color: #f15b43;
    font-size: 18px;
    margin-right: 10px;
}

ul.ev-tim li {
    color: #fff;
    font-size: 13px;
}

.et-btn {
    display: flex
;
    align-items: center;
    gap: 7px;
   /* margin: 32px;*/
}

.et-btn a.btn10 {
    width: 30%;
}

.et-btn a.btn.btn_badam {
    border: solid 3px #ffffff;
    border-radius: 29px;
    width: 30%;
    color: #ffffff;
}


.blogbox img {
    width: 100%;
    border-radius: 26px;
}

span.date-txt-1 {
    font-size: 40px;
    color: #364f75;
    font-family: 'Playfair Display';
    font-weight: 800;
}

span.month-1 {
    font-size: 26px;
    color: #364f75;
    font-family: 'Playfair Display';
    font-weight: 700;
    text-transform: uppercase;
}

.dt-box {
    border: solid 1px #364f75;
    padding: 31px;
    /* background: #f15b43; */
    padding: 28px 20px;
    top: 22px;
    border-radius: 20px;
    text-align: center;
    width: 82%;
    margin: 0 auto;
}  



.bk:hover .dt-box {
    border: solid #f15b43;
    padding: 31px;
    /* background: #f15b43; */
    padding: 28px 20px;
    top: 22px;
    border-radius: 20px;
    text-align: center;
    width: 84%;
    margin: 0 auto;
}



.bk:hover span.date-txt-1{
    color: #f15b43; 
}


.bk:hover span.month-1 {
    color: #f15b43; 
}

.bk:hover {
    background: #ffffff;
    box-shadow: 0 0 11px 1px #808080ad;
}
.bk {
    /* background: #ffffff; */
    padding: 22px;
    border-radius: 24px;
    /* box-shadow: 0 0 3px #80808073; */
    margin: 0 0 0 35px;
    margin-bottom: 23px;
}

ul.ev-tim-1 li {
    color: #787878;
    font-size: 13px;
}

ul.ev-tim-1 li i {
    color: #f15b43;
    font-size: 18px;
    margin-right: 10px;
}
ul.ev-tim-1 {
    display: flex
;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}

.do-head {
    margin: 0 0 0 69px;
}

.do-head p {
    color: #fff;
    margin: 36px 0;
}

.action-form p {
    color: #fff;
    margin: 0 20px 34px;
}

.action-form button.btn10 {
    width: 40%;
}

/*.blog-img img {
    width: 79%;
}
*/
.blog-detail {
    /* border: solid; */
    padding: 39px 36px;
    background: #fff;
    position: absolute;
    top: 22px;
    left: 39%;
    box-shadow: 0 0 0px #80808073;
    width: 64%;
    height: 308px;
    border-radius: 18px;
}

span.grfont {
    font-size: 16px;
    color: #787878;
    font-weight: 700;
    font-family: 'Montserrat';
}


.blog-detail p {
    margin: 12px 0;
}

.blog-detail h4 {
    margin: 24px 0;
}


.social-details-mem a {
    font-size: 15px;
    color: #f15b43;
    border: solid 1px;
    padding: 8px;
    height: 40px;
    width: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
ul.social-details-mem {
    display: flex
;
    /* justify-content: end; */
    align-items: center;
    gap: 20px;
    font-size: 15px;
    position: relative;
    /* text-align: right; */
    margin: 0;
}

.blog-img img {
    border-radius: 20px;
}

.mem-txt {
    text-align: center;
}

.blog-img {
    position: relative;
    margin-bottom: 30px !important;
}
.pro-det img {
    height: 100px;
    width: 100px;
    border: solid 1px #fff;
    border-radius: 59px;
    text-align: center;
    margin: 0 auto;
    margin-top: -24px;
}

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


.test-box {
    background: #f15b43d4;
    padding: 55px 45px;
    border-radius: 20px;
    text-align: center;
}
.test-box i {
    color: #fff;
    font-size: 64px;
    margin: 0 0 20px;
}
.test-box p{
    color: #fff;
    
}



.pro-det {
    margin: 0 auto;
    text-align: center;
}
.tsthead p {
    color: #fff;
    margin: 20px 0;
}

.tsthead a.btn.btn_badam {
    width: 30%;
}


.testi-slider .slick-dots li button:before {    
    font-size: 19px; 
    opacity: 1;
    
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #d45941;
}

.gallery-img img {
    width: 100%;
    margin-bottom: 24px !important;
    border-radius: 20px;
}

.gallery-img img:hover {
    background: #000000b8;
    transition: opacity .25s ease-in-out;
}

.gall-txt {
    text-align: center;
}

.bg-btn a.btn10 {
    width: 45%;
}

.bg-btn {
    display: flex;
    justify-content: end;
}

.blogdt {
    /* background: antiquewhite; */
    padding: 21px;
    box-shadow: 0 0 4px #80808094;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
span.admin {
    font-size: 13px;
    color: #a7a7a7;
}

.blg-box img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

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

.chang-txt h6 {
    font-size: 40px;
}

.chang-txt p {
    color: #fff;
}
.vol-btn {
    display: flex
;
    justify-content: end;
}

.vol-btn a.btn10 {
    width: 53%;
}



/*Footer Start*/

/*
.footer-logo-box {
    text-align: center;
}
*/

.footer-main {
    padding: 101px 0 142px;
    background: #151515;
    /* background: url(../images/foot-bk.png); */
    width: 100%;
    background-size: cover;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.85;
}
.footer-logo-box p {
    color: #fff;
    margin: 24px 0 0;
}
.footer-logo-box a img {
  margin-bottom: 35px;
}

.footer-logo-box ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    /* justify-content: center; */
    margin-top: 40px;
}

.foot-social ul li a:hover {
    /* background-image: linear-gradient(to bottom, #9e742e, #ac8340, #bb9351, #c9a363, #d8b375, #d8b375, #d9b475, #d9b475, #cba463, #bd9552, #b08641, #a27730); */
    /* transition: 0.5s; */
    background: #ffc107;
    color: #fff;
}
.foot-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    /* background-image: -webkit-linear-gradient(307deg, #ffcc00 0%, #ffc107 49%, rgb(96 90 90) 99%); */
    color: #ffffff;
    transition: 0.5s;
    background: transparent;
    border: solid 1px #fff;
    box-shadow: 0 0 4px gray;
    border-radius: 21px;
}

/*.quick-link::before {
    position: absolute;
    content: "";
    background: #db0632;
    height: 4px;
    width: 38px;
    left: 36px;
    top: 34px;
}*/

/*.contact-info::before {
    position: absolute;
    content: "";
    background: #db0632;
    height: 4px;
    width: 38px;
    left: 30px;
    top: 34px;
}*/



/*.quick-link::after {
    position: absolute;
    content: "";
    background: black;
    height: 100%;
    width: 1px;
    right: 2px;
        top: 0;

}*/

.quick-link {
    padding-left: 40px;
    /* border-left: 1px solid #525252; */
    margin-left: 40px;
    position: relative;
}


/*.contact-info::after {
    position: absolute;
    content: "";
    background: black;
    height: 116%;
    top: 0;
    right: 0;
    width: 1px;
}*/
.contact-info {
    padding-left: 0;
    position: relative;
}


/*.new-letter::before {
    position: absolute;
    content: "";
    background: #db0632;
    height: 4px;
    width: 38px;
    left: 30px;
    top: 34px;
}*/
.new-letter {
    padding-left: 20px;
    position: relative;
}
.copy-right {
    /* background-image: -webkit-linear-gradient(90deg, rgb(12, 12, 12) 0%, rgb(128, 128, 128) 49%, rgb(24, 24, 24) 99%); */
    padding: 16px 0;
    text-align: center;
    background: #005b16;
}

.new-letter-input-icon {
  position: absolute;
  left: 15px;
}
.new-letter input {
    width: 100%;
    height: 55px;
    border: none;
    background: #ffff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 0 2px 0 #00000063;
}
.new-letter-input-icon i {
    font-size: 18px;
    /* background: linear-gradient(to bottom, #b5181c 37%, #cb1a22 49%, #750d10 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    color: #003087;
}
/*.copy-right p {
    font-size: 18px;
    color: #fff;
    font-family: 'Poppins';
    margin: 0;
}*/
.new-letter-input input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #777777;
  /*font-weight: 600;*/
}
.new-letter-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.new-letter-button button {
    width: 100%;
    height: 55px;
    font-size: 19px;
    border: none;
    color: #000;
    background-image: linear-gradient(to bottom, #9e742e, #ac8340, #bb9351, #c9a363, #d8b375, #d8b375, #d9b475, #d9b475, #cba463, #bd9552, #b08641, #a27730);
    border-radius: 10px;
    /* font-weight: 600; */
}
.footer-main h5 {
    font-size: 22px;
    /* font-family: 'Poppins'; */
    /* margin-bottom: 25px; */
    color: #ffffff;
    position: relative;
    /* font-weight: 700; */
    line-height: 25px;
    margin: 0 0 30px;
}
.new-letter p {
    color: #fff;
}
.footer-main h5::before {
    position: absolute;
    content: "";
    background: #f15b43;
    height: 2px;
    width: 56px;
    bottom: -11px;
}
.quick-link ul li a {
    font-size: 16px;
    color: #ffffff;
    font-family: 'Poppins';
}
.quick-link ul {
    line-height: 40px;
    /* column-count: 2; */
}
.contact-info ul li a i {
    font-size: 22px;
    color: #f15b43;
}.contact-info ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}

.contact-info ul li a {
    font-size: 15px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 33px;
    font-family: 'Montserrat';
}
.contact-info ul li:last-child a {
  margin-bottom: 0;
}

.news-button a.btn10 {
    background: #f7f4f4 !important;
    color: #fff;
    width: 61%;
    color: #000;
}

.header-logo p {
    color: #fff;
    margin: 29px 0 0;
}



.news-letter form {
    position: relative;
    width: 86%;
}

.news-letter form input {
    width: 100%;
    padding: 20px;
    border: 1px solid #4d5057;
    background: transparent;
    color: #fff;
    border-radius: 25px;
}


.news-letter form button {
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 15px;
    border: unset;
    width: 163px;
    color: #ffffff !important;
    font-size: 14px;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    font-weight: 500;
    color: #fff;
    border-radius: 47px;
    background: #f15b43;
}

.newlt-txt p {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 24px 0;
}

/*Footer End*/



ul.social-details-footer {
    display: flex
;
    justify-content: end;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    position: relative;
    /* text-align: right; */
    /* margin: 0; */
}

.social-details-footer a {
    font-size: 15px;
    color: #ffffff;
    /* border: solid; */
    padding: 8px;
    height: 40px;
    width: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #f15b43;
}

ul.priv-link {
    display: flex
;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin: 20px 0;
}

ul.priv-link li a {
    font-size: 15px;
    font-family: 'Montserrat';
    color: #dfff;
    font-weight: 600;
}
ul.priv-link li::before {
    position: absolute;
    content: "";
    background: #fff;
    height: 23px;
    width: 1px;
    right: -12px;
}
ul.priv-link li {
    position: relative;
}

ul.priv-link li:nth-child(3)::before {
    display: none;
}


.quick-link ul li a:hover {
    color: #f15b43;
}

ul.priv-link li a:hover {
    color: #f15b43;
}

.copy-right {
    /* background-image: -webkit-linear-gradient(90deg, rgb(12, 12, 12) 0%, rgb(128, 128, 128) 49%, rgb(24, 24, 24) 99%); */
    padding: 16px 0;
    text-align: center;
    background: #151515;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.copy-right p {
    font-size: 15px;
    color: #fff;
    font-family: 'Montserrat';
    margin: 0;
}

.bdr {
    border-top: solid 1px #ffffff30;
    margin: 35px 0 0 0;
}