/* هنا اشتغلت 
 border box
  في السيلكتورز اللي احتجتها فيهم 
  *كان المفروض اشتغل بالجلوبال سيليكتور 
  فهنعدل الموضوع لما اعمل البروجت فليكس 
  بس هو يعني الموضوع هو هو نفس النتيجه يعني بس كان المفروض اشتغل بالجلوبال سيليكتور افضل
*/
::selection {
    background: #ffb700;
    color: #000;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffe66d;
    border: 3px solid #000;
}

/*NAVBAR*/
.navbar {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.inner-nav {
    width: 80%;
    margin: 0 auto;
    background: #fff;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000;
    padding: 12px 20px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 20px;
    height: 60px;
    line-height: 36px;
}

.logo {
    float: left;
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-top: 10px;
}

.logo i {
    color: #ffb700;
    margin-right: 5px;
}

.logo span {
    color: #ff4500;
}

.nav-links {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 70px;
    margin-top: 14px;
}

.nav-links li {
    float: left;
    margin-right: 10px;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 5px 10px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff4500;
}

.star-sep {
    color: #ffb700;
    font-size: 13px;
    position: relative;
    top: 3px;
}

.subscribe-btn {
    float: right;
    background: #ffb700;
    color: #000;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #000;
    transition: 0.25s ease;
    margin-top: 9px;
}

.subscribe-btn:hover {
    background: #ff4500;
    color: #fff;
    box-shadow: 4px 4px 0 #000;
    transform: translate(4px);
}

.clear {
    clear: both;
}

@media (max-width: 1280px) {
    .nav-links {
        display: none;
    }

    .logo {
        float: left;
        margin-top: 10px;
    }

    .subscribe-btn {
        float: right;
        margin-top: 9px;
    }

    .inner-nav {
        width: 85%;
        padding: 25px;
        border-radius: 18px;
    }
}

/*HERO SECTION*/
.hero {
    padding: 180px 200px 60px 200px;
    height: 70vh;
    margin-top: 120px;
}

.hero-text {
    float: left;
    width: 45%;
}

.badge {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 17px;
    padding: 6px 12px;
    box-shadow: 4px 4px 0 #000;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 80px;
    line-height: 1.1;
    margin: 20px 0;
    text-shadow: 3px 3px 0 #000;
}

.hero-text .black {
    color: #000;
}

.hero-text .red {
    color: #e63946;
}

.hero-text .blue {
    color: #1d4ed8;
}

.hero-text p {
    font-weight: 500;
    color: #111;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    background-color: white;
    border: 2px black solid;
    padding: 5px;
    box-shadow: 3px 3px 0 #000;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 900;
    padding: 10px 18px;
    margin-right: 10px;
    border-radius: 4px;
    box-shadow: 4px 4px 0 #000;
    transition: 0.3s;
}

.btn.read {
    background-color: #000;
    color: #fff;
}

.btn.watch {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0 #000;
}

.hero-image {
    float: right;
    width: 45%;
    position: relative;
    text-align: right;
}

.shape {
    position: absolute;
    z-index: 1;
}

.shape1 {
    width: 160px;
    height: 160px;
    background: #ff4500;
    top: -40px;
    left: 50px;
    transform: rotate(15deg);
    box-shadow: 6px 6px 0 #000;
}

.shape2 {
    width: 180px;
    height: 180px;
    background: #1d4ed8;
    top: 60px;
    right: -30px;
    transform: rotate(-20deg);
    box-shadow: 6px 6px 0 #000;
}

.shape3 {
    width: 140px;
    height: 140px;
    background: #ffd700;
    bottom: -30px;
    left: 220px;
    transform: rotate(35deg);
    box-shadow: 6px 6px 0 #000;
}

.hero-image img {
    width: 90%;
    border: 5px solid #000;
    box-shadow: 6px 6px 0 #000;
    position: relative;
    z-index: 3;
    background: #fff;
    transform: rotate(6deg);
    transition: all 0.35s ease;
}

.featured {
    position: absolute;
    top: 22px;
    right: -55px;
    background: #ff0000;
    color: #fff;
    font-weight: bold;
    padding: 6px 15px;
    box-shadow: 3px 3px 0 #000;
    z-index: 5;
    transform: rotate(25deg);
    font-size: 15px;
    transition: all 0.35s ease;
}

.hero-image:hover img {
    transform: rotate(6deg) scale(1.05);
    box-shadow: 10px 10px 0 #000;
}

.hero-image:hover .featured {
    transform: rotate(6deg) translateY(-5px);
    background: #ff4500;
}

@media (max-width: 1536px) {
    .hero {
        padding: 120px;
        height: 70vh;
    }

    .hero-text {
        width: 45%;
        float: left;
        white-space: nowrap;
    }

    .hero-text h1 {
        white-space: nowrap;
    }

    .hero-image {
        width: 45%;
        float: right;
        text-align: right;
        position: relative;
        margin-top: 40px;
    }

    .hero-image img {
        width: 480px;
    }

    .featured {
        position: absolute;
        top: 10px;
        left: 90%;
        z-index: 5;
        font-size: 14px;
        max-width: 150px;
        white-space: nowrap;
    }

    .badge {
        display: inline-block;
        margin: 15px 0 0 0;
        position: relative;
        top: 0;
    }

    .btn {
        display: inline-block;
        white-space: nowrap;
    }

    .shape {
        display: block;
    }
}

@media (max-width: 1280px) {
    .hero {
        padding: 90px;
        height: 70vh;
    }

    .hero-text {
        width: 55%;
        margin-top: 30px;
    }

    .hero-image {
        width: 40%;
        margin-top: 80px;
    }

    .hero-image img {
        width: 380px;
    }

    .featured {
        top: 7px;
        left: 90%;
        font-size: 13px;
        max-width: 140px;
    }

    .btn {
        white-space: nowrap;
    }

    .badge {
        margin-top: 15px;
    }

    .shape2 {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 100px 40px 60px 40px;
        height: auto;
    }

    .hero-text {
        width: 100%;
        float: none;
        margin-bottom: 30px;
        white-space: nowrap;
    }

    .hero-text h1 {
        font-size: 44px;
        white-space: nowrap;
    }

    .hero-image {
        width: 100%;
        float: none;
        text-align: center;
        margin-top: 50px;
        position: relative;
    }

    .hero-image img {
        width: 380px;
        max-width: 90%;
    }

    .featured {
        top: 5px;
        left: 65%;
        font-size: 13px;
        max-width: 120px;
    }

    .shape {
        display: none;
    }

    .btn {
        white-space: nowrap;
    }

    .badge {
        display: inline-block;
        margin-top: 15px;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .hero {
        padding: 70px;
    }

    .hero-image img {
        width: 320px;
    }

    .featured {
        top: 5px;
        left: 65%;
        font-size: 12px;
        max-width: 100px;
    }

    .badge {
        display: block;
        width: 40%;

        text-align: center;
        margin-top: 60px;
    }


}

@media (max-width: 639px) {
    .hero {
        padding: 70px;
    }

    .hero-text h1 {
        font-size: 28px;
        white-space: nowrap;
    }

    .hero-text p {
        width: auto;
        white-space: wrap;
    }

    .hero-image img {
        width: 250px;
        max-width: 95%;
    }

    .featured {
        top: 3px;
        left: 60%;
        font-size: 11px;
        max-width: 90px;

    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        padding: 10px 15px;
    }

    .badge {
        width: auto;
        text-align: center;
        margin-top: 60px;
    }
}

/*LATEST ARTICLES*/
.articles {
    padding: 120px;
    margin-top: 100px;
    background-color: #ffffff;
    overflow: visible;
    border-bottom: #000 4px solid;
    border-top: #000 4px solid;
}

.articles .container::after {
    content: "";
    display: block;
    clear: both;
}

.articles .container {
    width: 90%;
    margin: 0 auto;
}

.articles .left-side {
    float: left;
    width: 68%;
    position: relative;
}

.articles .left-side h2 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    display: inline-block;
    margin: 20px;
}

.articles .left-side .bd {
    display: inline-block;
    vertical-align: top;
    line-height: 48px;
    font-size: 14px;
    padding: 5px 10px;
    position: absolute;
    right: 0%;
    transform: rotate(5deg);
}

.articles .card {
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
    padding: 15px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: #fff;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.articles .card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 7px 7px -2px rgba(0, 0, 0, 0.5);
}

.articles .card .tamplete-img {
    float: left;
    width: 35%;
    margin-right: 20px;
    position: relative;
}

.articles .card .tamplete-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.articles .card .tamplete-img .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    z-index: 6;
}

