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

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

:root {
    --base: #a3a58f;
    --white: white;
    --black: black;
}

html {
    overflow-x: hidden;
}

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

body.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

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;
}

i {
    font-family: FontAwesome !important;
    font-style: normal;
}

i::before {
    font-family: FontAwesome !important;
}

/***** 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: 'amnestia';
    src: url('../fonts/amnestia.otf');
}

.heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    width: 70%;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 9;
}

/***** 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;
}

.sec {
    padding: 80px 0;
}

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

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

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

/* Buttons Css Starts */

.theme1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 5px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
    position: relative;
    font-size: 11px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat';
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    background-color: var(--base);
    border-radius: 5px;
    border: 1px solid var(--white);
    z-index: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1 span.theme1-txt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 0;
    background-color: var(--black);
    z-index: -1;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 15px;
    background-color: var(--white);
    border-radius: 5px;
    border: 1px solid #00000026;
    rotate: 0deg;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    rotate: 180deg;
    transition: ease-out;
    transition-duration: 0.5s;
}

.theme1 span.theme1-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10px;
    width: 15px;
    object-fit: contain;
}


/* Buttons Css Ends */

.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: 'amnestia';
    font-size: 55px;
    line-height: 100px;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: 'amnestia';
    font-size: 60px;
    line-height: 65px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: 'amnestia';
    font-size: 30px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: 'amnestia';
    font-size: 24px;
    line-height: 29px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: 'amnestia';
    font-size: 20px;
    line-height: 25px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: 'amnestia';
    font-size: 18px;
    line-height: 23px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

p {
    color: #000;
    font-size: 16px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0;
}

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

header {
    padding: 30px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #ffffff3d;
}


.header-btn {
    display: flex;
    align-items: center;
    justify-content: end;
}

.menuSec {
    padding: 0px 0;
}


.menu-box ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.menu-box li ul {
    display: none;
}

.menu-box ul li a {
    position: relative;
    text-decoration: none;
    font-family: 'Montserrat';
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-transform: uppercase;
    font-weight: 400;
    z-index: 0;
    transition: ease-in;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}

.menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid var(--base);
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.menu-box ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 0;
    background-color: var(--base);
    transition: ease-out;
    transition-duration: 0.5s;
    z-index: -1;
}

.menu-box ul li a:hover::after {
    height: 100%;
    transition: ease-out;
    transition-delay: 0.5s;
    transition-duration: 0.5s;
}

.menu-box ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

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

.menu-box li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menu-box li>ul>li,
.menu-box li>ul>li>a {
    display: block;
    margin: 0;
}

.menu-box li>ul>li>a:before,
.menu-box li>ul>li>a:after {
    display: none;
}

.menu-box li:hover li {
    float: none;
}

.menu-box li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menu-box 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 Ends */

/*Banner Css Starts*/

.main-banner-img {
    width: 100%;
    height: 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 [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;
}

.carousel-item {
    height: 100vh;
}

.banner_text:hover {
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-txt-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    padding: 30px 0 0 30px;
    width: 80%;
    max-width: 680px;
    margin: 0 0 0 80px;
    border-left: 1px solid #ffffff3b;
}

.banner-txt-btn::Before {
    content: '';
    position: absolute;
    left: -1px;
    bottom: 0;
    border-left: 1px solid #ffffff7e;
    height: 60px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner_text:hover .banner-txt-btn::Before {
    border-left: 1px solid #fff;
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner_text h1 span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 80px;
    padding: 0 20px;
    /* background-color: var(--white); */
    color: var(--base);
    z-index: 9;
}

.banner_text h1 span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-color: var(--white);
    z-index: -1;
    border-radius: 5px;
}

.banner-txt-btn p {
    color: var(--white);
    opacity: 0.8;
}

/*Banner Css Ends*/

/*Inner Banner Css Starts*/

.carousel-item {
    height: 600px;
}

.main-banner-img {
    object-position: 0 0;
}

/*Inner Banner Css Ends*/

/*About Us Css Starts*/

section.about-sec {
    padding: 120px 0;
    position: relative;
}

section.about-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 60%;
    width: 100%;
    background-image: url('../images/aboutbg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.about-txt-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.about-txt-main * {
    color: var(--white);
}

.about-txt {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    text-align: end;
    gap: 30px;
    width: 85%;
    margin: 0 0 0 auto;
}

.about-heading {
    width: 100%;
}

.about-heading h2 {
    display: inline-block;
}

.about-heading h2 span {
    display: flex;
    align-items: center;
    justify-content: end;
}

.about-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 100px;
    /* width: 95%; */
    /* margin: 0 auto 0 0; */
    padding: 0 40px 0 0;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 0;
    border-bottom: 1px solid #ffffff38;
    width: 69%;
}

