.post,
.page {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --clay: #d88563;
    --cream: #F1EEE9;
    --charcoal: #3F3D3A;
}

.clay {
    color: var(--clay);
}

.cream {
    color: var(--cream);
}

.charcoal {
    color: var(--charcoal);
}

/********** Font Family ******************
  font-family: "Inter", sans-serif;
***************************************/

body {
    overflow-x: hidden;
    text-decoration: none;
    box-sizing: border-box;
    margin-bottom: 0;
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    font-family: "Inter", sans-serif;
    padding-top: 108px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px
}


h1,
.h1 {
    color: rgba(17, 17, 17, 1);
    font-weight: 600;
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

h1 span,
.h1 span,
h2 span,
.h2 span {
    color: rgba(17, 17, 17, 0.4);

}

h2,
.h2 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

h3,
.h3 {
    font-weight: 600;
    font-size: 48px;
    line-height: 55px;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    font-family: "Inter", sans-serif;
}

h4,
.h4 {
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    font-family: "Inter", sans-serif;

}

h5,
.h5 {
    font-size: 20px;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    font-family: "Inter", sans-serif;
}

h6,
.h6 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    color: rgba(17, 17, 17, 1);
    font-family: "Inter", sans-serif;

}

p {
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

li {
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.6s;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    font-family: "Inter", sans-serif;

}

a:hover {
    text-decoration: none;
    color: rgba(102, 102, 102, 1);
}

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

.title-section {
    text-align: center;
    margin-bottom: 40px;
}

ul,
ol {
    margin-left: 0;
    margin-bottom: 0;
}

a.btn,
.btn,
.input-field,
input[type="submit"] {
    padding: 12px 24px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 1);
    transition: all 0.6s;
    text-align: center;
    display: inline-block;
    color: rgba(17, 17, 17, 1);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.8px;
    vertical-align: middle;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
}

.plusdots {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.plusdots span {
    border-radius: 50%;
    background: var(--clay);
    width: 8px;
    height: 8px;
}

.plusdots.black span {
    background: rgba(0, 0, 0, 1);
}

.plusdots span:not(:last-child) {
    margin-right: 10px;
}

.form-submit {
    text-align: center;
}

.form-submit p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-row .col-12:has(.form-submit) {
    margin-bottom: 0;
}

.form-submit input[type="submit"] {
    min-width: 220px;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -2%;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}

a.btn:hover,
.btn:hover,
body form.frm-fluent-form .ff_submit_btn_wrapper .ff-btn-submit:hover,
.input-field,
input[type="submit"]:hover {
    background: rgba(17, 17, 17, 1);
    color: #fff;
}

a.btn-border {
    border-radius: 0;
    min-width: 130px;
    font-weight: 500;
    background-color: var(--clay);
    border-color: var(--clay);
}

a.btn-border:hover {
    border-color: rgba(0, 0, 0, 1);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    width: 100%;
}


img {
    height: unset;
    width: unset;
    vertical-align: middle;
}

.column-row {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}


.slick-arrow {
    position: absolute;
    height: 48px;
    width: 48px;
    background-color: #CE0D12;
    border: 0;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.11px solid #CE0D12;
}

.slick-arrow:hover {
    background-color: #FFD95D;
    border: 1.11px solid #FFD95D;
}

.slick-slider .slick-track {
    display: flex;
}

.slick-slider .slick-slide {
    height: auto;
}

.slick-prev {
    background-image: url(../images/slick-left.svg);
}

.slick-next {
    background-image: url(../images/slick-right.svg);
}

.custom-arrow .slick-arrow {
    position: static;
    transform: unset;
}

.custom-arrow .btn {
    margin-right: 18px;
}

.custom-arrow {
    display: flex;
    align-items: center;
}

.custom-arrow .slick-arrow.next {
    margin-left: 8px;
}

.custom-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.mobile-arrow {
    display: none;
}

.slick-prev.slick-disabled {
    background-image: url(../images/slick-black-left.svg);
    background-color: #ffffff;
    border: 1.11px solid #ffffff;
}

.slick-next.slick-disabled {
    background-image: url(../images/slick-black-right.svg);
    background-color: #ffffff;
    border: 1.11px solid #ffffff;
}


ul.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    width: 100%;
}

