
:root{
  --doc-navy:#020F20;
  --doc-cream:#F9F4E9;
  --doc-cream-2:#EFE7D3;
  --doc-card:#F4ECD5;
  --doc-gold:#A47B17;
  --doc-gold-2:#DCA755;
  --doc-ink:#282620;
  --doc-muted:#6f6857;
}

body.docs-page{
  background-color:var(--doc-cream);
  padding-bottom:0;
}

.docs-hero{
  margin-top:90px;
}
.docs-hero .container{
  position:relative;
  padding-top:55px;
  padding-bottom:48px;
}

.docs-hero .outer{
  position:relative; z-index:2;
}
.docs-hero h1{
  margin:0;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:44px;
  line-height:54px;
  color:#fff;
  letter-spacing:.01em;
}
.docs-hero h1 span{ color:var(--doc-gold-2); }
.docs-hero .spacer{
  margin:16px 0 12px;
  display:flex;
}
.docs-hero .spacer img{ max-width:230px; }
.docs-hero .crumbs{
  font-size:12px;
  letter-spacing:.16em;
  color:#cdb98a;
  margin:0 0 8px;
  text-transform:uppercase;
}
.docs-hero .crumbs a{ color:#cdb98a; text-decoration:none; }
.docs-hero .crumbs a:hover{ color:var(--doc-gold-2); }
.docs-hero .crumbs span.sep{ color:rgba(220,167,85,.55); margin:0 8px; }
.docs-hero .tag{
  font-size:13px;
  color:#cdb98a;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:6px 0 12px;
}
.docs-hero .lead{
  color:#fff;
  font-size:15px;
  line-height:25px;
  max-width:560px;
  margin:0;
}

/* ---- Documents listing section ---- */
.docs-listing{
  background-color:var(--doc-cream);
  padding:60px 0 30px;
}
.docs-listing .head{
  text-align:center;
  margin-bottom:36px;
}
.docs-listing .head p{
  margin:0;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:26px;
  letter-spacing:.06em;
  color:var(--doc-ink);
}
.docs-listing .head .spacer{
  display:flex; justify-content:center;
  margin:12px 0 6px;
}
.docs-listing .head .spacer img{ max-width:230px; }
.docs-listing .head span.sub{
  display:block;
  font-size:14px;
  color:var(--doc-muted);
  margin-top:6px;
}

.docs-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}
.doc-card{
  background-color:var(--doc-card);
  border:1px solid rgba(164,123,23,.35);
  border-radius:10px;
  padding:26px 18px 22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  transition:.3s ease all;
}
.doc-card .ic{
  width:74px; height:74px;
  margin:0 auto 12px;
  border-radius:50%;
  background:rgba(220,167,85,.18);
  display:flex; align-items:center; justify-content:center;
}
.doc-card .ic img{ width:38px; height:auto; }
.doc-card h3{
  margin:6px 0 8px;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  color:var(--doc-ink);
  line-height:1.35;
  min-height:38px;
}
.doc-card p{
  margin:0 0 16px;
  font-size:12.5px;
  line-height:1.55;
  color:var(--doc-muted);
  flex:1;
}
.doc-card .actions{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.doc-card .btn-view,
.doc-card .btn-dl{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:5px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  transition:.25s ease all;
}
.doc-card .btn-dl{
  background:linear-gradient(to bottom, #DCA755, #AA7D39);
  color:#1e1c1d;
}
.doc-card .btn-dl:hover{ filter:brightness(1.08); }
.doc-card .btn-view{
  background:transparent;
  border:1px solid var(--doc-gold);
  color:var(--doc-gold);
}
.doc-card .btn-view:hover{
  background:var(--doc-gold);
  color:#fff;
}

/* ---- How it works strip ---- */
.docs-how{
  background-color:var(--doc-cream-2);
  padding:50px 0;
}
.docs-how .head{
  text-align:center;
  margin-bottom:28px;
}
.docs-how .head p{
  margin:0;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:.06em;
  color:var(--doc-ink);
}
.docs-how .head .spacer{
  display:flex; justify-content:center;
  margin:10px 0 4px;
}
.docs-how .head .spacer img{ max-width:200px; }
.docs-how .head span.sub{
  display:block;
  font-size:13.5px;
  color:var(--doc-muted);
  margin-top:6px;
}
.docs-how .steps{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:14px;
}
.docs-how .step{
  background:#FFF8E4;
  border:1px solid rgba(164,123,23,.22);
  border-radius:8px;
  padding:18px 14px;
  text-align:center;
}
.docs-how .step .num{
  width:38px; height:38px;
  margin:0 auto 10px;
  border-radius:50%;
  background:linear-gradient(to bottom, #DCA755, #AA7D39);
  color:#1e1c1d;
  font-weight:800; font-size:15px;
  display:flex; align-items:center; justify-content:center;
}
.docs-how .step h5{
  margin:0 0 6px;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  color:var(--doc-ink);
}
.docs-how .step p{
  margin:0;
  font-size:12px;
  line-height:1.5;
  color:var(--doc-muted);
}

/* ---- Individual document page ---- */
.docs-detail{
  background-color:var(--doc-cream);
  padding:50px 0 30px;
}
.docs-detail .wrap{
  max-width:880px;
  margin:0 auto;
}
.docs-detail .crumbs-ink{
  text-align:center;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--doc-gold);
  margin:0 0 18px;
}
.docs-detail .crumbs-ink a{ color:var(--doc-gold); text-decoration:none; }
.docs-detail .crumbs-ink a:hover{ color:var(--doc-gold-2); }
.docs-detail .crumbs-ink .sep{ color:rgba(164,123,23,.5); margin:0 8px; }

.doc-detail__title{
  text-align:center;
  margin:0 0 8px;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:28px;
  letter-spacing:.06em;
  color:var(--doc-ink);
}
.doc-detail__title span{ color:var(--doc-gold); }
.doc-detail__sub{
  text-align:center;
  font-size:13.5px;
  color:var(--doc-muted);
  margin:0 auto 26px;
  max-width:600px;
  line-height:1.6;
}
.doc-detail__spacer{
  display:flex; justify-content:center; margin:6px 0 24px;
}
.doc-detail__spacer img{ max-width:230px; }

.doc-detail__card{
  background:var(--doc-card);
  border:1px solid rgba(164,123,23,.35);
  border-radius:12px;
  padding:42px 46px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
  position:relative;
}
.doc-detail__card:before, .doc-detail__card:after{
  content:""; position:absolute; left:0; right:0; height:5px;
  background:linear-gradient(90deg, #DCA755, #AA7D39);
}
.doc-detail__card:before{ top:0; border-radius:12px 12px 0 0; }
.doc-detail__card:after{ bottom:0; border-radius:0 0 12px 12px; }

.doc-detail__brand{
  text-align:center;
  margin-bottom:14px;
}
.doc-detail__brand img{ max-width:220px; height:auto; }
.doc-detail__name{
  text-align:center;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:22px;
  letter-spacing:.08em;
  color:var(--doc-ink);
  margin:6px 0 4px;
}
.doc-detail__co{
  text-align:center;
  font-size:12.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--doc-gold);
  margin:0 0 22px;
}
.doc-detail__rule{
  height:1px;
  background:linear-gradient(90deg, rgba(164,123,23,0), rgba(164,123,23,.55), rgba(164,123,23,0));
  margin:22px 0;
}
.doc-detail__about{
  font-size:14px;
  line-height:1.75;
  color:var(--doc-ink);
  margin:0 0 18px;
  text-align:justify;
}
.doc-detail__about p{ margin:0 0 12px; }

.doc-detail__sections{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  margin-top:14px;
}
.doc-detail__section{
  background:#FFF8E4;
  border:1px solid rgba(164,123,23,.22);
  border-radius:8px;
  padding:18px 18px 16px;
}
.doc-detail__section h4{
  margin:0 0 10px;
  font-family:"Open Sans", sans-serif;
  font-weight:700;
  font-size:13px;
  letter-spacing:.1em;
  color:var(--doc-gold);
  text-transform:uppercase;
}
.doc-detail__section ul{
  margin:0; padding:0; list-style:none;
}
.doc-detail__section li{
  font-size:13px;
  line-height:1.65;
  color:var(--doc-ink);
  padding:4px 0 4px 20px;
  position:relative;
}
.doc-detail__section li:before{
  content:""; position:absolute; left:0; top:11px;
  width:7px; height:7px;
  border-right:2px solid var(--doc-gold);
  border-bottom:2px solid var(--doc-gold);
  transform:rotate(-45deg);
}

.doc-detail__actions{
  margin:30px 0 10px;
  display:flex; justify-content:center; gap:14px;
  flex-wrap:wrap;
}
.doc-detail__actions a{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none;
  padding:14px 26px;
  border-radius:6px;
  font-size:12.5px; font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:.25s ease all;
}
.doc-detail__actions a.dl{
  background:linear-gradient(to bottom, #DCA755, #AA7D39);
  color:#1e1c1d;
  box-shadow:0 8px 22px rgba(220,167,85,.28);
}
.doc-detail__actions a.dl:hover{ filter:brightness(1.08); transform:translateY(-1px); }
.doc-detail__actions a.back{
  background:#1B1A18;
  color:#fff;
}
.doc-detail__actions a.back:hover{ background:#000; }
.doc-detail__actions a img.ic{
  width:16px; height:16px;
}

/* ---- File meta strip on detail page ---- */
.doc-detail__meta{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  text-align:center;
}
.doc-detail__meta .item{
  background:#FFF8E4;
  border:1px solid rgba(164,123,23,.22);
  border-radius:6px;
  padding:14px 10px;
}
.doc-detail__meta .item p{
  margin:0 0 4px;
  font-size:11px; letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--doc-gold);
}
.doc-detail__meta .item b{
  font-size:14px;
  color:var(--doc-ink);
  font-weight:700;
}

/* ---- CTA banner on detail pages ---- */
.docs-cta{
  padding-top:30px;
  padding-bottom:35px;
}
.docs-cta .container{
  position:relative;
  border-radius:25px;
  background:url('../icons/boat-back.png') no-repeat bottom right;
  background-size:contain;
  background-color:var(--doc-navy);
  padding:35px 80px;
  overflow:hidden;
}
.docs-cta .container:before{
  content:""; position:absolute; left:38%; top:0; height:100%; width:50%;
  background:linear-gradient(to right, rgba(2,15,32,1) 10%, rgba(2,15,32,0));
}
.docs-cta .inner{ position:relative; z-index:2; }
.docs-cta h2{
  margin:0;
  font-size:24px; line-height:30px;
  color:#fff; font-weight:700;
}
.docs-cta .spacer{ display:flex; margin:12px 0 10px; }
.docs-cta .spacer img{ max-width:230px; }
.docs-cta p{ color:#fff; margin:0 0 16px; font-size:14px; line-height:22px; }
.docs-cta a.cta-btn{
  display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(to bottom, #DCA755, #AA7D39);
  color:#1e1c1d;
  text-decoration:none;
  padding:12px 24px;
  border-radius:6px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  transition:.25s ease all;
}
.docs-cta a.cta-btn:hover{ filter:brightness(1.08); }
.docs-cta a.cta-btn img{ width:16px; height:auto; }

.docs-hero{
  text-align: center;
}

.docs-hero h1{
  color:#000613;
  margin-bottom: 7px;
}
.docs-hero .container{
  padding-top: 22px;
  padding-bottom: 22px;
}
.docs-hero .spacer{
  justify-content: center;
}
.docs-hero .tag{
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color:#DCA755;
  position: relative;
}
.docs-hero .tag:before{
  content:"";
  position: absolute;
  left:-30px;
  width: 20px;
  top:50%;
  transform:translateY(-50%);
  background-color: #E5AE56;
  height:1px;
}
.docs-hero .tag:after{
  content:"";
  position: absolute;
  right:-30px;
  width: 20px;
  top:50%;
  transform:translateY(-50%);
  background-color: #E5AE56;
  height:1px;
}

.docs-hero .outer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.docs-hero .outer p.lead{
  font-size: 12px;
  font-weight: 500;
  margin:0px;
  line-height: 18px;
  color:#0F1929;
}
.docs-hero{
  
  border-top:1px solid #DCA755;
  border-bottom:1px solid rgba(0,0,0,.1);
  background-color: #FAF7F2;
  position: relative;
  z-index: 100;
}
.docs-hero:before{
  content:"";
  position: absolute;
  left:0px;
  top:0px;
  width: 500px;
  height: 100%;
  background:url('../icons/map-documents.png');
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
}
.docs-hero .container{
  padding:35px 0px;
}

.docs-listing{
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #fff;
}
.docs-listing .head>p{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 28px;
  color: #0F1929;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}
.docs-listing .head span.sub{
  font-size: 12px;
  line-height: 16px;
  color:#0F1929;
  font-weight: 500;
}
.docs-listing .head .spacer{
  margin:12px 0px;
}
.docs-listing .head{
  margin-bottom: 20px;
}
.docs-grid{
  gap:8px;
}
.doc-card{
  padding:12px;
}
.doc-card h3{
  font-size: 13px;
  line-height: 16px;
  color:#0F1929;
  letter-spacing: 0.2px;
  min-height: 0px;
}
.doc-card p{
  min-height: 0px;
  font-size: 10px;
  line-height: 14px;
   color:#0F1929;
   font-weight: 500;
}
.doc-card{
  background-color: transparent;
  border:1px solid rgba(164,123,23,.35)!important;
}
.doc-card .btn-view{
  background-color: #000!important;
  color:#fff!important;
  border-color:#000!important;
}
.doc-card .btn-view:hover{
  opacity:.7;
}
.doc-card .btn-view span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.doc-card .btn-view{
  letter-spacing: 0.5px;
  font-size: 10px;
}
.doc-card .btn-view img{
  min-width: 15px;
  max-width: 15px;
}
.doc-card .btn-dl{
  font-size: 10px;
  letter-spacing: 0.5px;
  background:none;
  border:1px solid #AA7D39;
}

.doc-card .btn-dl img{
  min-width: 12px;
  max-width: 12px;
}
.doc-card .btn-dl {
  color:#AA7D39;
}
.doc-card .btn-dl  span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.doc-card .ic{
  width: 100%;
  height: auto;
  background-color: none;
  border-radius: 0px;
  background:none;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 170px;
  margin-bottom: 0px;
}
.doc-card .ic>img{
  width: 90%;
}
.docs-how{
  padding:0px;
  padding-top: 25px;
  padding-bottom: 40px;
  background:none;
  background-color: #fff;
}
.docs-how .head p{
  font-size: 24px;
  line-height: 28px;
}
.docs-how .head .spacer img{
  max-width: 230px;
}
.docs-how .head .spacer{
  margin:12px 0px;
}

.docs-how .head span.sub{
  font-size: 12px;
  line-height: 16px;
  color: #0F1929;
  font-weight: 500;
}
    
.docs-how .head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
}
.docs-how .head p{
  position: relative;
}
.docs-how .head p:before{
  content:"";
  position: absolute;
  left:-45px;
  width: 35px;
  top:50%;
  transform:translateY(-50%);
  height: 1px;
  background-color: #DCA755;
}
.docs-how .head p:after{
  content:"";
  position: absolute;
  right:-45px;
  width: 35px;
  top:50%;
  transform:translateY(-50%);
  height: 1px;
  background-color: #DCA755;
}


.docs-how .container{
  max-width: 982px;
  background-color: #FBFAF8;
  border:1px solid rgba(0,0,0,.1);
  background:linear-gradient(to bottom right , rgba(251,250,248,1), rgba(251,250,248,0.6));
  padding:10px 15px;
  border-radius: 12px;
}
.docs-how .step .num{
    width: auto;
    height: auto;
    position: static;
    background:none;
    border-radius: 0px;
}
.docs-how .step .num>img{
  width: 100%;
  min-width: 0px;
  max-width: 80px;
}
.docs-how .step{
  background-color: transparent;
  background:none;
  border:0px;
}
.docs-how .step{
  position: relative;
}
.docs-how .step>img{
  position: absolute;
  top:65px;
  max-width: 70px;
  right:-40px;
}
.docs-hero .spacer{
  display: none;
}
.docs-hero .crumbs a , .docs-hero .crumbs{
  font-size: 11px;
  line-height: 14px;
  color:#DCA755;
  font-weight: 500;
}
.docs-hero .crumbs span.sep{
  color:rgba(220,167,85,1);
  font-size: 12px;
  position: relative;
  top:-1px;
}

.docs-hero.docs-with-buttons:after{
  right: 450px;
}
.docs-detail{
  padding:35px 0px;
}
.doc-detail__title{
  font-size: 24px;
  line-height: 28px;
}
.doc-detail__sub{
  font-size: 12px;
  line-height: 16px;
  color:#0F1929;
  font-weight: 500;
  max-width: 480px;
}
.doc-detail__spacer{
  margin-bottom: 15px;
  margin-top: 0px;

}
.doc-detail__sub{
  margin-bottom: 15px;
}

.doc-detail__card{
  background:none;
  box-shadow:none;
}
.doc-detail__card:before{
  content:none;
}

.doc-detail__card{
  border-radius: 0px;
  border-color:#A47B17;
}
.doc-detail__card  .square.sq1 {
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: #F9F4E9;
    width: 10px;
    height: 10px;
    z-index: 2;
    border-right: 1px solid #A47B17;
    border-bottom: 1px solid #A47B17;
    border-bottom-right-radius: 5px;
}
.doc-detail__card  .square.sq2 {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #F9F4E9;
    width: 10px;
    height: 10px;
    z-index: 2;
    border-left: 1px solid #A47B17;
    border-bottom: 1px solid #A47B17;
    border-bottom-left-radius: 5px;
}
.doc-detail__card  .square.sq3 {
    position: absolute;
    bottom: -1px;
    left: -1px;
    background-color: #F9F4E9;
    width: 10px;
    height: 10px;
    z-index: 2;
    border-top: 1px solid #A47B17;
    border-right: 1px solid #A47B17;
    border-top-right-radius: 5px;
}
.doc-detail__card  .square.sq4 {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: #F9F4E9;
    width: 10px;
    height: 10px;
    z-index: 2;
    border-left: 1px solid #A47B17;
    border-top: 1px solid #A47B17;
    border-top-left-radius: 5px;
}
.doc-detail__name{
  display: none;
}
.doc-detail__co{
  display: none;
}
.doc-detail__brand{
  margin-bottom: 5px;
}
.doc-detail__brand img{
  max-width: 200px;
}
.doc-detail__rule{
  margin:12px 0px;
}
.doc-detail__about{
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color:#0F1929;
}
.doc-detail__section{
  padding:8px;
}
.doc-detail__section h4{
  font-size: 12px;
  margin-bottom: 5px;
}
.doc-detail__section li{
  font-size: 11px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.doc-detail__section li:before{
  top:6px;
  left:2px;
  transform:rotate(-45deg) scale(0.6);
}
.doc-detail__sections{
  gap:7px;
}
.doc-detail__card{
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.doc-detail__meta{
  margin-top: 7px;
}
.doc-detail__meta .item p{
  color:#A47B17;
  font-weight: 600;
}
.doc-detail__meta .item b{
  font-size: 12px;
}
.docs-hero .crumbs a, .docs-hero .crumbs{
   color:#A47B17;
}

.docs-hero .tag{
  color:#A47B17;
}
.docs-hero .tag:before , .docs-hero .tag:after{
  background-color: #E5AE56;
}
.doc-detail__actions a.dl img{
  display: none;
}
.doc-detail__actions{
  margin-top: 15px;
}
.doc-detail__actions a{
  padding:8px 15px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.doc-detail__card:after{
  content:none;
}





.docs-hero.inner{
  background:none;
  background-color: #F4EADD;
  position: relative;
  border-bottom: 2px solid #C1923B;
}
.docs-hero.inner>img{
    pointer-events: none;
      position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 193px;
}
.docs-hero.inner:before{
  content:none;
}
.docs-hero.inner:after{
  content:none;
}
.docs-hero.inner .outer{
  align-items: flex-start;
}
.docs-hero.inner .crumbs a, .docs-hero.inner .crumbs{
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color:#000;
  text-transform: capitalize;
}
.docs-hero.inner .crumbs{
  color:#AE6F1D;
}
.docs-hero.inner h1{
  font-family:serif;
}
.docs-hero.inner>img{
  top:0px;
  max-height: 165px;
}
.docs-hero.inner h1{
  font-size: 40px;
  line-height: 48px;
}

.docs-hero.inner .outer{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.side__box>.head>img{
  max-width: 180px;
}
.side__box>.head{
  padding:12px 15px;
  display: flex;
  background-color: #000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  align-items: center;
  justify-content: center;
}
.side__box .desc:before{
  content:"";
  position: absolute;
  top:50px;
  right:-210px;
  width: 100%;
  height: 100%;
  background: url(../icons/relative-light.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity:.2;
}
.side__box .desc>p{
  margin:0px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color:#E5AE56;
  font-weight: 600;
}
 .side__box .desc>p span.left{
  position: absolute;
  left:-20px;
  top:6px;
 }
  .side__box .desc>p span.right{
  position: absolute;
  right:-16px;
  top:6px;
 }
  .side__box .desc >p{
    position: relative;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
  }
 .side__box .desc span{
  background-color:#E5AE56;
  min-width: 20px;
  min-height: 2px;
  position: absolute;
  display: inline-flex;
}
.docs-hero .tag{
  color:#E5AE56;
}
.side__box .desc>h2{
  margin-top: 0px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 32px;
  color:#000613;
}
.side__box .desc .text>p span{
  background-color: transparent;
  text-align: center;
  display: block;
  width: 100%;
  position: static;
  font-weight: 700;
  padding-top: 3px;
}
.side__box .desc .text>p{
  font-size: 9px;
  line-height: 12px;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  color:#0F1929;
  font-weight: 500;
}
.side__box .desc{
  padding:15px 12px;
  overflow:hidden;
    border-top: 1px solid #DCA755;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    background-color: #FAEEE0;
    position: relative;
    z-index: 100;
    text-align: center;
}
.side__box{
  background-color: #fff;
  position: fixed;
  top:50%;
  transform:translateY(-50%);
  right:0px;
  max-height: 100%;
  width:280px;
  height: auto;
  box-shadow:0px 0px 20px rgba(0,0,0,.15);
  border-radius: 15px;
  border:5px solid #fff;
  z-index: 1000;
}
.official__document{
  border:1px solid rgba(0,0,0,.2);
  border-top:0px;
  padding:14px 5px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-bottom: 5px;
}
.official__document>span{
  text-align: center;
  font-size: 9px;
  line-height: 12px;
  color:#0F1929;
  font-weight: 500;
  display: block;
  font-weight: 500;
  text-align: center;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.official__document>p{
  text-align: center;
  margin-top: 0px;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 14px;
  color:#0F1929;
  font-weight: 600;
}
.official__document>p{
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.official__document>p>span{
  min-width: 20px;
  min-height: 2px;
  position: absolute;
  background-color: #E5AE56;
}
.official__document>p>span.left__span{
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  left:-10px;
}
.official__document>p>span.right__span{
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  right:-10px;
}
.official__document .doc-card .ic img{
  max-width: 100%;
  max-height: 100%;
}
.side__box{
  overflow-y:auto;
  max-height: 100%;
}

.side__box .doc-card{
  margin-top: 12px;
  position: relative;
}
.side__box .doc-card{
  padding-left: 95px;
}
.side__box .doc-card .ic{
  position: absolute;
  left:-5px;
  top:10px;
  height: calc(100% - 20px);
  width: 105px;
}

.side__box .doc-card .ic{
  min-height: 0px;
  max-height: none;
}
.side__box .doc-card h3{
  text-align: left;
  font-size: 10px;
  line-height: 13px;
  margin-top: 0px;
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.25px;
  font-weight: bold;
}
.doc-card p{
  text-align: left;
  margin-bottom: 4px;
  font-size: 8px;
  line-height: 12px;
}
.doc-card p br{
  display: none;
}
.side__box .doc-card .actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}

.side__box .doc-card .actions>a{
  padding:4px 5px;
  font-size: 9px!important;
}
.side__box .doc-card .btn-view img {
  max-width: 10px;
  max-height: 9px;
}
.doc-card .btn-dl img{
  transform:scale(0.92);
}
.side__box .doc-card .actions{
  margin-top: 4px;
}
.side__box .official__document .doc-card .ic img{
  object-fit: contain;
}
.side__box .doc-card .actions>a.btn-dl{
  background-color: #AA7D39;
  color:#fff;
}
.side__box  .btn{
  margin-top: 15px;
}
.side__box  .btn>a{
  display: flex;
  align-items: center;
  padding:12px 15px;
  border-radius: 12px;
  background-color:#B87001;
  text-decoration: none;
  color:#fff;
  justify-content: flex-start;
}
.side__box  .btn>a .dsc>span{
  font-size: 10px;
  line-height: 14px;
  color:#fff;
  display: block;
}
.side__box  .btn>a .dsc>p{
  margin-top: 0px;
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 14px;
  color:#fff;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.side__box  .btn>a .dsc{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.side__box  .btn>a>span{
  display: inline-flex;
  align-items: center;
  margin-right: 7px;
  justify-content: center;
}
.side__box  .btn>a>span img{
  max-width: 50px;
  min-width: 50px;
}

#home>.container{
  position: relative;
}


body.side--box .outer__header{
  padding-right: 225px;
}
body.side--box header.nav .outer__header .nav__menu>ul>li>a{
  font-size: 11px;
  line-height: 14px;
}
body.side--box header.nav .outer__header .nav__menu>ul>li{
  margin-right: 15px;
}
.docs-hero .outer{
  padding-right: 280px;
}
.docs-hero .container{
  padding:11px 0px;
}
.docs-hero h1{
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 0px;
}
.docs-hero .tag{
  font-size: 11px;
  line-height: 14px;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.docs-hero .outer p.lead{
  font-size: 10px;
  line-height: 15px;
}
.docs-listing .head , .docs-listing .docs-grid{
  padding-right: 230px!important;
}
.docs-listing .head>p{
  font-size: 20px;
  line-height: 24px;
}
.docs-listing .head .spacer{
  margin:6px 0px;
}
.doc-card{
  padding:6px;
}


.docs-listing .doc-card .ic{
  min-height: 135px;
  max-height: 135px;
}
.docs-listing .doc-card p{
  text-align: center;
}
.docs-listing .doc-card h3{
  font-size: 11px;
  line-height: 14px;
}
.doc-card .btn-view , .doc-card .btn-dl{
  font-size: 8px;
  white-space: nowrap;
  padding:7px 0px;
  width: 100%;
}
.docs-how>.container>.container{
  padding-right: 15px;
}
.docs-how>.container{
  background:none!important;
  padding:0px!important;
  border:0px!important;
  padding-right: 230px!important;
  background-color: transparent;
}

.docs-how .head p{
  font-size: 20px;
  line-height: 24px;
}
.docs-how .head{
  margin-top: -22px;
}
.docs-how .head span.sub{
  font-size: 10px;
  line-height: 14px;
  margin-top: 3px;
}
.docs-how .head{
  margin-bottom: 5px;
}
.docs-how .step h5{
  font-size: 10px;
}
.docs-how .step{
  padding:10px 8px;
}
.docs-how .step p{
  font-size: 8px;
  line-height: 12px;
}
.docs-how .step .num>img{
  max-width: 60px;
}
.docs-how .step>img{
  top:44px;
  max-width: 46px;
  right: -29px;
}
.side--box footer .outer__footer{
  padding-right: 280px;
}
.side--box footer.quote__footer .outer__footer .logo>a>img{
  max-width: 145px;
}
.side--box footer.quote__footer .desc>p{
  font-size: 10px;
  margin-bottom: 2px;
  line-height: 13px;
}
.side--box footer.quote__footer .desc>span{
  font-size: 8px;
  line-height: 12px;
}
.side--box footer.quote__footer .list>ul>li{
  font-size: 9px;
  line-height: 13px;
}
.side--box footer.quote__footer .list>ul>li.dot{
  margin:0px 8px;
}

.bottom__footer .bottom>p{
  padding-right: 160px;
}
.bottom__footer .container{
  padding-right: 270px;
}
.bottom__footer .top__footer{
  background-color: #F9F6F2;
  border-top:1px solid rgba(164,123,23,.35)!important;
  padding-top: 15px;
  padding-bottom: 15px;
}
.bottom__footer .top__footer .container{
  display: flex;
  justify-content: space-between;
}
.bottom__footer .top__footer .column.main{
  max-width: 200px;
}
.bottom__footer .top__footer .column.main>p{
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  margin-top: 4px;
  margin-bottom: 0px;
  color:#000;
}
.bottom__footer .top__footer .column.main>a>img{
  max-width: 160px;
}
.bottom__footer .top__footer .column.main>a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bottom__footer .bottom{
  background-color: #010A19;
  padding:8px 8px;
  text-align: center;
}
.bottom__footer .bottom p span{
  color:#E5AE56;
}
.bottom__footer .bottom>p{
  margin:0px;
  font-size: 11px;
  line-height: 14px;
  color:#fff;
}
.bottom__footer .top__footer .column.main>ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding:0px;
  margin-top: 7px;
  margin-bottom: 0px;
  list-style-type: none;
}
.bottom__footer .top__footer .column.main>ul>li{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.bottom__footer .top__footer .column.main>ul>li:nth-child(3)>a img{
  min-height: 31px;
  max-height: 31px;
}
.bottom__footer .top__footer .column.main>ul>li>a img{
  min-height: 28px;
  max-height: 28px;
}
.bottom__footer .top__footer .column.main>ul>li>a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bottom__footer .top__footer .column.main>ul>li:last-child{
  margin-right: 0px;
}
.bottom__footer .top__footer .column>p.title{
  margin-top: 0px;
  margin-bottom: 9px;
  color:#AD5800;
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.bottom__footer .top__footer .column .links>ul{
  padding:0px;
  list-style-type: none;
  margin:0px;
  font-size: 10px;
  line-height: 13px;
}
.bottom__footer .top__footer .column .links>ul>li{
  margin-bottom: 7px;
}
.bottom__footer .top__footer .column .links>ul>li>a{
  text-decoration: none;
  font-weight: 500;
  color:#000;
}
.bottom__footer .top__footer .column .links>ul>li:last-child{
  margin-bottom: 0px;
}
.bottom__footer .top__footer .column>.details{
  padding:0px;
  list-style-type: none;
  margin:0px;
}
.bottom__footer .top__footer .column>.details>li{
  margin-bottom: 6px;
}
.bottom__footer .top__footer .column>.details>li:last-child{
  margin-bottom: 0px;
}
.bottom__footer .top__footer .column>.details>li>p{
  margin:0px;
  font-size: 10px;
  line-height: 14px;
  color:#000;
  font-weight: 500;
}
.bottom__footer .top__footer>.container>.spacer{
  min-width: 1px;
  background-color:rgba(164,123,23,.35)!important;
  height: 175px;
  display: inline-flex;
}
.bottom__footer .top__footer .column>.details>li{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.bottom__footer .top__footer .column>.details>li>span{
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  justify-content: center;
}
.bottom__footer .top__footer .column>.details>li>span img{
  min-width: 14px;
  max-width: 14px;
}
.side__box>.head{
  background-color: #010B1A;
}
.side__box{
  width: 240px;
}
.side__box>.head>img{
  max-width: 120px;
}
header.nav .outer__header .nav__menu>ul{
  margin-right: 4px;
}
body.side--box .outer__header{
  padding-right: 225px;
}
header .logo>a>img{
  max-width: 190px;
}
body.side--box header.nav .outer__header .nav__menu>ul>li{
  margin-right: 13px;
}
body.side--box header.nav .outer__header .nav__menu>ul>li>a{
  font-size: 10px;
  line-height: 13px;
}
header.nav .outer__header .nav__menu>a.btn{
  font-size: 10px;
  padding-left: 7px;
  padding-right: 7px;
  min-height: 28px;
}

.side__box::-webkit-scrollbar {
  width: 0px;
}
 
.docs-hero .container{
  position: relative;
}
.docs-hero  .container:before{
  content:"";
  position: absolute;
  top:0px;
  right:240px;
  width: 240px;
  height: 100%;
  background:url('../icons/relative-light.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
.docs-listing .head>p{
  font-size: 16px;
  line-height: 22px;
}
.docs-listing .head>p{
  position: relative;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.docs-listing .head>p:before{
  content: "";
  position: absolute;
  left: -25px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5AE56;
  height: 1px;
}
.docs-listing .head>p:after{
  content: "";
  position: absolute;
  right: -25px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5AE56;
  height: 1px;
}
.docs-listing .head span.sub{
  font-size: 9px;
  line-height: 13px;
  margin-top: 3px;
}
.docs-listing{
  padding-top: 20px;
  padding-bottom: 20px;
}
.docs-listing .head{
  margin-bottom: 12px;
}
.docs-listing .doc-card h3{
  font-size: 10px;
  line-height: 13px;
  margin-bottom: 2px;
}
.doc-card p{
  font-size: 7px;
  line-height: 11px;
}
.doc-card .btn-view, .doc-card .btn-dl{
  padding:5px 0px;
}
.doc-card .actions{
  gap:4px;
}
.side__box .desc{
  background:none;
  background-color: transparent;
  padding:10px 7px;
}
.side__box .desc>h2{
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 27px;
}
.side__box .desc >p{
  font-size: 10px;
  line-height: 14px;
}
.side__box .desc>p span.left{
  left:-8px;
  min-height: 1px;
}
.side__box .desc>p span.right{
  right: -8px;
  min-height: 1px;
}
.official__document{
  padding:0px;
  border:0px;
  padding-top: 8px;
}

.official__document>p>span.left__span{
  min-height: 1px;
}
.official__document>p>span.right__span{
  min-height: 1px;
}
.docs-how .head p{
  font-size: 16px;
  line-height: 22px;
}
.docs-how .head span.sub{
  font-size: 9px;
  line-height: 13px;
}
.docs-how .step p{
  color:#000;
  font-weight: 500;
}
.doc-card p{
  font-weight: 500;
}
.side__box .doc-card .actions>a{
  padding:2px 3px;
  font-size: 7px!important;
  min-height: 20px;
}
.side__box .btn>a .dsc>p{
  font-size: 9px;
  line-height: 13px;
}
.side__box .btn>a .dsc>span{
  font-size: 8px;
  line-height: 13px;
}
.side__box .btn>a>span img{
  min-width: 32px;
  max-width: 32px;
}
.side__box .doc-card .ic{
  width: 65px;
  left:4px;
}
.side__box .doc-card{
  padding-left: 74px;
}
.docs-hero .tag{
  color:#AE7C41;
}
.docs-hero .tag:before , .docs-hero .tag:after{
  background-color: #AE7C41;
}
.bottom__footer .top__footer .column .links>ul>li>a{
  position: relative;
}
.bottom__footer .top__footer .column .links>ul>li>a:before{
  content:"";
  position: absolute;
  left:-12px;
  top:2px;
  width: 10px;
  height: 10px;
  background:url('../icons/arrow-right-small.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.bottom__footer .top__footer .column{
  width: 100%;
  max-width: 125px;
}
.bottom__footer .container{
  padding-right: 300px;
}
.side__box{
  position: absolute;

  top:20px;
  transform:none;
  max-height: none;

}
.side__box .desc >p{
  color:#AE7C41;
}
.side__box .desc>p span.left , .side__box .desc>p span.right{
  background-color: #AE7C41;
}
.side__box .desc .text>p{
  line-height: 15px;
}
.side__box .doc-card .ic{
  width: 60px;
}
.side__box .doc-card{
  padding-left: 65px;
}
.side__box .doc-card h3{
  font-size: 9px;
  line-height: 12px;
}

.side__box .doc-card .actions{
  justify-content: flex-start;
}
.side__box .doc-card .actions>a:nth-child(1){
  width: auto;
  padding-left: 4px;
  padding-right: 4px;
}
.side__box .doc-card .actions>a:nth-child(2){
  width: auto;
  padding-left: 6px;
  padding-right: 6px;
}
body.side--box header.nav .outer__header .nav__menu>ul>li{
  margin-right: 10px;
}
.side__box{
  width: 220px;
  transform:translateX(0);
}
.docs-how img{
  max-width: 100%;
}
.docs-how{
  padding-top: 0px;
  padding-bottom: 15px;
}
.docs-listing{
  padding-top: 12px;
}
.docs-listing{
  padding-bottom: 14px;
}
.docs-how{
  padding-bottom: 8px;
}
.docs-listing .head p{
  letter-spacing: 0.015em;
}
.docs-listing .head>p:before{
  left:-15px;
}
.docs-listing .head>p:after{
  right: -15px;
}
.docs-hero .container:before{
  right: 140px;
  width: 340px;
  background-size: cover;
}
.docs-hero .outer{
  padding-top: 15px;
  padding-bottom: 15px;
}
