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

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

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #232323;
    overflow-x: hidden;
    /* cursor: none; */
    background: #ADE1E5;
}

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 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
}


/***** 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: 'niagsol';
    src: url(../fonts/NIAGSOL.TTF);
    font-weight: 400;
    font-style: normal;
}


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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

.btn_theme {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
    background: #cd4253;
    cursor: pointer;
    transition: ease-out 0.5s;
    border: 2px solid #cd4253;
    border-radius: 100px;
    box-shadow: inset 0 0 0 0 #000000e8;
    text-transform: uppercase;
}

.btn_theme:hover {
    color: #ffffff;
    box-shadow: inset 0 -100px 0 0 #000000;
    border-color: #000;
}

.btn_theme:active {
    transform: scale(0.9);
}

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

.flex-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    /* font-family: 'niagsol', Sans-Serif; */
    font-family: 'Libre Baskerville', serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'niagsol', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'niagsol', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

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;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 10px 0;
    background: #00000047;
}

.header_cta .btn_theme {
    padding: 14px 9px;
}

.menuSec {
    padding: 0px 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: white;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

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

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

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

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


.footerSec .social-icons {
    margin-top: 25px;
    padding-bottom: 10px;
}

.footerSec .social-icons a i {
    color: #fff;
}
.footerSec .social-icons a svg {
    /* color: #fff; */
    filter: invert(1);
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.main_logo a img {
    width: 55%;
    height: 70px;
    object-fit: contain;
}


/*banner css start */


/* banner new css */

.banner_text.mai-bnr-txt-inn {
    text-align: center;
    width: 100%;
    left: 0;
    top: 19%;
    height: 780px;
    transform: none;
}

.mai-bnr-txt-inn h2 {
    color: #fff !important;
    font-family: 'Noto Sans', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 15px;
    line-height: 38px !important;
}

.mai-bnr-txt-inn p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 35px !important;
    line-height: 45px !important;
    width: 85%;
    margin: 0 auto !important;
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
}


/* banner new css End */

.banner_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    left: 10%;
    width: 33.3333%;
}

.banner_text>a.theme2 {
    width: 200px;
}

.banner_text h1 {
    font-size: 100px;
    line-height: 130px;
    color: #232323;
    font-weight: bold;
    margin: 0 0 10px;
}

.banner_text h1,
.banner_text h2 {
    font-family: 'Libre Baskerville', serif;
}

.banner_text h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #232323;
    font-weight: bold;
    margin: 0 0 0px;
}

.banner_text p {
    font-size: 14px;
    line-height: 26px;
    color: white;
    font-weight: 400;
    margin: 0 0 15px;
}

.inner_banner>img {
    width: 100%;
}

.carousel-item>img {
    width: 100%;
    height: 850px;
    object-fit: cover;
    filter: brightness(0.5);
    object-position: top;
}

.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-prev, .carousel-control-next {
    z-index: 999;
}

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

.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 a.theme2 {
    width: 45%;
}

.carousel-control-prev {
    left: -5%;
}

.carousel-control-next {
    right: -5%;
}


/*banner css end*/


/*ABOUT PAGE STRT*/

.pen {
    bottom: 0;
    right: 100px;
    animation: leftrit 2s ease-in-out infinite alternate;
}

.wheat {
    bottom: -24px;
    left: 100px;
    animation: trnsfrm 1.5s ease-in-out infinite alternate;
}