.about-ex-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    border-radius: 40px;
    overflow: hidden;
}

.about-img-main {
    position: relative;
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: 11%;
    left: -5px;
    background-color: var(--white);
    border-radius: 100px;
    height: 10px;
    width: 10px;
}

.about-img-main::after {
    content: '';
    position: absolute;
    top: 10.1%;
    left: -12px;
    border: 1px solid var(--white);
    border-radius: 100px;
    height: 25px;
    width: 25px;
}

.about-ex-img-main img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 850px;
    border-radius: 60px;
    overflow: hidden;
    border: 20px solid var(--white);
    box-shadow: 0 0 12px 0px #00000033;
}

.about-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.tree-card-box-main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    width: 100%;
}

.tree-card1 {
    width: 60%;
}

.tree-card2 {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tree-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.tree-heading h2 {
    color: #777e6a;
}

.tree-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
}

.tree-txt h5 {
    font-size: 17px;
    line-height: 20px;
    color: #777e6a;
}

.tree-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 455px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.tree-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tree-card-ex .tree-card {
    position: relative;
}

.tree-card-ex .tree-txt {
    position: absolute;
    bottom: 25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 10;
}

.tree-card-ex .tree-txt * {
    color: #fff;
}

.tree-card-ex .tree-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 265px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.tree-card-ex .tree-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tree-img a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 9;
}

.tree-card-ex .tree-img a::before {
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(163, 165, 143, 0) 0%, rgba(163, 165, 143, 1) 100%);
    z-index: 999;
}

.tree-list-card-main {
    width: 100%;
}

.tree-list-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #0000001f;
    padding: 0 0 20px 0;
}

.tree-list-card h5 {
    font-size: 17px;
    line-height: 25px;
}

.tree-list-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 20px;
    background-color: #efefef;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 0 20px 0 #0000001f; */
}

.tree-list-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 150px;
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
}

.tree-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0 0;
}

.legacy-book-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    position: relative;
    padding: 0 0 40px 0;
}

.legacy-book-main::Before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 75%;
    width: 100%;
    background-color: #777e6a;
    border-radius: 20px;
}

.legacy-book-txt {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 30px;
    width: 80%;
    margin: 0 auto;
    height: 900px;
}

.legacy-book-txt * {
    color: var(--white);
}

p.legacy-ex {
    font-style: italic;
}

.legacy-book-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 680px;
    width: 42%;
    position: absolute;
    top: 0;
    left: 140px;
    right: 0;
    margin: 0 auto;
}

.legacy-book-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/*About Us Css Ends*/

/*Quote Sec Css Starts*/

section.quote-sec {
    background-image: url('../images/quote-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quote-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    /* gap: 30px; */
}

.quote-txt h1 span {
    display: flex;
    position: relative;
    z-index: 1;
    color: var(--base);
    padding: 0 20px;
    line-height: 90px;
}

.quote-txt h1 span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--white);
    border-radius: 10px;
    z-index: -1;
}

.quote-txt-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    padding: 40px 0 0 40px;
    border-left: 1px solid #ffffff3b;
    width: 90%;
    margin: 0 0 0 80px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.quote-txt-btn:hover {
    transition: ease-out;
    transition-duration: 0.5s;
}

.quote-txt-btn::Before {
    content: '';
    position: absolute;
    left: -1px;
    bottom: 0;
    border-left: 1px solid #ffffff7e;
    height: 60px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.quote-txt-btn:hover::Before {
    height: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
}

.quote-txt-btn p {
    color: var(--white);
}

/*Quote Sec Css Ends*/

/*Gallery Sec Css Starts*/

section.gallery-sec {
    position: relative;
}

section.gallery-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 70%;
    width: 100%;
    background-color: #777e6a;
}

.gallery_slider .slick-active {
    opacity: 1;
}

