/* @import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); */

:root {
    --primary-color: #119da4;
    --secondary-color: #19647E;
    --light-green-overlay: #119da473;
    --light-red: #ff3d00;
    --footer-dark: #151e29;
    --dark-overlay: rgba(22, 21, 21, 0.178);
    --light-white: #f3f3f3;
    --text: #2f3640;
    --dark-text: #141516;
    --light-text: #7a7a7a;
    --facebook-blue: #4267b2;
    --twitter-blue: #1da1f2;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    font-family: "lato", "Roboto", "montserrat";
    background-color: #fff !important;
}

p {
    font-size: 15px;
}


/* GENERAL STYLES */

.con {
    width: 85%;
    margin: 0 auto;
}

.con.flex {
    display: flex;
}

@media screen and (max-width: 767px) {
    .con {
        width: 90vw;
        max-width: 90vw;
    }
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

.heading {
    font-size: 35px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.heading .icon {
    margin-right: 1rem;
}

.heading .hot {
    color: var(--light-red);
    display: flex;
    align-items: center;
}

.heading .hot .icon {
    margin: 0;
}


/* GENERAL BUTTON STYLES */

.btn {
    padding: .5rem 3rem;
    border-radius: 50px;
    color: var(--text);
    border: 2px solid #fff;
    transition-duration: .3s;
    font-weight: 600;
    font-size: 16px;
    transition-duration: .3s;
}

.btn:hover {
    box-shadow: 2px 2px 10px 1px #35353557;
    transition-duration: .3s;
}

.btn-green {
    background-color: var(--primary-color);
    color: #fff;
    margin-right: 50px;
}

.btn-green:hover {
    color: var(--text);
    border: 2px solid var(--primary-color);
    background-color: #fff;
}

.btn-white {
    background-color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-white:hover {
    color: #fff;
    background-color: var(--primary-color);
}


/* START OF THE HEADER STYLES */

header {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5;
    background-color: transparent;
    transition-duration: .3s;
}

header.home-header {
    height: 130px;
}

header.scroll {
    background-color: #fff;
    height: 60px;
    border-bottom: 1px solid #1da0f2ad;
    transition-duration: .3s;
}

header .con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: inherit;
}

header .logo img,
header .logo-black img {
    height: 50px;
    transition-duration: .3s;
}

header.scroll .logo {
    display: none;
    transition-duration: .3s;
}

header .logo-black {
    display: none;
    transition-duration: .3s;
}

header.scroll .logo-black {
    display: block;
}

header nav {
    width: auto;
    height: inherit;
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    align-items: center;
    margin: 0;
}

header nav li {
    list-style-type: none;
}

header nav a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    padding: 0 1rem;
    transition-duration: .3s;
}

.mobile-only,
header nav li a.btn.mobile-only {
    display: none;
}

header nav a:hover,
header.scroll nav a:hover {
    color: var(--primary-color);
    transition-duration: .3s;
}

header.scroll ul a {
    color: var(--text);
    transition-duration: .3s;
}

header .btn {
    padding: .5rem 2rem;
    transition-duration: .3s;
}

header.scroll .btn {
    padding: .3rem 2rem;
    transition-duration: .3s;
}

header.scroll .btn.btn-white {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

header button.nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    font-size: 22px;
    display: none;
    outline: none;
}

header button.user-card {
    width: fit-content !important;
    height: 40px;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    background-color: rgba(235, 235, 235, 0.342);
    border-radius: 5px;
    transition-duration: .3s;
    cursor: pointer;
    position: relative;
    border: none;
}

header .user-card img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-right: .5rem;
}

header .user-card .username {
    color: #fff;
    font-size: 15px;
}

header .user-card .username span {
    margin: .1rem;
    text-transform: capitalize;
}

header .user-card:hover {
    background-color: rgba(235, 235, 235, 0.466);
    transition-duration: .3s;
}

header.scroll .user-card {
    background-color: var(--light-white);
}

header.scroll .user-card .username {
    color: var(--text);
}

header.scroll .user-card:hover {
    background-color: #e0e0e0;
    transition-duration: .3s;
}

header .user-card-menu {
    position: absolute;
    top: 100px;
    right: 7.5vw;
    width: fit-content;
    background-color: #fff;
    border: 1px solid #19647e1f;
    box-shadow: 0px 0px 4px #00000040;
    border-radius: 5px;
    padding: 0;
    display: none;
    height: auto;
}

header.scroll .user-card-menu {
    top: 60px;
    transition-duration: .3s;
}

header .user-card-menu ul {
    margin: 0;
}

header .user-card-menu li {
    list-style-type: none;
}

header .user-card-menu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    width: 150px;
    height: 35px;
    color: var(--text);
    transition-duration: .3s;
}