ul.slick-dots li {
    margin-bottom: 0;
    height: 12px;
    width: 12px;
    background: transparent;
    border: 1px solid rgba(85, 85, 85, 0.20);
    border-radius: 50%;
    margin: 0 4px;
    opacity: 1;
    list-style-type: none;
    cursor: pointer;
}

ul.slick-dots li button {
    font-size: 0;
    background: 0;
    border: 0;
    width: 0;
    box-shadow: unset;
}

ul.slick-dots li.slick-active {
    opacity: 1;
    background: #111;
    border: 1px solid #111;
}

.custom-slick {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.custom-dots {
    position: relative
}

.custom-dots .slick-dots {
    position: static;
    justify-content: start;
    margin-top: 0;
}


.input-field .wpcf7-spinner {
    display: none;
}

.input-field label {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    color: #1F2B4D;
    margin-bottom: 8px;
    display: inline-block;
}

.input-field label span {
    color: #dc3232;
}

.input-field p {
    opacity: 1;
}

.input-field input,
.input-field select,
.input-field input,
.input-field textarea {
    border-radius: 10px;
    border: 1px solid #E5EAF5;
    padding: 10.5px 15px;
    width: 100%;
    background-color: transparent;
    appearance: none;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #1F2B4D;
    outline: none;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center left 20px;
    font-family: "Poppins", sans-serif;
}

.input-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -20px;
}

.input-field {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}

.input-field textarea::placeholder {
    color: rgba(10, 10, 10, 0.50);
}

.input-field.full-width {
    width: 100%;
}

.input-field textarea {
    height: 112px;
}

.input-field input::placeholder {
    color: rgba(10, 10, 10, 0.50);
}

.wpcf7-acceptance .wpcf7-list-item [type="checkbox"] {
    height: 20px;
    width: 20px;
    border-radius: 0;
    border-radius: 4px;
    border: 1px solid rgba(10, 84, 74, 0.20);
    padding: 0;
    margin-right: 15px;
    appearance: auto;
    -webkit-appearance: checkbox;
    cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: center;
}

.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    color: rgba(10, 84, 74, 0.80);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

body .input-field select {
    background-image: url(../images/select-icon.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.wpcf7-form-control-wrap {
    position: relative;
    display: block;
    line-height: 1;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 14px;
    line-height: normal;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    font-weight: 600;
    padding: 10px;
}

.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}

.wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
    width: 33.33%;
    margin-bottom: 10px;
}

.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"] {
    border-radius: 2px;
    border-radius: 2px;
    border: 1px solid var(--Color-black, #1F2B4D);
    width: 16px;
    height: 16px;
    padding: 0;
    margin-right: 10px;
    appearance: auto;
    cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.wpcf7-checkbox .wpcf7-list-item label span {
    color: #1F2B4D;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    font-family: "Poppins", sans-serif;
}

.form-headding h2 {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    color: #111827;
    margin-bottom: 10px;
}

.form-headding p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #555;
}

.form-headding {
    margin-bottom: 23px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    font-size: 16px;
    line-height: 20px;
}

.wpcf7-form.submitting .form-submit input[type="submit"] {
    pointer-events: none;
}

.btn-div {
    display: flex;
    align-items: center;
}

.btn-div a:not(:last-child) {
    margin-right: 10px;
}

body.mfp-open {
    overflow: hidden !important;
}

body .mfp-container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    right: 0;
}

.mfp-content {
    padding: 50px 0;
}

.author-info-top .author-img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.author-info-top .author-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.author-info-top .author-content {
    margin-bottom: 40px;
}

.author-info-top .author-content h1 {
    margin-bottom: 20px;
}

.custom-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.custom-pagination .page-numbers {
    height: 40px;
    width: 40px;
    background-color: #EBB300;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
}

.custom-pagination .page-numbers:hover,
.custom-pagination .page-numbers.active {
    background-color: #EBB300;
}