.gallery_slider .slick-slide {
    margin: 0px 10px;
}

.gallery-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-card img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery_slider .slick-prev,
.gallery_slider .slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--bs-white);
    border-radius: 5px;
}

.gallery_slider .slick-prev {
    left: -55px;
}

.gallery_slider .slick-next {
    right: -65px;
}

.slick-next:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(
    '../images/gallery-right.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 10px;
    width: 20px;
    object-fit: contain;
    /* background-color: var(--bs-white); */
    box-shadow: 0;
}

.slick-prev:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(
    '../images/gallery-left.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 10px;
    width: 20px;
    object-fit: contain;
}

.section.gallery-sec::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: var(--bs-white);
}

/*Gallery Sec Css Ends*/


/*Blog Sec css Starts*/

section.blog-top-sec {
    position: relative;
}

img.cloud5 {
    position: absolute;
    bottom: -20px;
    left: 0;
    /* right: 0; */
    margin: 0 auto;
    z-index: -1;
}

section.blog-top-sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 465px;
    background-color: #181d31;
    z-index: 0;
}

.blog-top-txt h3 {
    padding: 0 0 0 15px;
    position: relative;
    border-left: 7px solid #386f6a;
}

.blog-top-txt p {
    margin: 20px 0;
}

.blog-top-card-icon-heading {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 15px;
}

.blog-top-card-heading h5 {
    font-size: 20px;
    line-height: 38px;
    color: #000;
    margin: 0;
}

.blog-top-card-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
}

.blog-top-card-heading p {
    margin: 10px 0;
}

.blog-top-card {
    margin: 20px 0;
}

.blog-top-img img {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.blog-top-img {
    position: relative;
}

.blog-top-img::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 56%;
    height: 620px;
    border: 2px solid #386f6a;
    border-radius: 10px;
}

.blog-card {
    position: relative;
    margin: 0 0 30px 0;
}

.blog-card-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: 0 0;
}

.blog-card:hover .blog-card-img img {
    filter: blur(3px) grayscale(1);
}

.blog-card-img img.blog-card-3 {
    object-position: left;
}

.blog-card-txt-main {
    padding: 0;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    bottom: 30px;
    width: 90%;
    /* height: 0; */
    padding: 30px;
    margin: 0 auto;
    right: 0;
    left: 0;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.2s;
}

.blog-card:hover .blog-card-txt-main {
    /* padding: 30px; */
    /* height: 250px; */
    transition: ease-out;
    transition-duration: 0.2s;
}

.blog-card-txt h5 {
    font-family: 'Montserrat';
    font-size: 22px;
    line-height: 30px;
}

.blog-card-txt-main ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #0000003b;
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
}

.blog-card-txt-main ul li h5 {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    /* margin: 10px 0; */
    font-weight: 600;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.blog-card-txt-main ul li h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.blog-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.blog-card-txt-main ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.blog-card-txt-main ul li img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 100px;
}

.gallery-heading * {
    color: #fff;
}

.blog-heading h2 {
    color: #929888;
}

/*Blog Sec css Ends*/

/*Footer Sec Css Starts*/

footer {
    background: #101010;
    position: relative;
}


.news-letter h2 {
    color: #fff;
    /* margin-bottom: 0; */
    /* line-height: 1; */
    /* font-size: 76px; */
    /* font-weight: 300; */
    /* font-family: 'hel-r'; */
}

.news-letter {
    padding: 50px 0;
    padding-right: 20px;
    background: #191919;
}

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

.news-letter form input {
    width: 100%;
    /* padding: 12px; */
    border: 1px solid #4d5057;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    height: 55px;
    padding: 0 150px 0 20px;
}