header .user-card-menu a:hover {
    background-color: var(--light-white);
    color: var(--primary-color);
    transition-duration: .3s;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    header {
        max-width: 100vw;
    }
    header nav {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        left: -100vw;
        top: 0;
        z-index: 3;
        transition-duration: .3s;
    }
    header nav.show {
        left: 0;
        transition-duration: .3s;
    }
    header nav ul {
        display: block;
        width: inherit;
    }
    header nav li {
        width: inherit;
        list-style-type: none;
    }
    header nav a {
        width: 100%;
        color: var(--text);
        font-size: 24px;
        padding: .5rem 0;
        display: flex;
        justify-content: center;
        text-align: center;
        transition-duration: .3s;
    }
    header.scroll ul a {
        color: var(--text);
        transition-duration: .3s;
    }
    header button.nav-btn {
        font-size: 30px;
        display: block;
        color: #fff;
        outline: none;
    }
    header button.black {
        color: var(--text) !important;
        outline: none;
    }
    header button.show {
        color: var(--text);
        transition-duration: .3s;
        outline: none;
    }
    header.scroll button.navbtn {
        font-size: 30px;
        display: block;
        color: var(--text);
        outline: none;
    }
    header button.user-card {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    header {
        height: 80px;
    }
    header.home-header {
        width: 100vw;
        height: 100px;
    }
    header.scroll {
        height: 60px;
    }
    header .logo img,
    header .logo-black img {
        height: 60px;
    }
    header.scroll .logo img,
    header.scroll .logo-black img {
        height: 50px;
    }
    header.scroll .logo-black {
        transition-duration: .3s;
    }
    header nav {
        position: fixed;
        width: 100vw;
        height: 110vh;
        background-color: #fff;
        left: -100vw;
        top: 0;
        bottom: 0;
        z-index: 3;
        transition-duration: .3s;
    }
    header nav.show {
        left: 0;
        transition-duration: .3s;
    }
    header nav ul {
        display: block;
        width: inherit;
    }
    header nav li {
        width: inherit;
        list-style-type: none;
    }
    header nav a {
        width: 100%;
        color: var(--text);
        font-size: 24px;
        padding: .5rem 0;
        display: flex;
        justify-content: center;
        text-align: center;
        transition-duration: .3s;
    }
    header.scroll ul a {
        color: var(--text);
        transition-duration: .3s;
    }
    .mobile-only {
        display: block;
    }
    header nav li a.btn.mobile-only {
        display: block !important;
        margin: 0 auto !important;
        margin-top: 1rem !important;
        width: 80%;
    }
    header .btn {
        display: none;
    }
    header button.nav-btn {
        font-size: 30px;
        display: block;
        position: relative;
        color: #fff;
        outline: none;
    }
    header button.nav-btn.show {
        color: var(--text);
        top: 1rem;
        right: 2rem;
        position: fixed;
        z-index: 5;
        transition-duration: .3s;
        outline: none;
    }
    header.scroll button.nav-btn {
        font-size: 30px;
        display: block;
        color: var(--text);
        outline: none;
    }
    header button.user-card {
        display: none;
    }
}


/* END OF THE HEADER STYLES */


/* START OF TEH HERO STYLES */

.hero {
    max-width: 100vw;
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url('../images/hero.jpg');
    background-color: #119da4;
    background-size: cover;
    background-position: center;
    margin-bottom: 3rem;
}

.hero.report {
    background-image: url('../images/report.jpg');
}

.hero-sub {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url('../images/svg/hero-svg.svg');
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position: 0px 120%;
    background-blend-mode: overlay;
    display: grid;
    align-content: center;
    justify-content: center;
}

.hero-sub img {
    margin-bottom: 2rem;
    width: 500px;
}

.hero-sub .hero-btns {
    display: flex;
    justify-content: space-evenly;
}

.hero .reports-hero-img {
    width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero-sub {
        background-size: 100vw;
        background-position: 0px 101%;
    }
}

@media screen and (max-width: 767px) {
    .hero-sub {
        background-size: 100vw;
        background-position: 0px 101%;
    }
    .hero-sub img {
        margin: 0 auto;
        margin-bottom: 2rem;
        width: 350px;
    }
    .hero-sub .hero-btns {
        width: 100%;
        padding: 0 2rem;
        display: block;
    }
    .hero-sub .hero-btns .btn {
        width: 100%;
        margin: 0;
        margin-bottom: 1rem;
    }
    .heading {
        font-size: 22px;
        margin-bottom: 2rem;
    }
}


/* END OF TEH HERO STYLES */


/* START OF THE BREADCRUMB STYLES */

.breadcrumb-con {
    width: 100%;
    height: 25vh;
    background-image: url('../images/svg/Dragon-Scales.svg');
    background-size: 50px;
    background-attachment: fixed;
    display: grid;
    align-content: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.breadcrumb-con .page-name {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-top: 5rem;
}

.breadcrumb-con .breadcrumb {
    text-align: center !important;
    background-color: transparent !important;
    justify-content: center;
    z-index: 2 !important;
}

.breadcrumb-con .breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-con .breadcrumb .breadcrumb-item.active {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .breadcrumb-con {
        width: 100%;
        height: 30vh;
    }
    .breadcrumb-con .page-name {
        font-size: 30px;
        line-height: 30px;
    }
}


/* END OF THE BREADCRUMB STYLES */


/* START OF THE HOME CAROUSEL STYLES */

.carousel-container {
    width: 80%;
    margin: auto;
}

.carousel-section {
    min-height: 550px;
    display: flex;
    align-items: center;
    background-image: url('../svg/home-carousel-bg.svg');
    background-repeat: no-repeat;
    background-position: 40% 50%;
    background-size: 650px;
}

.home-carousel {
    width: 100%;
    display: flex;
    overflow-x: hidden;
    transition-duration: .3s;
    scroll-behavior: smooth;
}

.left-controller,
.right-controller {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    border: 2px solid var(--primary-color);
    transition-duration: .3s;
}

.left-controller:hover,
.right-controller:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition-duration: .3s;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
    .carousel-section {
        min-height: 30rem;
        background-size: 350px;
        padding: 0;
    }
    .carousel-section .con {
        width: 100%;
    }
    .home-carousel {
        width: 100%;
        display: flex;
        overflow-x: scroll;
        transition-duration: .3s;
        scroll-behavior: smooth;
    }
    .left-controller,
    .right-controller {
        display: none;
    }
    .home-carousel .post-card {
        height: auto;
        min-width: 90vw;
        max-width: 90vw;
        margin-right: 0rem !important;
    }
    .home-carousel .post-card-sub-4 {
        display: grid !important;
    }
    .home-carousel .post-card-sub-4 a {
        width: 70vw;
    }
}


/* END OF THE HOME CAROUSEL STYLES */


/* START OF THE POST CARD STYLES */

.post-card {
    border-radius: 5px;
    min-width: 400px;
    max-width: 400px;
    height: 350px;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(25, 100, 126, 0.12);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-right: 1rem;
}

.grid-3 .post-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

.post-card-sub-1,
.post-card-sub-2 {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-card-sub-1 .user-card {
    display: flex;
    align-items: center;
}

.post-card-sub-1 .user-card .user-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 0.5rem;
    object-fit: cover;
    object-position: center;
}

.post-card-sub-1 .user-card .user-name {
    font-size: 15px;
    margin: 0;
}

.post-card-sub-1 .post-menu {
    position: relative;
}

.post-card-sub-1 .post-menu button {
    font-size: 20px;
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    transition-duration: .3s;
    height: fit-content;
    padding: 0 .5rem;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
}

.post-card-sub-1 .post-menu button:hover {
    background-color: var(--light-white);
    transition-duration: .3s;
}

.post-card-sub-1 .post-menu ul {
    position: absolute;
    width: 150px;
    right: 0;
    height: 0;
    overflow-y: hidden;
    background-color: #fff;
    border-radius: 5px;
    transition-duration: .3s;
}

.post-card-sub-1 .post-menu ul li {
    list-style-type: none;
}

.post-card-sub-1 .post-menu ul a {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    padding: 0 1rem;
    color: var(--text);
    transition-duration: .3s;
}

.post-card-sub-1 .post-menu ul a:hover {
    background-color: var(--light-white);
    transition-duration: .3s;
}

.post-card-sub-2 div {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text);
}

.post-card-sub-2 div i {
    font-size: 20px;
    padding-right: .5rem;
    color: var(--primary-color);
}

.post-card-sub-3 {
    height: calc(calc(350px - 2rem) - 150px);
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.3;
    display: grid;
    align-content: center;
}

