@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --secondary: #0E308C;
    --primary: #12389E;
    --light: #E8EDF3;
    --text: rgba(16, 40, 75, 0.7);
    --white: #ffff;
    --dark: #96A3B6;
    --font1: "Montserrat", sans-serif;
    --font2: "Lexend", sans-serif;
}

body {
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    color: var(--primary);
    font-family: var(--font1);
    overflow-x: hidden;
    padding-top: 110px;
    /* background-image: url('/blog/wp-content/uploads/2025/07/white-paper-texture.jpg'); */
    background-attachment: fixed;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat;
    max-width: 100vw;
}

a {
    color: var(--primary);
    text-decoration: none !important;
    transition: all 0.4s;
}

a:hover {
    color: var(--text);
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}


::selection {
    color: var(--white);
    background: var(--primary);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: normal;
    font-family: var(--font2);
}

.dark-img {
    background-color: var(--dark);
    background-image: url('/blog/wp-content/uploads/2025/07/bg-img.png');
    background-position: top center;
    background-size: 100% auto;
    background-repeat: repeat-y;
}

html .btn {
    background: transparent;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--primary);
    font-size: 22px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    transition: all 0.4s;
}

html .btn:focus {
    box-shadow: none;
}

html .btn:hover {
    background: transparent;
    color: var(--primary);
}

html .btn .txt {
    position: relative;
}

html .btn .txt:after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 0.5s;
}

html .btn:hover .txt:after {
    width: 100%;
    right: auto;
    left: 0;
}

html .container {
    width: 100%;
    max-width: 1360px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

html .container-sm {
    max-width: 1285px;
}

html .container-lg {
    max-width: 1475px;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: hidden;
}

.header-main-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky .header-main-bar {
    align-items: center;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all 0.4s;
    background-color: transparent;
    padding: 20px 0;
}

header .header-bottom .btn {
    margin-left: 40px;
}

.sticky header {
    box-shadow: 0 6px 15px 0 rgb(0 0 0 / 4%);
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sticky header .header-logo a {
    max-width: 120px;
}

.header-logo a {
    display: block;
    max-width: 120px;
}

.sticky .header-logo a {
    max-width: 150px;
}

.header-logo img {
    display: block;
}

header nav>ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav>ul>li {
    position: relative;
}

header nav>ul>li+li {
    margin-left: 28px;
}

header nav>ul>li>a {
    color: var(--primary);
    font-weight: 300;
    font-size: 17px;
    display: inline-block;
    vertical-align: top;
    line-height: 110%;
    position: relative;
    transition: all 0.5s !important;
    font-family: var(--font2);
}

header nav>ul>li.menu-parent>a:after {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin: 18px 0 0 8px;
    transition: all 0.4s;
}

header nav>ul>li:hover>a:after {
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--white);
    left: 0;
    min-width: 260px;
    padding: 8px;
    border-radius: 11px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translatey(20px);
    visibility: hidden;
    transition: all 0.4s;
    z-index: 9;
    font-size: 15px;
}

li:hover>.sub-menu {
    opacity: 1;
    transform: translatey(0);
    visibility: visible;
}

.sub-menu li {
    margin-bottom: 5px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu li a {
    color: var(--dark);
    display: block;
    padding: 8px;
    border-radius: 4px;
    line-height: 120%;
    position: relative;
}

.sub-menu li a:hover {
    color: var(--white);
    background-color: var(--primary);
}

.sub-menu li.active {
    color: var(--primary);
    background: var(--light2);
    border-radius: 4px;
}

.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.sub-menu>li.list-item-parent {
    position: relative;
}

.sub-menu>li>a:hover,
.sub-menu>li:hover>a {
    background-color: var(--primary);
    color: var(--white);
}

.sub-menu>li:hover>a:after {
    border-color: var(--primary);
}

.header-navbar {
    margin-left: auto;
}

header nav>ul>li>a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: var(--primary);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

header nav>ul>li>a:hover {
    color: var(--primary);
}

header nav>ul>li>a:hover:before,
header nav>ul>li.active>a:before {
    visibility: visible;
    opacity: 1;
    bottom: -10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-main-bar .header-right {
    display: flex;
    align-items: center;
}

div#google_translate_element {
    display: block;
    width: 29%;
}

div#google_translate_element .goog-te-gadget {
    border: 0 !important;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0;
}

div#google_translate_element .goog-te-gadget a>span {
    border: 0 !important;
    font-family: var(--font1);
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

div#google_translate_element .goog-te-gadget a img~span[aria-hidden="true"] {
    font-size: 0;
}