.news-letter form button {
    position: absolute;
    right: 0;
    top: 1px;
    padding: 0 20px;
    border: unset;
    /* width: 140px; */
    color: var(--black);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* font-weight: 500; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.news-letter .row {
    align-items: center;
}

.news-letter form input::placeholder {
    color: #fff;
    text-transform: capitalize;
}

.main-ftr {
    position: relative;
    padding: 70px 20px;
    height: 100%;
}

.main-ftr ul li h3 {
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    /* text-transform: capitalize; */
    /* font-family: 'hel-r'; */
    /* margin-bottom: 20px; */
    /* font-weight: 100; */
}

.main-ftr ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-ftr ul li p,
.main-ftr ul li p a {
    margin-bottom: 0;
    color: #fff;
    font-size: 15px;
}

.main-ftr ul li i {
    font-size: 20px;
    color: #fff;
}

.main-ftr:after {
    position: absolute;
    content: '';
    background: #a3a58f;
    width: 1px;
    height: 0px;
    bottom: 0;
    right: 10px;
    transition: .7s ease-in-out;
}

.middle-ftr:hover .main-ftr:after {
    height: 100%;
}

.middle-ftr:hover {
    border-color: #a3a58f;
}

.middle-ftr {
    border-bottom: 1px solid #fff;
    background: #777e6a;
    transition: .7s ease-in-out;
}

.main-ftr ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.ftr-req h5 a {
    color: #b01630;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.ftr-req {
    text-align: center;
}

.ftr-req input {
    width: 70%;
    border: 1px solid #ffffffba;
    background: transparent;
    border-radius: 5px;
    color: #fff;
    height: 50px;
    padding: 0 20px;
    text-align: center;
    outline: none;
}

.ftr-req input::placeholder {
    color: #ffffff94;
    text-transform: capitalize;
    font-size: 14px;
}

.main-ftr:before {
    position: absolute;
    content: '';
    background: #ffffffbf;
    width: 1px;
    height: 100%;
    top: 0;
    right: 10px;
}

.bottm-ftr ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 10px 0;
    width: 90%;
}

.bottm-ftr ul li ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottm-ftr p, .bottm-ftr p a {
    margin-bottom: 0;
    color: #ffffff7d;
    text-align: center;
    transition: ease-in;
    transition-duration: 0.5s;
}

.bottm-ftr p a:hover {
    color: #fff;
    transition: ease-out;
    transition-duration: 0.5s;
}

.bottm-ftr ul li ul a i {
    color: #9d9fa4;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: 0.5s;
    animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}

.bottm-ftr ul li ul a i:hover {
    background: #138eed;
    color: #fff;
}

.get-touchh {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* animation: mover 1s infinite alternate; */
    right: 0;
    bottom: 0;
    height: 120%;
    width: 13%;
    border-top-left-radius: 90px;
}

.get-touchh h5 {
    writing-mode: tb;
    transform: rotate(180deg);
    color: #fff;
    font-size: 75px;
    text-transform: capitalize;
    display: flex;
    font-family: 'hel-r';
    letter-spacing: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.get-touchh:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    /* animation: mover 1s infinite alternate; */
    background-image: -moz-linear-gradient( -90deg, rgb(13, 185, 245) 0%, rgb(25, 106, 232) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(13, 185, 245) 0%, rgb(25, 106, 232) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(13, 185, 245) 0%, rgb(25, 106, 232) 100%);
    border-top-left-radius: 30px;
}

.ftr-req h5 a {
    font-size: 30px;
    color: #fff;
}

.ftr-req.pade-right {display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;gap: 20px;height: 100%;}

ul.botm-list {
    width: 200px;
}

ul.botm-list a {
    color: #fff;
}

.main-ftr ul li ul.phon-list li {
    display: block;
}

.copy {
    background-color: #777e6a;
    padding: 20px 0;
}


/*Footer Sec Css Ends*/

/*About Us Page Sec Css Starts*/

section.inner-about-sec::before {
    height: 37%;
}

.about-bottom-txt {
    margin: 50px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

/*About Us Page Sec Css Ends*/

/*Family Tree Page Sec Css Starts*/

.sec-bottom {
    padding: 0 0 80px 0;
}

.sec-top {
    padding-top: 40px;
}

.sec-bottom {
    padding-bottom: 40px;
}

.sec-top-ex {
    padding: 40px 0 0 0;
}

.relation-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.relation-box-ex {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.relation-box-left-ex {
    align-items: center;
}

.relation-ex-card-main {
    width: 100%;
}

.relation-ex-card-main .relation-card {
    display: inline-flex;
    flex-direction: row;
    justify-content: start;
    width: 250px;
    height: 100%;
}

button.relation-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0000;
    padding: 0;
    /* border-radius: 10px; */
    /* overflow: hidden; */
    border: 1px solid #0000;
    width: 100%;
}

.relation-ex-card-main button.relation-card-btn {
    justify-content: center;
}

.relation-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 250px;
    height: 250px;
}

