@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@400;500;700&display=swap');

:root{
    /* colors  */
    --primaryColor:#fff;
    --secondaryColor:#000;
    --navBorderColor:#000;

    /* fonts  */
    --mainFont:"poppins";
    --secondaryFont:"Permanent Marker";
    --mainTxtColor:#000;
    --bntTxtColor:#000;
    --bntHoverTxtColor:#fff;
    --fs-header:1.5rem;
    --fw-header:700;
    --fw-header-nav:500;
    --fs-hero-content-header:3.5rem;
    --fw-hero-content-header:100;
    --fs-hero-content-body:1rem;
    --fw-hero-content-body:400;
    --fs-hero-content-bnt:1.2rem;
    --fw-hero-content-bnt:500;
    --fs-icon:2rem;
}.dark-theme{
        /* colors  */
        --primaryColor:#000;
        --secondaryColor:#fff;
        --navBorderColor:#fff;

        /* fonts  */
        --mainFont:"poppins";
        --secondaryFont:"Permanent Marker";
        --mainTxtColor:#fff;
        --bntTxtColor:#fff;
        --bntHoverTxtColor:#000;
        --fs-header:1.5rem;
        --fw-header:100;
        --fw-header-nav:100;
        --fs-hero-content-header:3.5rem;
        --fw-hero-content-header:100;
        --fs-hero-content-body:1rem;
        --fw-hero-content-body:400;
        --fs-hero-content-bnt:1.2rem;
        --fw-hero-content-bnt:500;
        --fs-icon:2rem;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100%;
    width: 100%;
    font-family: var(--mainFont);
    padding:  40px 20px;
    background-image: linear-gradient(to right,blue,silver);
    background-size: cover;
    background-attachment: fixed;
}



/* home page  */
.home-page{
    width: 100%;
    height: 100%;
    padding: 40px 140px 10px;
    overflow: hidden;

}

img{
    width: 100px;
    height: auto;
}


/* header section  */
.header-section{
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 30px;
    color: var(--mainTxtColor);
}

.header-section .header-logo{
    font-weight: var(--fw-header);
    cursor: pointer;
    animation: header-logo 1s ease forwards;
}

.header-section .header-nav{
    padding: 10px;
    height: 100%;
    width: 40%;
    display: inline-flex;
    justify-content: space-between;
}

.header-nav ul{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}
.header-nav ul li{
    list-style-type: none;
    opacity: 0;
    animation: header-nav 0.5s ease forwards;
    background-color: transparent;
    border-radius: 14px;
    border: none;
}
.header-nav ul li:nth-child(2){
    animation-delay: 0.5s;
}
.header-nav ul li:nth-child(3){
    animation-delay: 1s;
}
.header-nav ul li:nth-child(4){
    animation-delay: 1.5s;
}
.header-nav ul li a{
    text-decoration: none;
    font-size: 15px;
    font-weight: bolder;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    }