div#google_translate_element .goog-te-gadget a img~span[aria-hidden="true"]:before {
    content: "";
    height: 12px;
    width: 12px;
    display: inline-block;
    background-image: url('data:image/svg+xml,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 0.75C8.75 0.75 5.804 3.75 4.75 3.75C3.6959 3.75 0.75 0.75 0.75 0.75" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}


#google_translate_element .goog-te-gadget {
    font-size: 0;
    display: flex;
}

div#google_translate_element .goog-te-gadget span {
    display: none;
}

#google_translate_element select {
    --bs-form-select-bg-img: url('data:image/svg+xml,<svg width="10" height="5" viewBox="0 0 10 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 0.75C8.75 0.75 5.804 3.75 4.75 3.75C3.6959 3.75 0.75 0.75 0.75 0.75" stroke="%230E308C" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>'), url("../images/global.svg");
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right 12px, left center;
    background-size: 10px, 18px;
    border: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 0 0 transparent !important;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    padding: 0 18px 0 26px;
    height: 28px;
    font-family: var(--font2);
    outline: none;
    cursor: pointer;
}

#google_translate_element .goog-te-gadget>span {
    display: none;
}

.icn_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    line-height: 38px;
    border: 1px solid #0E308C33;
    border-radius: 50px;
}

.icn_btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

nav.menu .menu-header-menu-container>ul {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav.menu .menu-header-menu-container>ul>li {
    position: relative;
}

nav.menu .menu-header-menu-container>ul>li+li {
    margin-left: 28px;
}

nav.menu .menu-header-menu-container>ul>li>a {
    color: var(--primary);
    font-weight: 300;
    font-size: 17px;
    display: inline-block;
    vertical-align: top;
    line-height: 110%;
    position: relative;
    transition: all 0.5s !important;
    font-family: var(--font2)
}

nav.menu .menu-header-menu-container .menu-item-has-children>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


nav.menu .menu-header-menu-container>ul>li>a:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: var(--primary);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
}

nav.menu .menu-header-menu-container>ul>li>a:hover {
    color: var(--text);
}

nav.menu .menu-header-menu-container>ul>li>a:hover:before,
nav.menu .menu-header-menu-container>ul>li.active>a:before {
    visibility: visible;
    opacity: 1;
    bottom: -10px;
}

nav.menu ul .menu-item-has-children>a:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

nav.menu>ul>li.mbtn.active>a,
nav.menu>ul>li.mbtn:hover>a {
    color: var(--primary);
}

nav.menu .menu-header-menu-container ul>li.mbtn.mbtn>a {
    padding: 0 26px;
    line-height: 42px;
    border: 1px solid var(--dark);
    border-radius: 50px;
}

nav.menu .menu-header-menu-container ul>li.mbtn.mbtn>a:hover {
    background: var(--dark);
    color: var(--light);
}

nav.menu .menu-header-menu-container>ul>li.menu-item-1544>a {
    color: var(--primary);
}

nav.menu ul .menu-item-has-children {
    position: relative;
}

