/* Custom css */
body {
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
}
a {
    color: inherit;
    transition: 0.3s all;
}

:root {
    --fs56: 3.5rem;
    --fs48: 3rem;
    --fs36: 2.25rem;
    --fs28: 1.75rem;
    --fs22: 1.375rem;
    --fs18: 1.125rem;
    --fs16: 1rem;
}

/* Typography */
h1 {
    font-size: var(--fs48);
}
h2 {
    font-size: var(--fs36);
}
h3 {
    font-size: var(--fs28);
}
h4 {
    font-size: var(--fs22);
}
h5 {
    font-size: var(--fs18);
}
ul li,
p {
    font-size: var(--fs16);
}
.container {
    padding-left: 30px;
    padding-right: 30px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 999;
}
header .navbar {
    padding: 16px 0;
    background: #06140c;
}
header .custom-logo-link img {
    max-width: 100px;
    height: auto;
    display: block;
    position: relative;
    z-index: 5;
}
header .navbar-nav {
    gap: 40px;
}
header .navbar-nav .nav-item {
    margin: 0;
    padding: 0;
}
header .navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 1rem;
    color: #fff;
}
header .navbar-nav .nav-item:hover .nav-link {
    color: #008ec8;
}
header .navbar-nav .nav-item.current-menu-item .nav-link {
    color: #008ec8;
}
.search-toggle-wrapper {
    z-index: 3;
    margin-left: auto;
    margin-right: 40px;
}
header .search-form {
    padding-left: 2rem;
    position: absolute;
    left: -1em;
    top: 50%;
    transform: translateY(-50%);
    backface-visibility: visible;
    background-color: #fff;
    z-index: 2;
    border-radius: 4px;
}
header .search-form .form-control {
    width: 235px;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    height: 50px;
}
header .search-form .search-submit {
    display: none;
}
.searchbtn {
    padding: 0;
    border: 0;
    background-color: transparent;
    position: relative;
    z-index: 3;
}
.searchbtn svg {
    height: 1em;
    width: 0.9em;
    fill: #008ec8;
    margin-top: -2px;
}
header .navbar-collapse {
    flex-grow: 0;
}

