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

/*
font-family
font-family: 'Cormorant', serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
*/
/***** General CSS *****/

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

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

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

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

img {
    max-width: 100%;
}

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

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

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


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

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


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

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1 {
    font-family: 'Cormorant';
    font-size: 130px;
    line-height: 107px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 17px;
    letter-spacing: 6px;
}

h2 {
    font-family: 'Cormorant';
    font-size: 57px;
    line-height: 62px;
    color: #2e2e2e;
    font-weight: 500;
    margin: 0 0 30px;
}

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

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

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

h6 {
    font-family: 'Cormorant', serif;
    font-size: 26px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}



p {
    color: #646464;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
}

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: relative;
    z-index: 3;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}
.menuSec {
    padding: 10px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.menuSec img {
    margin: 0;
    /* border-radius: 100%; */
    height: 71px;
    width: 214px;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 0px 0px;
    font-size: 16px;
    font-family: "Montserrat";
}
/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}
*/
.menuSec ul li:last-child a:after {
    display: none;
}

.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: #fefaff;
    border-bottom: 2px solid #d4c16d;
    
}

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

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


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


/*banner css start */


.donate-btn a {
    background-color:#DDA0DD;
    height: 53px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #565252;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
    text-transform: uppercase;
     z-index: 1;
    overflow: hidden;
    position: relative;
}
.donate-btn a:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d7c570;
    z-index: -1;
    left: -100%;
    transition: 0.5s all;
}
.donate-btn a:hover::after {
    left: 0;
    transform: skewX(60deg);
}
section.main_slider img {
    width: 100%;
    object-fit: cover;
    height: 790px;
}
section.main_slider {
    /*margin-top: -8%;*/
    background-image: url(../images/banner1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 14% 0 18.4%;
    position: relative;
}
span.h-1 {
    font-size: 91px;
    letter-spacing: 0;
}
.banner_text {
    text-align: center;
    position: relative;
    z-index: 2;
}
a.btn {
    background-color: #dda0dd;
    height: 53px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #565252;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
    text-transform: uppercase;
    margin: 40px auto 0;
    border-radius: 0;
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 0 40px;
}
section.main_slider:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #18131852;
    top: 0;
}
a.btn:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d7c570;
    z-index: -1;
    left: -100%;
    transition: 0.5s all;
}
a.btn:hover::after {
    left: 0;
    transform: skewX(60deg);
}

/*banner css end*/

/*about-sec-start*/
p.top-p {
    font-family: 'Montserrat';
    font-size: 16px;
    color: #8f3bde;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.about-content {
    width: 100%;
    padding-left: 0%;
}
.ab-text {
    width: 100%;
    padding-right: 0;
}
.ab-text .btn {
    margin: 17px 0;
}
.aboutus-sec {
    padding: 10% 0;
    /*background-image: url(../images/bg-logo.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: center;
    background-attachment: fixed;
}
.bg-blackk{
    background-color: #000 !important;
}
/*about-sec-end*/


/*ministry-sec-start*/

.min-text h5 {
    font-family: 'Cormorant';
    font-size: 25px;
    line-height: 25px;
    color: #8428d9e8;;
    font-weight: 500;
    padding: 14px 0 17px;
    border-bottom: 2px solid #2e2e2e;
}
.min-text a {
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 13px 0;
}
.min-text a i {
    height: 30px;
    width: 30px;
    background-color: #dbb045;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.min-img img {
    height: 310px;
    width: 100%;
    object-fit: cover;
}
/*ministry-sec-end*/


/*Connect-sec-start*/

.connect-sec{
    background-image: url("../images/connect-sec.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 10% 0;
}
.connect-sec:after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color:#1813189e;
    top: 0; 
}
.connect-text p.top-p {
    color: #fff;
    font-weight: 500;
    padding: 0px 0 30px;
    border-bottom: 2px solid #DAA520;
}
.connect-text {
    position: relative;
    z-index: 4;
    width: 44%;
    float: right;
}
.connect-text h3 {
    font-family: 'Cormorant';
    color: #fff;
    font-size: 50px;
    line-height: 58px;
}
.connect-text a.btn {
    margin: 52px 0;
    width: 100%;
}
.connect-text {
    position: relative;
    z-index: 4;
    width: 44%;
}
.ev-w{
    margin: 0 5%;
}
.d-img img {
    height: 347px;
    object-fit: cover;
    width: 327px;
}
.d-img:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0000007d;
    left: 0;
}
.d-txt p {
    font-family: 'Cormorant';
    font-size: 38px;
    color: #fff;
    line-height: 40px;
}
.d-img {
    text-align: center;
    position: relative;
    width: 82%;
    margin: auto;
}
.d-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 77%;
    text-align: center;
    z-index: 3;
}
.events-img {
    position: relative;
}
.d-txt .btn {
    width: 50%;
}
.events-sec {
    padding: 10% 0;
}
.blog-card p.top-p {
    border-bottom: 2px solid #2e2e2e;
    padding: 0 0 18px;
}
.blog-card h5 {
    font-family: 'Cormorant';
    font-size: 38px;
    line-height: 40px;
    margin: 5% 0;
}
.blog-card .btn {
    width: 100%;
    margin: 13% 0;
}
/*Connect-sec-end*/