.sub-menu {
    min-width: 200px;
    padding: 8px;
    background: var(--light);
    box-shadow: rgba(100, 100, 111, 0.1) 0px 0px 19px 0px;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

nav.menu ul .menu-item-has-children:hover .sub-menu {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
}

.sub-menu li+li {
    margin-top: 4px;
}

.sub-menu a {
    color: var(--primary);
    font-size: 15px;
    display: block;
    line-height: 134%;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 6px;
}

.sub-menu li.active a {
    background: var(--primary);
    color: var(--light);
}

.sub-menu a:hover {
    background: var(--primary);
    color: var(--light);
}

.overlay {
    background-color: #ffffff0d;
    position: absolute;
    inset: 0;
    z-index: 9;
    height: 100vh;
    backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.menu-show .overlay {
    visibility: visible;
    opacity: 1;
}

.scrolldown {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 230px;
}

.scrolldown a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 50px;
    border: 1px solid var(--dark);
    border-radius: 50px;
}

.scrolldown a span {
    display: block;
    width: 3px;
    height: 26px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    border-radius: 50px;
    transition: all 0.5s;
}

.manchor {
    position: absolute;
    top: -120px;
}

.innerbanner {
    /* padding-top: 70px; */
    padding-top: 49px;
    text-align: center;
    padding-bottom: 0;
}

.innerbanner h1 {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 60px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.innerbanner .scrolldown {
    margin-top: 66px;
}

.innerbanner .scrolldown a {
    width: 26px;
    height: 42px;
    border-color: rgba(0, 0, 0, 0.1);
}

.innerbanner .scrolldown a span {
    width: 2px;
    height: 16px;
}

/*----  Blog Page Style Start ----*/
.blog_section {
    /* padding: 50px 0 80px; */
    padding: 63px 0 80px;
    overflow: revert-layer;
}

.blog-post-main .col-sm-6 {
    margin-bottom: 30px;
}

.blog-post-main .col-sm-6:last-child {
    margin-bottom: 0;
}

.popular-post-details h6,
.popular-post-details h6 a {
    font-size: 14px;
}

.post_data_Wrapper {
    max-width: 70%;
    display: flex;
    flex-flow: row wrap;
}

.post_list_Wrapper {
    max-width: 30%;
    flex: 0 0 28.1%;
}

.post-thumb {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    padding-top: 60.7%;
    border-radius: 10px;
    overflow: hidden;
    background: #FBFBFB;
    border-radius: 14px;
}

.post-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.4s;
    background: #fff;
}

.post-thumb a::before {
    display: none;
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 40px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-image: url('data:image/svg+xml,<svg width="34" height="34" viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33 1L1 33" stroke="%23FFFFFF" stroke-width="2.5" stroke-miterlimit="10"></path><path d="M14.64 1C19.72 6.08 27.92 6.08 33 1C27.92 6.08 27.92 14.28 33 19.36" stroke="%23FFFFFF" stroke-width="2.5" stroke-miterlimit="10"></path></svg>');
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 11;
    background-size: 18px;
    transition: all 0.4s;
}

.post-thumb a:hover:before {
    transform: rotate(45deg);
}

.post-details {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    gap: 12px;
}

h5.post-title {
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    color: var(--primary);
    margin-top: 0;
}

.post-thumb img:hover {
    transform: scale(1.1);
}

.post-thumb iframe {
    width: 100%;
    height: 100%;
}

.post-meta {
    width: 100%;
    max-width: max-content;
    color: var(--primary);
    padding: 0px;
    margin: 0px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 12px;
    border-radius: 10px;
}

.post-meta li {
    display: inline-block;
    line-height: 30px;
}

.post-meta li a {
    color: var(--primary);
    font-weight: 400;
}

.post-meta li a:hover {
    color: var(--primary);
}

.post-meta li:last-child:after {
    display: none;
}

.post-meta .author {
    width: 30px;
    height: 30px;
    object-fit: cover;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 50%;
}

ul.post-meta li a {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary);
}

ul.post-meta li a:hover {
    color: var(--dark);
}

ul.post-meta {
    margin-bottom: 0;
}


ul.post-meta li:last-child {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-left: 23px;
}

ul.post-meta li:last-child:Before {
    content: "";
    height: 6px;
    width: 6px;
    background-color: var(--primary);
    display: flex;
    position: absolute;
    border-radius: 30px;
    left: 6px;
    right: auto;
    bottom: 0;
    margin: auto;
    top: 0;
}

.post-details p {
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    color: var(--primary);
    margin-bottom: 0;
    letter-spacing: 0.03em;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title {
    margin: 0;
}

.post-title a {
    --color: var(--primary);
    color: var(--primary);
}

ul.post-meta a img {
    display: none;
}

.excerpt {
    font-size: 15px;
    margin: 0px;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0px;
}

.page-item {
    list-style: none;
    margin: 0 5px;
}

.pagination .page-link {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid var(--dark);
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--dark);
    font-size: 15px;
    line-height: 40px;
    padding: 0;
    border-radius: 50%;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50%;
    line-height: 35px;
    font-size: 20px;
}

