:root {
  --blue: #274aa7;
  --white: #fff;
}
*{
  word-break: break-word !important;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  /* background: gray; */
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ************************************** */
.content-area {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.content-wrap {
  box-shadow: 0px 15px 15px -10px rgba(0, 0, 0, 0.05);
  background: var(--white);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  /* -webkit-appearance: none; */
  color: #4a5568;
  border: 1px solid #cbd5e0;
  border-radius: 3px;
  padding: 0.4em 0.5em;
  max-width: 100%;
  background: var(--white);
  box-shadow: 0 0 0 -7px rgba(0, 0, 0, 0);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #1a202c;
  border-color: #718096;
  outline: 0;
  box-shadow: 0 5px 15px -7px rgba(0, 0, 0, 0.1);
}
input,
select,
optgroup,
textarea {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #2d3748;
  resize: vertical;
}
input[type="submit"] {
  border-radius: 3px;
  background: var(--blue);
  color: var(--white);
  padding: 0.4em 1em;
  border: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  display: inline-block;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active {
  color: var(--white);
  background: #215387;
}
/* -------------------------------header----------------------------- */

.navbar {
  background-color: #153a8e;
}
li.nav-item > a.nav-link {
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: var(--white);
  padding: 0.6em !important;
}
.nav-item > .nav-link:hover {
  color: var(--white);
}
nav {
  height: 80px;
}

/* ---- RESOURCE BUTTON BLOCK ---- */
.resource-btn {
  background: #1d4cb7;
  color: var(--white);
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  display: block;
  transition: 0.2s ease;
}

.resource-btn:hover {
  background: #153a8e;
  color: var(--white);
}

/* ---- FOOTER ---- */
.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.navbar-brand img {
  max-width: 200px;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
/* offcanvas menu links */
.offcanvas {
  width: 90% !important ;
  background: #090c10;
}
.off-link {
  color: var(--white);
  font-size: 14px;
  padding-top: 1em;
  padding-bottom: 1em;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.off-link:hover {
  color: #99b7ff;
}
.offcanvas-body {
  padding: 0 1.5em 1.5em;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
  /* opacity: 0; */
}
.offcanvas-menu li > a.active {
  color: var(--blue);
}

/* ========================================== mains ection=============================== */

.entry-content-wrap {
  padding: 2rem;
}
.single-content h2 {
  /* margin: 1.5em 0 .5em; */
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #1a202c;
  margin-bottom: 14px !important;
}
.single-content p {
  font-size: 17px;
}

/* EXPLORE RESOURCES SECTION */
.resource-box {
  background: #1d4cb7;
  color: var(--white);
  display: block;
  width: 100%;
  padding: 25px 30px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
  /* transition: 0.25s ease-in-out; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.resource-box:hover {
  background-color: #2255ca;
  /* transform: translateY(-2px); */
}

/* Text spacing consistency */
.explore-resources h2 {
  margin: 0 !important;
}
.explore-resources h2 .resource-box {
  line-height: 1.4;
  padding: 1.25em 2.375em;
}

/* =======--------============ Footer ======================== */
a.footer-icon {
  width: 2em;
  height: 2em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  transition: all 0.2s ease-in-out;
  border: 2px none transparent;
  border-radius: 3px;
  color: var(--white);
}
a.footer-icon.footer-fb {
  background-color: #3b5998;
}
a.footer-icon.footer-twitter {
  background: #1da1f2;
}
a.footer-icon.footer-pint {
  background: #c92228;
}
a.footer-icon.footer-youtube {
  background: #ff3333;
}
a.footer-icon.footer-linkedin {
  background: #4875b4;
}
/* .site-top-footer-inner-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
} */
.site-footer {
  font-style: normal;
}
.footer-top-bg {
  background: var(--blue);
}
.site-top-footer-inner-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-html {
  font-style: normal;
  font-size: 14px;
  padding: 1em 0;
  color: var(--white);
}
.site-bottom-footer-wrap {
  background: #1a202c;
}

.footer-navigation {
  height: auto;
}
.footer-navigation .footer-menu {
  display: flex;
  flex-wrap: wrap;
}

.footer-navigation > ul > li > a {
  padding-left: calc(1.2em / 2);
  padding-right: calc(1.2em / 2);
  padding-top: calc(0.6em / 2);
  padding-bottom: calc(0.6em / 2);
  color: var(--white);
}
.site-bottom-footer-inner-wrap {
  min-height: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  /* grid-column-gap: 30px; */
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> LAW >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.entry-content-wrap {
  padding: 2rem;
}
.entry-title {
  word-wrap: break-word;
}
.entry-content{
  word-break: break-word;
  margin-top: 32px;
  padding: 0 10px;
}
.entry-content ul {
  list-style: disc;
  margin: 0 0 2rem;
  font-size: 17px;
  padding-left: 2em;
}
.entry-content ul li > a,
.underline-a a {
  text-decoration: underline;
  color: var(--blue);
  text-underline-offset: 0.1em;
  font-size: 17px;
  transition: all 0.1s linear;
}
.entry-content ul li > a:hover,
.entry-content ul li > a:active,
.entry-content ul li > a:focus,
.underline-a a:hover,
.underline-a a:focus,
.underline-a a:active {
  color: var(--blue);
  text-underline-offset: 0.25em;
  outline: 0;
}

.check-h3 {
  font-weight: 700;
  font-size: 28px;
}
.check-p,
.check-ul {
  font-size: 17px;
}
/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.contact-form input {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
}
.disclaimer-a a{
  color: #274aa7;
  text-underline-offset: 0.1em;
  transition: all 0.1s linear;
}
.disclaimer-a a:hover,
.disclaimer-a a:active,
.disclaimer-a a:focus
{
   color: var(--blue);
  text-underline-offset: 0.25em;
  outline: 0;
}

/* //////////////////////////////////>>>> sub pages of law pages >>>>>>>>>>>\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.site-container{
  max-width: 842px;
  margin: 0 auto;
    /* padding: 0 1.5rem; */
}
.breadcrumb li a{
  font-size: 13px;
  color: #4A5568;
  text-decoration: underline;
}
.breadcrumb li{
  font-size: 13px ;
}
.entry-meta {
    justify-content: center;
    font-size: 80%;
    margin: 1em 0;
    display: flex;
    flex-wrap: wrap;
}
.entry-meta a{
  color: #2d3748;
}
.entry-meta>*:after {
    margin-left: .5rem;
    margin-right: .5rem;
    content: "";
    display: inline-block;
    background-color: currentColor;
    height: .25rem;
    width: .25rem;
    opacity: .8;
    border-radius: 9999px;
    vertical-align: .1875em;
}
/* TOC Box */
.toc-container {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    background: #f9f9f9;
    max-width: 800px;
    margin: 20px 0;
}

/* Header */
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toc-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Toggle Button */
.toc-toggle-btn {
    border: 1px solid #ccc;
    background: #f8f8f8;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}

.toc-icon {
    display: none;
}

.list-icon {
    display: inline;   /* default */
}

/* Content */
/* .toc-content li a:active, */
.toc-content li a:visited {
  color: #9f9f9f !important;
}

.toc-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0 !important;
}

.toc-content ul li {
    margin: 4px 0;
    line-height: 1.5;
}
.toc-content .table-ul{
      margin-left: 20px;
      margin-bottom: 0;

}
.toc-content .table-ul li{
  margin: 0 !important;
}
.toc-content .table-ul li > a{
  font-size: 14px !important;
}
.toc-content ul li a{
  font-size: 16px;
  color: #444 !important;
  font-weight: 500;
  text-decoration: none;
}
.toc-content ul li a:hover{
  text-decoration: underline;
}
/* Smooth toggle animation */
.toc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease;
}

/* When active/open */
.toc-content.open {
    max-height: 2000px;  /* enough for long TOC */
    opacity: 1;
}

/* slider of all the pages changes */
.post-nav-slider {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5; */
}

.post-nav-slider .nav-item {
    width: 100%;
    text-decoration: none;
    color: #090c10;
}
.post-nav-slider .nav-item:hover,
.post-nav-slider .nav-item:active,
.post-nav-slider .nav-item:focus {
  color: var(--blue);
}

.post-nav-slider .nav-item .label {
    font-size: 13px;
    color: #090c10;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}
.post-nav-slider .nav-item .next-lable{
  direction: rtl;
}
.post-nav-slider .nav-item .title {
    margin-top: 5px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 400;
    text-align: start;
}

.post-nav-slider .divider {
    width: 1px;
    height: 40px;
    background: #d0d4d9;
}

/* Arrows */
.post-nav-slider .arrow {
    font-size: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .post-nav-slider {
        flex-direction: row;
        text-align: center;
        gap: 25px;
    }

    .post-nav-slider .divider {
        height: 40px;
        width: 1px;
    }

    .post-nav-slider .title {
        font-size: 15px;
    }
}


.entry-author-profile{
  padding-left: 100px;
}
.entry-author-avatar{
  left: 0 ;
}
.entry-author-profile b a{
  font-size: 20px;
  color: #171a1d;
}
.entry-author-profile p {
    margin: 1em 0;
    font-size: 17px;
}

.d-blockk li span,
.d-blockk li strong{
  display: block;
  font-size: 17px;
  line-height: 1.8rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
ol{
  font-size: 17px;
}
.own-monkey tr th{
  font-weight: 400;
  font-size: 17px;
}

.law-school{
  height: 68vh;
}