.post-card-sub-4 {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-card-sub-4 .card-action {
    padding: .5rem 1rem;
    background-color: var(--light-white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 15px;
    transition-duration: .3s;
}

.post-card-sub-4 .card-action:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition-duration: .3s;
}

.post-card-sub-4 .card-action i {
    font-size: 15px;
    color: var(--text);
    margin-right: 0.5rem;
}

.post-card-sub-4 .card-action:hover i {
    color: #fff;
    transition-duration: .3s;
}

@media all and (max-width: 800px) {
    .post-card-sub-4 {
        display: flex !important;
        justify-content: center;
        font-size: 12px;
        color: var(--text);
        margin-right: 0;
        padding: 20px;
        margin: 50px 0 0 0;
    }
    .post-card-sub-3 p {
        margin: 50px 0 0 0;
        line-height: 20px;
    }
}


/* END OF THE POST CARD STYLES */


/* START OF THE TOP TIPS SECTION */

.top-tips-section {
    width: 100%;
    height: auto;
    background-color: var(--light-green-overlay);
    padding: 3rem 0;
    margin: 3rem 0;
    position: relative;
}

.top-tips-section .heading {
    margin-bottom: 2rem;
}

.top-tips-section .con {
    display: flex;
}

.top-tips-sec-1 {
    width: 65%;
    height: 100%;
}

.top-tip-card {
    display: flex;
    height: 250px;
    width: 95%;
    margin-bottom: 4rem;
}

.top-tip-card .card-sec-1 {
    width: 250px;
    background-color: var(--secondary-color);
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.top-tip-card .card-sec-1>img {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 50%;
}

.top-tip-card .card-sec-1 h4 {
    color: #fff;
    font-size: 22px;
    margin-top: 1rem;
}

.top-tip-card .card-sec-1 .card-social {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.top-tip-card .card-sec-1 .card-social a {
    display: block;
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .3s;
}

.top-tip-card .card-sec-1 .card-social a:hover {
    background-color: var(--primary-color);
    transition-duration: .3s;
}

.top-tip-card .card-sec-1 .card-social a img {
    width: 50%;
}

.top-tip-card .card-sec-2 {
    width: calc(100% - 250px);
    background-color: #fff;
    padding: 1rem 2rem;
}

.top-tip-card .card-sec-2 .card-content {
    width: 100%;
    height: calc(100% - 50px);
    display: grid;
    align-content: center;
    color: var(--light-text);
}

.top-tip-card .card-sec-2 .card-content p {
    font-size: 15px;
}

.top-tip-card .card-sec-2 .tip-card-footer {
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
}

.top-tip-card .card-sec-2 .tip-card-footer .card-action {
    display: inline-flex;
    align-items: center;
    height: fit-content !important;
    border-radius: 50px;
    padding: .3rem 1rem !important;
    margin: 0 1rem;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    transition-duration: .3s;
}

.top-tip-card .card-sec-2 .tip-card-footer .card-action:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition-duration: .3s;
}

.top-tip-card .card-sec-2 .tip-card-footer .card-action:hover i {
    color: #fff;
    transition-duration: .3s;
}

.top-tip-card .card-sec-2 .tip-card-footer .card-action i {
    color: var(--text);
    margin: 0;
    margin-right: .5rem;
    transition-duration: .3s;
}

.top-tips-sec-2 {
    width: 35%;
    display: grid;
    align-content: center;
    height: inherit;
    padding: 0 2rem;
    border-left: 2px solid var(--primary-color);
}

.top-tips-sec-2-card {
    height: 110px;
    display: flex;
    margin: 2rem 0;
}

.top-tips-sec-2-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 50%;
    margin-right: 1rem;
}

.top-tips-sec-2-card .content {
    width: auto;
    height: 100%;
    display: grid;
    align-content: center;
}

.top-tips-sec-2-card .content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
}

.top-tips-sec-2-card .content p {
    font-size: 15px;
    color: var(--dark-text);
}

.top-tips-section .bg-right {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-40%);
    z-index: -1;
}