/***********************************************
                    404 Css
***********************************************/

.error-404 .content_block {
    text-align: center;
}

.error-404 .content_block h1.page-title {
    font-size: 160px;
    line-height: 1;
    color: #111;
    margin-bottom: 10px;
}

.error-404.not-found {
    margin: 90px 0 120px 0;
}

.error-404 .content_block .btn {
    border-radius: 0;
    min-width: 200px;
    background-color: #111;
    color: #fff;
    font-size: 20px;
    line-height: normal;
    padding: 14px 24px;
    margin-top: 10px;
}

.error-404 .content_block .btn:hover {
    background-color: transparent;
    color: #111;
}

/***********************************************
                    Header Css
***********************************************/

.sticky-header {
    padding: 33px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
}

.site-header.is-sticky .sticky-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

body.admin-bar .sticky-header {
    top: 32px;
}

.site-branding {
    max-width: 125px;
}

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

.header-menu {
    display: flex;
    align-items: center;
}

.menu-toggler svg {
    vertical-align: middle;
}

.menu-toggler {
    height: 40px;
    width: 40px;
    margin-left: 50px;
    display: none;
}

.main-menu .menu li {
    display: inline-block;
    list-style: none;
    margin-bottom: 0;
}

.main-menu .menu li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: rgba(102, 102, 102, 1);
}

.footer-col .menu .current-menu-item>a,
.current-menu-item>a,
.main-menu .menu li.current-menu-parent>a,
.main-menu .menu li.current-menu-item>a,
.main-menu .menu li a:hover {
    color: var(--clay);
}

.main-menu .menu li:not(:last-child) {
    margin-right: 40px;
}

.header-cta {
    margin-left: 0;
    flex-shrink: 0;
}

.header-cta .btn {
    border-radius: 2px;
    border-color: var(--clay);
    background-color: var(--clay);
    padding: 10px 24px;
    font-weight: 500;
}

.header-cta .btn:hover {
    color: #fff;
    border-color: rgba(17, 17, 17, 1);
}

/***********************************************
                    Footer  Css
***********************************************/


.site-footer {
    padding: 48px 0;
    overflow: hidden;
    background: rgba(17, 17, 17, 1);
}

.site-footer * {
    color: #fff;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
}

.site-footer .footer-col {
    width: 32.33%;
}

.footer-top .site-branding img {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.footer-top .site-branding {
    margin-bottom: 5px;
}

.footer-top .site-branding .footer-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top .connect-info a {
    display: block;
    color: #c2c2c2;
    font-weight: 500;
    line-height: 24px;
    outline: 0;
}

.footer-top .connect-info a.btn-border {
    color: #111;

}

.footer-top .connect-info a:not(:Last-child) {
    margin-bottom: 16px;
}

.footer-col .menu a:hover,
.footer-top .connect-info a:hover,
.footer-address a:hover {
    color: var(--clay);
}

.footer-top .connect-info a.btn-border:hover {
    background-color: #fff;
    color: rgba(17, 17, 17, 1);
}

.footer-address {
    text-align: left;
    max-width: 150px;
    margin-left: auto;
}

.footer-address h3 {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-address a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #c2c2c2;
}

.footer-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-link ul li {
    display: inline-block;
}

.footer-link ul li:not(:last-child) {
    margin-right: 30px;
}

.copyright-text p,
.footer-link ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
    outline: none;
}

.footer-link ul li.current-menu-item>a,
.footer-link ul li a:hover {
    color: var(--clay);
}

.footer-bottom {
    padding-top: 48px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top .column-row,
.footer-bottom .column-row {
    justify-content: space-between;
}

.site-footer .footer-col.full-col {
    width: 100%;
    margin-bottom: 60px;
}

.site-footer .footer-col:last-child {
    width: 85px;
}

.site-footer .footer-col.full-col .site-branding {
    max-width: 515px;
}

.site-footer .footer-col.full-col .site-branding h2 {
    font-size: 396px;
    line-height: 295px;
    color: #232323;
    text-align: left;
    margin-bottom: 15px;
    margin-left: -23px;
}

.footer-text {
    text-align: left;
    color: #fff;
}

.footer-text p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 26px;
}