.badge.red {
    transform: rotate(9deg);
}

.badge.blua {
    transform: rotate(-9deg);
}

.badge.mauve {
    transform: rotate(9deg);
}

.articles .card-content {
    float: left;
    width: 60%;
}

.articles .card-content .badge {
    display: block;
    width: 50px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    border-radius: 4px;
    transform: rotate(-3deg);
}

.articles .card-content .card-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #333;
    transition: color 0.3s ease;
}


.articles .card:hover .card-title {
    color: #e70303;
}

.articles .card-content .card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}


.articles .card-content .bottom span {
    display: inline-block;
    font-size: 12px;
    color: #120707;
    margin-right: 15px;
}

.articles .card-content .bottom i {
    margin-right: 5px;
}

.articles .load-more {
    display: block;
    width: 50%;
    margin: 30px auto 0 auto;
    padding: 12px 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: 1px solid #000;
}

.articles .load-more:hover {
    background-color: #706f6f;
}

/* Right Side */
.articles .right-side {
    float: right;
    width: 30%;
    min-height: 950px;
}

.articles .right-side .sticky {
    background-color: #f7f7f7;
    padding: 20px;
    border: 3px solid #000000;
    border-radius: 4px;
    position: sticky;
    top: 130px;
    box-shadow: 10px 15px 3px rgba(0, 0, 0, 0.5);
}