.top-tips-section .bg-center {
    width: 50vw;
    position: absolute;
    top: 20px;
    left: 25vw;
    z-index: -1;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .top-tips-section .con {
        display: block;
    }
    .top-tips-sec-1 {
        width: 100%;
        height: auto;
    }
    .top-tip-card {
        display: flex;
        height: 350px;
        width: 100%;
        margin-bottom: 4rem;
    }
    .top-tips-sec-2 {
        width: 100%;
    }
    .top-tips-section .bg-right {
        width: 200px;
    }
    .top-tips-section .bg-center {
        display: none;
    }
    .tip-card-footer {
        display: flex !important;
        justify-content: center;
        font-size: 12px;
        color: var(--text);
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .top-tips-section .con {
        display: block;
    }
    .top-tips-sec-1 {
        width: 100%;
        height: auto;
    }
    .top-tip-card {
        display: block;
        height: 100%;
        width: 100%;
        margin-bottom: 4rem;
    }
    .top-tip-card .card-sec-1 {
        width: 100%;
        padding: 1rem 0;
    }
    .top-tip-card .card-sec-2 {
        width: 100%;
        background-color: #fff;
        padding: 1rem;
    }
    .top-tip-card .card-sec-2 .card-content {
        text-align: center;
    }
    .top-tip-card .card-sec-2 {
        height: auto;
        display: block;
        text-align: center;
    }
    .top-tip-card .card-sec-2 .tip-card-footer a {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: .3rem;
    }
    .top-tips-sec-2 {
        height: auto;
        width: 100%;
        padding: 0 1rem;
    }
    .top-tips-sec-2-card {
        width: 100%;
        height: auto;
        display: flex;
        margin: 2rem 0;
    }
    .top-tips-sec-2-card img {
        width: 80px;
        height: 80px;
    }
    .top-tips-section .bg-right {
        width: 50px;
    }
    .top-tips-section .bg-center {
        display: none;
    }
    .tip-card-footer {
        display: flex !important;
        justify-content: center;
        font-size: 12px;
        color: var(--text);
        margin-right: 0;
    }
    .tip-card-footer a {
        font-size: 10px;
        color: var(--text);
        margin-right: 0;
    }
}


/* END OF THE TOP TIPS SECTION */


/* START OF THE TESTIMONIES SECTION */

.testimonies-section {
    padding-top: 5rem;
    padding-bottom: 10rem;
    /* height: auto; */
    position: relative;
    /* background: #000; */
}

.testimonies-section .testimony-space {
    width: 30%;
    height: 70vh;
}

.testimonies-section .testimony-content {
    width: 70%;
    /* height: auto; */
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 1rem;
}

.testimonies-section .testimony-card {
    width: 100%;
    height: 300px;
}

.testimonies-section .testimony-card .card-top {
    display: flex;
}

.testimonies-section .testimony-card .card-top .sec-1 {
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
    margin-right: 1rem;
}

.test {
    width: 100px;
    height: 300px;
}

.testimonies-section .testimony-card .card-top .sec-1 .stars {
    width: 100px;
    margin: 1rem auto;
}

.testimonies-section .testimony-card .card-top .sec-2 {
    display: grid;
    align-content: center;
}

.testimonies-section .testimony-card .card-top .sec-2 h4 {
    font-weight: 600;
}

.testimonies-section .testimony-card .card-content p {
    font-size: 14px;
    color: var(--light-text)
}

.testimonies-section img.testimony-left {
    position: absolute;
    left: 0;
    top: 15%;
    width: 30vw;
    z-index: -1;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .testimonies-section .testimony-space {
        display: none;
    }
    .testimonies-section .testimony-content {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .testimonies-section img.testimony-left {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .testimonies-section .testimony-space {
        display: none;
    }
    .testimonies-section .testimony-content {
        width: 100%;
        height: auto;
        gap: 2rem;
        grid-template-columns: repeat(1, 1fr);
    }
    .testimonies-section .testimony-card {
        height: auto;
    }
    .testimony-card .testimony-img {
        width: 80px;
        height: 80px;
    }
    .testimony-card .stars {
        width: 80px !important;
    }
    .testimonies-section img.testimony-left {
        display: none;
    }
}


/* END OF THE TESTIMONIES SECTION */


/* START OF TEH STATS SECTION  */

.stats-section {
    width: 100%;
    padding: 10rem 0;
    background-image: url('../images/hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--primary-color);
    background-blend-mode: overlay;
    margin-top: 3rem;
}

.stats-section .con {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stats-section .stat-item {
    width: 100%;
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.stats-section img {
    width: 130px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.stats-section .stat {
    width: auto;
    display: flex;
    color: #fff;
    width: 80%;
    margin: 0 auto;
    height: auto;
    font-size: 25px;
    text-transform: uppercase;
}

.stats-section .stat .stat-value {
    width: fit-content;
    font-size: 50px;
    font-weight: 600;
}

.stats-section .stat .stat-name {
    width: fit-content;
    text-align: left;
    padding-left: .5rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .stats-section {
        padding: 5rem 0;
    }
    .stats-section .con {
        grid-template-columns: repeat(1, 1fr);
    }
    .stats-section .stat-item {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .stats-section {
        padding: 5rem 0;
    }
    .stats-section .con {
        grid-template-columns: repeat(1, 1fr);
    }
    .stats-section .stat-item {
        margin-bottom: 2rem;
    }
    .stats-section img {
        width: 80px;
    }
    .stats-section .stat {
        display: block;
        text-align: center;
    }
    .stats-section .stat .stat-value {
        width: fit-content;
        font-size: 50px;
        text-align: center;
        width: 100%;
    }
    .stats-section .stat .stat-name {
        padding-left: 0;
        text-align: center;
    }
}


/* END OF TEH STATS SECTION  */


/* START OF THE REPORTS PAGE */

.reports-page-bg {
    position: absolute;
    width: 100vw;
    top: 100vh;
    z-index: -1;
}

.reports-section {
    margin: 5rem 0;
}

.reports-section .heading {
    margin-bottom: 2rem;
}

.grid-3 {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.reports-section .post-card {
    margin: 0;
    min-width: 100% !important;
    width: 100% !important;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reports-page-bg {
        position: absolute;
        width: 100vw;
        top: 200vh;
        z-index: -1;
    }
    .grid-3 {
        width: 100%;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
    .reports-section .post-card {
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .reports-page-bg {
        position: absolute;
        width: 100vw;
        top: 200vh;
        z-index: -1;
    }
    .grid-3 {
        width: 100%;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
    .reports-section .post-card {
        margin: 0;
        height: auto;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    .post-card-sub-4 {
        height: auto;
        display: block;
    }
    .post-card-sub-4 .card-action {
        justify-content: center;
        margin-bottom: .5rem;
    }
}


/* END OF THE REPORTS PAGE */


/* -----------------Main section------------------------- */

footer {
    padding: 100px 0;
    color: #fff;
    background: var(--footer-dark);
    background-image: url('../images/svg/footer-bg.svg');
    background-size: cover;
    background-position: center;
    font-family: "lato", sans-serif;
}

footer p {
    font-weight: 400;
    font-size: 15px;
    width: 70%;
    margin: 2rem 0;
    color: #ffffffa9;
}

.footer-card {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    background-color: var(--light-green-overlay);
    font-size: 25px;
    border-radius: 8px;
}

footer .footer-bottom {
    margin-top: 4rem;
}

footer .footer-bottom .col-md-3 {
    display: grid;
    align-content: flex-start;
}

footer .footer-bottom .col-md-3 .logo {
    width: 130px;
}

footer .footer-bottom .col-md-3 span {
    width: 50%;
}

footer .footer-bottom .col-md-3 li {
    list-style-type: none;
}

footer .footer-bottom .col-md-3 a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    color: #ffffffa9;
}

footer .footer-bottom .col-md-3 a:hover {
    text-decoration: underline;
}

footer .card-social {
    width: 200px;
    margin-top: 1rem;
    display: flex;
}

footer .card-social a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .3s;
    margin-right: .5rem;
}

footer .card-social a:hover {
    background-color: var(--secondary-color);
}

footer .card-social a img {
    width: 60%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    footer {
        text-align: center;
    }
    footer p {
        width: 100%;
    }
    .footer-card {
        display: block;
        padding: 1rem;
    }
    .footer-card .btn {
        margin-top: 1rem;
    }
    footer .footer-bottom .col-md-3 {
        display: grid;
        align-content: flex-start;
    }
    footer .footer-bottom .col-md-3 .logo {
        width: 200px;
    }
    footer .footer-bottom .col-md-3 span {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    footer {
        text-align: center;
    }
    footer p {
        width: 100%;
    }
    .footer-card {
        display: block;
        padding: 1rem;
        font-size: 22px;
    }
    .footer-card .btn {
        margin-top: 1rem;
    }
    footer .footer-bottom .col-md-3 {
        display: grid;
        align-content: flex-start;
        justify-content: center;
        margin-bottom: 1rem;
    }
    footer .footer-bottom .col-md-3 .logo {
        width: 150px;
        margin: 0 auto;
    }
    footer .footer-bottom .col-md-3 span {
        width: 100%;
    }
    footer .card-social {
        display: flex;
        justify-content: center;
    }
}


/* START OF THE APPOINTMENT PAGE STYLES */

.contact-form input,
.contact-form select {
    font-weight: 500 !important;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #f6f7f8;
    background: #f6f7f8;
    color: #777 !important;
    outline: none;
    width: 100%;
    padding: 14px;
    margin: 10px 0px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.contact-form textarea {
    font-weight: 500 !important;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #f6f7f8;
    background: #f6f7f8;
    color: #777 !important;
    outline: none;
    width: 100%;
    padding: 14px;
    margin: 10px 0px;
    margin-bottom: 5px;
    min-height: 200px;
    overflow: hidden;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: #ececec;
}

.contact-form button {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    padding: 15px 30px 15px 30px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    margin-top: 15px;
}

.contact-form button:hover {
    background: var(--primary-color);
}


/*INFO*/

.contact-info-box {
    padding: 0px 15px;
}

.contact-info-section {
    border-bottom: 1px solid #ececec;
    padding: 25px 0px;
    margin-bottom: 0px;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
}

.contact-info-section i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 25px;
    margin-top: 5px;
}

.contact-info-section h4 {
    color: #111;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-info-section p {
    color: #999;
    font-size: 15px;
    font-weight: 400;
}


/* START OF THE DONATIONS PAGE DESIGN */

#donations-page .post-card {
    border-radius: 5px;
    min-width: 400px;
    max-width: 400px;
    height: 370px;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(25, 100, 126, 0.12);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    margin-right: 2rem;
}

#donations-page .post-card .post-card-sub-3 {
    height: calc(calc(370px - 2rem) - 220px);
}

#donations-page .post-card .percentage-con {
    width: 100%;
    height: 70px;
    /* background-color: red; */
}

#donations-page .post-card .amount-donated {
    font-size: 15px;
    color: var(--light-text);
    font-weight: 600;
}

#donations-page .post-card .percentage {
    width: 100%;
    height: 5px;
    background-color: #e4e4e4;
    margin: 5px 0;
}

#donations-page .post-card .percentage-sub {
    height: 5px;
    background-color: var(--primary-color);
    position: relative;
}

#donations-page .post-card .percentage-sub:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    right: -5px;
    bottom: 50%;
    transform: translateY(50%);
}

#donations-page .post-card .percentage-donated {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 16px;
}

#donations-page .post-card .goal-amount {
    font-weight: 600;
    color: var(--light-red);
    font-size: 16px;
}

#donations-page .post-card .btn {
    padding: .3rem 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    #donations-page .post-card .d-flex {
        display: flex !important;
    }
    #donations-page .post-card .post-card-sub-4 a {
        margin: 0 .5rem;
    }
}