.site-footer .footer-col h3 {
    font-size: 16px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 500;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.footer-col .menu a {
    display: block;
    color: #c2c2c2;
    font-weight: 500;
    line-height: 24px;
    outline: 0;
}

.footer-col .menu {
    list-style-type: none;
}

.footer-col .menu li:not(:last-child) {
    margin-bottom: 16px;
}

.custom-line-dots {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 15px;
}

.custom-line-dots .line {
    flex: 1;
    height: 1px;
    background: #3a3a3a;
}

.custom-line-dots .plusdots {
    margin: 0 0 0 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.form-row .col-6 {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 12px;
}


.form-row .col-12 {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 12px;
}

.form-group label {
    color: var(--black-p, #111);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.35px;
    margin-bottom: 10px;
    display: block;
}

.form-group p br {
    display: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    border-radius: 8px;
    border: 1px solid rgba(234, 234, 234, 1);
    background: #FAFAFA;
    height: 50px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 17.5px;
    letter-spacing: 0px;
    font-family: "Inter", sans-serif;
    color: rgba(17, 17, 17, 1);
    padding: 10px 20px;
    outline: none;
}

select {
    width: 100%;
    border-radius: 8px;
    font-size: 14px;
    line-height: 17.5px;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    padding: 12px 40px 12px 20px;
    outline: none;
    background: #FAFAFA;
    border: 1px solid #EAEAEA;
    height: 48px;
    appearance: none;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 21px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.form-group .wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0;
    width: fit-content;
}

.form-group .wpcf7-radio .wpcf7-list-item label {
    margin-top: 10px;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.form-group [type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;

}

.form-group .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    line-height: normal;
}

.form-group .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label,
textarea {
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Inter", sans-serif;
}

.form-group:has(.wpcf7-radio) p>label {
    margin-bottom: 16px;
}

textarea {
    width: 100%;
    height: 120px;
    resize: none;
}


.checkbox-grid .wpcf7-checkbox {
    margin-bottom: -20px;
    justify-content: space-between;
}

.checkbox-grid .wpcf7-checkbox span.wpcf7-list-item {
    width: 49%;
    margin-bottom: 20px;
}

.wpcf7-checkbox .wpcf7-list-item label span {
    font-weight: 500;
    font-size: 14px;
    line-height: 17.5px;
    letter-spacing: 0px;
    font-family: "Inter", sans-serif;
    color: rgba(17, 17, 17, 1);
    cursor: pointer;
}

/* Single Blog */

.return-strip a,
.insight-hero ul li {
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b6b6b;
    font-weight: 600;
    display: inline-block;
}

.return-strip a:hover {
    color: #d88563;
}

.insight-hero .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 40px;
    border-bottom: 1px solid var(--line);
}

.insight-hero {
    padding-top: 30px;
}

.insight-hero ul {
    list-style-type: none;
}

.insight-hero ul li {
    display: inline-block;
}

.insight-hero .return-strip ul li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
    position: relative;
}

.insight-hero .return-strip ul li:not(:last-child):after {
    content: '/';
    color: #d8d8d8;
    position: absolute;
    right: -6px;
}

.insight-hero .article-header {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.insight-hero .article-meta ul li {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b6b6b;
    font-weight: 700;
    margin-bottom: 12px;
}

.insight-hero .article-meta ul li.num {
    display: inline-block;
    padding: 5px 11px;
    background: #d88563;
    color: #FFFFFF;
    font-weight: 800;
    margin-right: 12px;
}

.insight-hero .article-meta {
    margin-bottom: 16px;
}

.insight-hero h1.article-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.insight-hero p.article-deck {
    font-weight: 400;
    line-height: 1.4;
    font-size: clamp(19px, 2.1vw, 23px);
}

.insight-hero .article-byline {
    margin-top: 36px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b6b6b;
    font-weight: 600;
}

.post-navigation-section {
    background-color: #fff;
}

.post-navigation-section .nav-box {
    display: block;
    background-color: #f4f1ea;
    text-decoration: none;
    color: #000;
    height: 100%;
    transition: background 0.3s ease;
    padding: 24px 32px;
}

.post-navigation-section .nav-box:hover {
    background-color: #ede9df;
}

.post-navigation-section .nav-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b6b6b;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.post-navigation-section .nav-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.post-navigation-section .row {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-navigation-section .nav-box:hover {
    background: #111111;
    color: #FFFFFF;
}

.post-navigation-section .nav-box:hover h3.nav-title {
    color: #ffffff;
}

/***********************************************
                    Responsive  Css
***********************************************/


@media only screen and (min-width:576px) {
    .container {
        max-width: 540px;
    }

    body .mfp-container {
        max-width: 540px;

    }
}

@media only screen and (min-width:768px) {
    .container {
        max-width: 720px;
    }

    body .mfp-container {
        max-width: 720px;
    }
}

@media only screen and (min-width:992px) {
    .container {
        max-width: 960px;
    }

    body .mfp-container {
        max-width: 960px;
    }

    .sidebar-header {
        display: none;
    }

    .main-menu .header-cta {
        display: none;
    }
}

@media only screen and (min-width:1200px) {
    .container {
        max-width: 1230px;
    }

}

@media only screen and (max-width:1199px) {
    body {
        padding-top: 83px;
    }

    h1,
    .h1 {
        font-size: 50px;
        line-height: normal;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: normal;
    }

    h3,
    .h3 {
        font-size: 30px;
        line-height: 28.6px;
    }

    h4,
    .h4 {
        font-size: 24px;
        line-height: normal;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: normal;
    }

    h6,
    .h6 {
        font-size: 18px;
        line-height: normal;
    }


    .btn-div a:not(:last-child) {
        margin-right: 10px;
    }

    /**********************************************
                        Header Css
    ***********************************************/
    .sticky-header {
        padding: 20px 0;
    }

    .social-link a:not(:last-child) {
        margin-right: 10px;
    }

    .top-bar a img {
        margin-right: 5px;
    }

    .user-info a:not(:last-child) {
        margin-right: 10px;
        padding-right: 10px;
    }

    .main-menu .menu li:not(:last-child) {
        margin-right: 30px;
    }

    ul .wpml-ls-menu-item a {
        display: inline-block;
    }

    body.menu-open .sidebar-overlay {
        opacity: 1;
        visibility: visible;
        width: 100vw;
    }

    .sidebar-overlay {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left: 0;
        top: 0;
        width: 0;
        height: 100vh;
        display: inline-block;
        background-color: rgb(12 13 14 / 50%);
        z-index: 1;
        transition: all 0.8s;
    }

    /***********************************************
                        Footer Css
    ***********************************************/

    .error-404.not-found {
        margin: 80px 0 100px 0;
    }

    .error-404 .content_block h1.page-title {
        font-size: 130px;
    }

}

@media only screen and (max-width:782px) {
    body.admin-bar .sticky-header {
        top: 46px;
    }
}

@media only screen and (max-width:991px) {

    body {
        padding-top: 81px;
    }

    /***********************************************
                        Footer Css
    ***********************************************/

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 20px;
        line-height: 18.6px;
    }

    h4,
    .h4 {
        font-size: 18px;
        line-height: normal;
    }

    h5,
    .h5 {
        font-size: 16px;
        line-height: normal;
    }

    h6,
    .h6 {
        font-size: 14px;
        list-style: none;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea {
        height: 45px;
        padding: 10px 15px;
    }

    .footer-main {
        padding: 40px 0;
    }

    .contact-info-box {
        min-width: 350px;
    }

    .form-submit input[type="submit"] {
        font-size: 20px;
        line-height: 34px;
        letter-spacing: normal;
        min-width: 190px;
        padding: 10px 24px;
    }

    .header-cta {
        margin: 20px 0 0 0;
    }

    .header-menu+.header-cta {
        display: none;
    }

    .header-cta a.btn {
        font-size: 20px;
        line-height: 30px;
        padding: 0;
        border: 0;
        color: rgba(102, 102, 102, 1);
        font-weight: 500;
    }

    .menu-toggler {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .header-menu {
        position: fixed;
        background: #ffffff;
        top: 0;
        height: 100vh;
        z-index: 2;
        left: 0;
        max-width: 394px;
        width: 100%;
        overflow: auto;
        transform: translateX(-100%);
        transition: all 0.6s;
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .header-menu {
        transform: translateX(0)
    }

    .main-menu .menu li {
        display: block;
    }

    .main-menu .menu li a {
        font-size: 20px;
        line-height: 30px;
    }

    .main-menu .menu li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .main-menu .menu li .sub-menu {
        margin-top: 15px;
        margin-left: 15px;
        display: none;
    }

    .main-menu {
        padding: 40px 20px;
    }



    .sidebar .social-link a {
        height: 44px;
        width: 44px;
    }

    .menu-item-has-children .arrow {
        width: 30px;
        background-image: url(../images/arrow-down.svg);
        height: 30px;
        position: absolute;
        right: 0;
        top: 0;
        transform: unset;
        background-repeat: no-repeat;
        background-position: center;
    }

    .sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }


    .main-menu {
        display: block;
    }

    .post-navigation-section .nav-box {
        padding: 20px;
    }

    .header-cta a.btn {
        background-color: transparent !important;
    }
}

@media only screen and (max-width:782px) {
    .admin-bar .header-menu {
        top: 46px;
    }
}

@media only screen and (max-width:600px) {
    .admin-bar .site-header.is-sticky {
        top: 0;
    }

    .admin-bar .is-sticky .header-menu {
        top: 0;
    }
}

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

    a.btn,
    .btn,
    .input-field input[type="submit"] {
        padding: 13px 24px;
    }

    .btn-div {
        display: block;
    }

    .btn-div a:not(:last-child) {
        margin-bottom: 20px;
    }

    .form-row .col-6,
    .form-row .col-12 {
        width: 100%;
        margin-bottom: 20px;
    }

    .checkbox-grid .wpcf7-checkbox span.wpcf7-list-item {
        width: 100%;
    }

    .form-submit input[type="submit"] {
        font-size: 18px;
        line-height: 32px;
        min-width: 170px;
        padding: 8px 24px;
    }


    /***********************************************
                    Header  Css
    ***********************************************/
    .site-footer .footer-col {
        width: 100%;
        text-align: left;
    }

    .site-footer .footer-col:not(:last-child) {
        margin-bottom: 30px;
    }

    .footer-top .connect-info {
        text-align: left;
    }

    .footer-address {
        margin: 0 auto;
    }

    .footer-address,
    .footer-address h3 {
        text-align: left;
    }

    .copyright-text {
        width: 100%;
        text-align: center;
    }

    .footer-bottom .column-row {
        align-items: center;
    }

    .footer-link {
        width: 100%;
        margin-top: 5px;
        text-align: center;
    }

    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }

    .footer-top .site-branding {
        margin: 0 auto 5px;
    }

    .footer-link ul li:not(:last-child) {
        margin-right: 15px;
    }


    /***********************************************
                    Footer  Css
    ***********************************************/

    .error-404.not-found {
        margin: 40px 0 60px 0;
    }

    .error-404 .content_block h1.page-title {
        font-size: 90px;
    }

    .error-404 .content_block .btn {
        font-size: 16px;
        min-width: unset;
    }

    .insight-hero .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .insight-hero .article-header {
        padding: 40px 0 40px 0;
    }

    .post-navigation-section .row {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .footer-text p {
        text-align: left;
        font-size: 16px;
    }

    .site-footer .footer-col h3 {
        margin-bottom: 10px;
    }

    .site-footer .footer-col.full-col .site-branding {
        max-width: 240px;
        margin-left: 0;
    }
}

@media only screen and (max-width:575px) {
    .insight-hero .container {
        max-width: 100%;
    }
}