.blog-pagination {
    margin-top: 30px;
}

.page-item.active .page-link,
.pagination .page-link:hover {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

.widget-search form {
    display: flex;
    background: var(--white);
    border: 1px solid #0E308C24;
    border-radius: 10px;
    height: 44px;
    align-items: center;
}

.popular-post-content .popular-post:last-child {
    padding-bottom: 0;
}

.widget-search form .form-control {
    border: 0;
    border-radius: 0;
    padding: 0 10px 0 9px;
    background: transparent;
    font-family: var(--font1);
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--primary);
    text-overflow: ellipsis;
}

.widget-search form .form-control::placeholder {
    font-family: var(--font1);
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--primary);
    text-overflow: ellipsis;
}

.form-control:focus::placeholder {
    color: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    /* white background */
    -webkit-text-fill-color: var(--primary);
    /* text color */
    transition: background-color 5000s ease-in-out 0s;
}

.search .widget-search form button {
    order: -1;
}

.widget-search form .form-control:focus {
    box-shadow: none;
}

.widget-search form button {
    border: 0;
    background: transparent;
    padding: 0 20px;
    font-size: 20px;
    color: var(--primary);
}

.widget {
    padding: 0 0;
}

.widget-wrapper {
    margin-bottom: 0;
    background-color: var(--light);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.widget-wrapper .widget:not(:last-child) {
    position: relative;
}

.widget-wrapper .widget:not(:last-child)::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #12389E1A;
    left: 0;
    bottom: -30px;
}

.popular-post-thumb {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 8px;
    overflow: hidden;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.popular-post-thumb img:hover {
    transform: scale(1.1);
}

.popular-post-details {
    display: flex;
    flex-direction: column-reverse;
    margin-left: 102px;
    gap: 8px;
    padding: 11px 0;
}

.popular-post-details h6,
.popular-post-details h6 a {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0;
    color: var(--primary);
}

.popular-post-details h6 a:hover {
    color: var(--text);
}

.popular-post-details p {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid #12389E24;
    background: var(--white);
    padding: 0 10px;
    border-radius: 8px;
    max-width: max-content;
}

.popular-post-content {
    display: flex;
    flex-direction: column;
}

.popular-post-content .popular-post {
    padding-bottom: 10px;
}

.categories-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.categories-card ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
    position: relative;
    margin-bottom: 12px;
    border: 1px solid #12389E24;
    border-radius: 10px;
    padding: 0px 6px 0px 15px;
}

.categories-card ul li:last-child {
    margin-bottom: 0;
}

.categories-card ul li.active a {
    color: var(--primary);
}

.categories-card ul li:last-child {
    margin-bottom: 0;
}

.categories-card ul li a {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 13px;
    line-height: 33px;
    color: var(--primary);
}

.categories-card ul li a:hover {
    color: var(--text);
}

.categories-card ul li span {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 10px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0 12px;
    background-color: var(--white);
    border-radius: 15px;
}

.blog-social ul {
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 15px;
    list-style: none;
}

.blog-social li {
    margin-right: 8px !important;
}

.blog-social li a:hover {
    background: var(--primary);
    color: var(--white);
}

.blog-social li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 30px;
    color: #122130;
}

.blog_section.blog_details {
    padding: 40px 0 80px;
}

.blog_section .breadcrumb {
    padding: 0;
    background-color: transparent;
    display: flex;
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.blog_section .breadcrumb ul {
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    margin: 0 0 14px;
    gap: 27px;
}




.blog_section .breadcrumb ul li {
    font-family: var(--font2);
    font-weight: 400;
    font-size: 14px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--primary);
    list-style: none;
    text-align: center;
}

.blog_section .breadcrumb ul li:not(:first-child) {
    position: relative;
}

.blog_section .breadcrumb ul li:not(:first-child)::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: var(--primary);
    top: 20%;
    left: -16px;
}

.blog_section .post-single-header h1 {
    font-size: 34px;
    line-height: 130%;
    font-family: var(--font2);
    font-weight: 200;
    font-size: 60px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--primary);
    margin-bottom: 38px;
}

.post-single-meta {
    padding-bottom: 0;
    width: 100%;
}