@media screen and (max-width: 767px) {
    #donations-page .post-card {
        border-radius: 5px;
        min-width: 400px;
        max-width: 400px;
        height: 470px;
        padding: 1rem;
        background: #FFFFFF;
        border: 1px solid rgba(25, 100, 126, 0.12);
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
        margin-right: 2rem;
    }
    #donations-page .post-card .d-flex {
        display: flex !important;
    }
    #donations-page .post-card .post-card-sub-4 {
        height: 150px;
        display: grid !important;
    }
    #donations-page .post-card .post-card-sub-4 a {
        width: 70vw;
    }
}


/* END OF THE DONATIONS PAGE STYLES */


/* START OF THE DONATE AMOUNT PAGE STYLES */

.donate-amount-form {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.donate-amount-form .caption {
    font-weight: 600;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.donate-amount-form .btn {
    color: #fff !important;
}

.donate-amount-form .btn:hover {
    color: var(--primary-color) !important;
}

.donate-amount-form .form-item {
    display: grid;
}

.donate-amount-form input {
    width: 50% !important;
    border-radius: 5px;
    border: 1px solid transparent;
    background-color: var(--light-white);
    padding: .5rem 1rem;
    margin: 0 auto;
    transition-duration: .3s;
}

.donate-amount-form input:hover {
    border: 1px solid var(--primary-color);
    transition-duration: .3s;
}

.donate-amount-form input::placeholder {
    color: var(--light-text);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .donate-amount-form {
        width: 80%;
    }
    .donate-amount-form input {
        width: 80% !important;
    }
}

@media screen and (max-width: 767px) {
    .donate-amount-form {
        width: 100%;
    }
    .donate-amount-form input {
        width: 100% !important;
    }
}


/* END OF THE DONATE AMOUNT PAGE STYLES */


/* START OF THE USER PROFILE PAGE */

.user-single-img {
    width: 100%;
}

.user-single-img img {
    border-radius: 5px;
    width: 100%;
}

.user-single-text {
    padding: 5px 50px 15px 15px;
}

.user-single-text span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.user-single-text h4 {
    color: #111;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.user-single-info {
    padding: 0px 0px;
}

.user-single-info li {
    list-style: none;
}

.user-single-info li strong {
    color: #555;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}

.user-single-text li span {
    color: #777;
    font-size: 15px;
    font-weight: 400;
    text-transform: lowercase;
}

.user-single-social {
    padding: 5px 0px;
}

.user-single-social li {
    display: inline-block;
}

.user-single-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text);
    margin-right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    transition-duration: .3s;
}

.user-single-social li a:hover {
    display: inline-flex;
    background: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50px;
    transition-duration: .3s;
}

.user-single-social li a img {
    color: #fff;
    width: 50%;
}


/* END OF THE USER PROFILE PAGE */


/* START OF TEH SUBMITTED DONATIONS PAGE STYLES  */

.info-card {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--light-white);
    border-radius: 10px;
}

.info-card .sub-info {
    display: flex;
    justify-content: space-between;
}

.info-card .sub-info p {
    margin: 0;
    padding: 0;
}

table.donations-table {
    margin: 3rem 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: .3rem;
}

table.donations-table th {
    text-align: center;
    background-color: var(--secondary-color);
    color: #fff;
    padding: .5rem;
}

table.donations-table td {
    padding: .3rem 0;
    text-align: center;
    border: 1px solid #ddd;
}

table.donations-table .success {
    padding: .5rem 1rem;
    width: fit-content;
    display: inline-block;
    border-radius: 5px;
    background-color: #86ff86a2;
    color: #095f09;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

table.donations-table .fail {
    padding: .5rem 1rem;
    width: fit-content;
    display: inline-block;
    border-radius: 5px;
    background-color: #ff9886a2;
    color: #5f0909;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
    .info-card {
        display: grid;
    }
    table.donations-table {
        border-collapse: separate;
        border-spacing: .1rem;
        max-width: 95vw !important;
    }
    table.donations-table td {
        padding: .5rem 0;
    }
    table.donations-table .success {
        padding: .5rem;
        font-size: 10px;
    }
    table.donations-table .fail {
        padding: .5rem;
        font-size: 10px;
    }
}


/* END OF TEH SUBMITTED DONATIONS PAGE STYLES  */


/* START OF THE LOGIN  AND REGISTER PAGES DESIGN */

.bg-blue {
    padding: 10rem 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-image: url('../images/svg/Wave.svg');
    background-position: center;
    background-size: cover;
    position: relative;
}

.login-register-page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 5rem 0;
    padding-top: 8rem !important;
    background-image: url('../images/svg/Wave.svg');
    background-position: center;
    background-size: cover;
    position: relative;
}

.login-register-page .logo img {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 100px;
}

.login-register-page form {
    width: 30vw;
    height: auto;
    margin: 0 auto;
    margin-top: 10vh;
    padding: 1rem;
    border-radius: 5px;
    position: relative;
    text-align: center;
    background-color: #fff;
}

.login-register-page form h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.login-register-page form label {
    font-weight: 600;
    text-align: left;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0;
}

.login-register-page form input,
.login-register-page form select {
    width: 100%;
    height: 40px;
    border: none;
    background-color: #e7e7e7;
    transition-duration: .3s;
}

.login-register-page form textarea {
    width: 100%;
    height: 250px;
    padding: 1rem;
    border: none;
    background-color: #e7e7e7;
    transition-duration: .3s;
}

.login-register-page form input[disabled] {
    background-color: var(--light-green-overlay);
}

.login-register-page form input:focus {
    background-color: #fff;
    transition-duration: .3s;
}

.login-register-page form .check {
    display: flex;
    height: 20px;
    align-items: center;
    margin-top: 1rem;
}

.login-register-page form .check input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.login-register-page form .check label {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding-left: .3rem;
}

.login-register-page form .forgot-password {
    height: fit-content;
    margin-top: 1rem;
    display: flex;
    padding: 0 1rem;
    align-items: center;
    justify-content: flex-end;
}

.login-register-page form .btn {
    width: 100%;
    margin: 2rem 0;
    border-radius: 5px;
}

.login-register-page form .login-option {
    width: 100%;
    height: 40px;
    margin-top: 1rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
}

.login-register-page form .login-option img {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
}

#bio-con {
    display: none;
}

.login-register-page form .login-option.google {
    background-color: #4285F4;
    transition-duration: .3s;
}