/*annual-sec-start*/
.annual-img:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #00000082;
    left: 0;
}
.annual-img {
    position: relative;
}
.annual-text p.top-p {
    border-bottom: 2px solid #2e2e2e;
    padding: 0 0 18px;
}
.annual-text h5 {
    font-family: 'Cormorant';
    font-size: 37px;
    line-height: 44px;
}
.ann-leftside {
    position: relative;
}
.annual-text {
    position: absolute;
    right: 0;
    width: 44%;
    height: 400px;
    padding: 50px;
    top: 56%;
    background-color: #fff;
    box-shadow: rgb(110 52 103 / 25%) 0px 50px 100px -20px, rgb(255 115 192 / 29%) 0px 30px 60px -30px;
}
.annual-sec {
    padding: 3% 0 13%;
}
.ann-report h5 {
    font-family: 'Cormorant';
    font-size: 37px;
    padding: 30px 0;
    border-bottom: 2px solid #2e2e2e;
}
.ann-report ul li a {
    display: flex;
    align-items: center;
    gap: 18px;
}
.ann-report ul li a p {
    font-size: 16px;
    color: #b76cf7;
    font-family: 'Montserrat';
    padding: 14px 0;
}
.ann-report ul li a i {
    color: #b76cf7;
}
.ann-report ul li {
    border-bottom: 1px solid;
    margin: 16px 0;
}
.ann-report {
    padding: 30% 36px 0;
}
/*annual-sec-end*/

/*Donation-last-sec-start*/

.donate-last-sec{
    background-image: url("../images/don-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 8% 0;
    position: relative;
}
.donate-last-sec:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000000bd;
    top: 0;
    left: 0;
}
.d-text {
    position: relative;
    z-index: 3;
    text-align: center;
}
.d-text p {
    color: #ffff;
}
.d-text h2 {
    color: #fff;
    font-size: 71px;
    width: 59%;
    margin: 44px auto;
}
.d-text .btn {
    width: 15%;
    margin: 70px auto 0;
}
/*Donation-last-sec-end*/

/*footer-start*/

.footerSec {
    background-color: #2e2e2e;
    padding-top: 7%;
}
.footer-logo img {
    height: 80px;
    width: 228px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer-about p {
    color: #ffffff;
    margin: 33px 0px;
    width: 90%;
}
.footer-social p {
    font-family: 'Cormorant';
    font-size: 25px;
    margin-bottom: 25px;
}
.footer-social ul li a i {
    color: #DAA520;
    background-color: #fff;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.footer-social ul {
    display: flex;
    gap: 12px;
}
.foot-links ul li a {
    color: #ffffff;
    padding: 20px 0;
}
.foot-links ul li {
    border-bottom: 1px solid #fff;
    padding: 13px 0;
}
.news-letter h6 {
    padding-bottom: 40px;
}
.foot-links h6{
    padding-bottom: 40px;
}
.news-letter form input {
    width: 100%;
    height: 58px;
    background-color: transparent;
    border: 1px solid#fff;
    margin-top: 15px;
    padding-left: 20px;
}
.news-letter .btn {
     width: 45%;
    
}


.news-letter form ::placeholder {
    color: #ffff;
}
.footer-last p {
    color: #aeaaaf;
    margin: 26px 0;
}
.copy-txt {
    display: flex;
    justify-content: space-between;
}
.copy-txt p{
    color: #aeaaaf; 
}
.footer-btm {
    padding: 22px 0;
    border-top: 1px solid #979797;
}
.footer-last {
    margin: 5% 0;
}

/*footer-end*/

/*inner-pages-start*/
section.main_slider.inner {
    margin-top: 0%;
    background-image: url(https://www.amazingtreasures.org/wp-content/uploads/2024/02/Banner.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    padding: 10% 0 10%;
    position: relative;
}
.banner_text.inner {
    text-align: left;
    position: relative;
    z-index: 2;
    padding-top: 17%;
    padding-left:50px;
}
section.main_slider.inner {
    padding: 3% 0 10%;
}
/*about-sec-start*/

.ab-text.inner p{
    margin: 20px 0;


}
.faith-sec {
    padding: 8% 0 22%;
}
.faith-img {
    width: 67%;
    margin-left: 33%;
    position: relative;
}
.faith-img:after{
        content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #1813189e;
    top: 0;
    left: 0;
}
.faith-text h2 {
    font-size: 48px;
    padding: 14px 0;
    border-bottom: 2px solid #2e2e2e;
}
.faith-text ul li a {
    display: flex;
    align-items: center;
    gap: 13px;
}
.faith-text ul li a p {
    color: #b76cf7;
    font-size: 16px;
        line-height: 45px;
}
.faith-text ul li a i{

    color: #2e2e2e;
}
.faith-div {
    position: relative;
}
.faith-text {
    position: absolute;
    top: 20%;
    background-color: #ffff;
    left: 7%;
    width: 40%;
    padding: 50px;
    box-shadow: 0 0 20px #00000021;
}
.faith-ctext ul li a{
    margin: 20px 0;
}
.faith-ctext ul li a p {
    margin: 20px 0;
}
.faith-ctext h2 {
    padding: 20px 0;
    border-bottom: 2px solid #2e2e2e;
}

.faith-text div#pills-tabContent {
    position: absolute;
    width: 79%;
    right: -105%;
    background-color: #f5ddf5;
    padding: 25px 36px;
    border: 3px solid #dbb045;
    top: 23%;
}
.faith-text .tab-pane p span {
    color: #000;
    font-size: 15px;
    font-weight: 400;
}

.faith-text ul {
    flex-direction: column;
    justify-content: start;
}
.faith-text ul li  i {
    color: #2e2e2e;
}

.faith-text ul li button {
    display: flex;
    align-items: center;
    gap:10px;
}
.faith-text ul li button p {
    color: #d366e3;
    font-size: 16px;
    line-height: 45px;
}
.faith-text .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    background-color: transparent;
}
.faith-text .nav-link{
    padding:0;
}
/*about-sec-end*/