/* Contents */
.home-banner {
    background-color: #06140c;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    height: 550px;
    display: flex;
    align-items: center;
}
.innerbanner {
    background-color: #06140c;
    padding: 100px 0;
    height: 400px;
    display: flex;
    align-items: center;
}
.innerbanner h1 {
    font-size: var(--fs48);
    font-weight: bold;
    color: #fff;
}
.home-banner h1 {
    font-size: var(--fs56);
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}
.home-banner h4 {
    color: #fff;
}
.content-section {
    padding: 100px 0;
}
.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2),
        0 1px 2px -1px rgba(0, 0, 0, 0.2);
}
.blogxl .blog-card {
    flex-direction: row;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2),
        0 -1px 2px -1px rgba(0, 0, 0, 0.2);
}
.blog-card .blog-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}
.blog-card figure {
    height: 200px;
    overflow: hidden;
    margin: 0;
}
.blog-card figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover figure img {
    transform: scale(1.1);
}
.blog-card:hover .blog-body h4 {
    color: #008ec8;
}
.blog-card .blog-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}
.blog-card .blog-body .blog-meta span {
    color: #0e1323;
    font-size: 13px;
}
.blog-card .blog-body h4 {
    color: #0e1323;
    font-weight: bold;
}
.blogxl .blog-card figure {
    width: 50%;
    height: 320px;
}
.blogxl .blog-card .blog-body {
    width: 50%;
    padding: 2.5rem;
}
.blogxl .blog-card .blog-body h4 {
    font-size: var(--fs28);
}
.blogxl .blog-card .blog-body .blog-meta span {
    font-size: var(--fs16);
}
.updatesection {
    background: linear-gradient(
        176.16deg,
        #e3e4ff -62.22%,
        rgba(245, 249, 255, 0) 85.5%
    );
    padding: 140px 0;
}
.updatesection h2 {
    font-size: var(--fs48);
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.updatesection h4 {
    margin-bottom: 2rem;
}
.subscribe-form {
    width: 420px;
    position: relative;
}
.subscribe-form .form-control {
    height: 46px;
    border: 1px solid #000;
    border-radius: 2rem;
    padding: 8px 20px;
    font-size: 14px;
    padding-right: 110px;
    box-shadow: none;
}
.subscribe-form .submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: #008ec8;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 0 2rem 2rem 0;
    border: 0;
    font-weight: 600;
}
.container-sm {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 900px;
}
.blogsingle-content .entry-title {
    font-weight: bold;
    margin-bottom: 20px;
}
.blogsingle-content .entry-meta {
    font-size: var(--fs16);
    margin-bottom: 25px;
}
.entry-meta .auth-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}
.blogsingle-content .post-thumbnail {
    margin-bottom: 25px;
    border-radius: 1.5rem;
    overflow: hidden;
}
.blogsingle-content .post-thumbnail img {
    display: block;
    width: 100%;
}
.blogsingle-content .wp-block-heading {
    font-size: var(--fs36);
    font-weight: bold;
    margin-top: 20px;
}
.post-navigation {
    margin-top: 2rem;
}
.post-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-navigation .nav-links a {
    text-decoration: none;
    font-size: var(--fs16);
    color: #008ec8;
}
.post-navigation .nav-links a:hover {
    color: #06140c;
}
.blog-comments {
    background: linear-gradient(
        5deg,
        #e3e4ff -62.22%,
        rgba(245, 249, 255, 0) 85.5%
    );
}
.comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.comments-area .comment-notes {
    width: 100%;
}
.comments-area .comment-form-author,
.comments-area .comment-form-email,
.comments-area .comment-form-url,
.comments-area .comment-form-comment {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}
.comments-area .comment-form-cookies-consent {
    width: 100%;
}
.comments-area .comment-form-comment {
    width: 100%;
}
.comments-area .comment-form-author,
.comments-area .comment-form-email,
.comments-area .comment-form-url {
    width: calc(33.3333% - 14px);
}
.comment-form input:not([type="checkbox"]),
.comment-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #06140c;
    border-radius: 20px;
    box-shadow: none;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: 0;
}
.comment-form p > label {
    font-size: 14px;
    color: #06140c;
}
.comment-form .comment-form-cookies-consent,
.comment-form .form-submit {
    margin-bottom: 0;
}
.comment-form .form-submit .submit {
    background: #06140c;
    color: #fff;
    border: 0;
    padding: 12px 30px;
    transition: 0.5s all;
}
.comment-form .form-submit .submit:hover {
    background: #008ec8;
}
.blog-slider .item {
    padding: 5px;
}
.blog-slider .blog-card .blog-body h4 {
    font-size: var(--fs18);
}
.blog-slider .blog-card figure {
    height: 180px;
}
.blog-slider .blog-card .blog-body {
    padding: 1.25rem;
    min-height: 160px;
}
.blog-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 15px;
}
.blog-slider .owl-nav .owl-next,
.blog-slider .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
}
.blog-slider .owl-nav .owl-next img,
.blog-slider .owl-nav .owl-prev img {
    display: block;
    max-width: 100%;
}
.subscribe-form p {
    margin: 0;
}
.subscribe-form br {
    display: none;
}
.subscribe-form .wpcf7-spinner {
    display: none;
}
.subscribe-form .formbox {
    position: relative;
}
.subscribe-form .formbox .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    top: 102%;
    font-size: 12px;
}
.subscribe-form .wpcf7-response-output {
    font-size: 12px;
}
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pagination-wrapper > * {
    width: 34px;
    height: 34px;
    border: 1px solid #008ec8;
    color: #008ec8;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s all;
}
.pagination-wrapper svg {
    width: 18px;
    height: 18px;
}
.pagination-wrapper svg path {
    fill: #008ec8;
    transition: 0.3s all;
}
.pagination-wrapper > .current,
.pagination-wrapper > *:hover {
    background-color: #008ec8;
    color: #fff;
}
.pagination-wrapper > *:hover svg path {
    fill: #fff;
}

/* Footer */
footer {
    background: #008ec8;
    padding: 30px 0;
}
footer p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}
.backtop {
    position: fixed;
    text-align: center;
    cursor: pointer;
    z-index: 99;
    width: 2.1em;
    height: 2.1em;
    line-height: 2.1;
    color: #ffffff;
    border-radius: 2px;
    background: #06140c;
    right: 30px;
    bottom: 30px;
    display: none;
}
.backtop svg {
    transform: translate(0, -20%) rotate(180deg);
    width: 1.6em;
    height: 0.6rem;
    fill: currentColor;
}

@media (width <= 1199px) {
    header .custom-logo-link img {
        max-width: 90px;
    }
    .home-banner {
        height: 400px;
    }
    .innerbanner h1 {
        font-size: var(--fs36);
    }
    .home-banner h1 {
        font-size: var(--fs48);
    }
    .home-banner h4 {
        font-size: var(--fs18);
        line-height: 1.4;
    }
    .content-section {
        padding: 80px 0;
    }
    .blogxl .blog-card figure {
        height: 280px;
    }
    .blogxl .blog-card .blog-body {
        padding: 2rem;
    }
    .blogxl .blog-card .blog-body h4 {
        font-size: var(--fs22);
    }
    .blog-card figure {
        height: 180px;
    }
    .blog-card .blog-body {
        min-height: 150px;
        padding: 20px;
    }
    .blog-card .blog-body h4 {
        font-size: var(--fs18);
    }
    .updatesection {
        padding: 100px 0;
    }
    .updatesection h2 {
        font-size: var(--fs36);
    }
    .updatesection h4 {
        font-size: var(--fs18);
    }
    .subscribe-form {
        max-width: 400px;
    }
    .innerbanner {
        height: 300px;
    }
}