.login-register-page form .login-option.google:hover {
    background-color: #2c6cd3;
    transition-duration: .3s;
}

.login-register-page form .login-option.facebook {
    background-color: #4267B2;
    transition-duration: .3s;
}

.login-register-page form .login-option.facebook:hover {
    background-color: #2d4e91;
    transition-duration: .3s;
}

.login-register-page form p {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .login-register-page form {
        width: 60vw;
    }
}

@media screen and (max-width: 767px) {
    .login-register-page {
        padding-bottom: 3rem;
        height: fit-content;
    }
    #login-page {
        min-height: 110vh;
    }
    #register-page {
        min-height: 200vh;
    }
    #report-page {
        min-height: 130vh;
    }
    .login-register-page .logo img {
        width: 100px;
    }
    .login-register-page form {
        width: 90vw;
        height: auto;
        margin: 3rem auto;
    }
    .login-register-page form .check label {
        padding-left: .5rem;
    }
}


/* END OF THE LOGIN  AND REGISTER PAGES DESIGN */

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {}


/* Report now section */

.container-form {
    width: 80%;
    margin: 150px auto 100px auto;
}

.rform .btn {
    padding: .7rem 3rem;
    border-radius: 5px;
    color: var(--text);
    border: 2px solid #fff;
    transition-duration: .3s;
    font-weight: 600;
    font-size: 16px;
}

.rform .btn[type=submit] {
    padding: .7rem 3rem;
    border-radius: 50px;
    color: var(--text);
    border: 2px solid #fff;
    transition-duration: .3s;
    font-weight: 600;
    font-size: 16px;
}

.rform .btn:hover {
    box-shadow: 3px 3px 8px 2px #35353588;
    transition-duration: .3s;
}

.bio textarea {
    height: 80px !important;
    /* display: none; */
}

.bio {
    display: none;
}

.active {
    color: #1da1f2 !important;
}


/*****************************************************************************
*************************** BLOG PAGE STYLES *********************************
*****************************************************************************/

#blog-page-body {
    background-color: #f5f7fa;
}

.commentform {
    position: fixed;
}

.blog-page-top {
    display: flex;
    justify-content: space-between;
    height: 50vh;
    margin-bottom: 2rem;
}

.blog-page-top .blog-1 {
    width: 63%;
}

.blog-page-top .blog-1 h2 {
    font-size: 2.5rem;
}

.blog-page-top .blog-1 p {
    font-size: 15px;
}

.blog-page-top .blog-2 .recent-blog-sub {
    padding: 1rem;
}

.blog-page-top .blog-2 .blog-post-content {
    height: calc(100% - 50px);
    padding: 0;
}