.relation-card-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.relation-ex-card-main .relation-card-txt {
    width: 150px;
    align-items: start;
    text-align: start;
}

.relation-card-txt h5 {
    font-size: 16px;
    line-height: 20px;
}

.relation-card-main {
    position: relative;
}

.rb-in-top, .rb-in-right, .rb-in-left, .rb-in-right-ex, .rb-in-left-ex, .rb-in-bottom {
    position: relative;
}

.rb-in-top::before {
    content: '';
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    height: 20%;
    border-right: 1px solid #000;
}

.rb-in-right::after {
    content: '';
    position: absolute;
    top: 35%;
    right: -60%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 40%;
    border-top: 1px solid #000;
}

.rb-in-right-ex::after {
    content: '';
    position: absolute;
    top: 8%;
    right: -3%;
    /* transform: translate(-50%, -50%); */
    margin: 0 auto;
    height: 530px;
    border-right: 1px solid #000;
}

.rb-in-left::after {
        content: '';
        position: absolute;
        top: 35%;
        left: 0;
        transform: translate(-50%, -50%);
        margin: 0 auto;
        width: 36%;
        border-top: 1px solid #000;
}

.rb-in-left-ex::after {
    content: '';
    position: absolute;
    top: 6%;
    left: 0;
    /* transform: translate(-50%, -50%); */
    margin: 0 auto;
    height: 85%;
    border-right: 1px solid #000;
}

.rb-in-bottom::before {
    content: '';
    position: absolute;
    bottom: -25%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    height: 20%;
    border-right: 1px solid #000;
}

.relation-card-main .modal-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 20px;
}

.relation-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    border-radius: 100px;
    overflow: hidden;
    background-color: #c1c788;
    padding: 10px;
}

.relation-ex-card-main .relation-card-img {
    height: 80px;
    width: 80px;
    padding: 5px;
}

.relation-card-main .modal-header {
    display: flex;
    align-items: start;
    padding: 0;
    width: 100%;
}

.relation-card-main .modal-header button.btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    padding: 0;
    margin: 0;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid #000;
    font-size: 10px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.relation-card-main .modal-header button.btn-close:hover {
    background-color: #777e6a;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.relation-card-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 0 20px 0 #00000029;
    border-radius: 100px;
    object-position: center;
    overflow: hidden;
}

.relation-card-heading h5 {
    font-size: 25px;
    line-height: 30px;
}

.relation-card-in-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
}

.relation-card-txt-img {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.relation-card-txt-img .relation-card-img {
    height: 120px;
    width: 120px;
    background-color: #c1c788;
    padding: 5px;
    border-radius: 10px;
}

.relation-card-txt-img .relation-card-img img {
    border-radius: 10px;
}

.relation-card-in-main .relation-card-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
    padding: 10px 0;
}

.relation-card-in-main .relation-card-txt h6 {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
}

.relation-card-main .modal-body {
    width: 100%;
    padding: 0;
}

.relation-card-main .modal-footer {
    padding: 0;
    width: 100%;
}

.relation-card-main .modal-body .relation-card-in-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 10px 0;
}

.relation-card-main .modal-body .relation-card-in-txt h5 {
    font-size: 25px;
    line-height: 30px;
}

.relation-card-main .modal-body .relation-card-in-txt h6 {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
}

.relation-card-main .modal-footer .relation-card-in-txt {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    padding: 10px 0;
}

.relation-card-main .modal-footer .relation-card-in-txt h5 {
    font-size: 25px;
    line-height: 30px;
}

.rb-bottom {
    border-bottom: 1px solid #000;
}

















/*Family Tree Page Sec Css Ends*/

/*Book Page Sec Css Starts*/


.inner-book-links-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 150px;
    z-index: 999;
    position: relative;
}

.inner-book-heading h2 {
    color: #777e6a;
    width: 50%;
}

.inner-book-btn-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #ffffff45;
    width: 100%;
}

.inner-book-links ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.inner-book-links ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 1px solid #ffffff33;
    border-radius: 5px;
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-book-links ul li a:hover {
    background-color: #fff;
    border: 1px solid #0000;
    transition: ease-out;
    transition-duration: 0.5s;
}