.articles .trending {
    border: #000 3px solid;
}

.articles .trending h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

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

.articles .trending li {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    color: #333;
    transition: background-color 0.3s;
}

.articles .trending li:hover {
    background-color: #efd2d2;
}

.articles .trending li {
    transition: color 0.3s ease;
}

.articles .trending li:hover {
    color: #000;

}

.articles .trending ul .num {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.articles .trending ul .num1 {
    color: red;
}

.articles .trending ul .num2 {
    color: rgb(73, 73, 232);

}

.articles .trending ul .num3 {

    color: mediumslateblue;
}

.articles .trending li ul {
    font-size: 12px;
    font-weight: normal;
    padding: 5px 0 0 40px;
    color: #999;
}

.articles .trending li ul li {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 12px;
}

.articles .categories {
    margin-top: 30px;
    border: #000 3px solid;

}

.articles .categories h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.articles .categories .cat {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: bold;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
}

.articles .categories .cat:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.articles .card-content .red,
.articles .categories .red {
    background-color: #e10909;
    color: #fff;
    border-color: #e10909;
}

.articles .card-content .yellow,
.articles .categories .yellow {
    background-color: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.articles .card-content .green,
.articles .categories .mint {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

.articles .categories .mint {
    background-color: #b3e6b3;
    color: #000;
    border-color: #b3e6b3;
}

.articles .card-content .pink,
.articles .categories .pink {
    background-color: #ff99cc;
    color: #000;
    border-color: #ff99cc;
}

.articles .categories .gray {
    background-color: #dcdcdc;
    color: #000;
    border-color: #dcdcdc;
}

.articles .card .tamplete-img .red {
    background-color: #e10909;
}

.articles .card .tamplete-img .blua {
    background-color: #007bff;
}

.articles .card .tamplete-img .mauve {
    background-color: #9933cc;
}

.clear {
    clear: both;
}

@media (max-width: 1024px) {

    .articles .left-side,
    .articles .right-side {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
        overflow: visible;
    }

    .articles .right-side .sticky {
        position: static;
        top: auto;
    }


    .articles .left-side h2 {
        float: none;
        display: inline-block;
        margin: 20px;
        text-align: center;
    }

    .articles .left-side .bd {
        float: none;
        display: block;
        margin: 0 auto 30px auto;
        transform: rotate(0deg);
        text-align: center;
    }

    .articles .card .tamplete-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .articles .card-content {
        width: 100%;
        float: none;
    }

    .articles .left-side .bottom span {
        width: 40%;
    }

    .articles .load-more {
        width: 70%;
        margin: 30px auto;
    }

    .articles .trending li {
        font-size: 16px;
    }

    .articles .trending ul .num {
        font-size: 28px;
    }
}

@media (max-width: 780px) {

    .articles .left-side,
    .articles .right-side {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .articles .left-side {
        display: block;
        overflow: visible;
        margin: 0 auto;
        text-align: center;
    }

    .articles .left-side h2 {
        display: block;
        font-size: 28px;
        margin: 0 auto 10px auto;
        text-align: center;
    }

    .articles .left-side .bd {
        display: inline-block;
        position: static;
        transform: rotate(0deg);
        font-size: 14px;
        background: #000;
        color: #fff;
        border-radius: 4px;
        padding: 6px 12px;
        margin-bottom: 15px;
        white-space: nowrap;
    }

    .articles .card .tamplete-img {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .articles .card .tamplete-img .badge {
        top: 0;
        right: o;
        width: auto;
        margin: 0;
        padding: 0;
    }



    .articles .card-content {
        width: 100%;
        float: none;
    }

    .articles .left-side .bottom span {
        display: block;
        width: 100%;
        text-align: left;
    }

    .articles .load-more {
        width: 70%;
        margin: 30px auto;
    }

    .articles .trending li {
        font-size: 16px;
    }

    .articles .trending ul .num {
        font-size: 28px;
    }
}

/*authors section*/
.authors {
    padding: 120px 0;
    background-color: #ffe66d;
    text-align: center;
    position: relative;
}

.authors h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.authors span {
    color: #666;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
}

.authors span::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #000;
    margin: 10px auto 20px auto;
}

.authors-cards {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 0 auto;
    overflow: hidden;
    text-align: center;
}

.author-card-founder,
.author-card-lead,
.author-card_viral {
    display: inline-block;
    width: 30%;
    float: left;
    margin: 0 1.66%;
    background: #f7f7f7;
    border: 3px solid #000;
    box-shadow: 6px 6px 0 #000;
    border-radius: 6px;
    box-sizing: border-box;
    padding: 25px;
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-card-founder:hover,
.author-card-lead:hover,
.author-card_viral:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #000;
}

.authors-cards img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #000;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0 #000;
}

.authors-cards h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 10px 0 5px;
    color: #000;
    transition: color 0.3s;
}

.authors-cards h3:hover {
    color: #ee081b;
}

.role {
    color: #777;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    transform: rotate(5deg);
    z-index: 5;
    color: #fff;
    font-weight: bold;
}

.author-card-founder .tag {
    background: #e63946;
}

.author-card-lead .tag {
    background: #1d4ed8;
}

.author-card_viral .tag {
    background: #9933cc;
}

.author-card-founder::before,
.author-card-founder::after,
.author-card-lead::before,
.author-card-lead::after,
.author-card_viral::before,
.author-card_viral::after {
    content: "";
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #000;
    z-index: 1;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.author-card-founder::before,
.author-card-lead::before,
.author-card_viral::before {
    top: -40px;
    left: -40px;
    transform: rotate(-10deg);
}

.author-card-founder::after,
.author-card-lead::after,
.author-card_viral::after {
    bottom: -40px;
    right: -40px;
    transform: rotate(10deg);
}

.author-card-founder::before,
.author-card-founder::after {
    background-color: #ffcccc;
}

.author-card-lead::before,
.author-card-lead::after {
    background-color: #ccccff;
}

.author-card_viral::before,
.author-card_viral::after {
    background-color: #ffccff;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin: 0 5px;
    font-size: 20px;
    color: #000;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s, transform 0.3s;
}

.social-links a:hover {
    box-shadow: 4px 4px 0 #000;
    transform: translate(-4px, -4px);
}

.social-links a:hover .fa-twitter {
    color: #1d4ed8;
}

.social-links a:hover .fa-linkedin {
    color: #073cce;
}

.social-links a:hover .fa-instagram {
    color: #f80317;
}

@media screen and (max-width: 1280px) {
    .authors-cards {
        width: 95%;
    }

    .author-card-founder,
    .author-card-lead {
        width: 48%;
        float: left;
        margin: 0 1%;
        margin-bottom: 25px;
    }

    .author-card_viral {
        width: 98%;
        float: none;
        margin: 25px auto 0 auto;
    }

    .author-card-founder::before,
    .author-card-founder::after,
    .author-card-lead::before,
    .author-card-lead::after,
    .author-card_viral::before,
    .author-card_viral::after {
        width: 60px;
        height: 60px;
        top: -30px;
        left: -30px;
        bottom: -30px;
        right: -30px;
    }

}

@media screen and (max-width: 1024px) {
    .authors-cards {
        padding: 0 20px;
    }

    .author-card-founder,
    .author-card-lead,
    .author-card_viral {
        width: 100%;
        float: none;
        margin: 0 auto 25px auto;
    }

    .author-card-founder::before,
    .author-card-founder::after,
    .author-card-lead::before,
    .author-card-lead::after,
    .author-card_viral::before,
    .author-card_viral::after {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .authors h2 {
        font-size: 24px;
    }

    .authors span {
        font-size: 14px;
    }

    .authors-cards h3 {
        font-size: 18px;
        white-space: normal;
    }

    .role,
    .bio {
        font-size: 13px;
        white-space: normal;
    }

    .authors-cards img {
        width: 80px;
        height: 80px;
    }

    .tag {
        font-size: 10px;
        padding: 3px 7px;
    }
}

/*community section*/
.community {
    padding: 120px 50px;
    margin-top: 100px;
    background-color: #f7f7f7;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}

.community .container {
    width: 80%;
    margin: 0 auto;
}

.community .header-content {
    text-align: center;
    margin-bottom: 60px;
}

.community .header-content::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #000;
    margin: 10px auto 20px auto;
}


.community .join-header {
    font-size: 40px;
    font-weight: 900;
    color: #000;
    text-shadow: 2px 2px 0 #000;
    margin: 0 0 10px 0;
}

.community .join-subheader {
    font-size: 18px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.community .left-col {
    float: left;
    width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
}

.community .right-col {
    float: left;
    width: 50%;
    padding: 20px;
    border: 3px solid #000;
    box-sizing: border-box;
}

.community .left-col h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #000;
    text-shadow: 1px 1px 0 #000;
}

.community .right-col h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0 0 30px 0;
}

.community .intro-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    border: #000 1px solid;
    width: auto;
    padding: 10px;
    background-color: white;
}

.community .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.community .features-list li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
}

.community .features-list i {
    font-size: 22px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.btn.join-now {
    background-color: #000;
    color: #fff;
}

.community .join-now:hover {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0 #000;
}

.community .testimonial-card {
    background: #fff;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.community .testimonial-card:hover {
    box-shadow: 8px 8px 0 #ffb700;
    transform: translate(-4px, -4px);
}

.community .quote {
    font-style: italic;
    color: #000;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.community .author {
    overflow: hidden;
}

.community .author img {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-right: 15px;
}

.community .author-info {
    overflow: hidden;
    padding-top: 2px;
}

.community .author-info .name {
    display: block;
    font-weight: 700;
    color: #000;
    font-size: 15px;
}

.community .author-info .title {
    display: block;
    font-size: 13px;
    color: #666;
}

@media (max-width: 1024px) {
    .community .container {
        width: 90%;
    }

    .community .join-header {
        font-size: 32px;
    }

    .community .join-subheader {
        font-size: 16px;
    }

    .community .left-col h3 {
        font-size: 24px;
    }

    .community .intro-text {
        font-size: 15px;
    }

    .community .features-list li {
        font-size: 16px;
    }

    .community .left-col {
        padding-right: 20px;
    }

    .community .right-col {
        padding-left: 20px;
    }
}

@media (max-width: 992px) {

    .community .left-col,
    .community .right-col {
        float: none;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .community .left-col {
        margin-bottom: 40px;
    }

    .community .right-col {
        padding-top: 40px;
        border: none;
        border-top: 3px solid #000;
    }

    .btn.join-now {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .community {
        padding: 70px 0;
    }

    .community .container {
        width: 95%;
    }

    .community .join-header {
        font-size: 28px;
    }

    .community .left-col h3 {
        font-size: 22px;
    }

    .community .intro-text {
        font-size: 14px;
    }

    .community .features-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .community .join-header {
        font-size: 24px;
    }

    .community .join-subheader {
        font-size: 14px;
    }

    .community .left-col h3 {
        font-size: 20px;
    }
}

/*footer section*/
.footer {
    background-color: #000;
    color: #fff;
    border-top: 4px solid #000;
}

.footer .container {
    width: 60%;
    margin: 0 auto;
    padding: 60px 0;
}

.footer .main-footer .container {
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-col {
    float: left;
    height: auto;
    box-sizing: border-box;
}

.footer-col.col-1 {
    width: 35%;
    padding-right: 40px;
}

.footer-col .logo {
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;

}

.footer-col .logo i {
    color: #000;
    background: #fff;
    padding: 5px;
    margin-right: 10px;
    float: left;
}

.footer-col .logo span {
    color: #ff4500;
}

.footer-col .about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-top: 0;
    clear: both;
    display: block;
}

.footer-col.col-2 {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li a {
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.categories-list li a:hover {
    color: #ffb700;
}

.footer-col.col-3 {
    width: 45%;
    padding-left: 40px;
}

.footer-col .newsletter-text {
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    display: block;
    padding: 10px;
    border: 2px solid #fff;
    background: #000;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    margin-right: 0;
    margin-bottom: 15px;
    float: none;
}

.email-input:focus {
    outline: none;
    border-color: #ffb700;
    box-shadow: 0 0 5px #ffb700;
}

.subscribe-btn-footer {
    width: 100%;
    display: block;
    padding: 10px;
    background: #ffb700;
    color: #000;
    border: 2px solid #ffb700;
    font-weight: 800;
    box-sizing: border-box;
    transition: all 0.2s ease;
    float: none;
}

.subscribe-btn-footer:hover {
    background: #a77a00;
    border-color: #a77a00;
    transform: translate(4px);
    box-shadow: 0 2px 0 #c69100;
}

.sub-footer .container {
    padding: 15px 0 20px 0;
    border-top: none;
    text-align: center;
}

.sub-footer .copyright {
    float: left;
    font-size: 13px;
    color: #aaa;
    margin: 5px 0;
}

.sub-footer .legal-links {
    float: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-footer .legal-links li {
    display: inline-block;
    margin-left: 20px;
}

.sub-footer .legal-links li a {
    text-decoration: none;
    color: #aaa;
    font-size: 13px;
    transition: color 0.2s;
}

.sub-footer .legal-links li a:hover {
    color: #e0b444;
}

@media (max-width: 1300px) {
    .sub-footer .copyright {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .sub-footer .legal-links {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .sub-footer .legal-links li {
        margin: 0 10px;
    }
}

@media (max-width: 1024px) {
    .footer .container {
        width: 90%;
    }

    .footer-col.col-1 {
        width: 100%;
        float: none;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-col.col-2 {
        width: 35%;
        padding-left: 0;
        margin-right: 5%;
    }

    .footer-col.col-3 {
        width: 60%;
        padding-left: 0;
    }

    .email-input {
        width: 100%;
        display: block;
        float: none;
        margin-right: 0;
    }

    .subscribe-btn-footer {
        width: 100%;
        display: block;
        float: none;
    }
}

@media (max-width: 768px) {
    .footer .container {
        width: 95%;
    }

    .footer-col.col-2,
    .footer-col.col-3 {
        float: none;
        width: 100%;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .email-input,
    .subscribe-btn-footer {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .subscribe-btn-footer {
        display: block;
    }

    .sub-footer .legal-links li {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {

    .sub-footer .copyright,
    .sub-footer .legal-links li a {
        font-size: 11px;
    }

    .sub-footer .legal-links li {
        display: block;
        margin: 5px 0;
    }
}

/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/