@media (width <= 991px) {
    h1 {
        font-size: var(--fs36);
    }
    h2 {
        font-size: var(--fs28);
    }
    h3 {
        font-size: var(--fs22);
    }
    h4 {
        font-size: var(--fs18);
    }
    .navbar-toggler {
        width: 28px;
        height: 18px;
        padding: 0;
        border: 0;
        position: relative;
        z-index: 999;
        box-shadow: none;
    }
    .navbar-toggler span {
        width: 100%;
        height: 2px;
        background: #fff;
        display: block;
        transition: 0.3s all;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        border-radius: 12px;
    }
    .navbar-toggler span:first-child {
        margin-top: 0;
    }
    .navbar-toggler span:last-child {
        margin-bottom: 0;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler.collapsed {
        background: transparent;
    }
    .navbar-toggler.collapsed span {
        width: 100%;
    }
    .navbar-toggler:not(.collapsed) {
        border-right: 0;
    }
    .navbar-toggler:not(.collapsed) span:first-child {
        margin-top: 9px;
        transform: rotate(45deg);
        transition-delay: 0s, 0.2s;
        margin-top: 8px;
    }
    .navbar-toggler:not(.collapsed) span:last-child {
        margin-bottom: 9px;
        transform: rotate(-45deg);
        transition-delay: 0s, 0.2s;
        margin-bottom: 8px;
    }
    .navbar-toggler:not(.collapsed) span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler span:first-child,
    .navbar-toggler span:last-child {
        transition-property: margin, -webkit-transform;
        transition-duration: 0.2s;
        transition-delay: 0.2s, 0s;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -110%;
        height: 100% !important;
        display: block !important;
        background: #06140c;
        width: 100%;
        padding: 130px 30px 30px;
        transition: 0.5s all;
    }
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        right: 0;
    }
    .search-toggle-wrapper {
        margin-right: 20px;
    }
    .searchbtn {
        padding: 5px;
    }
    .searchbtn svg {
        fill: #fff;
    }
	.search-form:not(.d-none) ~ .searchbtn svg{
		fill: #008ec8;
	}
	header .search-form{
		left: auto;
        right: -10px;
        padding-left: 0;
        padding-right: 40px;
	}
	header .search-form .form-control{
		width: 200px;
	}
    header .navbar-nav {
        gap: 20px;
    }
    .blogsingle-content .entry-title {
        font-size: var(--fs36);
    }
    .entry-meta .auth-img {
        width: 28px;
        height: 28px;
    }
    .blogsingle-content .wp-block-heading {
        font-size: var(--fs28);
    }
}

@media (width <= 767px) {
    .blogxl .blog-card {
        flex-direction: column;
    }
    .blogxl .blog-card figure {
        width: 100%;
        height: 180px;
    }
    .blogxl .blog-card .blog-body {
        width: 100%;
        min-height: 150px;
        padding: 20px;
    }
    .blogxl .blog-card .blog-body h4 {
        font-size: var(--fs18);
    }
    .blogxl .blog-card .blog-body .blog-meta span {
        font-size: 13px;
    }
    .content-section {
        padding: 50px 0;
    }
    .innerbanner,
    .home-banner {
        height: auto;
        padding: 80px 0;
    }
    .innerbanner h1 {
        font-size: var(--fs28);
    }
    .home-banner h1 {
        font-size: var(--fs36);
    }
    .home-banner h4 {
        font-size: var(--fs16);
    }
    .updatesection {
        padding: 70px 0;
    }
    .updatesection h2 {
        font-size: var(--fs28);
    }
    .updatesection h4 {
        font-size: var(--fs16);
    }
    .subscribe-form {
        width: 100%;
    }
    .subscribe-form .form-control {
        height: 44px;
    }
    footer {
        padding: 20px 0;
    }
    header .navbar {
        padding: 14px 0;
    }
    header .custom-logo-link img {
        max-width: 70px;
    }
    .blogsingle-content .entry-title {
        font-size: var(--fs28);
    }
    .blogsingle-content .entry-meta {
        font-size: 14;
        margin-bottom: 20px;
    }
    .entry-meta .auth-img {
        width: 22px;
        height: 22px;
    }
    .blogsingle-content .wp-block-heading {
        font-size: var(--fs22);
    }
}

@media (width <= 767px) {
    .updatesection {
        padding: 50px 0;
    }
}

@media (width <= 575px) {
    .innerbanner h1 {
        font-size: var(--fs22);
    }
    .blog-slider .owl-nav .owl-next,
    .blog-slider .owl-nav .owl-prev {
        width: 34px;
        height: 34px;
    }
    .post-navigation .nav-links a {
        font-size: 14px;
    }
	.comments-area .comment-form-author, .comments-area .comment-form-email, .comments-area .comment-form-url {
		width: 100%;
	}
}