.inner-book-links ul li a img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(87deg) brightness(121%) contrast(112%);
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-book-links ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7458%) hue-rotate(334deg) brightness(92%) contrast(109%);
    transition: ease-out;
    transition-duration: 0.5s;
}
.inner-book-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    width: 80%;
}

.inner-book-txt * {
    color: #fff;
}

.inner-book-box {
    margin: -380px 0 0 0;
}

.inner-book-txt-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    padding: 300px 50px 50px 50px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 9;
}

.inner-book-txt-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #777e6a;
    z-index: -1;
}

.inner-book-img {
    position: relative;
    z-index: 9999;
}

.inner-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px 0 0 0;
    z-index: 9;
    position: relative;
}

.inner-book-heading-main {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 40px;
    width: 90%;
    margin: 0 auto;
}

/*Book Page Sec Css Ends*/

/*Gallery Page Sec Css Starts*/

section.inner-gallery-sec::before {
    display: none;
}

.gallery-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
}

.gallery-img {
    display: flex;
    align-items: center;
    justify-self: center;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-img img {
    display: flex;
    align-items: center;
    justify-self: center;
    height: 100%;
    width: 100%;
}

/*Gallery Page Sec Css Ends*/

/*Blog Details Page Sec Css Starts*/

section.inner-blog-sec .blog-card-txt-main {
    position: relative;
    bottom: 0;
    margin-top: -100px;
}

section.inner-blog-sec .blog-card-txt-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

section.inner-blog-sec .blog-card-txt-main ul {
    padding: 0;
    margin: 0;
    width: 27%;
    border: none;
}

section.inner-blog-sec .blog-card-txt-main {
    box-shadow: 0 0 20px 0 #0000003b;
}

section.inner-blog-sec .blog-card-img img {
    height: 500px;
    width: 100%;
    border-radius: 5px;
}

/*Blog Details Page Sec Css Ends*/


/* Contact Page Start */

.contact-frm h4 {
    color: #000000;
}

.contact-frm input {
    border: 0;
    border-bottom: 1px solid #ffffff61;
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 16px;
    outline: 0;
    background-color: #0000;
    color: #fff;
}

.contact-frm input::placeholder {
    color: #fff;
    font-size: 14px;
}

.contact-frm button i {
    color: #000;
}

.contact-frm button {
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 0 20px 0 #0000005c;
}

.ctct-detl {
    background: #777e6a;
    padding: 71px 40px 71px 60px;
    border-radius: 0 10px 10px 0;
}

.ctct-detl ul li {
    display: inline-block;
}

.ctct-detl ul {
    display: flex;
    align-items: center;
    line-height: 30px;
    margin-bottom: 26px;
}

.ctct-detl ul li i {
    color: #000;
    font-size: 50px;
    margin: 0 26px 0 0;
}

.ctct-detl ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
    /* margin-left: 15px;*/
}

li.left-ali {
    margin-left: 20px;
}

.ctct-detl ul li span {
    display: block;
    text-align: center;
}

.contact-frm {
    padding: 77px 40px;
    background: #000;
    box-shadow: 0 0 8px 0 #00000047;
    /* border-radius: 10px 0 0 10px; */
    /* height: 100%; */
}

.cont-inner {
    /* width: 80%; */
    margin: 0 auto;
    /* margin-top: -210px; */
    z-index: 999;
    /* position: relative; */
}

section.contact-sec {
    padding: 100px 0;
}

.cont-select {
    position: relative;
}

.contact-frm select {
    border: 0;
    border-bottom: 1px solid #ffffff61;
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 16px;
    outline: 0;
    color: #fff;
    position: relative;
    background-color: #0000;
    z-index: 1;
    cursor: pointer;
}

.contact-frm option {
    color: #000;
}

.cont-select i {
    position: absolute;
    top: 15%;
    right: 10px;
    z-index: 0;
    color: #fff;
}

.contact-frm h4 {
    font-size: 31px;
    line-height: 34px;
    margin-bottom: 40px;
    color: #fff;
    /* font-weight: 600; */
}

.ctct-detl h4 {
    font-size: 31px;
    line-height: 34px;
    margin-bottom: 40px;
    color: #fff;
}

.ctct-detl ul li img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(182deg) brightness(107%) contrast(105%);
}


.contact-frm input:-internal-autofill-selected {
    background : #0000 !important;
}

/* Contact Page End */
