/* FONT IMPORT */
@import url(./layout.min.css);
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Local Font */
@font-face {
    font-family: "gotham";
    src: url("./gotham.otf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #B40101;
    --secondary: #3D3D3D;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "gotham";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: bold;
    display: flex;
    padding: 1.2rem 2.3em;
    border-radius: 4px;
    line-height: normal;
    align-items: center;
    gap: 8px;
    justify-content: center;

}

.themeBtn1 {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.themeBtn1:hover {
    border-color: var(--black);
}

.themeBtn i {
    font-size: 1.25rem;
}

.themeBtn:hover {
    color: var(--white);
    background: var(--black);
}

/* !GLOBAL CSS */

/* Main Banner Css Start */

.mainBanner {
    background: #F4F4F4;
    height: 710px;
    display: flex;
    align-items: center;
}

.bannerContent h1 {
    text-transform: uppercase;
    font-size: 4.375rem;
    color: var(--primary);
}

.bannerContent h1 span {
    color: var(--black);
}

.bannerContent p {
    color: var(--secondary);
    font-size: 1.125rem;
    font-weight: 500;
    width: 85%;
    margin: 1.5rem 0 3.75rem 0;
}

.bannerContent .btn-group,
.bannerContent .relatedArticles {
    align-items: center;
    gap: 1.875rem;
    display: flex;
}

.bannerContent .relatedArticles {
    margin: 1.875rem 0 0 2.8125rem;
}

.relatedArticles a {
    color: var(--secondary);
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
}

.relatedArticles a:hover {
    color: var(--primary);
}

.relatedArticles a i {
    font-size: 1.125rem;
}

.relatedArticles a span {
    text-decoration: underline;
}

.banImg {
    text-align: center;
}

/* Main Banner Css End */

/* Estate Sec Css Start */

.estateSec {
    background: var(--secondary);
    padding: 4.375rem 0;
}

.secHeading {
    text-transform: uppercase;
    font-size: 3rem;
    color: var(--black);
}

.estateContent p {
    color: var(--white);
    font-weight: 500;
    width: 70%;
}

/* Estate Sec Css End */

/* Books Sec Css Start */

.bookSec {
    background: var(--primary);
    padding: 4.375rem 0;
}

.booksWraps {
    text-align: center;
}

.booksWraps>i {
    color: var(--white);
    font-size: 2.5rem;
}

.booksWraps h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
}

.booksWraps p {
    color: var(--white);
    font-weight: 500;
    width: 70%;
    margin: 0 auto 2.5rem;
}

.booksWraps a {
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booksWraps a i {
    font-size: 1.25rem;
}

/* Books Sec Css End */

/* Blog Sec Css Start */

.blogSec {
    padding: 9.375rem 0;
}

.blogHeadings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.secHeading span {
    color: var(--primary);
}

.blogHeadings p {
    color: var(--secondary);
    font-weight: 500;
    margin: 1.2rem 0 0 0;
}

.blogHeadings a {
    color: var(--primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogHeadings a i {
    font-size: 1.375rem;
}

.blogHeadings a span {
    text-decoration: underline;
}

.blogWraps figure img {
    width: 100%;
    border-radius: 8px;
}

.blogContent h2 {
    color: var(--black);
    font-size: 1.875rem;
    margin: 1.875rem 0 0 0;
}

.blogContent p {
    color: var(--secondary);
    margin-top: 1.5rem;
}

.blogFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.blogFlex a {
    color: var(--secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogBox .blogContent h2 {
    margin: 1.125rem 0 0 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.blogBox+.blogBox {
    margin-top: 1.8rem;
}

.blgVector {
    position: absolute;
    bottom: 0;
    left: 4rem;
}

/* Blog Sec Css End */

/* Featured Sec Css Start */

.featuredSec {
    background: #F4F4F4;
    padding: 10.625rem 0 11.25rem 0;
}

.featuredBox {
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    padding: 1.6875rem 1.6875rem;
    margin-top: 2.5rem;
}

.featuredBox h2 {
    color: var(--black);
    font-size: 1.125rem;
    text-transform: uppercase;
    margin: 1.75rem 0 1.2rem 0;
}

.featuredBox h3 {
    color: var(--black);
    font-size: 2.125rem;
    margin-bottom: 1.5rem;
}

/* Featured Sec Css End */

/* Resources Sec Css Start */

.resourcesSec {
    padding: 10.625rem 0;
    position: relative;
}

.resourcesWrpas {
    display: flex;
    align-items: center;
    gap: 1.375rem;
    margin-bottom: 3.75rem;
}

.resourcesContent {
    flex: 1;
}

.resourcesContent h3 {
    color: var(--black);
    font-size: 1.625rem;
    text-transform: uppercase;
}

.resourcesContent ul li a {
    color: var(--secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.resourcesContent ul li a i {
    font-size: 1.375rem;
    color: var(--black);
}

.resourcesContent .MoreResource {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline !important;
}

.resourcesContent ul {
    margin: 1rem 0;
}

.resourceBtn .themeBtn {
    width: fit-content;
    margin: auto;
}

/* Resources Sec Css End */

/* Subscription Sec Css Start */

.subscriptionSec {
    padding: 6.25rem 0;
}

.subscriptionContent h2 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 2.125rem;
}

.subscriptionContent p {
    color: var(--white);
    margin: 1.5rem 0 2.5rem 0;
    font-weight: 500;
}

.subscriptionContent .btn-group {
    gap: 1.875rem;
    align-items: center;
}

.subscriptionContent .btn-group .themeBtn1 {
    background: var(--white);
    color: var(--primary);
    border: unset;
}

/* Subscription Sec Css End */

/* Testimonial Sec Css Start */

.testimonialSec {
    padding: 10.625rem 0;
}

.testimonialBox {
    background: #F4F4F4;
    border-radius: 8px;
    padding: 3.125rem 3.125rem;
}

.testimonialBox ul {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonialBox ul li i {
    color: #F0AD4E;
}

.testimonialBox p {
    text-align: center;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.125rem;
    width: 90%;
    margin: 1rem auto 2.5rem;
}

.userName {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.userName h3 {
    flex: 1;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: #012F48;
    margin: 0;
    line-height: 1.6;
}

.userName h3 span {
    display: block;
    font-family: 'Inter';
    font-size: 1rem;
}

.testimonialSec .swiper-button-next:after,
.testimonialSec .swiper-button-prev:after {
    display: none;
}

.testimonialSec .swiper-button-next,
.testimonialSec .swiper-button-prev {
    background: var(--white);
    width: 65px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
    font-size: 2rem;
    color: #111111;
    top: 55%;
}

.testimonialSec .swiper-button-next {
    right: 11%;
}

.testimonialSec .swiper-button-prev {
    left: 11%;
}

.testimonialSlider {
    margin-top: 2.5rem;
}

.testimonialPath {
    position: absolute;
    bottom: 0;
    left: 2.8125rem;
}

/* Testimonial Sec Css End */

/* Tabs Sec Css Start */

.tabSec {
    background: var(--primary);
    padding: 9.375rem 0;
}

.tabsPack a.active,
.tabsPack a.current {
    color: var(--white) !important;
    border-color: var(--white);
}

[class^=box-] {
    display: none;
}

[class^=box-].showfirst {
    display: block;
}

.tabsPack a {
    text-transform: uppercase;
    color: rgb(255 255 255 / 70%) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 3px solid rgb(255 255 255 / 70%);
    padding: 0 3.66rem 1rem 3.67rem;
}

.tabsPack {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tabsPack a i {
    font-size: 1.875rem;
}

.tabContents h2 {
    margin-bottom: 1.5rem;
}

.tabContents p {
    color: var(--white);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.tabContents .themeBtn1 {
    background: var(--white);
    width: fit-content;
}

.tabContents .themeBtn1 {
    color: var(--black);
    margin-top: 2.5rem;
}

.tabContents .themeBtn1 i {
    color: var(--primary);
}

.tabImg {
    text-align: right;
}

/* Tabs Sec Css End */

/* Meet Sec Css Start */

.meetSec {
    background: #F4F4F4;
    padding: 10.625rem 0;
}

.meetWraps figure img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.meetContent h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.meetContent span {
    color: var(--secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meetContent span i {
    color: var(--primary);
    font-size: 1.25rem;
}

.meetContent {
    padding: 1.5625rem 1.5625rem;
    border-radius: 0 0 8px 8px;
    background: var(--white);
    height: 142px;
}

.meetWraps {
    margin-top: 2.5rem;
}

/* Meet Sec Css End */

/* Team Sec Css Start */

.teamSec {
    background: unset;
}

.teamSec .meetContent h3 {
    text-align: center;
    margin: 0;
}

.teamSec .meetContent {
    background: #F4F4F4;
    height: auto;
}

.vectorTwo {
    position: absolute;
    bottom: 0;
    right: 12px;
    z-index: -1;
}

/* Team Sec Css End */

/* Footer Css Start */

footer {
    background: var(--black);
    padding: 9.375rem 0 3.125rem 0;
}

footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.links li a {
    color: #F4F4F4;
    text-transform: capitalize;
    font-weight: 500;
}

.links li+li {
    margin-top: 0.75rem;
}

.termsLink {
    display: flex;
    justify-content: space-between;
}

.termsLink li a {
    color: #F4F4F4;
    font-weight: 500;
    text-transform: capitalize;
}

.socialMedia {
    display: flex;
    justify-content: end;
    gap: 2rem;
}

.socialMedia li a {
    color: var(--primary);
    font-size: 1.625rem;
}

.termsLinking {
    border-top: 1px solid #6F6F6F;
    margin-top: 4.375rem;
    padding-top: 1.125rem;
}

.copyRight p {
    text-align: center;
    color: var(--white);
    margin: 0;
    font-size: 0.875rem;
    margin-top: 5rem;
}

/* Footer Css End */

/* Inner Css Start */

.productdetailInner {
    background: #F4F4F4;
    padding: 3.5rem 0 9.375rem 0;
}


.productdetailInner hr {
    background-color: #D7D7D7;
    margin-top: 5rem;
    margin-bottom: 4rem;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 6px;
    position: relative;
    margin-top: -3rem;
    width: 85%;
}

.mySwiper .swiper-slide {
    width: 32% !important;
    height: 100%;
    border: 2px solid transparent;
    margin: auto;
}

.mySwiper .swiper-slide-thumb-active {
    border-color: var(--primary);
    border-radius: 5px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper .swiper-slide img {
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / 7%);
    border-radius: 5px;
}

.productdetailInner .swiper-button-next:after,
.productdetailInner .swiper-button-prev:after {
    display: none;
}

.productdetailInner .swiper-button-next,
.productdetailInner .swiper-button-prev {
    background: var(--white);
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 15%);
    width: 2.5rem;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
    color: #111111;
    top: inherit;
    bottom: 4rem;
}

.productdetailInner .swiper-button-prev {
    left: 2.5rem;
}

.productdetailInner .swiper-button-next {
    right: 2.5rem;
}

.quantity-container {
    display: inline-flex;
    align-items: center;
    border: 0px solid var(--black);
    border-radius: 5px;
    overflow: hidden;
    height: 50px;
    width: 150px;
    justify-content: center;
}

.qty-btn {
    background-color: transparent;
    border: none;
    padding: 0.5rem 0.9375rem;
    cursor: pointer;
    font-size: 1.125rem;
    /* user-select: none; */
    transition: background 0.3s;
    outline: unset !important;
    box-shadow: unset;
    background: #ffffff !important;
}

.qty-btn:hover {
    background-color: transparent;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    outline: none;
}

.detailsContents {
    margin-left: 4rem;
}

.detailsContents span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.5rem;
}

.detailsContents span small {
    font-size: 1rem;
}

.detailsContents h3 {
    color: var(--secondary);
    font-size: 1.875rem;
    margin-top: 2.125rem;
}

.detailsContents label {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 500;
}

.detailsContents .form-check input {
    width: 25px;
    height: 25px;
    margin: 0;
    position: unset;
}

.detailsContents .form-check {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantityWraps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.125rem;
}

.quantityWraps h3 {
    margin: 0;
}

.quantityWraps input {
    background: transparent;
}

.detailsContents h4 {
    color: var(--black);
    font-size: 2.5rem;
    font-family: 'gotham';
    margin: 2.5rem 0;
}

.detailsContents ul li a {
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
}

.detailsContents .themeBtn {
    border-radius: 8px;
    padding: 1.5rem 0;
    margin: 10px 0 1.5rem 0;
}

.amazonWraps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amazonWraps h6 {
    margin: 0;
    font-weight: 400;
    color: var(--secondary);
    font-size: 1rem;
}

.productdetailInner .row+.row {
    margin-top: 7.5rem;
}

.detailText h2 {
    text-transform: uppercase;
    font-size: 2.125rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.detailText p,
.detailText ul li {
    color: var(--secondary);
    font-weight: 500;
}

.detailText ul {
    list-style: auto;
    list-style-position: inside;
}

.detailText ul {
    margin-bottom: 1.5rem;
}

.detailText p {
    margin-bottom: 1.5rem;
}

.detailText p span {
    color: var(--primary);
}

.relatedSect {
    padding: 10.625rem 0;
}

.relatedWraps li a {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(0 0 0 / 15%);
    padding-bottom: 14px;
    margin-bottom: 14px;
    width: 90%;
}

.relatedWraps li a i {
    color: var(--black);
    font-size: 1.625rem;
}

.relatedWraps {
    margin-top: 2.5rem;
}

.relatedArticleSect {
    background: #F4F4F4;
}

.artWraps {
    display: flex;
    align-items: center;
    width: 95%;
    margin-top: 2.5rem;
}

.artContent {
    flex: 1;
    background: var(--white);
    padding: 1.375rem 1.5625rem;
    border-radius: 0 4px 4px 0;
}

.artWraps figure img {
    border-radius: 4px 0 0 4px;
}

.artContent h3 {
    color: var(--black);
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.5;
    width: 80%;
}

.modal.fade .modal-dialog {
    max-width: 630px;
}

.modal-content {
    border-radius: 24px;
    padding: 4.375rem 4.375rem;
}

.modal-header {
    border: unset;
    position: absolute;
    top: 0;
    right: 0;
}

.modal-header button {
    outline: unset;
    box-shadow: unset;
}

.modelFlexs {
    display: flex;
    align-items: center;
    gap: 1.375rem;
    border-bottom: 1px solid #C9C9C9;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.bookTexts {
    flex: 1;
}

.bookTexts h2 {
    text-transform: uppercase;
    color: var(--black);
    font-size: 1.875rem;
}

.bookTexts span,
.bookTexts span small {
    color: var(--secondary);
    font-weight: 500;
}

.bookTexts span small {
    color: var(--primary);
}

.bookTexts span {
    display: block;
    margin-top: 0.875rem;
}

.modalContent h3 {
    color: var(--secondary);
    font-size: 1.25rem;
}

.modalContent label {
    font-weight: 500;
    color: var(--secondary);
}

.modalContent .form-check input {
    width: 22px;
    height: 22px;
    margin: 0;
    position: unset;
}

.modalContent .form-check {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.625rem;
}

.modalContent .quantityWraps {
    flex-direction: column;
    align-items: baseline;
    gap: 0.625rem;
    margin-top: 1.4375rem;
}

.modalContent ul li a {
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.modalContent ul {
    margin: 1.875rem 0;
}

.modalContent ul li+li {
    margin-top: 0.625rem;
}

.modalContent h4 {
    color: var(--black);
    font-size: 1.875rem;
    font-family: 'gotham';
}

.modalContent .btn-group {
    gap: 1.75rem;
    margin-top: 1.875rem;
}

.modalContent .btn-group .canclBtn {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.modalContent .btn-group a {
    width: 212px;
}

/* Inner Css End */

/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}

/* !SEARCH BAR CSS */

.testimonialPath1 {
    position: absolute;
    bottom: 0;
    left: 2.8125rem;
}

.testimonialPath2 {
    position: absolute;
    bottom: 0;
    right: 2.8125rem;
}

.productdetailInner span.s1 small {
    color: var(--secondary);
    font-weight: 500;
}

.productdetailInner small {
    color: var(--primary);
}



.detailsContents span.s1 {
    font-size: 19px;
    margin-bottom: 12px;
    display: block;
}

.detailsContents span.s1 small {
    color: var(--primary);
}


.pagetitle {
    background: #F4F4F4;
    padding: 2.2rem 0 1rem 0;
}

.pagetitle ul {
    display: flex;
    gap: 12px;
}

.pagetitle ul li {
    color: #A8A8A8;
}

.pagetitle ul li i {
    font-size: 13px;
    margin-left: 5px;
}

.pagetitle ul li.active {
    color: #3D3D3D;
}


.modalContent .qty-btn {
    background: #f4f4f4 !important;
}