/*connect-sec-start*/

button.btn {
    background-color: #dda0dd;
    height: 53px;
    width: 21%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #565252;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
    text-transform: uppercase;
    margin: 25px 0;
    border-radius: 0;
        gap: 10px;
         z-index: 1;
    overflow: hidden;
    position: relative;
}
button.btn:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d7c570;
    z-index: -1;
    left: -100%;
    transition: 0.5s all;
}
button.btn:hover::after {
    left: 0;
    transform: skewX(60deg);
}
.prog-sec h5 {
    font-size: 54px;
    font-weight: 600;
    font-family: 'Cormorant';
    color: #000;
}
.prog-sec h5 {
    font-size: 54px;
    font-weight: 600;
    font-family: 'Cormorant';
    color: #000;
    padding-bottom: 9%;
    position: relative;
    margin-bottom: 8%;
}
/*.prog-sec h5:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: #DAA520;
    left: 0;
    bottom: 0;
}*/
.prog-sec a.btn {
    margin: 30px auto;
    width: 36%;
}
.prog-sec {
    border: 2px solid #daa520;
    padding: 51px 51px 10px;
    background-color: #fff;
    width: 87%;
    margin: auto;
    text-align: center;
    position: relative;
}
.prog-sec:before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 140px;
    background-color: plum;
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
    transform: rotateX(180deg);
    left: 0;
}
.program{
    padding: 8% 0;
}
.ab-text.inner-prog {
    width: 58%;
    float: right;
    padding-right: 5%;
}
/*connect-sec-end*/

/*event-sec-start*/

.ev-pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.ev-pic {
    height: 560px;
    width: 100%;
}
.aboutus-sec.event{
    padding: 10% 0 5%;
}

/*event-sec-end*/

/*blog-start*/

.b-img img {
    width: 100%;
}
.b-img {
    padding-bottom: 20px;
}
.blog-card.page {
    height: 600px;
    position: relative;
}
.blog-card.page .btn {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
}
/*blog-end*/

