@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #07bd75;
    --text-color: #262627;
    --heading-color: #121213;
    --link-color: #ef3737;
    --link-hover-color: #d52f2f;
}

::placeholder {
    font-size: .8rem;
    font-style: italic;
    color: rgba(58, 57, 57, 0.39);
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: inherit;
    line-height: inherit;
    background-color: #f4f5ff;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

:focus {
    outline: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    color: var(--heading-color);
    margin-bottom: 33px;
}

h1 {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 3.8rem;
}

h2 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 3.2rem;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
}

h4 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.8rem;
}

h5 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.7rem;
}

h6 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.6rem;
}

@media (max-width: 767.99px) {

    h1 {
        font-size: 2rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 2.8rem;
    }

    h3 {
        font-size: 1.7rem;
        line-height: 2.5rem;
    }

    h4 {
        font-size: 1.6rem;
        line-height: 2.5rem;
    }

    h5 {
        font-size: 1.5rem;
        line-height: 2.5rem;
    }

    h6 {
        font-size: 1.4rem;
        line-height: 2.5rem;
    }
}


p {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8rem;
    color: var(--text-color);
}

a {
    font-family: inherit;
    transition: all 0.2s ease-in-out 0s;
    color: var(--link-color);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
    transition: all 0.3s ease;
}

a:focus {
    outline: 0
}

ul li,
ol li {
    font-size: .9rem;
    line-height: 1.8rem;
}


/* BOOTSTRAP FORM OVERRIDE */

.form-control:focus,
btn:focus {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important
}

.form-label {
    font-weight: 600;
    font-size: .9rem;
}

.form-control {
    border-radius: 0;
    font-size: 0.9rem;
    background-color: #ffffff !important;
}

.form-floating>label {
    font-size: .9rem;
    color: rgba(58, 57, 57, 0.39);
}

input#email.form-control.form-control-lg {
    background: #ffffff !important;
}

/* Header styles */

.header {
    background-color: #ffffff;
}

.header nav .navbar-elements {
    justify-content: end;
}

.header nav .navbar-elements ul {
    margin-right: 40px;
}

.header nav .navbar-elements ul a {
    color: var(--text-color);
    font-size: .9rem;
    font-weight: 400;
}

.header nav .navbar-elements .proposal-btn-mobile {
    display: none;
}

.header nav .navbar-elements .mobile-copyright {
    display: none;
}

.navbar-nav .nav-item {
    margin-right: 40px;

}


.navbar-nav .nav-link {
    position: relative;
    /* padding: 7px 20px; */
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--primary-blue);
    transition: 0.4s ease-out;
}

.navbar-nav .nav-link:hover::after {
    left: 0;
    width: 100%;
}

.default-btn {
    background-image: linear-gradient(to right, var(--link-hover-color), var(--link-color));
    padding: 8px 25px;
    color: #fff;
    font-size: 14px;
    border: none;
}

.default-btn:hover {
    background-image: linear-gradient(to right, var(--link-color), var(--link-hover-color));
    padding: 8px 25px;
    color: #fff;
    font-size: 14px;
}

.default-block-btn {
    background-image: linear-gradient(to right, var(--link-hover-color), var(--link-color));
    padding: 8px 25px;
    color: #fff;
    font-size: 14px;
    border: none;
    text-align: center;
}

.default-block-btn:hover {
    background-image: linear-gradient(to right, var(--link-color), var(--link-hover-color));
    padding: 8px 25px;
    color: #fff;
    font-size: 14px;
}



@media (max-width: 991.98px) {

    .header nav .nav-container {
        position: relative;
    }

    .header nav .navbar-elements {
        background-color: #ffe205f6;
        position: absolute;
        top: 57px;
        left: 0;
        width: 100%;
        padding: 35px 40px;
        z-index: 1000;
    }

    .header nav .navbar-elements .navbar-nav {
        text-align: center;
        margin-bottom: 25px;
        margin-right: 0;
    }

    .header nav .navbar-elements .navbar-nav li a {
        color: var(--text-color);
        font-size: 1.125rem;
    }

    .header nav .navbar-elements .navbar-nav li:not(:last-child) {
        border-bottom: 1px solid #2a9b4148;
    }

    .header nav .navbar-elements .proposal-btn {
        display: none;
    }

    .header nav .navbar-elements .proposal-btn-mobile {
        display: flex;
        justify-content: center;
    }

    .header nav .navbar-elements .mobile-copyright {
        display: block;
        margin-top: 15px;
    }

    .header nav .navbar-elements .mobile-copyright p {
        text-align: center;
        font-size: 0.875rem;
        font-weight: 400;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

}

/* General page styles */
/*#main-content {
    background-color: red;
}
*/
.content-container {
    min-height: 80vh;
}

.content-container .container {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #dad9daa6;
    border-radius: 0px;
}

.content-container .latest-posts h4 {
    font-size: 1.8rem;
    position: relative;
}

.content-container .latest-posts h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 20%;
    background: var(--link-color);
    /* Change the color to suit your needs */
}