.highlight {
    height: 10px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    bottom: -10px;
    transition: all 0.5s ease-in-out;
    animation: header-nav 0.5s ease forwards;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mode-change{
    cursor: pointer;
    animation: header-nav 1s ease forwards;
    margin-left: 30px;
    color: transparent;
}
.mobile-nav-bar{
    display: none;
}

/* hero section  */
.hero-section{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    color: var(--mainTxtColor);
    background-color: white;
    border-radius: 14px;
    border: 4px solid white;
}
/* hero content  */
.hero-section .hero-content{
    height: 100%;
    width: 70%;
}

h2{
    margin: 5px;
}

h3{
    margin: 5px;
}

h1{
    font-size: 40px;
    margin-top: 0px;
    color: black;
    background-color: white;
    border-radius: 14px;
    border: 4px solid white;
}

p{
    color: black;
    background-color: white;
    border-radius: 14px;
    border: 4px solid white;
}

.contents
{

    border: 2px solid white;
    padding:  40px 20px;
    border-radius: 10px;
    background-color: white;
    border-radius: 20;
}

.content-header h1,
.content-header p{
    opacity: 0;
    animation: hero-content 0.5s ease forwards;
}
.content-header h1:nth-child(2){
    animation-delay: 0.5s ;
}
.content-header p{
    animation-delay: 1s ;
}
.hero-content h1{
    font-size: 20px;
}
.hero-content p{
    font-size: var(--fs-hero-content-body);
}

.content-btn{
    padding-top: 20px;
    animation: hero-btn 2s ease forwards ;
}
.content-btn button{
    margin: 10px;
    padding: 5px 10px;
    font-size: var(--fs-hero-content-bnt);
    font-weight: var(--fw-hero-content-bnt);
    color: black;
    border-radius: 10px;
    border: 2px solid black;
    background-color: transparent;
    cursor: pointer;
    opacity: 1;
    transition: transform 1s ease-in-out;
}
.content-btn button:hover{
    background-color: blue;
    border-color: white;
    color: var(--bntHoverTxtColor);
    transform: translateY(-10px) scale(1.1);
}

/* hero image  */
.hero-section .hero-image{
        width: 40%;
        height: 100%;
}
.hero-image img{
    height: 50%;
    float: right;
    opacity: 0;
    animation: hero-img 2s ease forwards;
}

/* social icon list  */
.social-icon-list{
    display: flex;
    align-items: center;
    font-size: var(--fs-icon);
    position: relative;
    bottom: 10px;
    left: 0;
    cursor: pointer;
    opacity: 0;
    animation: icon-list 1.5s ease forwards;
    background-color: white;
    border-radius: 14px;
    border: 4px solid white;
}
.social-icon-list i{
    padding: 0 10px ;
    transition: all 0.5s ease;

}
.social-icon-list i:hover{
    transform: translateY(-10px) scale(1.1);
}


/* responsive design  */
@media (max-width:768px) {
    :root{
    /* fonts  */
    --fs-header:1.5rem;
    --fw-header:500;
    --fw-header-nav:500;
    --fs-hero-content-header:2.5rem;
    --fw-hero-content-header:700;
    --fs-hero-content-body:0.9rem;
    --fw-hero-content-body:400;
    --fs-hero-content-bnt:1rem;
    --fw-hero-content-bnt:500;
    --fs-icon:2rem;
    }.dark-theme{
        /* colors  */
        --primaryColor:#000;
        --secondaryColor:#fff;
        --navBorderColor:#fff;

        /* fonts  */
        --mainFont:"poppins";
        --secondaryFont:"Permanent Marker";
        --mainTxtColor:#fff;
        --bntTxtColor:#fff;
        --bntHoverTxtColor:#000;
        --fs-header:1.5rem;
        --fw-header:700;
        --fw-header-nav:500;
        --fs-hero-content-header:2.5rem;
        --fw-hero-content-header:700;
        --fs-hero-content-body:0.9rem;
        --fw-hero-content-body:400;
        --fs-hero-content-bnt:1rem;
        --fw-hero-content-bnt:500;
        --fs-icon:2rem;
    }
    .home-page{
        height: 100%;
        padding: 20px;
        overflow: hidden;
    }
    .header-section .header-nav{
        width: 25%;
    }



    .header-nav .header-nav-list{
        display: block;
        background-image: linear-gradient(to right,silver,blue);
        overflow: hidden;
        content: " ";
        height: 100%;
        width: 80%;
        border: grey;
        border-radius: 10px;
        box-shadow: 3px 3px 10px var(--secondaryColor);
        flex-direction: column;
        justify-content: space-around;
        position: absolute;
        right: 30px;
        z-index: 999;
        transition: all 0.5s ease;
        transform: translateX(200%) scale(0);
    }
    .header-nav span{
        display: none;
    }
    .mobile-nav-bar{
        display: block;
        z-index: 9999;
        color: white;
    }
    .hero-section .hero-content{
        height: 100%;
        width: 100%;
    }
    .hero-section .hero-image{
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -1;

    }
    .social-icon-list{
        flex-direction: column;
        position: relative;
    }
    .social-icon-list i{
        padding: 10px 0;
    }
    .social-icon-list i:hover{
        transform: translateX(10px) scale(1.1);
    }
}


/* keyframes
 */
@keyframes header-logo {
    0%{
        transform: translateX(-100%) scale(0);
    }
    100%{
        transform: translateX(0) scale(1);
    }
}

@keyframes header-nav {
    0%{
        transform: translateY(-100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-content {
    0%{
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hero-btn {
    0%{
        transform: translateX(-100%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes hero-img {
    0%{
        transform: translateX(100%);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes icon-list {
    0%{
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}






.testimonials{
    padding: 40px 0;
    background: #f1f1f1;
    color: #434343;
    text-align: center;
    border-radius: 10px;
}

.inner{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}



.border{
    width: 160px;
    height: 5px;
    background: #6ab04c;
    margin: 26px auto;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col{
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.testimonial{
    background: #fff;
    padding: 30px;
}

.testimonial img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name{
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}

.stars{
    color: #6abo4c;
    margin-bottom: 20px;
}

@media screen and (max-width:960px) {
.col{
    flex: 100%;
    max-width: 80%;
}
}

@media screen and (max-width:600px) {
.col{
    flex: 100%;
    max-width: 100%;
}
}








.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    max-width: 1250px;
    margin: 150px auto;
    padding: 20px;
    gap: 20px;
}

.card-list .card-item {
    background: transparent;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}

.card-list .card-item:hover {
    border: 2px solid #000;
}

.card-list .card-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    text-align: center;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .developer {
    background-color: #F7DFF5;
    color: #B22485;
}

.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
}

.card-list .editor {
    background-color: #d6f8d6;
    color: #205c20;
}

.card-item h3 {
    color: #000;
    font-size: 1.438rem;
    margin-top: 28px;
    font-weight: 600;
}

.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    height: 40px;
    width: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}

.card-list .card-item:hover .arrow  {
    background: #000;
    color: #fff;
}

@media (max-width: 1200px) {
    .card-list .card-item {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}








/* Audio sermons */

@media (max-width: 1200px) {
    .audios .audio {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .audios {
        margin: 0 auto;
    }
}






/* The footer is fixed to the bottom of the page */

footer {
    position: fixed;
    bottom: 0;
}

@media (max-height:800px) {
    footer {
        position: static;
    }
    header {
        padding-top: 40px;
    }
}

.footer-distributed {
    background-color: #2d2a30;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 30%;
}

.footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}


.footer-distributed h3 span {
    color: #e0ac1c;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: white;
    text-decoration: none;
    ;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: blue;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
    background-color: #3F71EA;
}

.footer-links a:hover {
    color: #3F71EA;
}

@media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}











 .widget li {
  margin-top: 2px;
  border-color: grey;
  border-radius: 15px;
  color: grey;
  text-align: center;
  text-decoration: none;
  list-style: none;
  text-decoration-line: none;
 }