.post-single-meta ul.social-list {
    margin: 0;
    padding: 0;
}

.post-single-meta ul.social-list li {
    list-style: none;
}

.post-single-meta ul.social-list li .btn {
    margin: 0 0 0 18px;
    width: auto;
    line-height: 0;
    box-shadow: none;
    color: var(--dark);
    font-size: 16px;
}

.post-single-meta ul.social-list li .btn:hover {
    color: var(--primary);
    background: transparent;
}

.post-single-content img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 0;
    height: 100%;
    object-fit: cover;
}

.post-single-content p a em:hover {
    --color: var(--primary);
}

.post-tag-card .tag {
    color: #333;
    border: solid 1px #EBEBEB;
    border-radius: 25px;
    font-size: 14px;
    display: inline-block;
    padding: 5px 17px;
    margin: 4px 2px;
    background: #f7f9f8;
    line-height: 22px;
}

.post-tag-card .tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.post-single-content {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.singlepost-main .title {
    text-align: left;
}

.singlepost-main .line {
    margin: 15px 0 0 0;
}

.comments {
    padding: 0;
    margin: 0;
}

.comments li.comment {
    margin-bottom: 30px;
    list-style: none;
}

.comments li.comment .comment-thumb {
    float: left;
}

.comments li.comment .comment-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.comments li.comment .comment-details {
    margin-left: 90px;
}

.comments li.comment .comment-details h4.name {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 2px 0;
}

.comments li.comment .comment-details .date {
    color: #9faabb;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.comments li.comment.comment-child {
    margin-left: 60px;
}

.comments li:after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 30px;
    width: 100%;
    background: #EBEBEB;
    background: -webkit-linear-gradient(right, #EBEBEB 0%, transparent 100%);
    background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}

.comments li:last-child:after {
    display: none;
}

.comments li:last-child {
    margin-bottom: 0px;
}

.post-single-meta ul.post-meta li:nth-child(2):before {
    content: "";
    height: 4px;
    width: 4px;
    background-color: var(--primary);
    display: flex;
    position: absolute;
    border-radius: 30px;
    left: 6px;
    right: auto;
    bottom: 0;
    margin: auto;
    top: 0;
}

.post-single-meta ul.post-meta li:nth-child(2) {
    position: relative;
    padding-left: 20px;
}

.content-wpr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 0;
    background: white;
    border-radius: 20px;
    gap: 20px;
}

.shareme {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
}

.maincontent {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    --color: var(--primary);
}

.maincontent h2 {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 30px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--primary);
}

.maincontent h2:first-child {
    margin-top: 0;
}

.maincontent h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.maincontent p {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    margin-bottom: 14px;
}

.maincontent strong,
.maincontent b {
    font-weight: normal;
}

.maincontent a {
    color: inherit;
    text-decoration: underline;
    color: var(--primary);
}

.maincontent a:hover {
    color: var(--text);
}

.maincontent .data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--primary);
    border: 1px solid #dbeafe;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.maincontent .data-table thead th {
    background: var(--light);
    font-family: var(--font2);
    font-size: 15px;
    font-weight: 600;
    line-height: 130%;
    padding: 14px 20px;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #12389E24;
}

.maincontent .data-table tbody td {
    font-family: var(--font1);
    font-weight: 500;
    font-size: 15px;
    line-height: 130%;
    letter-spacing: 0%;
    padding: 16px 20px;
    border-bottom: 1px solid #12389E24;
}

.maincontent .data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Vertical separators */
.maincontent .data-table th+th,
.maincontent .data-table td+td {
    border-left: 1px solid #12389E24;
}


.maincontent ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maincontent ul li {
    list-style: none;
    padding-left: 32px;
    position: relative;
}