.content-container .latest-posts .post h6 {
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 26px;
}

.content-container .latest-posts .post .post-meta {
    font-size: .8rem;
    font-style: italic;
    margin-bottom: 0;
}

.content-container .latest-posts .post .excerpt {
    font-size: .9rem;
}

/* Invite form */
.invite-container {
    min-height: 80vh;
}

#invite-content .invite-form-container {
    max-width: 60%;
    margin: 0 auto;
}

#invite-content .invite-form-container .invite-section {
    margin-top: 30px;
    background-image: linear-gradient(to bottom right, #117a8b, #149db3);
    padding: 40px 30px;
    position: relative;
}

#invite-content .invite-form-container .invite-section .invite-icon i {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff3b;
    font-size: 80px;
}

#invite-content .invite-form-container .invite-section .invite-text h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 25px;
}

#invite-content .invite-form-container .invite-section .invite-text p {
    color: #ffffff;
}

#invite-content .invite-form-container .invite-section .invite-fields input {
    border-radius: 0;
    border: none;
    width: 81%;
}


#invite-content .invite-form-container .invite-section .invite-fields input::placeholder {
    font-size: 14px;
    font-style: italic;
    color: rgb(189, 187, 187);
}

#inviteForm>div:nth-child(2)>label {
    color: #ffffff;
    font-size: 14px;
}

#invite-content .invite-form-container.invite-section .invite-fields .form-check label a {
    font-size: 14px;
    color: #f6faf9fb;
}


/* Blog styles */
.blog-header {
    background-color: #e8eef0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-header .blog-title h1 {
    font-size: 2.8rem;
    margin-bottom: 0;
}

.blog-header .blog-title p {
    font-size: 1.3rem;
}

.post-lists {
    padding-top: 80px;
    padding-bottom: 80px;
}


.post-lists .post-container {
    border: 1px solid #cccccca1;
}

.post-lists .post-container .post-title {
    padding-left: 10px;
    padding-right: 10px;
}

.post-lists .post-container .post-title h3 {
    margin-bottom: 10px;
    line-height: 1.5rem;
    margin-top: 8px;
}

.post-lists .post-container .post-title h3 a {
    font-size: 1.3rem;
}

.post-lists .post-container .post-excerpt {
    padding-left: 10px;
    padding-bottom: 10px;
}


/* Single post styles */
.post-page-wrapper {
    background-color: #f4f4f4;
    padding-bottom: 30px;
}

.post-page-wrapper .single-post-container {
    background-color: #ffffff;
    border: 1px solid #E7E7E7;
    border-radius: 2px;
    padding: 40px 24px;
}

.post-page-wrapper .single-post-container .single-post-title h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

.post-page-wrapper .single-post-container .entry-meta {
    margin: 0;
    padding-left: 0;
}

.post-page-wrapper .single-post-container .entry-meta li {
    border-right: 1px solid#eee;
    padding-right: 23px;
    margin-right: 20px;
    list-style: none;
    display: inline-block;
    line-height: 18px;
    margin-top: 10px;
}

.post-page-wrapper .single-post-container .entry-meta li span {
    color: #595959;
    font-size: 12px;
    font-weight: 600;
    display: block;
    line-height: 18px;
}

.post-page-wrapper .single-post-container .entry-meta li .author_name {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: var(--text-color);
}

.post-page-wrapper .single-post-container .entry-meta li .post-date {
    color: var(--text-color);
}

.post-page-wrapper .single-post-container .entry-meta li a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
}

.post-page-wrapper .sidebar .sidebar-widget {
    background-color: #ffffff;
    border: 1px solid #E7E7E7;
    border-radius: 2px;
}

.post-page-wrapper .sidebar .sidebar-widget .widget-header {
    border-bottom: 1px solid #E7E7E7;
    padding-left: 15px;
    padding-right: 15px;
}

.post-page-wrapper .sidebar .sidebar-widget .widget-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.post-page-wrapper .sidebar .sidebar-widget .widget-content {
    padding: 15px 15px;

}

.sidebar-widget .widget-content .latest-posts {
    border-bottom: 1px solid #cccccc83;
    padding-top: 10px;
}

.sidebar-widget .widget-content .latest-posts p.title {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 17px;
}

.sidebar-widget .widget-content .latest-posts p.post-date {
    font-size: .71rem;
    font-style: italic;
    color: #838383;
    margin-bottom: 0;
}

.post-page-wrapper .breadcrumb-container {
    background-color: #bebaba91;
    padding-top: 15px;
    padding-bottom: 15px;
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
}

#breadcrumbs {
    padding: 0;
    margin: 0;
}

#breadcrumbs li {
    line-height: 25px;
    display: inline-block;
    color: inherit;
    list-style: none;
}

#breadcrumbs li:nth-child(2n) {
    margin-right: 7px;
}

#breadcrumbs a {
    line-height: 25px;
    display: inline-block;
    color: inherit;
    margin-right: 7px;
}