/*Blogs-page-start*/
.blog-sec.page{
    padding: 10% 0;

}
.catgories-blog p.top-p {
    color: #dbb045;
    font-size: 17px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.catgories-blog {
    padding: 5% 33% 5% 7%;
}
.catgories-blog ul li a {
    color: #000;
    font-size: 16px;
    padding-left: 15px;
}
.catgories-blog ul li {
    padding: 3% 0;
    position: relative;
}
.catgories-blog ul li:hover{
    background-color:#8428d93d;
}
.catgories-blog ul li:hover:before{
    display: block;
}
.catgories-blog ul li:before{
    content: "";
    position: absolute;
    height: 41px;
    width: 4px;
    top: 0;
    background-color: #8428d9a6;
    display: none;
    
}
.recent-post-blogs p.top-p {
    color: #dbb045;
    font-size: 17px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.recent-post-blogs a {
    font-size: 16px;
    color: #000;
    padding: 3% 0;
    letter-spacing: 1px;
    line-height: 28px;
}
.recent-post-blogs a:hover {
    color: #dbb045;
    text-decoration: underline;
}

.recent-post-blogs {
    padding: 3% 33% 3% 7%;
}
.blog-head .top-l{
    display: flex;
    gap:6px;
}
.blog-head .top-l p a{
    font-size: 17px;
    line-height: 32px;
    font-weight: 300;
    color: #000;
}
.blogs-past-page p.head-p {
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}
.blogs-past-page img {
    padding: 20px 0;
}
.blogs-past-page p{
    color: #000;
}
.blogs-past-page button#dropdownMenuButton1 {
    background-color: #0062CC;
    color: #ffff;
    border-radius: 0;
}
.blogs-past-page p {
    color: #000;
    font-size: 17px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 1px;
}
p.head-p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.blogs-past-page p {
    color: #000;
    font-size: 17px;
    line-height: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 3% 0;
}
.blogs-past-page p a {
    color: #000;
}
.recent-post-blogs a:hover {
    color: #9d18b1;
    text-decoration: underline;
}
.blogs-past-page p.question {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.blogs-past-page p.after-point{
    margin-top: 0;
}
.blogs-past-page p.point-p {
    font-weight: 400;
    margin-bottom: 0;
}
.blog-sec.page .blog-head {
    padding: 0 0 0 0px;
}
.blogs-past-page ul li p {
    margin: 4px;
}
.blogs-past-page a{
    color: #9a00b1;
}
/*Blogs-page-end*/

/*contact-page-start*/
.contact-form input {
    width: 100%;
    height: 50px;
    border: 1px solid #a9a9a9;
}

.contact-form textarea{
    width: 100%;
    height: 150px;
    border: 1px solid #a9a9a9;
}
.contact-form label {
    font-size: 16px;
    font-weight: 600;
    color: #8428d9e8;
}
.contact-form {
    padding: 5% 9%;
    box-shadow: rgb(246 214 253) 0px 50px 100px -20px,
     rgb(246 214 253) 0px 30px 98px -30px;
    margin: 5%;
}
.contact-text h2 {
    font-size: 91px;
    border-bottom: 2px solid #2e2e2e;
    padding: 51px 0;
    color: #2e2e2e;
}
.contact-text p {
    font-size: 15px;
    line-height: 28px;
    width: 80%;
}

/*contact-page-end*/

/*donation-page*/
.d-text.page h2 {
    color: #B8860B;
    font-size: 71px;
    width: 100%;
    margin: 44px auto;
}

/*donation-page*/


/*min-circle-*/

.mincircle-head h2 {
    margin-bottom: 10px;
}
.mincircle-head{
    text-align: center;
}
.mincircle-head p {
    width: 50%;
    margin: auto;
}


/*css*/




.arrow-chart {
    width: 577px;
    height: 577px;
    position: relative;
    text-align: center;
    border-radius: 100%;
    overflow: hidden;
    clip-path: circle(50% at 50% 50%);
   /* left: 50%;
    transform: translateX(-50%);*/
}
.arrow-chart:after {
    content: "The Seven Ministry Focus Areas";
    font-size: 40px;
    padding: 20px;
    font-weight: 600;
    line-height: 52px;
    font-family: 'Cormorant';
    display: grid;
    align-items: center;
    background: #ffffff;
    width: 56%;
    height: 56%;
    z-index: 10;
    position: absolute;
    border-radius: 100%;
    top: 23%;
    left: 21%;
    /* background-image: url(."./images/bg.jpg); "*/
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
}

.arrow-chart section {
  height: 48%;
  width: 55%;
  position: absolute;
  text-align: center;
  color: #cccccc;
  background-color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.circular-sec {
    margin-top: 2%;
    position: relative;
}
.arrow-chart section label {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    width: 50%;
    padding: 0 5%;
    margin: 25% 0 0 0;
    display: block;
    color: #ffffff;
    font-family: "Trajan";
}

.arrow-chart section:nth-child(1) {
  transform: rotate(50deg);
  margin-left: 47%;
  margin-top: -8%;
  width: 53%;
  height: 44%;
}
.arrow-chart section:nth-child(1) label {
    transform: rotate(-51deg);
    position: absolute;
    left: 110px;
    top: 44px;
}
.arrow-chart section:nth-child(2) {/*   display: none; */transform: rotate(-30deg);margin-left: 72%;margin-top: 33%;width: 39%;height: 49%;}
.arrow-chart section:nth-child(2) label {
    transform: rotate(29deg);
    position: absolute;
    left: 59px;
    width: 56%;
    top: 3%;
}
.arrow-chart section:nth-child(3) {/*   display: none; */transform: rotate(27deg);margin-left: 36%;margin-top: 61%;height: 63%;width: 57%;}
.arrow-chart section:nth-child(3) label {
    transform: rotate(-38deg);
    position: absolute;
    left: 25%;
    top: -5%;
}
.arrow-chart section:nth-child(4) {/*   display:none; */transform: rotate(-199deg);margin-left: 15.25%;margin-top: 67%;width: 42%;height: 46%;}
.arrow-chart section:nth-child(4) label {
    transform: rotate(-156deg);
    left: -29px;
    top: -15%;
}
.arrow-chart section:nth-child(5) {
    /* display: none; */
    transform: rotate(227deg);
    margin-left: -9.5%;
    margin-top: 29%;
    width: 50%;
    height: 49%;
}
.arrow-chart section:nth-child(5) label {
    transform: rotate(130deg);
    position: absolute;
    left: 12%;
    top: 0%;
}
.arrow-chart section:nth-child(6) {/*   display:none; */transform: rotate(284deg);margin-left: 9%;margin-top: -20%;width: 57%;}
.arrow-chart section:nth-child(6) label {
    transform: rotate(-284deg);
    top: 3%;
    left: -16%;
}

.arrow-chart section:nth-child(7) {
    transform: rotate(252deg);
    margin-left: -27%;
    margin-top: 3%;
    height: 47%;
    width: 57%;
    transform: skewX(34deg);
}
.arrow-chart section:nth-child(7) label {
    transform: rotate(109deg);
    left: -22%;
    top: -8%;
}
/* Color Palette from https://www.materialui.co/colors */
.high {
  color: #4CAF50!important;
}
.medium {
  color: #FF9800!important;
}
.low {
  color: #FF5722!important;
}

section.medium.no1 {
    background-color: #d0bcb1 ;
}

section.low.no2 {
    background-color: #e6c142;
}

section.high.no3 {
    background-color: #967bb6;
}

section.high.no4 {
    background-color: #e6c142;
}

section.medium.no5 {
    background-color: #746770;
}

section.high.no7 {
    background-color: #e6c142;
}

section.high.no6 {
    background-color: #967bb6;
}

/*tab*/

.arrow-chart section:nth-child(5)  button {
    transform: rotate(133deg);
    position: absolute;
    left: 12%;
    top: 0%;
}

.arrow-chart section:nth-child(6)  button {
    transform: rotate(-291deg);
    top: -1%;
    left: -13%;
}

.arrow-chart section:nth-child(2)  button {
    transform: rotate(30deg);
    position: absolute;
    left: 59px;
    width: 56%;
    top: 3%;
}
.arrow-chart section:nth-child(7)  button {
    transform: rotate(109deg);
    left: 13%;
    top: 2%;
    transform: skewX(-33deg);
}

.arrow-chart section:nth-child(4)  button {
    transform: rotate(-160deg);
    left: -29px;
    top: -9%;
}
.arrow-chart section:nth-child(3)  button {
    transform: rotate(-28deg);
    position: absolute;
    left: 30%;
    top: -2%;
}
.arrow-chart section:nth-child(1)  button {
    transform: rotate(-51deg);
    position: absolute;
    left: 110px;
    top: 44px;
}
.arrow-chart section button {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    width: 50%;
    padding: 0 5%;
    margin: 25% 0 0 0;
    display: block;
    color: #ffffff;
    font-family: "Trajan";
        background-color: transparent;
    border: 0;
}


/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    right: 0;
    top: 50%;
    background-color: #f5ddf5c4;
    padding:0;
    border: 3px solid #dbb045;
    top:0%;
    width: 39%;
}
.tabcontent>img{
    height: 350px;
    object-fit: cover;
    width: 100%;
}
/*.tabcontent:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100.1%;
    height: 122px;
    background-color: plum;
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0% 38%);
    transform: rotateX(180deg);
    left: 0;
}*/
.tab_box{
    padding: 20px 40px;
}
.circular-sec h3 {
    font-family: 'Cormorant';
    font-size: 43px;
    line-height: 40px;
    color: #000000;
    font-weight: 600;
    padding-bottom: 5%;
    margin: 0 0 0;
    /* border-bottom: 2px solid #dbb045; */
    z-index: 1;
    position: relative;
    text-align: center;
}
.circular-sec a.btn {
    width: 45%;
    margin: 17px auto 10px;
    height: 46px;
}
.tabcontent p {
    text-align: center;
    margin-top: 0px;
}
/*min-circle-end*/
/*inner-pages-end*/


/* search box css */

.top-shipping ul li {
    margin-right: 15px;
}

.top-shipping ul {
    align-items: baseline !important;
}

body.search-open {
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


/* end search box css */

/*responsive*/

@media only screen and (min-width: 1366px) and (max-width: 1400px){
   .annual-text {
    width: 50%;
}
.faith-text h2 {
    font-size: 43px;
    
}
.contact-text h2 {
    font-size: 76px;
}


}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
    .annual-text {
    width: 51%;
}
    .faith-sec {
    padding: 8% 0 33%;
}
.faith-text {

    width: 44%;
    padding: 50px;
}
.contact-text h2 {
    font-size: 77px;
}


}
@media only screen and (min-width: 992px) and (max-width: 1199px){
    section.main_slider {
    margin-top: -14%;
}
h6 {
    font-size: 17px;
    line-height: 25px;
}

.menuSec ul {
    gap: 14px;
}
span.h-1 {
    font-size: 70px;
    letter-spacing: 0;
}
h1 {
    font-size: 86px;
    line-height: 92px;
}
h2 {
    font-size: 42px;
    line-height: 44px;
}
a.btn {
    width: 38%;
}
.min-img img {
    height: 216px;

}
.min-text h5 {
    font-size: 23px;
    line-height: 25px;
}
.connect-text h3 {
    font-size: 40px;
    line-height: 46px;
}
.connect-text {
    width: 56%;
}
.d-img {
    width: 100%;
}

.d-txt p {
    font-size: 27px;
    line-height: 35px;
}
.d-txt .btn {
    width: 69%;
}
.blog-card h5 {
    font-size: 28px;
    line-height: 35px;
}
.blog-card .btn {
    width: 100%;
    margin: 9% 0 0;
}
.annual-text {
    width: 55%;
    padding: 26px;
    height: 367px;
}
.ann-report ul li a p {
    font-size: 14px;
    padding: 14px 0;
}
.ann-report ul li a {
    gap: 5px;
}
.ann-report {
    padding: 16% 22px 0px;
}
.ann-report h5 {
    font-size: 33px;
    padding: 30px 0;
   
}
.annual-sec {
    padding: 12% 0 15%;
}
.d-text h2 {
    font-size: 64px;
    line-height: 57px;
    width: 89%;
    margin: 30px auto;
}
.d-text .btn {
    width: 23%;
    margin: 33px auto 0;
}
section.main_slider.inner {
    margin-top: -13%;
}
.faith-sec {
    padding: 8% 0 45%;
}
.faith-text {
    left: 7%;
    width: 54%;
    padding: 32px;
}
.faith-text h2 {
    font-size: 34px;
    padding: 14px 0;
}
.recent-post-blogs {
    padding: 3% 0% 3% 7%;
}
.contact-text h2 {
    font-size: 47px;

}
.contact-form {
    padding: 5% 0%;
}
button.btn {
    width: 33%;
}
.ev-pic {
    height: 373px;
    width: 100%;
}
 
}
@media only screen and (min-width: 768px) and (max-width: 991px){
section.main_slider {
    margin-top: -14%;
}
h6 {
    font-size: 17px;
    line-height: 25px;
}
.menuSec ul li a {
    font-size: 14px;
}
.menuSec ul {
    gap: 3px;
}
span.h-1 {
    font-size: 70px;
    letter-spacing: 0;
}
h1 {
    font-size: 86px;
    line-height: 92px;
}
h2 {
    font-size: 42px;
    line-height: 44px;
}
a.btn {
    width: 38%;
}
.min-img img {
    height: 216px;

}
.min-text h5 {
    font-size: 23px;
    line-height: 25px;
}
.connect-text h3 {
    font-size: 40px;
    line-height: 46px;
}
.connect-text {
    width: 56%;
}
.d-img {
    width: 100%;
}
.d-txt {
    width: 100%;
}
.d-txt p {
    font-size: 27px;
    line-height: 35px;
}
.d-txt .btn {
    width: 69%;
}
.blog-card h5 {
    font-size: 29px;
    line-height: 35px;
}
.blog-card .btn {
    width: 100%;
    margin: 9% 0 0;
}
.annual-text {
    width: 65%;
    padding: 26px;
}
.ann-report ul li a p {
    font-size: 14px;
    padding: 14px 0;
}
.ann-report ul li a {
    gap: 5px;
}
.ann-report {
    padding: 16% 0px 0;
}
.ann-report h5 {
    font-size: 33px;
    padding: 30px 0;
   
}
.annual-sec {
    padding: 12% 0 15%;
}
.d-text h2 {
    font-size: 64px;
    line-height: 57px;
    width: 89%;
    margin: 30px auto;
}
.d-text .btn {
    width: 23%;
    margin: 33px auto 0;
}
section.main_slider.inner {
    margin-top: -13%;
}
.faith-sec {
    padding: 8% 0 66%;
}
.faith-text {
    left: 7%;
    width: 54%;
    padding: 32px;
}
.faith-text h2 {
    font-size: 34px;
    padding: 14px 0;
}
.recent-post-blogs {
    padding: 3% 0% 3% 7%;
}
.contact-text h2 {
    font-size: 47px;

}
.contact-form {
    padding: 5% 0%;
}
button.btn {
    width: 33%;
}
    
}


@media only screen and (min-width: 520px) and (max-width: 767px){
        .header-logo {
    justify-content: center;
        margin: 8px 0 15px;
}
section.main_slider {
    margin-top: -37%;
    background-position: center;
}
.donate-btn a {
    width: 58%;
    margin: auto;
}
h1 {
    font-size: 72px;
    line-height: 74px;
}

span.h-1 {
    font-size: 58px;
    letter-spacing: 0;
}
.banner_text {
    margin-top: 61%;
}
a.btn {
    width: 47%;
    margin: 16px auto 0;
}
h2 {
    font-size: 45px;
    line-height: 52px;
}
.about-content {
    width: 100%;
    padding-left: 0;
}
.ab-text {
    width: 100%;
}
.min-img img {
    height: 249px;
  
}
.connect-text {
    width: 100%;
}
.connect-text h3 {
    font-size: 40px;
    line-height: 47px;
}
.d-img img {
    height: 347px;
    object-fit: cover;
    width: auto;
}
.ev-w {
    margin: 0 0%;
}
.d-img {
    width: 100%;
}
.d-txt {
    width: 100%;
}
.d-txt p {
    font-size: 45px;
    line-height: 63px;
}
.annual-text {
    width: 83%;
    height: 288px;
    padding: 28px;
}
.aboutus-sec {
    background-size: 263px;
}
.annual-text h5 {
    font-size: 27px;
    line-height: 29px;
}
.ann-report {
    padding: 50% 64px 0;
}

.d-text h2 {
    font-size: 49px;
    width: 100%;
    margin: 36px auto;
    line-height: 54px;
}
.d-text .btn {
    width: 45%;
    margin: 44px auto 0;
}
.footer-about p {
    margin: 22px 0px;
    width: 100%;
}
.copy-txt {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 10px;
}
section.main_slider.inner {
    margin-top: -59%;
    background-image: url(https://www.amazingtreasures.org/wp-content/uploads/2024/02/Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-attachment: fixed;*/
    padding: 3% 0 18% !important;
    position: relative;
}
.faith-text{
    position: inherit;
    width: 100%;
    padding: 0px;
    left: 0%;
}
.faith-img {
    width: 100%;
    margin-left: 0;
    position: relative;
}
.faith-text h2 {
    font-size: 37px;
    padding: 14px 0;
  
}
.faith-text ul li a p {
    
    font-size: 14px;

}
button.btn {
    width: 62%;
}
.ev-pic {
    height: 624px;
    width: 84%;
    margin: 20px auto;
}
.contact-form {
    padding: 5% 0%;
    margin: 0%;
}
.contact-text h2 {
    font-size: 59px;
}

.d-text.page h2 {
    font-size: 41px;
}

.banner_text.inner span.h-1 {
    font-size: 55px;
    letter-spacing: 0;
}
.mincircle-head p {
    width: 79%;
    margin: auto;
}
.circular-sec {
    margin-top: 5%;
    overflow-x: scroll;
}


.arrow-chart {
    left: 64%;
}
}

@media only screen and (min-width: 300px) and (max-width: 519px){

    .header-logo {
    justify-content: center;
        margin: 8px 0 15px;
}
section.main_slider {
    margin-top: -59%;
    background-position: center;

}
.donate-btn a {
    width: 58%;
    margin: auto;
}
h1 {
    font-size: 72px;
    line-height: 74px;
}

span.h-1 {
    font-size: 58px;
    letter-spacing: 0;
}
.banner_text {
    margin-top: 61%;
}
a.btn {
    width: 63%;
    margin: 16px auto 0;
}
h2 {
    font-size: 33px;
    line-height: 41px;
}
.about-content {
    width: 100%;
    padding-left: 0;
}
.ab-text {
    width: 100%;
}
.min-img img {
    height: 249px;
  
}
.connect-text {
    width: 100%;
}
.connect-text h3 {
    font-size: 40px;
    line-height: 47px;
}
.ev-w {
    margin: 0 0%;
}
.d-img {
    width: 100%;
}
.d-txt {
    width: 100%;
}
.d-txt p {
    font-size: 33px;
    line-height: 37px;
}
.annual-text {
    width: 83%;
    height: 288px;
    padding: 28px;
}
.aboutus-sec {
    background-size: 263px;
}
.annual-text h5 {
    font-size: 27px;
    line-height: 29px;
}
.ann-report {
    padding: 80% 36px 0;
}
.ann-report h5 {
    font-size: 32px;
}
.d-text h2 {
    font-size: 49px;
    width: 100%;
    margin: 36px auto;
    line-height: 54px;
}
.d-text .btn {
    width: 45%;
    margin: 44px auto 0;
}
.footer-about p {
    margin: 22px 0px;
    width: 100%;
}
.copy-txt {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 10px;
}
section.main_slider.inner {
    margin-top: -59%;
    background-image: url(https://www.amazingtreasures.org/wp-content/uploads/2024/02/Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 6% 0 27%;
    position: relative;
}
.faith-text{
    position: inherit;
    width: 100%;
    padding: 0px;
    left: 0%;
}
.faith-img {
    width: 100%;
    margin-left: 0;
    position: relative;
}
.faith-text h2 {
    font-size: 37px;
    padding: 14px 0;
  
}
.faith-text ul li a p {
    
    font-size: 14px;

}
button.btn {
    width: 62%;
}
.ev-pic {
    height: 346px;
    width: 100%;
    margin: 20px 0;
}
.contact-form {
    padding: 5% 0%;
    margin: 0%;
}
.contact-text h2 {
    font-size: 59px;
}

.d-text.page h2 {
    font-size: 41px;
}
.blog-head .top-l {
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.banner_text.inner span.h-1 {
    font-size: 55px;
    letter-spacing: 0;
}

.circular-sec {
    margin-top: 5%;
    overflow-x: scroll;
}


.arrow-chart {
   
    left:110%;
    
}

}

@media only screen and (min-width: 280px) and (max-width: 299px){
    .header-logo {
    justify-content: center;
        margin: 8px 0 15px;
}
section.main_slider {
    margin-top: -64%;
    background-position: center;

}
.donate-btn a {
    width: 58%;
    margin: auto;
}
h1 {
    font-size: 72px;
    line-height: 74px;
}

span.h-1 {
    font-size: 58px;
    letter-spacing: 0;
}
.banner_text {
    margin-top: 61%;
}
a.btn {
    width: 63%;
    margin: 16px auto 0;
}
h2 {
    font-size: 33px;
    line-height: 41px;
}
.about-content {
    width: 100%;
    padding-left: 0;
}
.ab-text {
    width: 100%;
}
.min-img img {
    height: 249px;
  
}
.connect-text {
    width: 100%;
}
.connect-text h3 {
    font-size: 40px;
    line-height: 47px;
}
.ev-w {
    margin: 0 0%;
}
.d-img {
    width: 100%;
}
.d-txt {
    width: 100%;
}
.d-txt p {
    font-size: 33px;
    line-height: 37px;
}
.annual-text {
    width: 100%;
    height: 288px;
    padding: 28px;
}
.aboutus-sec {
    background-size: 263px;
}
.annual-text h5 {
    font-size: 27px;
    line-height: 29px;
}
.ann-report {
    padding: 80% 15px 0;
}
.annual-img img {
    height: 259px;
}
.ann-report h5 {
    font-size: 32px;
}
.d-text h2 {
    font-size: 46px;
    width: 100%;
    margin: 36px auto;
    line-height: 54px;
}
.d-text .btn {
    width: 45%;
    margin: 44px auto 0;
}
.footer-about p {
    margin: 22px 0px;
    width: 100%;
}
.copy-txt {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 10px;
}
section.main_slider.inner {
    margin-top: -64%;
    background-image: url(https://www.amazingtreasures.org/wp-content/uploads/2024/02/Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 6% 0 27%;
    position: relative;
}
.faith-text{
    position: inherit;
    width: 100%;
    padding: 0px;
    left: 0%;
}
.faith-img {
    width: 100%;
    margin-left: 0;
    position: relative;
}
.faith-text h2 {
    font-size: 37px;
    padding: 14px 0;
  
}
.faith-text ul li a p {
    
    font-size: 14px;

}
button.btn {
    width: 62%;
}
.ev-pic {
    height: 346px;
    width: 100%;
    margin: 20px 0;
}
.contact-form {
    padding: 5% 0%;
    margin: 0%;
}
.contact-text h2 {
    font-size: 59px;
}

.d-text.page h2 {
    font-size: 41px;
}
.blog-head .top-l {
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.banner_text.inner span.h-1 {
    font-size: 51px;
    letter-spacing: 0;
}
}


.event_btntt{
    margin: 0 !important;
    margin-top: 40px !important;
}




.blog_sliderr .slick-slide{
    opacity: 1;
    margin:0 10px;
}


img.attachment-full {
    object-fit: contain;
}






.news-letter form input {
    color: #fff;
}









.page-id-9 .min-text h5 {
    padding-top:0 !important;
}