.maincontent ul li::before {
    position: absolute;
    content: '';
    width: 22px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url('data:image/svg+xml,<svg width="22" height="16" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.6923 6.75195H0L0 8.43978H1.6923L1.6923 6.75195Z" fill="%2312389E"/><path d="M5.07707 6.75195H3.38477L3.38477 8.43978H5.07707V6.75195Z" fill="%2312389E"/><path d="M8.46281 6.75195H6.77051V8.43978H8.46281V6.75195Z" fill="%2312389E"/><path d="M11.8466 6.75195H10.1543V8.43978H11.8466V6.75195Z" fill="%2312389E"/><path d="M15.2309 6.75195H13.5386V8.43978H15.2309V6.75195Z" fill="%2312389E"/><path d="M18.6152 6.75195H16.9229V8.43978H18.6152V6.75195Z" fill="%2312389E"/><path d="M21.9999 6.75195H20.3076V8.43978H21.9999V6.75195Z" fill="%2312389E"/><path d="M18.6156 3.37695H16.9233V5.06478H18.6156V3.37695Z" fill="%2312389E"/><path d="M15.2309 0L13.5386 0V1.68782H15.2309V0Z" fill="%2312389E"/><path d="M18.6156 10.127H16.9233V11.8148H18.6156V10.127Z" fill="%2312389E"/><path d="M15.2304 13.5039H13.5381V15.1917H15.2304V13.5039Z" fill="%2312389E"/></svg>');
    background-position: top;
    background-size: 22px auto;
    background-repeat: no-repeat;
}

.post-single-content p:last-child {
    margin-bottom: 0;
}

.post-single-header.sticky_wrap {
    position: sticky;
    top: 95px;
    background-color: #FFF;
    padding: 30px;
    z-index: 11;
    transition: all 0.4s;
}

.post-single-meta ul.post-meta {
    margin-bottom: 0;
}

.post-single-header.sticky_wrap {
    display: none;
}

.blog-head-sticky .post-single-header.sticky_wrap {
    display: block;
    margin-bottom: -114px;
}

.post-single-header.sticky_wrap h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-head-sticky .post-single-header.sticky_wrap li {
    font-size: 12px;
}

.blog-head-sticky .post-single-header.sticky_wrap .post-single-meta {
    padding-bottom: 0;
}

.post-single-meta .addtoany_shortcode .a2a_kit {
    display: flex;
    gap: 5px;
}

.post-single-meta .addtoany_shortcode .a2a_kit a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    color: var(--primary);
    background-color: transparent;
    border: 1px solid #12389E24;
    transition: all 0.4s;
    border-radius: 10px;
}

.post-single-meta .addtoany_shortcode .a2a_kit a svg path {
    fill: var(--primary);
}

.content-wpr .addtoany_shortcode a {
    padding: 4px 4px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.post-single-meta .addtoany_shortcode .a2a_kit a {
    color: var(--primary);
}

.post-single-meta .addtoany_shortcode .a2a_kit a:hover {
    background-color: var(--primary);
}

.post-single-meta .addtoany_shortcode .a2a_kit a:hover svg {
    opacity: 1;
    color: var(--white);
}

.post-single-meta .addtoany_shortcode .a2a_kit a:hover svg path {
    fill: var(--white);
}

.addtoany_list a:hover img,
.addtoany_list a:hover span,
.post-single-meta .addtoany_shortcode .a2a_kit a:hover .post-single-meta .addtoany_shortcode .a2a_kit a:hover span {
    opacity: 1 !important;
}

.post-template-default #comments {
    max-width: 100%;
    margin: 0 auto;
    color: #333333;
    font-style: normal;
}

.post-template-default div#wpdcom {
    max-width: 100%;
}

.widget_wrap {
    padding-bottom: 35px;
    border-bottom: 1px solid #DEDEDE;
}

.wpd-thread-list {
    padding: 0 !important;
}

.sticky_col {
    position: sticky;
    top: 120px;
}


.blog_banner_sec {
    overflow: revert-layer;
}

.nav-links {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    border-radius: .25rem;
    margin-top: 0;
}

.page-numbers {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 15px;
    line-height: 40px;
    padding: 0;
    border-radius: 50%;
    z-index: 1;
    color: #122130;
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin: 0 5px;
}

.widget .title h2,
.widget .title b {
    font-family: var(--font2);
    font-weight: 200;
    font-size: 24px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    color: var(--primary);
    margin-bottom: 8px;
}

.widget-search button {
    color: var(--primary) !important;
    padding: 0 0 0 17px !important;
    font-size: 17px !important;
    display: flex;
}

.page-numbers.current {
    border: 1px solid #122130;
    background: #122130;
    color: #fff;
}

.page-numbers:hover {
    border: 1px solid #122130;
    background: #122130;
    color: #fff;
}