.post-page-wrapper .single-post-container .post-body h2 {
    font-size: 1.7rem;
}

.post-page-wrapper .single-post-container .post-body h3 {
    font-size: 1.4rem;
}

.post-page-wrapper .single-post-container .post-body h4 {
    font-size: 1.3rem;
}

.post-page-wrapper .single-post-container .post-body h5 {
    font-size: 1.2rem;
}

.post-page-wrapper .single-post-container .related-posts-container h3 {
    margin-top: 60px;
}

.post-page-wrapper .single-post-container .post-body blockquote {
    background: #E7E7E7;
    border-left: 2px solid var(--link-hover-color);
    padding: 10px;
    font-size: .9rem;
}

.post-page-wrapper .single-post-container .post-body blockquote p {
    margin-bottom: 0;
    font-size: .9rem;
}

.post-page-wrapper .single-post-container .related-posts-container .related-post-item .related_post_bottom .date {
    font-size: .7rem;
}

.post-page-wrapper .single-post-container .related-posts-container .related-post-item .related_post_bottom .title h4 {
    margin-bottom: 0;
    line-height: 1.5rem;
}

.post-page-wrapper .single-post-container .related-posts-container .related-post-item .related_post_bottom .title h4 a {
    font-size: 1.1rem;
}

.post-comment-container .comment-header h4 {
    margin-bottom: 0;
}

.post-comment-container .comments .comment-item .comment-user p.username {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
}

.post-comment-container .comments .comment-item .comment-user p.date {
    font-size: .8rem;
    font-style: italic;
}

/* Author box  */
.author-box {
    border-top: 1px solid #cccccc83;
    padding-top: 25px;
    padding-bottom: 20px;
    margin-top: 30px;
    border-bottom: 1px solid #cccccc83;
}

.author-box .ab-top {
    display: flex;
    align-items: center;
}

.author-box .ab-top .author-img img {
    width: 60px;
}

.author-box .ab-top .author-name h6 {
    margin-bottom: 0;
    margin-left: 15px;
    font-size: 1.3rem;
}

.author-box .author-bio {
    padding-top: 10px;
}

.author-box .author-bio p {
    font-size: .9rem;
    color: #838383;
    font-weight: 400;
}

.author-box .author-social {
    display: flex;
}

.author-box .author-social>div {
    margin-right: 5px;
}

/* Hero section */
.hero {
    background-image: url('../../assets/images/hero.webp');
    background-color: #1c9b77;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 110px;
    padding-bottom: 110px;
}

.hero .home-title h1 {
    color: #fff;
    font-size: 3rem;
}

.hero .home-title p {
    color: #fff;
}

.hero .home-title p.first {
    font-size: 1.6rem;
    font-weight: 700;
}

.hero .home-title p.second {
    font-size: 1.3rem;
    font-weight: 400;
}

@media (max-width: 992px) {
    .hero {
        background-image: none;
        background-color: #1c9b77;
    }

    .hero .home-title {
        text-align: center;
    }
}

.home-posts .post-container .post-title h3 {
    margin-bottom: 5px;
    line-height: 27px;
    margin-top: 10px;
}

.home-posts .post-container .post-title h3 a {
    font-size: 1.1rem;
}



/* Pagination */
.paginator ul {
    list-style: none;
    margin-bottom: 0;
}

.paginator ul li {
    font-size: 0.7rem;
    border-top: 1px solid rgba(204, 204, 204, 0.6);
    border-bottom: 1px solid rgba(204, 204, 204, 0.6);
    padding: 0.1rem .8rem;
    cursor: pointer;
    background-color: rgb(242, 247, 246);
}

.paginator ul li:hover {
    background-color: #e65b2e;
}

.paginator ul li:hover a {
    color: #fff;
}

.paginator ul li:not(:first-child) {
    border-right: 1px solid rgba(204, 204, 204, 0.6);
}

.paginator ul li:first-child {
    border-left: 1px solid rgba(204, 204, 204, 0.6);
    border-right: 1px solid rgba(204, 204, 204, 0.6);
}

.paginator ul li a {
    font-size: 0.7rem;
}

.paginator ul li.disabled {
    background-color: #b8dad7;
    line-height: 1.8rem;
}

.paginator ul li.active {
    background-color: rgba(232, 243, 241, 0.515);
    border-top: 2px solid #e65b2e;
    color: #e65b2e;
    font-weight: 600;
    line-height: 1.8rem;
}

pre {
    background-color: #eee9d5;
    padding: 10px;
    border: 1px solid #9da7ad;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: auto;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
}

footer {
    background-color: rgba(58, 57, 57, 0.99);

}

footer p {
    color: #ffffff93;
    font-size: 13px;
    margin-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
}

.red-cta {
    background-color: #F1230E;
    color: #ffffff;
    border-radius: 20px;
    font-weight: 600;
}

.red-cta:hover {
    background-color: #d0200d;
}