.blog-page-top .blog-2 .blog-post-content h3 {
    margin-bottom: 0.3rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.blog-page-top .blog-2 .blog-post-content p {
    font-size: 15px;
}

.blog-page-top .blog-2 .blog-post-footer {
    display: none;
}

.blog-page-top .blog-page-top-sub {
    width: 36%;
    display: grid;
    align-content: space-between;
}

.blog-page-top .blog-page-top-sub .recent-blog {
    width: 100%;
    height: 24.5vh;
}

.recent-blog {
    border-radius: 7px;
    box-shadow: 0px 2px 5px 0px rgba(100, 99, 99, 0.212);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.recent-blog {
    text-decoration: none !important;
}

.recent-blog-sub {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    padding: 2rem;
    background: linear-gradient(0deg, #051616a8, rgba(31, 30, 30, 0.329));
    transition-duration: 0.5s;
}

.recent-blog:hover .recent-blog-sub {
    background: linear-gradient(0deg, #051616c7, rgba(31, 30, 30, 0.822));
    transition-duration: 0.5s;
}

.blog-post-top {
    width: 100%;
    height: 50px;
}


/* USER CARD STYLES */

.user-card {
    width: fit-content;
    max-width: 250px;
    height: 50px;
    display: flex;
}

.user-card-img {
    width: 50px;
    height: 50px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    border-radius: 50%;
}

.user-post-info {
    padding-left: 0.5rem;
}

.user-post-info .user-card-name {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.user-post-info .user-card-time {
    font-size: 12px;
    color: #ccc;
}

.blog-page-section-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: auto;
}

.blog-page-section-2 aside {
    width: 25%;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.blog-page-section-2 .blogs,
.blog-page-section-2 .blog-details {
    width: 74%;
    height: auto;
    margin-bottom: 3rem;
}

.aside-subscribe {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 7px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.aside-subscribe h4 {
    margin-bottom: 1rem;
    font-style: 22px;
}

.aside-subscribe form {
    display: block;
    width: inherit;
}

.aside-subscribe input {
    width: 100%;
    height: 45px;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    border: none;
    background-color: #eee;
    border-radius: 7px;
}

.aside-subscribe button {
    width: 100%;
    height: 45px;
    border-radius: 7px;
    background-color: var(--primary-color);
    transition-duration: 0.3s;
    color: #fff;
    font-size: 15px;
}

.aside-subscribe button:hover {
    background-color: var(--light-red);
    transition-duration: 0.3s;
}


/* }Featured today styles */

.blog-section {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 7px;
    width: 100%;
    padding: 0 !important;
    height: auto;
}

.end-of-blogs,
.featured-today-top {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}


/* BLOG POST STYLES */

.blog-post {
    padding: 1rem;
    display: flex;
    color: var(--text);
    border-bottom: 1px solid #ddd;
}

.blog-post:hover {
    text-decoration: none;
    background-color: rgba(238, 238, 238, 0.356);
    color: var(--text);
}

.blog-post:last-child {
    border: none;
}

.blog-post-sec-1 {
    width: 60%;
}

.blog-post-sec-1 .user-card-name {
    color: var(--text);
}

.blog-post-sec-1 .user-card-time {
    color: var(--light-text);
}

.blog-post-sec-1 .blog-post-content h3 {
    font-size: 2rem;
}

.blog-post-sec-1 .blog-post-content p {
    color: var(--light-text);
}

.blog-post-sec-1 .blog-post-footer-sub {
    color: var(--text);
}

.blog-post-sec-2 {
    width: 40%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-post-sec-2-sub {
    width: 90%;
    height: 200px;
    max-height: 200px;
    border-radius: 7px;
    background-size: cover !important;
    background-position: center !important;
}

.other-blogs {
    margin-top: 1rem;
}

.end-of-blogs {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 7px;
    margin-top: 1rem;
    font-size: 15px;
    color: var(--text);
}

.end-of-blogs i {
    color: var(--secondary-color);
}


/*****************************************************************************
*************************** BLOG DETAILS PAGE STYLES *************************
*****************************************************************************/

.blog-page-section-2 .blog-details {
    height: auto;
    display: flex;
    justify-content: space-between;
    width: 73%;
}

.blog-page-section-2 .blog-content {
    width: 90%;
    height: auto;
    padding: 0;
    background: linear-gradient(0deg, #fff 90%, transparent);
}

.blog-page-section-2 .blog-content .img {
    width: 100%;
    height: 40vh;
    background-position: center;
    background-size: cover;
    border-radius: 7px;
}

.blog-page-section-2 .blog-content h1 {
    font-size: 55px;
    margin: 2rem 0;
    color: var(--text);
    padding: 0 1.5rem;
}

.blog-page-section-2 .blog-content p {
    margin-bottom: 1rem;
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    text-justify: newspaper;
    padding: 0 1.5rem;
}

.blog-page-section-2 .blog-reactions {
    width: 10%;
    height: fit-content;
    position: sticky;
    top: 100px;
    justify-content: flex-end;
    display: grid;
    color: var(--text);
    transition-duration: 0.3s;
    padding: 20px;
}

.blog-page-section-2 .blog-reactions .reaction:hover {
    color: var(--primary-color);
    transition-duration: 0.3s;
    background-color: rgba(177, 175, 175, 0.301);
}

.blog-page-section-2 .blog-reactions .reaction,
.blog-page-section-2 .blog-reactions .share-post-btn {
    width: 50px;
    height: 50px;
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
    border-radius: 7px;
    cursor: pointer;
    color: var(--text);
}

.blog-page-section-2 .blog-reactions .share-post-btn:hover {
    background-color: rgba(177, 175, 175, 0.301);
    color: var(--primary-color);
}

.blog-page-section-2 .blog-reactions i {
    font-size: 20px;
    margin-bottom: 0.3rem;
}

.blog-page-section-2 .blog-reactions .reaction span {
    font-size: 16px;
    font-weight: 600;
}

.share-blog-con {
    position: fixed;
    display: grid;
    top: 270px;
    background-color: #fff;
    right: 0;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 7px 0 0 7px;
    height: auto;
    width: 130px;
    padding-top: 1rem;
    transform: translateX(100%);
    transition-duration: 0.3s;
}

.share-blog-con.show {
    transform: translateX(0%);
    transition-duration: 0.3s;
}

.share-blog-con h5 {
    padding: 0 0 0.5rem 1rem;
}

.share-blog-con a {
    padding: 0.3rem 1rem;
    color: var(--text);
    font-weight: 500;
    display: block;
}

.share-blog-con a:hover {
    background-color: #eee;
}


/* LEAVE A COMMENT SECTION STYLES */

.comments-section {
    padding: 0 2rem;
}

.comments-section h2 {
    margin: 2rem 0;
}

.leave-a-comment {
    display: flex;
    width: 100%;
}

.leave-a-comment .profile-pic {
    min-width: 40px;
    width: 40px;
    min-height: 40px;
    height: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-right: 1rem;
}

.leave-a-comment textarea {
    width: 100%;
    background-color: #eee;
    border: none;
    padding: 1rem;
    height: 80px;
    font-size: 15px;
    border-radius: 7px;
}

.leave-a-comment textarea:focus {
    background-color: #fff;
}

.leave-a-comment button {
    padding: 0.3rem 1rem;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 7px;
    font-size: 15px;
    cursor: pointer;
    transition-duration: 0.3s;
}

.leave-a-comment button:hover {
    background-color: var(--light-red);
    transition-duration: 0.3s;
}

.other-comments {
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

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

.other-comments .comment .user-pic {
    min-width: 30px;
    min-height: 30px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

.other-comments .comment .comment-info {
    width: calc(100% - 50px);
    border: 1px solid #ddd;
    background-color: rgba(238, 238, 238, 0.329);
    border-radius: 7px;
    padding: 1rem;
}

.other-comments .comment-info .comment-top {
    display: flex;
}

.other-comments .comment-top div {
    padding-right: 1rem;
    font-weight: 600;
    color: var(--text);
}

.other-comments .comment-top div::after {
    content: "";
    display: block;
    position: relative;
    left: calc(100% + 0.5rem);
    bottom: 50%;
    width: 3px;
    height: 3px;
    background-color: #aaa;
}

.other-comments .comment-top span {
    color: var(--light-text);
}

.other-comments .comment-content p {
    width: 100%;
    color: var(--text);
    line-height: 1.3rem;
    margin: 0;
    margin-top: 0.5rem;
}

.dark-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgba(33, 34, 34, 0.328);
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}


/*****************************************************************************
******************************************************************************
******************************** MOBILE  STYLES ******************************
******************************************************************************
*****************************************************************************/

@media screen and (max-width: 767px) {
    .con {
        width: 100%;
    }
    .bg-blue {
        padding: 8rem 0 0 0;
    }
    .page-start {
        margin-top: 0;
    }
    .abstract-bg.bg-0 {
        top: -5vh;
    }
    header {
        height: 60px;
    }
    header .top-navigator {
        width: calc(100% - 60px);
        height: 60px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    header .top-navigator li {
        list-style-type: none;
    }
    header .logo-con {
        width: 60px;
        height: 60px;
    }
    /* MOBILE NAVIGATOR STYLES */
    .top-navigator .nav-1 {
        position: absolute;
        background-color: #fff;
        top: 60px;
        right: -100%;
        width: 70vw;
        height: calc(100vh - 60px);
        align-items: flex-start;
        padding: 0;
        box-shadow: -3px 6px 5px 0px rgba(37, 37, 37, 0.151);
        transition-duration: 0.5s;
        transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    }
    .top-navigator .nav-2 {
        width: 100%;
    }
    .top-navigator .nav-2 .sign-up-btn {
        display: none;
    }
    .top-navigator .nav-1.show {
        right: 0;
        transition-duration: 0.5s;
        transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    }
    .top-navigator .nav-1 ul {
        display: grid;
        align-content: flex-start;
        width: inherit;
        padding-top: 1rem;
    }
    .top-navigator .nav-1 .top-nav-link {
        padding: .7rem 1rem !important;
        height: fit-content;
        font-size: 18px;
        display: block;
        font-weight: 600;
        width: 100%;
        margin: 0;
        left: 0;
    }
    .top-navigator .nav-1 .top-nav-link:hover {
        color: var(--secondary-color);
        background-color: var(--secondary-overlay);
    }
    .top-navigator .nav-1 ul {
        display: grid;
        align-content: flex-start;
        width: inherit;
    }
    .top-navigator .nav-1 .top-nav-link {
        padding: 1rem 2rem;
        font-size: 18px;
        display: block;
        font-weight: 600;
        width: 100%;
        margin: 0;
        left: 0;
    }
    .top-navigator .nav-1 .top-nav-link:hover {
        color: var(--secondary-color);
        background-color: var(--secondary-overlay);
    }
    .top-nav-dropdown-toggler {
        margin-top: 1rem;
    }
    .top-nav-dropdown-toggler:hover .top-nav-dropdown {
        top: 0;
        box-shadow: none;
    }
    .top-nav-dropdown-toggler .top-nav-link {
        color: var(--primary-dark);
        height: fit-content;
        padding: .3rem 1rem !important;
    }
    .top-nav-dropdown {
        position: relative;
        top: 0;
        width: inherit;
        z-index: 2 !important;
        padding: 0 !important;
    }
    .top-nav-dropdown li {
        height: fit-content !important;
        padding: .5rem 1rem !important;
    }
    .top-nav-dropdown a {
        display: block;
        width: 100%;
        font-size: 18px;
        padding: 0 !important;
        font-weight: 700;
        color: var(--text);
        text-decoration: none;
        transition-duration: 0.3s;
    }
    .dark-overlay {
        display: flex;
        left: -100%;
        transition-duration: 0.2s;
    }
    .dark-overlay.show {
        left: 0;
        transition-duration: 0.2s;
    }
    /*****************************************************************************
  *************************** BLOG MOBILE PAGE STYLES **************************
  *****************************************************************************/
    .blog-page-top {
        display: block;
        min-height: 80vh;
        height: fit-content;
    }
    .blog-page-top .blog-1 {
        width: 100%;
        min-height: 30vh;
    }
    .blog-page-top .blog-page-top-sub {
        width: 100%;
        min-height: 50vh;
        height: fit-content;
        display: block;
        justify-content: space-between;
    }
    .blog-page-top .blog-page-top-sub .recent-blog {
        width: 100%;
        min-height: 24vh;
        margin-top: 1vh;
    }
    .blog-page-top .blog-2 .recent-blog-sub {
        margin-top: 1rem;
    }
    .recent-blog-sub {
        padding: 0.5rem;
    }
    .blog-page-top .blog-2 .blog-post-content {
        height: calc(100% - 100px);
    }
    .blog-page-top .blog-2 .blog-post-content h3 {
        font-size: 22px;
    }
    .blog-page-top .blog-2 .blog-post-footer {
        display: flex;
        height: 50px;
    }
    .blog-page-section-2 {
        width: 100%;
        display: block;
        justify-content: space-between;
        height: auto;
    }
    .blog-page-section-2 aside {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }
    .blog-page-section-2 .aside-subscribe,
    .blog-page-section-2 .aside-login-sign-up {
        width: 100%;
        display: none;
    }
    .blog-page-section-2 .aside-subscribe form {
        width: 100%;
    }
    .blog-page-section-2 .blogs {
        width: 100%;
    }
    .blog-post {
        display: block;
    }
    .blog-post .blog-post-sec-1 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .blog-post .blog-post-sec-2 {
        width: 100%;
        justify-content: center;
    }
    /*****************************************************************************
  *************************** BLOG DETAILS PAGE STYLES *************************
  *
****************************************************************************/
    .blog-post-sec-2-sub {
        width: 100%;
    }
    .blog-page-section-2 .blog-details {
        width: 100%;
    }
    .blog-page-section-2 .blog-content {
        width: 100%;
        padding: 0 20px;
    }
    .blog-page-section-2 .blog-content h1 {
        font-size: 35px;
        padding: 0;
    }
    .blog-page-section-2 .blog-content p {
        width: inherit;
        padding: 0;
    }
    .blog-page-section-2 .blog-reactions {
        z-index: 3;
        position: fixed;
        height: 50px;
        width: 100vw;
        top: 100%;
        left: 0;
        transform: translateY(-100%);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #eee;
        border-top: 1px solid #ccc;
    }
    .blog-page-section-2 .blog-reactions .reaction i {
        margin: 0;
        padding: 0;
        font-size: 15px !important;
    }
    .blog-page-section-2 .blog-reactions .reaction span {
        font-size: 14px;
    }
    .blog-page-section-2 .blog-reactions .reaction,
    .blog-page-section-2 .blog-reactions .share-post-btn {
        width: 40px;
        height: 40px;
        margin: 0;
        margin: 0 0.3rem;
        font-size: 18px;
    }
    .share-blog-con {
        top: 100%;
        background-color: #fff;
        right: 0;
        border-right: 1px solid #ddd;
        border-bottom: 0px solid #ddd;
        border-radius: 7px 7px 0 0;
        width: 100vw;
        transform: translateX(0%);
    }
    .share-blog-con.show {
        transform: translateY(calc(-100% - 50px));
    }
    .share-blog-con h5 {
        padding: 0 0 0.5rem 1rem;
    }
    .share-blog-con a {
        padding: 0.3rem 1rem;
        color: var(--text);
        font-weight: 500;
        display: block;
    }
    .share-blog-con a:hover {
        background-color: #eee;
    }
    .comments-section {
        padding: 0;
    }
    .other-comments .comment-content p {
        padding: 0;
    }
    .footer-logo {
        width: 100%;
    }
    /* PROJECT PAGE */
    .project-card {
        width: 100%;
        margin: 0;
        margin-bottom: 1rem;
        max-height: 60rem;
        height: 35rem;
    }
    .project-card:first-child {
        margin-top: 4rem;
    }
    .project-card-img {
        height: 40%;
    }
    .project-card-info {
        height: 60%;
        padding: .5rem;
    }
}


/* amir design comments page admin */

.amir .tabs {
    display: flex;
    flex-wrap: wrap;
}

.amir .tabs label {
    order: 1;
    display: block;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    /* background: #3CC0F8; */
    font-weight: bold;
    transition: background ease 0.2s;
}

.amir .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    background: #fff;
}

.amir .tabs input[type="radio"] {
    display: none;
}

.amir .tabs input[type="radio"]:checked+label {
    background: #fff;
}

.amir .tabs input[type="radio"]:checked+label+.tab {
    display: block;
}

@media (max-width: 45em) {
    .amir .tabs .tab,
    .amir .tabs label {
        order: initial;
    }
    .amir .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}


/* START OF THE PENDING PAGE DESIGN */

.pending-page {
    padding: 8rem 0;
    text-align: center;
    display: grid;
    align-content: center;
    background-image: url('../images/pending-bg.jpg');
    background-color: #111;
    background-blend-mode: color-burn;
    color: #fff;
}

.pending-page-img {
    width: 20vw;
    margin-bottom: 2rem;
    margin: 0 auto;
}

.pending-page h1 {
    font-size: 80px;
    font-weight: 700;
}

.pending-page p {
    font-size: 20px;
    font-weight: 400;
    width: 100%;
    position: relative;
    margin-top: 1rem;
}

.pending-page p:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 55%;
    z-index: 1;
}

.pending-page p span {
    background-color: #111;
    position: relative;
    padding: 0 1rem;
    z-index: 2;
    margin: 0 auto;
}

.pending-page ul {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.pending-page ul li {
    list-style-type: none;
}

.pending-page ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    margin: 0 1rem;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition-duration: .3s;
}

.pending-page ul a:hover {
    background-color: var(--primary-color);
    transition-duration: .3s;
}

.pending-page a.back-home {
    display: block;
    width: fit-content;
    padding: .5rem 2rem;
    background-color: transparent;
    border: 2px solid #fff;
    margin: 2rem auto;
    border-radius: 50px;
    font-size: 20px;
    transition-duration: .3s;
}

.pending-page a.back-home:hover {
    color: #111;
    background-color: #fff;
    transition-duration: .3s;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
    .pending-page-img {
        width: 30vw;
    }
    .pending-page h1 {
        font-size: 40px;
    }
    .pending-page p span {
        width: 70vw;
        display: block;
        padding: 0;
    }
    .pending-page ul {
        margin-top: 2rem;
    }
    .pending-page ul a {
        width: 50px;
        height: 50px;
    }
}


/* END OF THE PENDING PAGE DESIGN */