.nav-links .next.page-numbers {
    border-radius: 50%;
    line-height: 35px;
    font-size: 20px;
}

.nav-links .prev.page-numbers {
    border-radius: 50%;
    line-height: 35px;
    font-size: 20px;
}

.page-numbers.dots {
    border-radius: 50%;
    line-height: 35px;
    font-size: 20px;
}

.post-meta .author {
    border: 2px solid #ED3338;
}

.wc-field-submit .wc_comm_submit.wpd_not_clicked.wpd-prim-button {
    padding: 0 25px;
    line-height: 40px;
    font-size: 15px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .15);
    font-weight: 500;
    letter-spacing: .5px;
    transition: all .5s;
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    color: #fff;
    background-color: var(--dark);
    border---color: var(--primary);
}

.wc-field-submit .wc_comm_submit.wpd_not_clicked.wpd-prim-button::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55px;
    background: var(--primary);
    z-index: -1;
    border-radius: 50px;
    transition: all .5s;
}

.post-single-content .post-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.post-single-content .post-content li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 8px;
}

.post-single-content .post-content li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
}

footer {
    overflow: hidden;
}

footer .footer-top {
    position: relative;
    z-index: 1;
}

footer .footer-top .inner {
    background: var(--light);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 20px;
}

.footer-top {
    margin: 30px 30px 0;
    padding: 60px;
}

ul.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}

.footer-top ul.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 60px;
    border-top: 1px solid #12389E24;
    padding-top: 60px;
    margin-top: 60px;
    margin-bottom: 0;
}

.footer-top h2 {
    font-family: var(--font1);
    font-weight: 600;
    font-size: 120px;
    line-height: 100%;
    margin: 40px 0 0;
}

.quick-links a {
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
}

.quick-links a:hover {
    color: var(--dark);
}

.footer-top .adrs p {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 18px;
}

.footer-top .adrs p:last-child {
    margin-bottom: 0px;
}

.footer-top .ftr_b a {
    font-weight: 600;
    font-size: 70px;
    line-height: 100%;
}

.social_icons {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social_icons li a {
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #12389E1A;
    border-radius: 10px;
}

.social_icons li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-bottom .quick-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom .quick-links li {
    border-right: 1px solid #12389E24;
    padding-right: 10px;
}

.footer-bottom .quick-links li:last-child {
    border-right: 0;
    margin-right: 0px;
    padding-right: 0px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p,
.footer-bottom>div>div>div>div {
    font-size: 16px;
    line-height: 23.6px;
    font-weight: 400;
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
}

.laxraj-love svg {
    color: var(--primary);
    width: 14px;
    margin: 0 3px;
    font-size: 10px;
}

.circlebtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    min-width: 230px;
    height: 230px;
    border-radius: 500px;
}

.circlebtn img {
    display: block;
    width: 65px;
    transition: all 0.6s;
}

.circlebtn:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image: url('../images/connect-us.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: spin 15s linear infinite;
}

.circlebtn:hover img {
    transform: rotate(45deg);
}

.circlebtnlight:before {
    filter: brightness(0) invert(1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

footer .footer_middle_wrap {
    padding: 50px 0px;
    border-top: 1px solid #000;
}

.footer_bottom {
    padding: 30px 0;
}

.footer_bottom p {
    line-height: 150%;
    font-weight: 500;
    color: var(--primary);
}

/* .laxraj-love svg,
.laxraj-love .fa {
    color: var(--primary);
    margin: 0 3px;
    font-size: 10px;
    animation: pound .35s infinite alternate;
    -webkit-animation: pound .35s infinite alternate;
    width: 12px;
    height: auto;
}

@keyframes pound {
    100% {
        transform: scale(1.1);
    }
} */

.footer_bottom p.laxraj-love a {
    color: var(--primary);
    font-weight: 500;
    font-size: 16px;
}

.footer_bottom p.laxraj-love a:hover {
    color: var(--primary);
}

.widget .title {
    display: block;
    line-height: 100%;
    margin-bottom: 16px;
}

.widget-wrapper .widget:first-child .title {
    margin-bottom: 8px;
}

nav.menu .menu-header-menu-container>ul>li.active>a {
    color: var(--primary);
}