.abt_txt h6 {
    font-size: 18px;
    line-height: 28px;
    color: #d83d50;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.abt_txt h3 {
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    font-family: 'EB Garamond', serif;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.abt_txt p {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 15px;
}

.abt_img img {
    /* width: 100%; */
    margin: 0 auto;
    height: 700px;
    /* object-fit: cover; */
}

.abt_img {
    text-align: center;
}

section.abt_sec a.theme2 {
    width: 40%;
}


/*ABOUT PAGE END*/


/*BOOK SEC STRT*/

.book-sec {
    position: relative;
    padding-top: 0;
}

.book-sec h2 {
    font-size: 80px;
    margin-bottom: 50px;
}

.bok-box:hover {
    box-shadow: 0 0 5px 0 #cd4253;
    border-radius: 5px;
    transform: scale(1.05);
}

.bok-box {
    position: relative;
    margin: 20px 0;
    border: 1px solid #b7b7b7;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s ease-in-out;
}

.bok-box .book-img img {
    transition: 0.3s ease-in-out;
    filter: drop-shadow(2px 2px 10px #00000066);
    width: 231px;
    height: 332px;
}

.bok-box .book-txt {
    padding-top: 20px;
}

.bok-box .book-txt .d-flex {
    justify-content: center;
    margin: 10px 0;
}

.bok-box .book-txt .d-flex i {
    color: #fcbf18;
    padding-right: 5px;
}

.bok-box .book-txt .d-flex i:last-child {
    color: #e1e1e1;
    padding-right: 0;
}

.bok-box .book-txt h3 {
    color: #000000;
    font-size: 23px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.bok-box .book-txt h3 span {
    /* display: block; */
}

.bok-box .book-txt h6 {
    color: #1b16ff;
    font-size: 25px;
    font-weight: 400;
    margin: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

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

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


/*BOOK SEC END*/


/*CHAPER 1 SEC STRT*/

.first_letter::first-letter {
    text-transform: uppercase;
    font-size: 91px;
    font-weight: 400;
    color: #cd4253;
    font-family: 'niagsol', Sans-Serif;
}


/*CHAPER 1 SEC END*/

section.abt_sec.abthome.pt-8.pb-8.position-relative {
    background: #aaabb8;
}


/*WEEKLY BEST BOOKS STRT*/

.weekly_book_sec {
    position: relative;
    background-image: url(../images/weekly_banner.jpg);
    padding: 0px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    /*margin-top: 60px;*/
    transition: 1.0s ease-in-out;
    padding: 80px 0;
}

.weekly_txt h3 {
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 10px;
    font-family: 'EB Garamond', serif;
    text-transform: uppercase;
}

.weekly_txt {
    text-align: center;
}

.weekly_box {
    box-shadow: rgb(255 255 255 / 27%) 0px 5px 15px;
    padding: 10px;
    transition: 0.5s;
    height: 500px;
    position: relative;
}

section.weekly_book_sec a.theme2 {
    width: 36%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
}

.weekly_txt p {
    font-size: 13px;
    line-height: 23px;
    color: #c0c0c0;
    font-weight: 500;
    margin: 0 0 25px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 0;
    padding-top: 20px;
}

.weekly_img img {
    /* margin: -60px 0; */
    transition: 1.0s ease-in-out;
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.weekly_book_sec:hover img {
    transform: rotateY(360deg) scale(0.9);
    transition: 1.0s ease-in-out;
}

section.weekly_book_sec .row {
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.weekly_box:hover {
    transform: scale(1.1);
}


/*WEEKLY BEST BOOKS END*/


/*TESTIMONIAL SEC STTR*/


/* testimonial */

.vu-rivw .theme2 {
    width: 180px;
    margin: 90px auto 0;
}

.testi-box {
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 30px lightgrey;
    height: 270px;
}

.testi-box h5 {
    font-size: 19px;
    margin-bottom: 0px;
    font-family: 'Libre Baskerville', serif;
    font-weight: bold;
    color: black;
}

.testi-box h6 {
    font-weight: 300;
    color: #212121;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
}

.testi-box:after {
    position: absolute;
    content: "";
    background-image: url(../images/quotation.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 30px;
    bottom: 10%;
}

.rating i {
    color: #fb8e00;
    font-size: 16px;
}

.testi-box p {
    font-weight: 300;
    color: #313030;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

.testi-box>img {
    position: absolute;
    width: 60px;
    height: 70px;
    object-fit: cover;
    right: 20px;
    top: 0px;
}

.testi-box:before {
    width: 88%;
    height: 100%;
    position: absolute;
    content: "";
    background: white;
    box-shadow: 0px 0px 12px lightgrey;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    z-index: -1;
}

.ptb-80 {
    padding: 80px 0;
}


/* testimonial */


/* .testi_slider_for .slick-slide {
    margin: 0;
}

.testi_for_box {
    background-color: #cd4253;
    padding: 20px;
    position: relative;
}

.testi_for_box h5 {
    font-size: 40px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
    margin: 0 0 5px;
    text-transform: uppercase;
    font-family: 'niagsol';
}

.testi_for_box h6 {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    font-weight: 400;
    margin: 0 0 10px;
    text-transform: uppercase;
    text-decoration: underline;
}

.testi_for_box p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 30px;
}

.testi_slider_for_wrap h3 {
    font-size: 40px;
    line-height: 40px;
    color: #cd4253;
    font-weight: 400;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 35px;
}

.testi_slider_for_wrap h2 {
    font-size: 97px;
    line-height: 100px;
    color: #000;
    font-weight: 400;
    margin: 0 0 50px;
    text-transform: uppercase;
}

.testi_for_box ul li i {
    color: #ff6c00;
    margin: 0 2px;
}

.testi_for_box ul li {
    color: #fff;
}

.testi_slider_for .slick-prev {
    top: inherit;
    bottom: 20px;
    left: 20px;
    z-index: 99;
}

.testi_slider_for .slick-next {
    top: inherit;
    bottom: 20px;
    left: 80px;
    z-index: 99;
}

.testi_slider_for .slick-prev:before {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    opacity: 1;
    font-weight: 100;
    font-size: 35px;
}

.testi_slider_for .slick-next:before {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    opacity: 1;
    font-weight: 100;
    font-size: 35px;
}

.testi_slider_for:before {
    position: absolute;
    content: '';
    left: -170px;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #cd4253;
    z-index: -1;
}

.testi_slider_nav {
    top: -50px;
}

.testi_sec {
    padding-top: 150px;
}

.testi_books {
    top: 30px;
    right: 0px;
}

.testi_leaves {
    top: 50%;
    left: 0px;
    z-index: -1;
    transform: translate(0px, -50%);
} */


/*TESTIMONIAL SEC END*/


/*FOOTER STRT*/

img.footer-logo {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.footerSec {
    padding: 30px 0 0;
    background: #0000006b;
    text-align: center;
    color: #fff;
}

.footerSec img+p {
    margin-top: 20px;
    color: #d2d2d2;
}

.conatct-bdr {
    border: 1px solid #dddddd91;
    border-right: 0;
    border-left: 0;
}

.contact-flecx {
    padding: 13px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-flecx>a {
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.contact-flecx>a i {
    margin-right: 7px;
    color: #cd4253;
    font-size: 20px;
}

.news-latter-box {
    width: 300px;
    margin: 20px auto 30px;
    position: relative;
}

.news-latter-box>input {
    width: 100%;
    height: 45px;
    padding: 10px 15px;
    border: 0;
    border-radius: 100px;
}

.news-latter-box>button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 50px;
    height: 35px;
    border-radius: 100px;
    border: 0;
    background: #cd4253;
    color: #fff;
}

.copy-right {
    padding: 15px 0;
    border-top: 1px solid #dddddd91;
}

.copy-right p {
    margin: 0;
    letter-spacing: 1px;
    color: #d2d2d2;
}


/*FOOTER END*/


/*INNER BANNER STRT*/

.inner_banner {
    position: relative;
}

.inner_banner {
    width: 100%;
    height: 55vh;
    /* object-fit: cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10%;
}

.inner_bnr_txt {
    /* width: 70%; */
    /* text-align: center; */
    /* position: absolute; */
    /* top: 70%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
}

.inner_bnr_txt h2 {
    margin: 0;
    font-size: 65px;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.inner_bnr_txt h3 {
    margin: 0;
    font-size: 40px;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.2;
    font-weight: 400;
    /* text-transform: uppercase; */
    color: #fff;
}


/*INNER BANNER END*/


/*Contact us  Start */

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

.contact-map iframe {
    width: 100%;
    height: 630px;
}

.contact-from h2 {
    font-size: 20px;
    color: #cd4253;
    margin-bottom: 2%;
    font-family: 'Montserrat';
    line-height: 1;
}

.contact-from h3 {
    font-size: 30px;
    line-height: 1.5;
    font-weight: 700;
    font-family: 'Montserrat';
}

.contact-from h3 span {
    display: block;
}

.contact-from form input {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    padding: 0px 37px 0px 37px;
    border: 2px solid #656565;
    text-indent: 81px;
}

.contact-inputs {
    position: relative;
    margin-bottom: 3%;
}

.contact-input i {
    font-size: 18px;
    color: #9f9fa0;
    margin: 0 3px 0 0;
}

.contact-from form input::placeholder {
    font-size: 17px;
    color: #6c6c6c;
}

.contact-inputs:before {
    content: "";
    position: absolute;
    border: 1px solid #656565;
    left: 18%;
    height: 53px;
}

.contact-input {
    position: absolute;
    top: 17px;
    left: 19px;
    align-items: center;
    display: flex;
}

.contact-textarea textarea {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    padding: 20px 37px;
    border: 2px solid #656565;
}

.contact-from form textarea::placeholder {
    font-size: 17px;
    color: #6c6c6c;
}

.contact-textarea {
    position: relative;
}

.contact-textarea-icon i {
    font-size: 18px;
    color: #9f9fa0;
}

.contact-textarea-icon {
    position: absolute;
    top: 24px;
    left: 11px;
}

.contact-button button {
    width: 100%;
}

.contact-textarea {
    margin-bottom: 3%;
}

.contact-link-box h3 {
    font-size: 19px;
    margin-bottom: 4%;
    font-family: 'Montserrat';
}

.contact-link-box {
    margin-top: 5%;
}

.contact-link-box-text ul {
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px 0 #00000042;
    background: #fff;
    padding: 27px 35px;
}

.contact-link-box-text ul li h2 {
    font-size: 15px;
    margin: 0;
    color: #aeaeae;
    line-height: 1;
    font-family: 'Montserrat';
}

.contact-link-box-text ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}


/*Contact us  End */


/*review-sec*/

.review-sli .slick-slide {
    opacity: 1;
}

.review-sec {
    position: relative;
    padding: 80px 0;
}

.review-b::before {
    content: '';
    position: absolute;
    right: 50px;
    bottom: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    background-image: url("../images/review-b-icon.png");
}

.review-b {
    position: relative;
    background: #f9fafb;
    border-radius: 15px;
    margin: 20px 0;
    padding: 40px 20px;
    transition: 0.3s ease-in-out;
}

.review-b .d-flex {
    align-items: center;
    margin-bottom: 10px;
}

.review-b .d-flex i {
    color: #ffc107;
}

.review-b .d-flex span {
    margin-left: 10px;
}

.review-b ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.review-b ul li img {
    height: 50px;
    width: 43px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 50%;
}

.review-b ul li h5 {
    color: #161616;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
}

.review-b ul li h5 span {
    display: block;
    font-size: 13px;
    color: #8a8a8a;
}

.review-sli .slick-slide.slick-current.slick-active.slick-center .review-b {
    box-shadow: 0 0 10px 0 #00000022;
    background-color: #fff;
}

.review-sli-con .review-b {
    box-shadow: 0 0 10px 0 #00000022;
    padding: 50px 30px;
    background-color: #fff;
    margin: 20px 10px;
}


/*review-sec*/

.pagination {
    justify-content: center;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background-color: #c1c1c1;
    border-radius: 100px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.pagination a:hover,
.pagination a.active {
    background-color: #cd4253;
    color: #fff;
}

.testi_slider_nav:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 27%;
    background-color: #cd4253;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0px);
}

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

.wheat {
    width: 210px !important;
}
    .review-b p {
        font-size: 12px;
        line-height: 22px;
    }
    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 16px;
    }
		.menuSec ul li a.active {
				font-size: 17px;
		}
    .review-b::before {
        right: 30px;
        bottom: 35px;
        height: 40px;
        width: 40px;
    }
    .header_cta .btn_theme {
        padding: 10px 12px;
    }
}

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

.wheat {
    width: 160px !Important;
}

    .review-b::before {
        right: 30px;
        bottom: 35px;
        height: 40px;
        width: 40px;
    }
    .review-b p {
        font-size: 12px;
        line-height: 22px;
    }
    .menuSec ul li a {
        padding: 10px 6px;
        font-size: 13px;
    }
		.menuSec ul li a.active {
				font-size: 14px;
		}
}

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


.wheat {
    width: 120px !important;
}
    .detail-text h2 {
        font-size: 42px !important;
        line-height: 1.2 !important;
    }
    .detail-img img {
        width: 100%;
        border-radius: 20px;
        height: 700px;
        object-fit: cover;
    }
    .contact-us h3 {
        font-size: 35px !important;
    }
    .inner_banner {
        height: 60vh;
    }
    .blog-box .blog-txt ul li {
        width: 50% !important;
    }
    html {
        overflow-x: hidden;
    }
    .weekly_txt h3 {
        font-size: 27px;
        line-height: 1.3;
    }
    .bok-box .book-img img {
        width: 160px;
        height: 250px;
        object-fit: contain;
    }
    .review-b::before {
        right: 30px;
        bottom: 35px;
        height: 40px;
        width: 40px;
    }
    .review-b p {
        font-size: 12px;
        line-height: 22px;
    }
    .contact-inputs:before {
        content: "";
        position: absolute;
        border: 1px solid #656565;
        left: 22%;
        height: 53px;
    }
    .contact-link-box-text ul li h2 {
        font-size: 13px;
    }
    .contact-input label,
    .contact-textarea textarea {
        font-size: 13px;
    }
    .inner_bnr_txt h2 {
        font-size: 70px;
        line-height: 70px;
    }
		.inner_bnr_txt h3 {
				font-size: 43px;
				line-height: 43px;
		}
    .pen {
        bottom: -60px;
        right: 100px;
        width: 110px;
    }
    .btn_theme {
        padding: 12px 25px;
        font-size: 15px;
    }
    .header_cta .btn_theme {
        padding: 5px 10px;
        font-size: 13px;
    }
    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 13px;
    }
		.menuSec ul li a.active {
				font-size: 14px;
		}
    header {
        padding: 10px 0;
    }
    .header_cta {
        text-align: right;
    }
    .carousel-item>img {
        height: 700px;
        object-fit: cover;
        /* object-position: -90px; */
    }
    .banner_text h1 {
        font-size: 85px;
        line-height: 80px;
    }
    .banner_text h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .abt_txt h3 {
        font-size: 35px;
        line-height: 35px;
    }
    .abt_txt h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .testi_slider_for_wrap h2 {
        font-size: 77px;
        line-height: 100px;
        color: #000;
        font-weight: 400;
        margin: 0 0 30px;
        text-transform: uppercase;
    }
    .testi_books {
        display: none;
    }
}

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

.abt_img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.wheat {
    display: none;
}
    .myy-auto {
        margin: 30px auto 0;
    }
    .bok-box .book-img img {
        width: 160px;
        height: 250px;
        object-fit: contain;
    }
    .contact-us .col-lg-5.col-md-6 {
        width: 40%;
        align-self: auto !important;
        padding-top: 40px;
    }
    .contact-us .col-lg-7.col-md-6 {
        width: 60%;
    }
    .contact-us h3 {
        font-size: 27px !important;
    }
    .abt-pg .abt_img img {
        height: 400px;
    }
    .inner_banner {
        height: 40vh;
    }
    .testi-box:after {
        right: 5px;
        bottom: 2%;
    }
    .testi-box>img {
        width: 50px;
        height: 60px;
        right: 5px;
        top: 0px;
    }
    .testi-box {
        height: 310px;
    }
    section.blog-sec-inner.themes-padd h1 {
        font-size: 45px !important;
        line-height: 1.3 !important;
    }
    html {
        overflow-x: hidden;
    }
    section.gallery.inner-gallery h2 {
        font-size: 35px;
    }
    section.weekly_book_sec .row {
        gap: 0;
    }
    .wheat {
        width: 150px;
    }
    header .col-lg-2.col-md-2.col-sm-6.col-6 {
        width: 13.66666%;
    }
    header .col-lg-2.col-md-2.col-sm-6.col-6.text-right {
        width: 23.66666%;
    }
    header .col-lg-8.col-md-8.d-none.d-md-block {
        width: 62%;
    }
    .banner_text {
        width: 73.3333%;
    }
    .contact-inputs:before {
        content: "";
        position: absolute;
        border: 1px solid #656565;
        left: 33%;
        height: 53px;
    }
    .testi_books {
        display: none;
    }
    .inner_bnr_txt h2 {
        margin: 0;
        font-size: 40px;
        line-height: 40px;
    }
		.inner_bnr_txt h3 {
				margin: 0;
				font-size: 25px;
				line-height: 25px;
		}
    .footerSec {
        margin-top: 50px;
    }
    .weekly_book_sec {
        padding: 50px 0;
    }
    .weekly_img img {
        height: 200px;
        margin: 20px 0;
    }
    .weekly_txt h3 {
        font-size: 30px;
        line-height: 1.2;
    }
    .testi_slider_for:before {
        display: none;
    }
    .pb-8 {
        padding-bottom: 0px;
    }
    .pen {
        /* bottom: -100px; */
        z-index: -1;
        right: 0px;
        width: 8%;
    }
    .btn_theme {
        padding: 12px 25px;
        font-size: 15px;
    }
    .header_cta .btn_theme {
        padding: 5px 6px;
        font-size: 10px;
    }
    .menuSec ul li a {
        padding: 10px 5px;
        font-size: 9px;
    }
		.menuSec ul li a.active {
				font-size: 10px;
		}
    header {
        padding: 10px 0;
    }
    .header_cta {
        text-align: right;
    }
    .carousel-item>img {
        height: 700px;
        object-fit: cover;
        object-position: 60% 0;
    }
    .banner_text h1 {
        font-size: 70px;
        line-height: 80px;
    }
    .banner_text h2 {
        font-size: 30px;
        line-height: 1;
        margin-bottom: 20px;
    }
    .abt_txt h3 {
        font-size: 35px;
        line-height: 35px;
    }
    .abt_txt h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .ptb-80 {
    padding: 0px 0 0 80px;
}
.banner_text.mai-bnr-txt-inn {
    top: 29%;
    height: 500px;
}
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .header_cta {
        text-align: right;
    }
    .carousel-item>img {
        height: 500px;
        object-fit: cover;
        object-position: -90px;
    }
    .banner_text h1 {
        font-size: 100px;
        line-height: 80px;
    }
    .banner_text h2 {
        font-size: 50px;
        line-height: 40px;
    }
    .abt_txt h3 {
        font-size: 35px;
        line-height: 35px;
    }
    .abt_txt h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .pen,
    .wheat {
        display: none;
    }
    .book-sec h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }
    .pb-8 {
        padding-bottom: 40px;
    }
    .pt-8 {
        padding-top: 40px;
    }
    .weekly_book_sec {
        margin-top: 20px;
        padding: 50px 0 0px 0;
    }
    .weekly_txt h3 {
        font-size: 40px;
        line-height: 50px;
    }
    .weekly_img img {
        margin: 20px 0 -60px 0;
    }
    .testi_books {
        top: 30px;
        right: 0px;
        display: none;
    }
    .testi_slider_for_wrap h3 {
        font-size: 25px;
        line-height: 30px;
        letter-spacing: 5px;
    }
    .testi_slider_for_wrap h2 {
        font-size: 50px;
        line-height: 40px;
        margin: 0 0 50px;
    }
    .testi_leaves {
        top: 30%;
        left: -40px;
        z-index: -1;
        transform: translate(0px, -50%);
    }
    .contact-flecx {
        padding: 13px 20px;
        display: block;
    }
    .contact-flecx>a {
        color: #fff;
        display: inline-flex;
        align-items: center;
        font-size: 10px;
        margin: 0 10px;
    }
    .footerSec img+p br {
        display: none;
    }
    .copy-right p {
        font-size: 12px;
        letter-spacing: 0;
    }
    .header_cta .btn_theme {
        padding: 11px 12px;
    }
    .btn_theme {
        font-size: 14px;
    }
    header {
        position: unset;
        padding: 10px 0;
    }
    .inner_bnr_txt h2 {
        font-size: 50px;
        line-height: 50px;
    }
		.inner_bnr_txt h3 {
				font-size: 30px;
				line-height: 30px;
		}
    .inner_banner img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: left;
    }
    .review-b::before {
        right: 14px;
        bottom: 55px;
        height: 30px;
        width: 30px;
    }
    .review-sli-con .review-b {
        padding: 30px 20px;
    }
    .review-sec {
        position: relative;
        padding: 40px 0;
    }
    .contact-inputs:before {
        left: 32%;
    }
    .contact-input {
        position: absolute;
        top: 17px;
        left: 9px;
    }
    .contact-sec {
        padding: 40px 0;
    }
    .contact-map iframe {
        width: 100%;
        height: 230px;
        margin: 0 0 30px 0;
    }
    .contact-from h3 {
        font-size: 20px;
        line-height: 1.5;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .detail-text h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }
    .contact-us {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .contact-us h3 {
        font-size: 21px !important;
    }
    .inner_bnr_txt {
        width: 90%;
    }
    section.blog-sec-inner.themes-padd h1 {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }
    .blog-box .blog-txt ul li {
        width: 50% !important;
    }
    .testi-box {
        margin: 20px 0;
    }
    .ptb-80 {
        padding: 40px 0;
    }
    .inner-gallery {
        padding: 40px 0px !important;
    }
    h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .gallery-btn a {
        width: 50% !important;
    }
    .gallery-slider .slick-dots li {
        margin: 0 7px !important;
    }
    .gallery-slider .slick-dots li button:before {
        width: 15px !important;
    }
    section.gallery.inner-gallery h2 {
        font-size: 30px;
    }
    .weekly_box {
        margin: 20px 0;
    }
    .abt_img img {
        height: 250px;
    }
    html {
        overflow-x: hidden;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .banner_text {
        width: 100%;
        left: 0;
        padding: 0 20px;
    }
    .carousel-item>img {
        height: 500px;
        object-fit: cover;
        object-position: 60% 0;
    }
    .banner_text h1 {
        font-size: 40px;
        line-height: 1.3;
    }
    .banner_text h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    .abt_txt h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .abt_txt h6 {
        font-size: 14px;
        line-height: 24px;
    }
    .pen,
    .wheat {
        display: none;
    }
    .book-sec h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }
    .pb-8 {
        padding-bottom: 40px;
    }
    .pt-8 {
        padding-top: 40px;
    }
    .weekly_book_sec {
        padding: 50px 0;
    }
    .weekly_txt h3 {
        font-size: 25px;
        line-height: 1.2;
    }
    .weekly_img img {
        margin: 20px 0;
    }
    .testi_books {
        top: 30px;
        right: 0px;
        display: none;
    }
    .testi_slider_for_wrap h3 {
        font-size: 25px;
        line-height: 30px;
        letter-spacing: 5px;
    }
    .testi_slider_for_wrap h2 {
        font-size: 50px;
        line-height: 40px;
        margin: 0 0 50px;
    }
    .testi_leaves {
        top: 30%;
        left: -40px;
        z-index: -1;
        transform: translate(0px, -50%);
    }
    .contact-flecx {
        padding: 13px 20px;
        display: block;
    }
    .contact-flecx>a {
        color: #fff;
        display: inline-flex;
        align-items: center;
        font-size: 10px;
        margin: 0 10px;
    }
    .footerSec img+p br {
        display: none;
    }
    .copy-right p {
        font-size: 12px;
        letter-spacing: 0;
    }
    .header_cta .btn_theme {
        padding: 11px 12px;
    }
    .btn_theme {
        font-size: 14px;
    }
    header {
        position: unset;
        padding: 10px 0;
    }
    .inner_bnr_txt h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    .inner_bnr_txt h3 {
        font-size: 17px;
        line-height: 1.2;
    }
    .inner_banner img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: left;
    }
    .review-b::before {
        right: 14px;
        bottom: 55px;
        height: 30px;
        width: 30px;
    }
    .review-sli-con .review-b {
        padding: 30px 20px;
    }
    .review-sec {
        position: relative;
        padding: 40px 0;
    }
    .contact-inputs:before {
        left: 32%;
    }
    .contact-input {
        position: absolute;
        top: 17px;
        left: 9px;
    }
    .contact-sec {
        padding: 40px 0;
    }
    .contact-map iframe {
        width: 100%;
        height: 230px;
        margin: 0 0 30px 0;
    }
    .contact-from h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    .header_cta {
        text-align: right;
    }
    .inner_banner {
    height: 35vh;
}
.mai-bnr-txt-inn p {
    font-size: 20px !important;
    line-height: 25px !important;
}

.banner_text.mai-bnr-txt-inn {
    height: 500px;
}
.testi-box {
    height: auto;
}
.weekly_txt p {
    padding-top: 0;
}
}


/* Gallery  */

.gallery-slider .slick-active {
    opacity: 1;
}

.gallery-slider .slick-dots li {
    top: 20px;
    left: 0%;
    margin: 0 15px;
    padding: 0;
}

.gallery-slider .slick-dots li button:before {
    top: 0;
    left: 0;
    width: 40px;
    height: 4px;
    content: '';
    opacity: 1;
    background: #ffffff;
}

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

section.gallery img {
    width: 100%;
    height: 309px;
    object-fit: cover;
    display: inline-block;
    margin: 9px 0px;
    border: 10px solid #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

section.gallery .center img {
    height: 635px;
}

.gallery {
    padding: 80px 0px;
}

section.gallery.inner-gallery h2 {
    text-transform: uppercase;
    /* font-family: 'EB Garamond', serif; */
    font-family: 'Libre Baskerville', serif;
}


/* Gallery  */


/*Animation*/

/*.btn-shine1 {
    background: linear-gradient(to right, #fff 0, #cd4253, #cd4253 40%, #fff 0%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

.btn-shine {
    background: linear-gradient(to right, #fff 0, #ff0066, #ff0066b5 40%, #fff 0%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

@keyframes shine {
    0% {
        background-position: 0;
    }
    10% {
        background-position: 50px;
    }
    20% {
        background-position: 100px;
    }
    30% {
        background-position: 150px;
    }
    40% {
        background-position: 200px;
    }
    50% {
        background-position: 250px;
    }
    60% {
        background-position: 300px;
    }
    70% {
        background-position: 350px;
    }
    80% {
        background-position: 400px;
    }
    90% {
        background-position: -450px;
    }
    100% {
        background-position: 0px;
    }
}
*/
section.gallery.inner-gallery h2 {
    color: #fff;
}
/*Animation end*/


/*Animation*/

@keyframes trnsfrm {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
        filter: drop-shadow(2px 4px 6px black);
    }
}


/*Animation end*/


/*Animation*/


/*animation: leftrit 2s ease-in-out infinite alternate;*/

@keyframes leftrit {
    /*  from{ right: 10% ;
  }
  to {
    right: 15%;
  }*/
    from {
        bottom: 8%;
    }
    to {
        right: 4%;
    }
}


/*Animation end*/


/* theme btn start */

a.theme2 {
    position: relative;
    display: flex;
    text-transform: capitalize;
    height: 45px;
    overflow: hidden;
    border-radius: 5px;
    color: #fff;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgb(10 0 135) 15%, rgb(103 15 137) 58%);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

a.theme2 b {
    z-index: 1;
    font-weight: 400;
    font-size: 16px;
}

/*a.theme2 .liquid {
    position: absolute;
    top: -60px;
     top: -120px; 
    left: 0;
    width: 100%;
    height: 200px;
     box-shadow: inset 0 0 50px rgba(0, 0, 0, .5); 
    transition: .3s ease-in-out;
}

a.theme2 .liquid::after,
a.theme2 .liquid::before {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #000;
    transition: .3s ease-in-out;
}

a.theme2 .liquid::before {
    border-radius: 45%;
    background: #ade1e5;
    animation: animate 5s linear infinite;
}

a.theme2 .liquid::after {
    border-radius: 40%;
    background: rgb(205 66 83);
    animation: animate 10s linear infinite;
}

a.theme2:hover .liquid {
    top: -120px;
     top: -60px; 
    box-shadow: inset 0 0 50px rgb(0 0 0 / 50%);
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}*/


/* theme btn end */

.menuSec ul li a:hover:before {
    transform: translate(0%, 0%);
    opacity: 1;
}

.menuSec ul li a:before {
    left: 0px;
    top: 0px;
    border-left: 3px solid #0a0087;
    border-top: 3px solid #0a0087;
    transform: translate(100%, 50%);
}

.menuSec ul li a:before,
.menuSec ul li a:after {
    height: 14px;
    width: 14px;
    position: absolute;
    content: "";
    transition: all .5s ease-in-out;
    opacity: 0;
    z-index: 111;
}

.menuSec ul li a:hover:after {
    transform: translate(0%, 0%);
    opacity: 1;
}

.menuSec ul li a:after {
    right: 0px;
    bottom: 0px;
    border-right: 3px solid #0a0087;
    border-bottom: 3px solid #0a0087;
    transform: translate(-100%, -50%);
}

.menuSec ul li a:before,
.menuSec ul li a:after {
    height: 14px;
    width: 14px;
    position: absolute;
    content: "";
    transition: all .5s ease-in-out;
    opacity: 0;
    z-index: 111;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    color: #6a00e0;
/*    color: #0a0087; original*/
}


/* cursor start */

.ball {
    width: 35px;
    height: 35px;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("../images/cursor.png");
    background-size: contain;
    pointer-events: none;
    z-index: 99999;
}

.ball.lgr {
    transition: 0.2s all;
    height: 60px;
    width: 60px;
    background: transparent;
}


/* cursor end */


/*Social Icons*/

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-icons a i {
    color: #000;
    font-size: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a svg {}

svg.logo {
    width: 85%;
}

.social-icons {
    padding-bottom: 50px;
}


/*Social Icons end*/


/*Animation*/

.social-icons a {
    animation: 1.5s ease-in-out float infinite;
}

.social-icons a:hover i,
.social-icons a:hover svg {
    background: #fff;
    color: #ADE1E5;
}

@keyframes float {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(2px 4px 6px #ffffff);
    }
    100% {
        transform: scale(1);
    }
}

.social-icons a:nth-child(1) {
    animation-delay: .5s;
}

.social-icons a:nth-child(2) {
    animation-delay: 1s;
}

.social-icons a:nth-child(3) {
    animation-delay: 1.5s;
}

.social-icons a:nth-child(4) {
    animation-delay: 1.8s;
}

.social-icons a:nth-child(5) {
    animation-delay: 1.9s;
}


/*Animation end*/

.gallery-btn a {
    width: 15%;
    margin: 0 auto;
    margin-top: 30px;
}


/*blog start*/

.blog-sec {
    position: relative;
    padding-top: 0;
}

.blog-sec .themes-h2 {
    margin-bottom: 40px;
}

.blog-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #00000022;
}

.blog-box {
    position: relative;
    padding: 20px;
    box-shadow: 0 0 10px #00000022;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    margin: 30px 0;
    border-radius: 10px;
    background: #ffffffc2;
}

.blog-box .blog-img {
    overflow: hidden;
}

.blog-box:hover .blog-img img {
    transform: scale(1.2);
}

.blog-box .blog-img img {
    width: 100%;
    transition: 0.3s ease-in-out;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-box .blog-txt {
    padding-top: 20px;
}

.blog-box .blog-txt ul {
    display: flex;
}

.blog-box .blog-txt ul li {
    display: flex;
    width: 40%;
    align-items: center;
}

.blog-box .blog-txt ul li i {
    padding-right: 10px;
    color: #cd4253;
}

.blog-box .blog-txt ul li h6 {
    margin: 0;
    color: #333333;
    font-size: 16px;
    font-family: 'Oswald';
}

.blog-box .blog-txt h4 {
    color: #cd4253;
    font-family: 'Oswald';
    font-size: 25px;
}

.blog-box .blog-txt a {
    color: #cd4253;
    font-weight: 500;
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid;
}

.blog-sli .slick-slide {
    opacity: 1;
}

.blog-sli .slick-dots li button:before {
    font-size: 15px;
    opacity: 1;
    color: #a9a4a4;
    border-radius: 50%;
}

.blog-sli .slick-dots li.slick-active {
    opacity: 1;
}

.blog-sli .slick-dots li.slick-active button:before {
    color: #ff5e15;
    border: 1px solid #ff5e15;
    opacity: 1;
}

section.blog-sec-inner.themes-padd {
    padding-bottom: 50px;
}

section.blog-sec-inner.themes-padd h1 {
    font-size: 100px;
    line-height: 173px;
    color: #232323;
    font-weight: 400;
    margin: 0 0 10px;
}


/*blog end*/


/*contact start*/


/* contact start */

.contact-us {
    padding-top: 40px;
    padding-bottom: 90px;
}

.contact-us h3 {
    color: #010101;
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: uppercase;
}

.contact-us p {
    font-size: 17px;
    line-height: 27px;
    font-family: Poppins;
    font-weight: 400;
    width: 100%;
    color: #8b8a8a;
    width: 90%;
}

.contact-us input {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    color: #9d9a9a;
    font-size: 15px;
    background: #ffffff69;
}

 ::placeholder {
    color: #9d9a9a;
}

.contact-us textarea {
    margin-top: 20px;
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    height: 120px;
    resize: none;
    font-size: 15px;
    color: #9d9a9a;
    background: #ffffff69;
}

.contact-us button {
    height: 50px;
    width: 30%;
    /* text-align: center; */
    border: 0;
    margin-top: 20px;
    font-size: 17px;
    border-radius: 5px;
    background: #cd4253;
    color: #fff;
}


/* .detai-s {
    margin-top: 30px;
    padding-bottom: 15px
}

.detai-s i {
    color: #fff200;
    line-height: 80px;
    font-size: 30px
}

.detai-s a {
    color: #000000b3;
    font-size: 17px;
    line-height: 1;
    font-family: Poppins;
    font-weight: 400
} */

section.contact-us .soccail-icon {
    display: flex;
    gap: 18px;
}

section.contact-us .soccail-icon i {
    /* background: #f25764; */
    color: #fff;
    font-size: 22px;
}


/* .detai-s img {
    height: 50px;
    line-height: 53px;
    margin-top: 20px
}

.detai-s h6 {
    margin: 0;
    color: #000;
    font-family: Poppins;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.2;
}

.detai-s .row {
    display: flex;
    align-items: center;
    gap: 0
}

.detai-s i {
    color: #000;
    line-height: 80px;
    font-size: 40px;
    height: 96px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.Leave-wrap {
    background: #ffffffb3;
    padding: 40px 20px
}

.socails ul li img {
    width: 26px;
    height: 29px;
    object-fit: none
}

.map-frame {
    width: 100%;
    height: 600px
}

.soccail-icon a {
    width: 36px;
    height: 36px;
    background: #cd4253;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.Leave-wrap ::placeholder {
    color: #9d9a9a;
    font-size: 15px;
}


/* contact end */


/*blog detail start*/

.detail-img img {
    width: 100%;
    border-radius: 20px;
}

.detail-text h2 {
    color: #000;
    font-size: 60px;
    font-weight: 500;
    font-family: 'EB Garamond', serif;
}

.detail-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    color: #000;
    font-weight: 600;
}

.detail-text p {
    color: #000000;
    font-size: 16px;
    line-height: 30px;
}

section.blog-detail-sec.themes-padd {
    padding: 80px 0;
}

.detail-text ul li i {
    color: #cd4253;
}

.wheat {
    width: 280px;
    left: 0;
	display: none !important;
}


/*blog detail end*/