/*=============================
  Variable CSS
===============================*/
:root {
    --body-font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
    --heading-font-family: "Integral CF", Helvetica, Arial, sans-serif;
    --heading2-font-family: "maison_neueblack", Helvetica, Arial, sans-serif;
    --transparent-color:transparent;
    --primary-color:#9C8AEB;
    --primary-color2:#CF4E46;
    --primary-color3:#D74548;
    --primary-purple:#8670E9;
    --primary-pink:#FF4FD8;
    --primary-orange:#FF7A00;
    --secondary-color: #1fc7bc;
    --body-font-color: #FFF;
    --heading-font-color:#202020;
    --paragraph-color: #828282;
    --placeholder-color:#828282;
    --menu-color:#B5B5B5;
    --section-background: #f9fbff;
    --section-background-two: #eef7ff;
    --section-background-three: #f4f4f4;
    --section-background-four: #fafafa;
    --body-font-size: 16px;
    --heading1-font-size:35px;
    --heading2-font-size:32px;
    --heading3-font-size:28px;
    --heading4-font-size:24px;
    --heading5-font-size:21px;
    --heading6font-size:18px;
    --p1-font-size: 18px;
    --p2-font-size: 16px;
    --p3-font-size: 14px;
    --body-font-weight: 400;
    --body-font-bold:600;
    --body-font-bolder: 700;
    --font-light:300;
    --line-height-p1:26px;
    --line-height-p2:24px;
    --line-height:1.2;
    --ghost-white: #f7fbff;
    --quote-color: #dcdfe5;
    --quote-color-two: #e5e5e5;
    --blog-meta-color: #6a6a6a;
    --lily-white: #e8faff;
    --widget-border-color: #d6d6d6;
    --widget-border-color-two: #efefef;
    --widget-border-color-three:#E5E5E5;
    --widget-border-color-four:#666666;
    --contact-border-color: #c8c8c8;
    ---border30-radius:30px;
    ---border20-radius:20px;
    ---border10-radius:10px;
    ---border5-radius:5px;
    --bright-turquoise: #17c7f8;
    --blue: #1c9cea;
    --blue-two: #4378e1;
    --blue-three: #14b9e9;
    --navy-blue: #082da3;
    --violets-blue: #816ef6;
    --zircon: #f4f7ff;
    --indigo: #6610f2;
    --purple: #b12aff;
    --purple-two: #e056fd;
    --magnolia: #fbf5ff;
    --pink: #ff0099;
    --red: #f9185d;
    --red-two: #ef162f;
    --blush: #fff7f9;
    --orange: #fb491a;
    --orange-two: #ff4d24;
    --sauvignon: #fff8f6;
    --yellow: #fabf1f;
    --yellow-two: #ecb40b;
    --yellow-three: #e1ab43;
    --yellow-four: #e29104;
    --island-spice: #fffaec;
    --green: #07e09b;
    --green-two: #22d361;
    --clear: #effffa;
    --teal: #20c997;
    --brown:#AF144B;
    --bubbles: #eafffb;
    --cyan: #f5f8ff;
    --white: #ffffff;
    --black: #202020;
    --black-two: #010102;
    --black-three: #2D2D2D;
    --rich-black: #071022;
    --gray: #dcdcdc;
    --gray-two: #ebf2ff;
    --gray-three: #d7d7d7;
    --gray-four: #f6f9ff;
    --gray-five: #c2c2c2;
    --gray-six: #f8f8f8;
    --gray-seven: #e1e1e1;
    --gray-eight: #646464;
    --gray-nine: #9f9f9f;
    --facebook: #1877f2;
    --twitter: #1c9cea;
    --instagram: #833ab4;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --youtube: #c4302b;
    --skype: #00aff0;
    --scale: scale(1.05);

    --marquee-width: 100%;
    --marquee-height: 120px;
    --marquee-elements-displayed: 6;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 20s);
    --scrollbar-thumb-start: var(--secondary-color);
    --scrollbar-thumb-end: #15938b;
    --scrollbar-thumb-hover-start: #25d7cb;
    --scrollbar-thumb-hover-end: #10766f;
    --scrollbar-track: rgba(32, 32, 32, 0.18);
}

* {
    margin:0;
    padding:0;
}
body {
    width: 100%;
    height: 100%;
    font-family: var(--body-font-family);
    margin:0 auto;
    font-weight:var(--body-font-weight);
    color:var(--primary-color);
    background:#f4f4f4;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
    overflow-x: hidden;
    position: relative;
}
html {
  width: 100%;
  height: 100%;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-start) var(--scrollbar-track);
}
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--scrollbar-thumb-start) 0%, var(--scrollbar-thumb-end) 100%);
  border-radius: 999px;
  /* border: 3px solid #f4f4f4; */
}
html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--scrollbar-thumb-hover-start) 0%, var(--scrollbar-thumb-hover-end) 100%);
}
body.theme-pink,
html.theme-pink {
  --scrollbar-thumb-start: var(--primary-pink);
  --scrollbar-thumb-end: #d92bb7;
  --scrollbar-thumb-hover-start: #ff79e4;
  --scrollbar-thumb-hover-end: #b81f99;
}
body.theme-purple,
html.theme-purple {
  --scrollbar-thumb-start: var(--primary-purple);
  --scrollbar-thumb-end: #6a54d2;
  --scrollbar-thumb-hover-start: #a18cff;
  --scrollbar-thumb-hover-end: #5841bf;
}
a {
  text-decoration:none;
  outline:none;
  color: #9B9B9B;
}
a:hover {
  text-decoration: none;
  color:var(--secondary-color);
}
a img {
  border: 0px none;
}
a:hover {
  outline: none;
}
a:active {
  outline: none;
  text-decoration: none;
}
a:focus {
  outline: none;
  outline-offset: 0px;
  text-decoration: none;
/*  color:#fff;*/
}
.clear {
  clear:both;
  overflow:hidden;
  height:0px;
  font-size:0px;
}
.clear_l {
  clear:both;
}
ul, ol {
  padding:0px;
  margin:0px;
  list-style:none;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline:none;
  box-shadow:none;
}
h1, h2, h3, h4, h5, h6, p {
  margin:0px;
  padding:0px;
}
h1, h2, h3, h4, h5, h6{
    font-family: var(--heading-font-family);
}
p {
    margin-top: 0;
    line-height:1.5;
    margin-bottom: 1rem;
}
article, section, footer, header, figure, aside, hgroup, nav {
  display:block;
}
header, nav, article, footer, section, aside, figure, figcaption {
  display:block
}
.btn,
.btn:focus,
button {
  outline: none;
  border: none;
  box-shadow: none;
}
a:hover, .btn:hover{
  -moz-transition: 0.4s all;
  -o-transition: 0.4s all;
  -webkit-transition: 0.4s all;
  transition: 0.4s all; 
}
select,
select:focus,
input:focus,
.btn:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow:none;
  outline:none;
  border-top-color: none;
  border-right-color: none;
  border-left-color: none;
}
.noPadding{
  padding:0;
}
.page-item.active .page-link {
    background-color: #567c32;
    border-color: #567c32;
}
/* :: 6.0 Buttons CSS */
.btn:focus {
  box-shadow: none;
}
embed, iframe, object {
    max-width: 100%;
}
input:focus, textarea:focus, .form-control:focus {
    outline: none;
    box-shadow: 0 5px 20px rgb(95 99 242 / 10%);
}

/**** Margin Section ***/

.mt-100 {
    margin-top: 100px;
}
.mt-15{
    margin-top:6rem;
}
.pt-30{
  padding-top: 30px;
}
.pt-60{
  padding-top: 60px;
}
.pt-80{
  padding-top: 80px;
}
.pt-120{
  padding-top: 120px;
}
.pt-160{
  padding-top: 160px;
}
.pb-30{
  padding-bottom: 30px;
}
.pb-60{
  padding-bottom: 60px;
}
.pb-80{
  padding-bottom: 80px;
}
.pb-120{
  padding-bottom:120px;
}
.pb-160{
  padding-bottom:160px;
}
.ptb-30 {
    padding:30px 0;
}
.ptb-60 {
    padding:60px 0;
}
.ptb-80 {
    padding:80px 0;
}
.ptb-100 {
    padding:100px 0;
}
.ptb-120 {
    padding: 120px 0;
}
.ptb-160 {
    padding: 160px 0;
}
.rounded-custom {
    border-radius: 1rem !important;
}

/**** End Margin Section ***/
.w-100vw {
    min-width: 100vw !important;
}
.h-100{
    min-height:100vh;
}
.h-75{
    min-height:75vh;
}
.h-50{
    min-height:50vh;
}
.h-25{
    min-height:25vh;
}

.bottom-ve{
  position: relative;
  z-index:1;
  margin-bottom: -12rem;
}

/**** Btn Section ***/

.btn:focus, 
.btn:active:focus, 
.btn.active:focus{
    outline:none;
    box-shadow:none;
}

/* web development page css */
.rr-primary-btn {
  background-color:var(--primary-color);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding:16px 30px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  text-align: center;
  border:1px solid var(--primary-color);
}
.rr-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.rr-primary-btn i {
  margin-left: 10px;
  font-size: 14px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.rr-primary-btn:hover {
  color: var(--white);
}
.rr-primary-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.rr-primary-btn:hover i {
  transform: rotate(0deg);
}
.rr-primary-btn:focus {
  color: var(--rr-color-common-white);
}
.rr-primary-btn.outlined {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.rr-primary-btn.outlined:hover {
  color: var(--white);
}
.rr-primary-btn.outlined:before {
  background-color: var(--primary-color);
}
.btn-red{
  background: var(--primary-color2) !important;
}
.btn-red:hover{
  background: var(--secondary-color) !important;
}

/**** End Btn Section ***/

.bg-light-subtle {
    background-color: #fafafa !important;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

/*----------------------------------------*/
/* 03 - Background Position & Size 
/*----------------------------------------*/
 .bg-cover{
    background-size: cover;
}
 .bg-contain{
    background-size: contain;
}
 .bg-pos-l{
    background-position: left;
}
 .bg-pos-r{
    background-position: right;
}
 .bg-pos-rt{
    background-position: right top;
}
 .bg-pos-lt{
    background-position: left top;
}
 .bg-pos-rb{
    background-position: right bottom;
}
 .bg-pos-lb{
    background-position: left bottom;
}
.bg-dark{
    background:#000 !important;
    background-color:#000;
}
.bg-white{
    background:#FFF !important;
    background-color:#FFF;
}
.bg-light-dark{
    background:#202020;
}
.bg-green{
    background:#35b498;
}
.bg-lightgrey{
  background:#f4f4f4;
}
/*****  Owl dots Css  ******/
.owl-dots .owl-dot,
.owl-dots .owl-dot {
  background: transparent;
}
.owl-dots .owl-dot span,
.owl-dots .owl-dot span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  margin: 0 1px;
  background: #fff;
  border: 1px solid #0061B2;
  background: transparent !important;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot.active span {
  background-color:#0061B2 !important;
  border-radius: 20px;
  border-color:#0061B2;
}
.slidenav-left.owl-theme .owl-dots,
.slidenav-left.owl-theme .owl-nav {
  text-align:center;
}
.slidenav-right.owl-theme .owl-dots,
.slidenav-right.owl-theme .owl-nav {
  text-align: right;
}
.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 2rem;
}

.section-title-wrapper.section-border {
  display: flex;
  align-items: center;
  width: 100%;
}
.section-title-wrapper.section-border .rs-section-dot {
  width: 7px;
  height: 7px;
  background-color: var(--rs-theme-primary);
  display: inline-block;
  transform: rotate(45deg);
  margin-inline-end: 5px;
  margin-inline-start: 5px;
}
.section-title-wrapper.section-border .rs-section-line {
  border: 1px solid var(--rs-border-primary);
  border-width: 1px 0;
  flex-grow: 1;
  height: 4px;
}
.section-title-wrapper.section-border .section-gap {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}
@media only screen and (max-width: 575px) {
  .section-title-wrapper.section-border .section-gap {
    padding-inline-start: 10px;
    padding-inline-end: 10px;
  }
}
h2.section-title {
    margin-bottom: 30px;
    font-size:38px;
}
.rs-play-btn {
    width: 70px;
    height: 70px;
    font-size: 20px;
    background: transparent;
    display: inline-flex;
    border-radius: 50%;
    color: var(--white);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out 0s;
    border: 1px solid #FFF;
}
.rs-play-btn.is-large {
  width: 80px;
  height: 80px;
  font-size: 26px;
}
.rs-play-btn.is-large::before {
  width: 80px;
  height: 80px;
}
.rs-play-btn.is-small {
  width: 40px;
  height: 40px;
  font-size: 13px;
}
.rs-play-btn.is-small::before {
  width: 35px;
  height: 35px;
}
/* .rs-play-btn.is-red {
  background: var(--red);
  color: var(--white);
}
.rs-play-btn.is-red::before {
  background: var(--red);
} */
.rs-play-btn.is-white {
  background: var(--white);
  color: var(--black);
}
.rs-play-btn.is-white::before {
  background: var(--white);
}
.rs-play-btn.is-white:hover {
  background: var(--primary-color);
  color: var(--white);
}
.rs-play-btn:hover {
  color: var(--black);
}
.rs-play-btn::before {
  background:transparent;
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border-radius: 50%;
  -webkit-animation: rs-pulse-border 1500ms ease-out infinite;
  animation: rs-pulse-border 1500ms ease-out infinite;
}
.rs-play-btn::before:hover{
  background:#F00;
  color:#FFF;
}
.rs-play-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  border-radius: 50%;
  transition: all 200ms;
}

/** Header Styles **/
.header-area {
    position: relative;
    z-index: 10;
    width: 100%;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    box-shadow: 0 1px 0 0 rgb(0 0 0 / 4%);
    background:rgba(0, 0, 0,0);
}
.header-area.scrollheader.is-sticky {
    background: #FFF;
    box-shadow: 0 1px 0 0 rgb(0 0 0 / 4%);
    top: 0;
    left: 0;
}
.mainlogo img {
    height: 70px;
    padding: 10px 0;
}
.classy-nav-container {
    background-color: transparent;
    padding: 0;
}
.classy-nav-container .classy-navbar {
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 5px 0;
    height: auto;
    justify-content:space-between;
}
 @media only screen and (max-width: 767px) {
 .classy-nav-container .classy-navbar .nav-brand {
 margin-right: 15px;
}
}
.nav-brand.mainlogo {
    padding: 0;
    margin: 0;
}
.classy-nav-container .classy-navbar .classynav ul li{
    position: relative;
}
.classy-nav-container .classy-navbar .classynav ul li a {
    padding: 0 15px;
    font-size:14px;
    color: #FFF;
    font-weight: 500;
    position:relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.classy-nav-container .classy-navbar .classynav ul li a {
    font-size: 14px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.classy-nav-container .classy-navbar .classynav ul li a {
    font-size: 14px;
}
}
 @media only screen and (max-width: 767px) {
 .classy-nav-container .classy-navbar .classynav ul li a {
 font-size: 14px;
}
}
.classy-nav-container .classy-navbar .classynav ul li a:focus, 
.classy-nav-container .classy-navbar .classynav ul li a:hover {
    color:rgba(255, 255, 255, 0.7);
}
.classynav ul li.active a {
    position: relative;
    z-index: 1;
    color:#2CB34A !important;
}
.classynav ul li.active a::before {
    width:100%;
    height:3px;
    background-color: #2cb34a;
    position: absolute;
    bottom: -15px;
    left: 10%;
    z-index: 1;
    content: '';
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
.classynav ul li.active a::before {
    display: none;
}
}
 @media only screen and (max-width: 767px) {
.classynav ul li.active a::before {
    display: none;
}
}
.classynav li a:before, 
.classynav li a:after {
  content: '' !important;
  position: absolute;
  width: 0%;
  height:1px;
  bottom:5px;
  background:var(--white);
  bottom:-3px;
}
.classynav li a:before{
  left: 0;
}
.classynav li a:after{
  right: 0;
  background:var(--white);
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.classynav li a:hover:before {
  background:var(--white);
  width:100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.classynav li a:hover:after {
  background: transparent;
  width:50%;
  transition: 0s;
}
.classynav ul li a::after {
  content: "+";
  margin-left: 10px;
  color: #4b83fc;
  display: none;
}
.breakpoint-on .classy-navbar .classy-menu{
    background:#0061B2;
    background: -webkit-gradient(linear, left top, right top, from(#0061B2), to(#002D97)) !important;
    background: linear-gradient(90deg, #0061B2, #002D97) !important;
}
.breakpoint-on .classynav>ul>li>a {
    background-color: transparent;
}
.classycloseIcon .cross-wrap span {
    background: #FFF;
}
.classy-navbar-toggler .navbarToggler span {
    background-color: #FFF;
}

.menu-btnarea{
}
.menu-btnarea ul li a {
    font-size:18px !important;
    padding:7px 21px !important;
    height: auto !important;
    line-height: normal !important;
    background: #FFF;
    color: #202020 !important;
    border-radius: 10px;
    font-weight: 700 !important;
    text-transform: capitalize;
}
.menu-btnarea ul li a span{
    background: -webkit-linear-gradient(45deg, #00499E, #00E5FF 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu-btnarea ul li a:hover{
  background:#00499E;
}

/*=============================================
=              Added Css            =
=============================================*/
.pt-60{
    padding-top: 60px;
}
.header-area {
  position: relative;
  z-index: 9;
}
.header-absolute{
  position: absolute;
}
.header-absolute .header-bottom-wrap {
    background:#000;
}
.header-area .is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
.header-area.sticky .header-bottom-wrap,
.header-area .header-bottom-wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.18);
}
.header-area.sticky {
  z-index: 999;
}
.header-area .is-sticky .header-search-form .search-form-top .search-field {
  color: #202020;
}
.header-area .is-sticky .header-search-form .search-form-top .search-submit {
  color: #333;
}
.header-area .is-sticky .header__logo .dark-logo {
  display: inherit;
}
.header-area .is-sticky .header__logo .light-logo {
  display: none;
}
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li > a {
  color: #FFF;
}
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a:after, 
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a:after {
  color: #333;
}
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a > span, 
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a > span {
  color: #333;
}
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li:hover > a:before, 
.header-area .is-sticky .menu-style-four .navigation-menu > ul > li.active > a:before {
  width: 100%;
  left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), 
only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header-area.is-sticky.only-mobile-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
            animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header-area.is-sticky.only-mobile-sticky .header-bottom-wrap.is-sticky {
    display: none !important;
  }
}
.header-area--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header-area--absolute {
    position: static;
  }
}
.header-area--absolute__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.header-area--default {
  border-color: #E4E8F6;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.header-dark {
    background:#000;
}
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* logo */
}
.header__logo {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  padding: 14px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.header__logo.top-logo {
  padding: 25px 0;
}
.header__logo a {
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
.header__logo {
  -webkit-flex-basis: 20%;
      -ms-flex-preferred-size: 20%;
          flex-basis: 20%;
}
}
@media only screen and (max-width: 767px) {
.header__logo {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
.header__logo.top-logo {
  padding: 15px 0;
}
}
.header__logo > a img {
  width:80px;
}
.header__logo svg {
    height:70px;
    fill:var(--secondary-color);
}
.theme-purple .header__logo svg .st0{
    fill: var(--primary-purple) !important;
}
.theme-pink .header__logo svg .st0{
    fill: var(--primary-pink) !important;
}
.theme-orange .header__logo svg .st0{
    fill: var(--primary-orange) !important;
}

.header__logo > a div {
  font-family: 'Integral CF';
  color: #FFF;
  margin-left:15px;
  font-size:26px;
}
.header__logo > a div span{
  font-family: 'superclarendonregular';
}
.header__logo .dark-logo {
    display: none;
    /*width: 160px;*/
}
.header__logo .light-logo {
  display: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .header__logo .dark-logo {
    display: inherit;
  }
  .header__logo .light-logo {
    display: none;
  }
}
.header-right {
  /*-webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;*/
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  /*-webkit-justify-content: space-between;
      -ms-flex-pack: end;
          justify-content: space-between;*/
}

.header-right-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0 12px;
}
@media only screen and (max-width: 767px) {
  .header-right-inner {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    background-color: #ffffff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .header-right-inner.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    z-index: 999;
  }
}

@media only screen and (max-width: 767px) {
  .header-right-box .header-right-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (max-width: 575px) {
  .header-right-box .header-right-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header-bottom-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-search-form .search-form-top {
  position: relative;
  background-color: rgba(0, 47, 166, 0.3);
}
.header-search-form .search-form-top .search-field {
  width: 180px;
  border-radius: 0;
  border: 0 !important;
  background: 0 0 !important;
  padding-right: 50px;
  padding-left: 15px;
  font-size: 14px;
  color: #fff;
}
.header-search-form .search-form-top input::-webkit-input-placeholder, 
.header-search-form .search-form-top textarea::-webkit-input-placeholder {
  color: #FFF;
}
.header-search-form .search-form-top input::-moz-placeholder, 
.header-search-form .search-form-top textarea::-moz-placeholder {
  color: #FFF;
}
.header-search-form .search-form-top input:-ms-input-placeholder, 
.header-search-form .search-form-top textarea:-ms-input-placeholder {
  color: #FFF;
}
.header-search-form .search-form-top input::-ms-input-placeholder, 
.header-search-form .search-form-top textarea::-ms-input-placeholder {
  color: #FFF;
}
.header-search-form .search-form-top input::placeholder, 
.header-search-form .search-form-top textarea::placeholder {
  color: #FFF;
}

.header-area .is-sticky .header-search-form .search-form-top input::-webkit-input-placeholder, 
.header-area .is-sticky .header-search-form .search-form-top textarea::-webkit-input-placeholder {
  color: #333;
}
.header-area .is-sticky .header-search-form .search-form-top input::-moz-placeholder, 
.header-area .is-sticky .header-search-form .search-form-top textarea::-moz-placeholder {
  color: #333;
}
.header-area .is-sticky .header-search-form .search-form-top input:-ms-input-placeholder, 
.header-area .is-sticky .header-search-form .search-form-top textarea:-ms-input-placeholder {
  color: #333;
}
.header-area .is-sticky .header-search-form .search-form-top input::-ms-input-placeholder, 
.header-area .is-sticky .header-search-form .search-form-top textarea::-ms-input-placeholder {
  color: #333;
}
.header-area .is-sticky .header-search-form .search-form-top input::placeholder, 
.header-area .is-sticky .header-search-form .search-form-top textarea::placeholder {
  color: #333;
}
.header-search-form .search-form-top .search-submit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  font-size: 15px;
  background: 0 0;
  width: 48px;
  padding: 0;
  border: 0;
  color: #ffffff;
}
.header-search-form.default-search .search-form-top {
  background: transparent;
  margin-right: 5px;
  border:1px solid #FFF;
  border-radius: 30px;
}
@media only screen and (max-width: 575px) {
  .header-search-form.default-search .search-form-top {
    margin-top: 15px;
    background: #eee;
  }
}
.header-area .is-sticky .header-search-form.default-search .search-form-top {
  border:1px solid #333;
}
.header-search-form.default-search .search-form-top .search-field {
    max-width:190px;
    color: #FFF;
    min-height: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header-search-form.default-search .search-form-top .search-field {
    max-width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .header-search-form.default-search .search-form-top .search-field {
    min-height: 40px;
  }
}
.header-search-form.default-search .search-form-top .search-submit {
  color: #FFF;
}

/*============================== 
    - Navigation Menu Css
===============================*/
.navigation-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navigation-menu > ul > li {
  margin: 0 32px;
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .navigation-menu > ul > li {
    margin: 0 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .navigation-menu > ul > li {
    margin: 0 15px;
  }
}
.navigation-menu > ul > li > a {
  display: block;
  color: #202020;
  padding:12px 2px;
  position: relative;
  font-size: 14px;
  font-weight:500;
  line-height: 1.18;
  text-transform: uppercase;
  -webkit-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  font-family: "superclarendonregular";
  margin:27px 0;
}
/*.navigation-menu > ul > li > a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color: #086AD8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}*/
.navigation-menu > ul > li > a span {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation-menu > ul > li.has-children > a {
  position: relative;
}
.navigation-menu > ul > li.has-children > a:after {
  position: static;
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 600;
  font-size: 14px;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation-menu > ul > li.has-children--multilevel-submenu {
  position: relative;
}
.navigation-menu > ul > li.has-children:hover .megamenu {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.navigation-menu > ul > li.has-children:hover .megamenu--home-variation__item {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.navigation-menu > ul > li.has-children:hover > .submenu {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.navigation-menu > ul > li:hover > a:after, .navigation-menu > ul > li.active > a:after {
  color: #086AD8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navigation-menu > ul > li:hover > a span, .navigation-menu > ul > li.active > a span {
  color: #086AD8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/*.navigation-menu > ul > li:hover > a:before, .navigation-menu > ul > li.active > a:before {
  width: 100%;
  left: 0;
}*/
.navigation-menu.primary--menu > ul > li > a {
  padding: 31px 2px;
}
.navigation-menu--text_white > ul > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.navigation-menu--text_white > ul > li > a:before {
  background-color: #ffffff;
}
.navigation-menu--text_white > ul > li.active > a {
  color: #ffffff;
}
.navigation-menu--text_white > ul > li:hover > a:after, .navigation-menu--text_white > ul > li.active > a:after {
  color: #ffffff;
}
.navigation-menu--text_white > ul > li:hover > a > span, .navigation-menu--text_white > ul > li.active > a > span {
  color: #ffffff;
}

/*===================================
    - Multilevel Submenu Css
====================================*/
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  /*border-bottom: 3px solid #086AD8;*/
  background-color: #202020;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  min-width:300px;
  padding:0;
  z-index: 9;
}
.submenu > li {
  position: relative;
}
.submenu > li > a {
    display: block;
    padding: 16px 30px;
    color: #FFF;
    /*font-weight: 600;*/
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
    font-size: 13px;
    font-weight:500;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
/*.submenu > li > a > span {
  position: relative;
}
.submenu > li > a > span:after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  background-color: #086AD8;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}*/
.submenu > li > a:hover {
  background:var(--secondary-color);
  color: #FFF;
}
.submenu > li > a:hover > span:after {
  width: 100%;
  left: 0;
  right: auto;
}
.submenu > li:hover > .submenu {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 9;
}
.submenu > li.active > a {
  color:rgba(255, 255, 255,0.4);
}
.submenu > li.has-children > a {
  position: relative;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.submenu > li.has-children > a:after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f105";
  font-size: 14px;
  vertical-align: middle;
  color: #ababab;
}
.submenu > li.has-children > a:hover:after {
  color: #086AD8;
}
.submenu > li.has-children.active > a {
  color: #086AD8;
}
.submenu .submenu {
  top: 0px;
  left: 100%;
  right: auto;
}
.submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}

.menu-style-four .navigation-menu > ul > li {
  padding:0 25px;
  margin: 0;
  position: relative;
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
 .menu-style-four .navigation-menu > ul > li {
    padding-left:15px;
    padding-right:15px;
  }
}
/*.menu-style-four .navigation-menu > ul > li:hover > a:before, 
.menu-style-four .navigation-menu > ul > li.active > a:before {
  width: 0%;
  left: 0;
}*/
.menu-style-four .submenu.left {
  left: -100px;
}
.menu-style-four .submenu.left .submenu.left {
  right: 100%;
  left: auto;
}
.menu-style-four .navigation-menu > ul > li > a {
  color: #2C3152;
}
.header-dark .menu-style-four .navigation-menu > ul > li > a,
.header-absolute .menu-style-four .navigation-menu > ul > li > a {
  color:var(--white);
}
.menu-style-four .navigation-menu > ul > li > a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color:var(--primary-color3);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.menu-style-four .navigation-menu > ul > li:hover > a:after, 
.menu-style-four .navigation-menu > ul > li.active > a:after {
  color: #ffffff;
}
.menu-style-four .navigation-menu > ul > li:hover > a > span, 
.menu-style-four .navigation-menu > ul > li.active > a > span {
  color: #ffffff;
}
.navigation-menu > ul > li:hover > a:before, 
.navigation-menu > ul > li.active > a:before {
  width: 100%;
  left: 0;
  background-color: var(--primary-color3);
}

/* Mobile Mavigation icon */
.mobile-navigation-icon {
  width: 24px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-left: 30px;
}
.mobile-navigation-icon:hover i {
  background-color: #086AD8;
}
.mobile-navigation-icon:hover i:before {
  width: 80%;
  background-color: #086AD8;
}
.mobile-navigation-icon:hover i:after {
  background-color: #086AD8;
  width: 60%;
}
.mobile-navigation-icon i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #FFF;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-area .is-sticky .mobile-navigation-icon i {
    background-color: #333;
}
.mobile-navigation-icon i:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-area .is-sticky .mobile-navigation-icon i:before {
    background-color: #333;
}
.mobile-navigation-icon i:after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  content: "";
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.header-area .is-sticky .mobile-navigation-icon i:after {
    background-color: #333;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mobile-navigation-icon.white-md-icon i {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon i:before {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon i:after {
    background-color: #fff;
  }
  .mobile-navigation-icon.white-md-icon:hover i {
    background-color: #086AD8;
  }
  .mobile-navigation-icon.white-md-icon:hover i:before {
    width: 80%;
    background-color: #086AD8;
  }
  .mobile-navigation-icon.white-md-icon:hover i:after {
    background-color: #086AD8;
    width: 60%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
.is-sticky .white-md-icon i {
    background-color: #333;
}
.is-sticky .white-md-icon i:before {
    background-color: #333;
}
.is-sticky .white-md-icon i:after {
    background-color: #333;
}
}
.hidden-icons-menu {
  margin-left: 15px;
}
.hidden-icons-menu a {
  color: #6D70A6;
  font-size: 20px;
}
.hidden-icons-menu a:hover {
  color: #086AD8;
}

/*================================ 
    - Mobile Menu Overlay Css
==================================*/
.mobile-menu-overlay, .page-oppen-off-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow: auto;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  cursor: url(../images/icons/light-close.webp) 16 16, pointer;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu-overlay__inner, .page-oppen-off-sidebar__inner {
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
  width: 400px;
  height: 100%;
  float: right;
  cursor: default;
  background: #000;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}
@media only screen and (max-width: 479px) {
  .mobile-menu-overlay__inner, .page-oppen-off-sidebar__inner {
    width: 300px;
  }
}
.mobile-menu-overlay.active, .page-oppen-off-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-overlay.active .mobile-menu-overlay__inner, 
.page-oppen-off-sidebar.active .mobile-menu-overlay__inner {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.mobile-menu-overlay__header, .page-oppen-off-sidebar__header {
  background-color: #000;
  padding: 15px 0;
  border-bottom:1px solid #FFF;
}
.mobile-menu-overlay__header .mobile-navigation-close-icon, 
.page-oppen-off-sidebar__header .mobile-navigation-close-icon {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
}
.mobile-menu-overlay__header .mobile-navigation-close-icon:before, 
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:before {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #FFF;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__header .mobile-navigation-close-icon:after, 
.page-oppen-off-sidebar__header .mobile-navigation-close-icon:after {
  position: absolute;
  top: 23px;
  left: 8px;
  content: "";
  width: 24px;
  height: 3px;
  background: #FFF;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__header .mobile-navigation-close-icon:hover{
  color: #086AD8;
}
.mobile-menu-overlay__header .mobile-navigation-close-icon:hover:before,
 .mobile-menu-overlay__header .mobile-navigation-close-icon:hover:after, 
 .page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:before, 
 .page-oppen-off-sidebar__header .mobile-navigation-close-icon:hover:after {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.mobile-menu-overlay__body, .page-oppen-off-sidebar__body {
  padding: 20px 40px 100px;
}
.mobile-menu-overlay__body .offcanvas-navigation, 
.page-oppen-off-sidebar__body .offcanvas-navigation {
  /* onepage style */
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a {
  display: block;
  color: #ffffff;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a:hover, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li > a:hover {
  color: #ffffff;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li:last-child, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li:last-child {
  border-bottom: 0;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children {
  position: relative;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children.active .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children.active .menu-expand:before {
  content: "\f106";
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand {
  position: absolute;
  right: 0;
  top: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand:hover, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .menu-expand:before {
  content: "\f107";
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu {
  padding: 12px 0 14px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li a, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li a:hover, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li a:hover {
  color: #ffffff;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li:last-child, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li:last-child {
  border-bottom: 0;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children {
  position: relative;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children.active .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children.active .menu-expand:before {
  content: "\f106";
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand {
  position: absolute;
  right: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:hover, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu li.has-children .menu-expand:before {
  content: "\f107";
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children {
  position: relative;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children.active .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children.active .menu-expand:before {
  content: "\f106";
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children .menu-expand:before, 
.page-oppen-off-sidebar__body .offcanvas-navigation > ul > li.has-children .sub-menu .sub-menu li.has-children .menu-expand:before {
  content: "\f107";
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
}
.mobile-menu-overlay__body .offcanvas-navigation--onepage > ul > li.active > a, .page-oppen-off-sidebar__body .offcanvas-navigation--onepage > ul > li.active > a {
  font-weight: 700;
}

.mobile-menu-overlay__header .logo {
  display: flex;
}
.mobile-menu-overlay__header .logo a{
    display: flex;
    align-items: center;
}
.mobile-menu-overlay__header .logo svg{
  height:55px;
}
.mobile-menu-overlay__header .logo .logotext {
  font-family: 'Integral CF';
    color: #FFF;
    margin-left: 15px;
    font-size: 21px;
}
.mobile-menu-overlay__header .logo .logotext span {
    font-family: 'superclarendonregular';
}

.mission-intro {
    padding:4rem 0;
    background: #000;
}
.mission-text {
    font-size: 3.1rem;
    letter-spacing: 0.04em;
    color: var(--white);
    font-weight: 400;
    font-family: var(--body-font-family);
}
.mission-text .muted {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 0.35em;
    font-family: 'superclarendonregular';
}
.mission-text .bold {
    font-weight: 500;
    margin-right: 0.35em;
    font-family: 'Integral CF';
    font-weight:900;
    text-transform: uppercase;
}
.mission-text .accent {
    display: block;
    color: #4cc2b5;
    font-family: 'Integral CF';
    font-weight:900;
}
.mission-link {
  text-align: right;
}
.mission-link a{
    font-size: 0.85rem;
    letter-spacing:2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 4px;
    white-space: nowrap;
    font-weight:700;
    font-family: 'Integral CF';
    font-weight:900;
}
.mission-link:hover {
    color: var(--primary-color3);
    border-color: var(--primary-color3);
}
.news-itemdark.news-item h3 a {
    color: #FFF;
    line-height: 1.4;
    font-size:21px;
}

/*----------------------------------------*/
/*  4.12 overlay card css
/*----------------------------------------*/
.rs-post-overlay-one {
  position: relative;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius:0;
}
.rs-post-overlay-one.top-ve{
    margin-top: -3rem;
}
@media only screen and (max-width: 991px) {
  .rs-post-overlay-one {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-post-overlay-one {
    height: 350px;
  }
}
.rs-post-overlay-one:hover .rs-post-overlay-bg-thumb {
  transform: scale3d(1.1, 1.1, 1);
}
.rs-post-overlay-one .rs-post-overlay-bg-thumb {
    position: absolute;
    width: 100%;
    min-height:350px;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius:0;
    transform: scale(1.02);
    transition: all 1.5s ease-out;
}
.rs-post-overlay-one .rs-post-overlay-bg-thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(18, 18, 19, 0) 18.83%, #121213 91.88%);
  width: 100%;
  height: 100%;
  border-radius:0;
  background-repeat: no-repeat;
  background-size: cover;
}
.rs-post-overlay-one .rs-post-overlay-title {
  margin-top: 15px;
  margin-bottom: 12px;
  text-transform: capitalize;
  font-family: 'Integral CF';
  font-size:38px;
}
.rs-post-overlay-one .rs-post-overlay-title a:hover{
  text-decoration: underline;
}
.rs-post-overlay-one .rs-post-overlay-title.is-white {
  color: var(--white);
}
.rs-post-overlay-one .rs-post-overlay-title.is-white a{
  color: var(--white);
}
.rs-post-overlay-one .rs-post-overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-top: 40px;
  padding-inline-end: 80px;
  padding-bottom: 35px;
  padding-inline-start: 40px;
}
@media only screen and (max-width: 1199px) {
  .rs-post-overlay-one .rs-post-overlay-content {
    padding-top: 40px;
    padding-inline-end: 40px;
    padding-bottom: 35px;
    padding-inline-start: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .rs-post-overlay-one .rs-post-overlay-content {
    padding-top: 25px;
    padding-inline-end: 25px;
    padding-bottom: 25px;
    padding-inline-start: 25px;
  }
}

/*----------------------------------------*/
/* video css
/*----------------------------------------*/
.rs-video-one .section-btn {
    display: flex;
    margin-top: -15px;
}
.rs-video-two {
  position: relative;
  z-index: 1;
}
.rs-video-two .rs-video-bg-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.rs-video-two .rs-video-bg-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(18, 18, 19, 0) 5%, #121213 90%);
  z-index: -1;
}
.rs-video-two .rs-video-bg-thumb.has-bg-gradient::before {
  background: linear-gradient(180deg, rgba(18, 18, 19, 0) -2.54%, #121213 71.44%);
}
.rs-video-two .rs-video-play-btn {
  padding-top: 182px;
}
@media only screen and (max-width: 1600px) {
  .rs-video-two .rs-video-play-btn {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1366px) {
  .rs-video-two .rs-video-play-btn {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .rs-video-two .rs-video-play-btn {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .rs-video-two .rs-video-play-btn {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-video-two .rs-video-play-btn {
    padding-top: 60px;
  }
}
.rs-video-two .rs-video-content {
  padding-top: 182px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .rs-video-two .rs-video-content {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1366px) {
  .rs-video-two .rs-video-content {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .rs-video-two .rs-video-content {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .rs-video-two .rs-video-content {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-video-two .rs-video-content {
    padding-top: 60px;
  }
}
.rs-video-three .rs-post-video-thumb {
  position: relative;
  z-index: 1;
  border: 12px solid var(--rs-bg-black);
}
.rs-video-three .rs-post-video-thumb img {
  width: 100%;
}
.rs-video-three .rs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----------------------------------------*/
/* video card css
/*----------------------------------------*/

.rs-post-video-two .rs-post-video-thumb {
  position: relative;
  overflow: hidden;
  min-width: 140px;
  max-width: 140px;
}
.rs-post-video-two .rs-post-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.8s ease;
}
.rs-post-video-two .rs-post-video-title {
  margin-top: 8px;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.rs-post-video-two .rs-post-video-title a {
    background-size: 0 1px;
    color: #202020;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    display: block;
    margin-top: 15px;
    font-family: 'Integral CF';
}
.rs-post-video-two .rs-post-video-title a:hover {
  background-size: 100% 1px;
  color: var(--secondary-color);
}
.rs-post-video-two .rs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rs-post-video-two .rs-post-video-item {
  border-bottom: 1px solid var(--rs-border-primary);
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
.rs-post-video-two .rs-post-video-item:hover .rs-post-video-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}
.rs-post-video-two .rs-post-video-item:first-child {
  border-top: 1px solid var(--rs-border-primary);
  padding-top: 12px;
}
.rs-post-video-two .rs-post-video-item:last-child {
  margin-bottom: 0;
}
.rs-post-video-three .rs-post-video-thumb {
    position: relative;
    overflow: hidden;
    min-width: 140px;
    max-width: 140px;
    border-radius: 0;
    max-height: 130px;
}
@media only screen and (max-width: 480px) {
  .rs-post-video-three .rs-post-video-thumb {
    min-width: 100%;
    max-width: 100%;
  }
}
.rs-post-video-three .rs-post-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.8s ease;
}
.rs-post-video-three .rs-post-video-title {
  margin-bottom:10px;
  color: var(--white);
  font-weight: 400;
}
.rs-post-video-three .rs-post-video-title a {
    background-size: 0 1px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    font-family: 'superclarendonregular';
}
.rs-post-video-three .rs-post-video-title a:hover {
  background-size: 100% 1px;
  text-decoration: underline;
}
.rs-post-video-three .rs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rs-post-video-three .rs-post-video-item {
  border-bottom: 1px solid var(--rs-border-secondary);
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 480px) {
  .rs-post-video-three .rs-post-video-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.rs-post-video-three .rs-post-video-item:hover .rs-post-video-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}
.rs-post-video-three .rs-post-video-item:first-child {
  border-top: 1px solid var(--rs-border-secondary);
  padding-top: 12px;
}
.rs-post-video-three .rs-post-video-item:last-child {
  margin-bottom: 0;
}


.video-lg-main .rs-post-video-thumb {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  border-radius:0;
}
@media only screen and (max-width: 480px) {
  .video-lg-main .rs-post-video-thumb {
    min-width: 100%;
    max-width: 100%;
  }
}
.video-lg-main .rs-post-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 0.8s ease;
}
.video-lg-main .rs-post-video-title {
  margin-bottom:10px;
  color: var(--white);
  font-weight: 400;
}
.video-lg-main .rs-post-video-title a {
    background-size: 0 1px;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    font-family: 'superclarendonregular';
}
.video-lg-main .rs-post-video-title a:hover {
  background-size: 100% 1px;
  text-decoration: underline;
}
.video-lg-main .rs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-lg-main .rs-post-video-item {
  border-bottom: 1px solid var(--rs-border-secondary);
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 480px) {
  .video-lg-main .rs-post-video-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.video-lg-main .rs-post-video-item:hover .rs-post-video-thumb img {
  transform: scale3d(1.1, 1.1, 1);
}
.video-lg-main .rs-post-video-item:first-child {
  border-top: 1px solid var(--rs-border-secondary);
  padding-top: 12px;
}
.video-lg-main .rs-post-video-item:last-child {
  margin-bottom: 0;
}


/*----------------------------------------
   2.19 Post Meta
-----------------------------------------*/
.rs-post-meta ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 1600px) {
  .rs-post-meta ul {
    flex-wrap: wrap;
  }
}
.rs-post-meta ul li {
  list-style: none;
}
.rs-post-meta .rs-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.rs-post-meta .rs-meta svg {
  width: 15px;
  height: 15px;
}
.rs-post-meta .rs-meta svg path {
  fill: #616C74;
}
[rs-theme=rs-theme-dark] .rs-post-meta .rs-meta svg path {
  fill: rgba(255, 255, 255, 0.8);
}
.rs-post-meta .rs-meta .meta-author:hover {
  color: var(--rs-theme-primary);
}
.rs-post-meta .rs-meta .rs-meta-thumb img {
  width: 30px;
  height: 30px;
}
.rs-post-meta.meta-white span {
    color: #FFF;
}
.rs-post-meta.meta-white .rs-meta svg path {
  fill: rgba(255, 255, 255, 0.8);
}

/*----------------------------------------*/
/*  4.19 Trending News css
/*----------------------------------------*/
.rs-trending-news-one .section-btn {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .rs-trending-news-one .section-btn {
    justify-content: start;
  }
}
.rs-trending-news-two .section-btn {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .rs-trending-news-two .section-btn {
    justify-content: start;
  }
}
@media only screen and (max-width: 1199px) {
  .rs-trending-news-three .rs-post-overlay-one {
    height: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .rs-trending-news-three .rs-post-overlay-one {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-trending-news-three .rs-post-overlay-one {
    height: 350px;
  }
}
/*----------------------------------------*/
/*  Footer Style
/*----------------------------------------*/
.rs-footer-one {
  position: relative;
  z-index: 1;
  background:#F4F4F4;
}
.rs-footer-one .footer-top {
  padding-top: 100px;
  padding-bottom: 95px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .rs-footer-one .footer-top {
    padding-top: 80px;
    padding-bottom: 75px;
  }
}
@media only screen and (max-width: 991px) {
  .rs-footer-one .footer-top {
    padding-top: 70px;
    padding-bottom: 65px;
  }
}
.rs-footer-one .rs-footer-widget-description {
  color: var(--rs-text-secondary);
  margin-bottom: 25px;
  margin-top: 30px;
}
.rs-footer-one .footer-widget-title {
  color: var(--rs-white);
  margin-bottom: 27px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-bottom: 27px;
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  .rs-footer-one .footer-widget-title {
    font-size: 18px;
  }
}
.rs-footer-one .footer-widget-title::before {
  position: absolute;
  content: "";
  width: 121px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  bottom: 0;
}
.rs-footer-one .footer-widget-title::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background: var(--rs-white);
  inset-inline-start: 0;
  bottom: 0px;
}
.rs-footer-one .rs-footer-widget-app {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 105px;
}
@media only screen and (max-width: 1199px) {
  .rs-footer-one .rs-footer-widget-app {
    margin-top: 60px;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991px) {
  .rs-footer-one .rs-footer-widget-app {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-footer-one .rs-footer-widget-app {
    margin-top: 40px;
  }
}
.rs-footer-one .rs-footer-widget-app-thumb a {
  display: block;
}
.rs-footer-one .rs-footer-widget-app-thumb a:hover {
  transform: translateY(-3px);
}
.rs-footer-one .footer-widget-link ul li {
  list-style: none;
  line-height: 1;
  font-weight: 500;
  color: var(--rs-text-secondary);
}
.rs-footer-one .footer-widget-link ul li:not(:last-child) {
  margin-bottom: 19px;
}
.rs-footer-one .footer-widget-link ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-inline-start: 15px;
  transition: 0.5s;
}
.rs-footer-one .footer-widget-link ul li a:hover {
  color: var(--rs-theme-primary);
  padding-inline-start: 20px;
}
.rs-footer-one .footer-widget-link ul li a::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #BEBEBE;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
/*.rs-footer-one .footer-1-col-1 {
  margin-inline-end: 40px;
}*/
/*.rs-footer-widget-logo {
    text-align: center;
}*/
@media only screen and (max-width: 1199px) {
  .rs-footer-one .footer-1-col-1 {
    margin-inline-end: 0;
  }
}
.rs-footer-one .footer-1-col-2 {
  margin-inline-start: 10px;
}
@media only screen and (max-width: 1600px) {
  .rs-footer-one .footer-1-col-2 {
    margin-inline-start: 0;
  }
}
.rs-footer-one .footer-1-col-4 {
    margin-inline-start: 25px;
}
@media only screen and (max-width: 1600px) {
  .rs-footer-one .footer-1-col-4 {
    margin-inline-start: 0;
  }
}
@media only screen and (max-width: 1600px) {
  .rs-footer-one .footer-widget-tags .sidebar-widget-content {
    padding: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .rs-footer-one .footer-widget-tags .sidebar-widget-content a {
    font-size: 14px;
    padding: 6px 6px;
  }
}
.rs-footer-widget-logo {
    margin-left: 11px;
}
.rs-post-video-thumb.w-50 {
    max-width: 50%;
    min-width: 50%;
}

/*----------------------------------------*/
/*  Copyright Style
/*----------------------------------------*/
.rs-copyright-one {
  position: relative;
  z-index: 1;
  background: var(--rs-bg-primary);
}
.rs-copyright-one .rs-footer-copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .rs-copyright-one .rs-footer-copyright-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
  }
}
.rs-copyright-one .rs-footer-copyright-item {
    padding-top: 10px;
    padding-bottom: 15px;
    position: relative;
}
@media only screen and (max-width: 767px) {
.rs-copyright-one .rs-footer-copyright-item {
  padding-top: 0;
  padding-bottom: 0;
}
}
.rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
  top: 0;
  inset-inline-end: -205px;
}
@media only screen and (max-width: 1199px) {
  .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
    inset-inline-end: -85px;
  }
}
@media only screen and (max-width: 991px) {
  .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
    inset-inline-end: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .rs-copyright-one .rs-footer-copyright-item:not(:last-child)::before {
    display: none;
  }
}
.rs-copyright-one .rs-footer-copyright {
  text-align: center;
}
.rs-copyright-one .rs-footer-copyright a {
  color:#9B9B9B;
}
.rs-copyright-one .rs-footer-copyright a:hover {
  color: var(--primary-color);
}
.rs-copyright-one .rs-footer-copyright p {
    color: #9B9B9B;
    line-height: 25px;
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 0;
}
.rs-copyright-one .rs-footer-copyright-link a {
  font-size: 14px;
  color:#9B9B9B;
}
.rs-copyright-one .rs-footer-copyright-link li {
    float: left;
    margin-left: 15px;
    color:#9B9B9B;
    font-size:14px;
}
.rs-copyright-one .rs-footer-copyright-link a:hover {
  color: var(--primary-color);
}

/*----------------------------------------*/
/*  2.27 social
/*----------------------------------------*/
.theme-social {
  display: inline-flex;
  gap: 22px;
  align-items: center;
}
.theme-social a {
  color:#CF4E46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
}
.theme-social a:hover {
  color: var(--black);
}
a.rs-btn.has-text.has-icon {
    color: #FFF;
    font-size: 21px;
    font-family: 'Integral CF';
    margin-bottom: 15px;
}

/* -----------------------------
   People's Tech Layout
--------------------------------*/
.pt-layout{
    min-height: 100vh;
    padding: 3rem 1.5rem 5rem;
    background:#efefef;
    display:flex;
    flex-direction:column;
    gap:2.5rem;
}
.pt-hero,
.pt-panels{
    width:100%;
    margin:0 auto;
}
.pt-hero {
    background: #000;
    color: #ffffff;
    padding: 80px 0 8rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index:1;
}
.pt-hero__title{
    font-size:4rem;
    font-weight:500;
    /*letter-spacing:0.15em;*/
    text-transform:uppercase;
    display:flex;
    gap:1.5rem;
    white-space:nowrap;
    font-family: 'Integral CF';
}
.pt-hero__title span:first-child{
    font-weight:300;
    letter-spacing:0.05em;
    text-transform:none;
    font-family: 'superclarendonbold';
}
.pt-hero__copy {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    width: 100%;
    padding-right: 10rem;
}
.pt-panels{
    margin-top:-5rem;
}
.pt-panels .container {
    z-index: 2;
    position: relative;
}
.pt-panel{
    padding:2.5rem;
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
    width:100%;
}
.pt-panel h2{
    font-size:1.25rem;
    text-transform:uppercase;
    margin-bottom:0.9rem;
    font-family: 'Integral CF';
    letter-spacing:1px;
}
.pt-panel.pt-panel--subscribe h2 {
    color: #202020;
}
.pt-panel p {
    color: #8d8d8d;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    max-width: 80%;
    font-size: 16px;
}
.pt-panel--subscribe{
    background:#ffffff;
}
.pt-form{
    display:flex;
    gap:1rem;
}
.pt-form input{
    flex:1;
    padding:0.95rem 1.1rem;
    border:1px solid #d2d2d2;
    font-size:1rem;
    border-radius:2px;
    background:#fafafa;
}
.pt-form input::placeholder{
    color:#a8a8a8;
}
.pt-form button{
    min-width:135px;
    background:#ffffff;
    border:1px solid #cdb8dc;
    color:#705f86;
    text-transform:uppercase;
    border-radius:2px;
}
.pt-form button:hover{
  background: var(--primary-color2);
  color:#FFF;
}
.pt-panel--involved{
    background:#1fc7bc;
    color:#ffffff;
}
.pt-panel--involved p{
    color:rgba(255,255,255,0.9);
}
.pt-actions{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}
.btn {
    text-transform: uppercase;
    font-size: 14px;
    padding: 14px 25px;
    border-radius: 2px;
    border: 1px solid transparent;
    font-weight: 500;
}
.btn--solid{
    background:#202020;
    color:#ffffff;
}
.btn--ghost{
    background:#ffffff;
    color:#202020;
}
@media screen and (max-width:900px){
.pt-hero{
    flex-direction:column;
}
.pt-hero__title{
    white-space:normal;
}
.pt-panels{
    margin-top:0;
}
.pt-form{
    flex-direction:column;
}
.pt-form button{
    width:100%;
}
.pt-actions{
    flex-direction:column;
}
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.section-heading h2 {
    margin-bottom: 30px;
    font-size: 38px;
    color: var(--black);
}
.eyebrow {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--heading-font-color);
    font-weight: 600;
    line-height: 1.4;
    font-family: 'superclarendonregular';
}
.link-all {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color2);
    font-family: 'Integral CF';
}
.link-all:hover,
.link-submit:hover {
    opacity: 0.7;
}
.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}
.news-item {
    padding-right: 1.5rem;
    border-right: 1px solid #e1dfda;
}
.news-item:last-child {
    border-right: none;
}
.news-item h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom:30px;
    letter-spacing: 0.02em;
    color:#202020;
    font-family: 'superclarendonregular';
}
.news-item h3 a {
    color: #202020;
    line-height: 1.4;
    font-size: 16px;
    font-family: 'superclarendonregular';
}
.news-item h3 a:hover{
    color:var(--primary-color2);
    text-decoration: underline;
}
.meta {
    margin-top: 0.85rem;
    font-size:14px;
    text-transform: uppercase;
    color:#9B9B9B;
    font-family: 'Integral CF';
}
.meta{
  margin-bottom:15px;
}
.meta li{
    display: inline-block;
    font-size:14px;
    letter-spacing:3px;
    text-transform: uppercase;
    color: #9B9B9B;
    font-family: 'Integral CF';
}
.cta-band {
    background: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    min-height: 280px;
}
.cta-copy {
    padding:4.1rem 7rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #CF4E46;
}
.cta-title{
    font-family: "Integral CF", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    align-items: flex-end;
    font-size: 48px;
    letter-spacing: 2px;
}
.cta-title span:last-child {
    /*font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.08em;*/
    font-weight: 400;
    text-transform: none;
    font-family: 'Integral CF';
}
.cta-copy p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}
.link-submit {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid #FFF;
    align-self: flex-start;
    color: #FFF;
    font-family: 'Integral CF';
}
.link-submit:hover{
  color: var(--black);
}
.cta-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    overflow: hidden;
    max-height: 320px;
    background: #FFF;
}
.cta-graphic img {
  margin-top:10rem;
}

.feature-section {
    padding-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 63%) minmax(0, 37%);
    gap: 3rem;
}
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.newblock .card-image {
    aspect-ratio: inherit;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card .card-image .rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.singlearticle_block .card-image {
    max-height:350px;
}
.singlearticle_block .card-image img {
    height:auto;
}
.feature-card-content {
    padding: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}
.feature-card-content a{
  color:#FFF;
}
/*.feature-card-content p {
    color: rgba(255, 255, 255, 0.6);
}*/
.card-author {
    font-size: 0.9rem;
    color:var(--secondary-color);
}
.feature-card h3{
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--heading-font-color);
    font-family: 'Integral CF';
}
.feature-card a h3 {
    color: var(--heading-font-color);
}
.feature-card a:hover h3 {
    color: var(--secondary-color);
    text-decoration: underline;
}
.excerpt {
    color: #6a6a6a;
    font-size: 15px;
    line-height: 1.6;
}
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.article-image-row {
    margin-bottom: 0;
}
.article-highlights-section {
    background: #f4f4f4;
    padding-top: 0;
    padding-bottom:0;
}
.article-highlights-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding:1.5rem 0 0;
}
.highlight {
    padding: 36px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.highlight-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}
.highlight-divider {
    width: 1px;
    height: 40px;
    background: rgba(31, 31, 31, 0.2);
    margin: 0 auto;
}
.highlight h3 {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    color: #202020;
    /*font-family: 'maison_neuebook';*/
}
.highlight h3 a{
    color: #202020;
}

@media (max-width: 1024px) {
.pt-shell {
    padding-top: 48px;
}
.feature-grid {
    grid-template-columns: 1fr;
}
.feature-highlights {
    flex-direction: row;
    flex-wrap: wrap;
}
.article-highlights-row {
    grid-template-columns: 1fr;
}
.highlight {
    flex: 1 1 280px;
}
}

@media (max-width: 720px) {
.pt-shell {
    padding: 48px 20px 80px;
}
.section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.cta-copy {
    padding: 40px;
}
.cta-band {
    grid-template-columns: 1fr;
}
.feature-cards {
    grid-template-columns: 1fr;
}
.news-item {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e1dfda;
    padding-bottom: 1.5rem;
}
.news-item:last-child {
    border-bottom: none;
}
}
@media (max-width: 520px) {
.pt-shell {
    gap: 48px;
}
.cta-copy {
    padding: 32px 24px 40px;
}
}

.hero-02 {
    background: var(--black);
    color: #fff;
    padding: 96px 24px 180px;
}
.hero-inner-02 {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 64px;
}
.hero-inner-02 .hero-copy {
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.hero-inner-02 .hero-intro {
    font-size: 1.6rem;
    color: var(--teal);
    margin-bottom: 6px;
}
.hero-inner-02 .hero-heading {
    font-size: 2rem;
    font-weight: 500;
    color: #FFF;
    letter-spacing: 3px;
    line-height: 1.05;
}
.hero-inner-02 .hero-description {
    font-size:16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}
.cta-panels {
    max-width: 1120px;
    margin: -120px auto 120px;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    align-items: stretch;
}
.resource-cards {
    flex: 2;
    background: linear-gradient(180deg, #fdfdfb 0%, #f4f3f1 100%);
}
.resource-card {
    padding: 64px 56px 72px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.resource-card:last-child {
    border-right: none;
}
.card-intro {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: rgba(26, 26, 26, 0.8);
}
.resource-card h2 {
    margin: 0;
    font-size:1.3rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    line-height: 1.2;
    color: var(--heading-font-color);
}
.resource-card .card-description {
    font-size: 0.98rem;
    color: var(--paragraph-color);
}
.resource-card .card-link {
    margin-top: auto;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--primary-color3);
    display: inline-block;
    padding-bottom: 4px;
    font-family: "Integral CF", monospace;
    font-weight: 600;
}
.resource-card .card-link:hover,
.resource-card .card-link:focus-visible {
    color: var(--underline);
}
.signup-card {
    flex: 1;
    background: var(--secondary-color);
    padding: 64px 48px 72px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
.signup-intro {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}
.signup-card h2 {
    margin: 0 0 15px;
    font-size: 2rem;
    font-weight: 500;
}
.signup-description {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
}
.signup-button {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 16px 15px;
    background: #fff;
    color: #20c997;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
    text-align: center;
}
.signup-button:hover,
.signup-button:focus-visible {
    background:var(--primary-color2);
}
.connect-manifesto {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    position: relative;
}
.profile-editor-page {
    padding: 70px 0 90px;
}
.profile-editor-shell {
    display: grid;
    gap: 32px;
}
.profile-editor-intro {
    color: var(--black);
    font-size: 18px;
    line-height: 1.7;
}
.profile-editor-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    padding: 36px;
    border: 2px solid var(--black);
    background: var(--white);
    box-shadow: 10px 10px 0 var(--secondary-color);
}
.profile-editor-card__aside {
    padding: 24px;
    background: linear-gradient(180deg, rgba(31, 199, 188, 0.12) 0%, rgba(156, 138, 235, 0.14) 100%);
    text-align: center;
}
.profile-editor-card__aside h3 {
    margin-bottom: 8px;
    color: var(--black);
    font-size: 24px;
}
.profile-editor-card__aside p {
    margin-bottom: 0;
    color: var(--gray-eight);
}
.profile-editor-public-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.profile-editor-avatar {
    margin-bottom: 20px;
}
.profile-editor-avatar img {
    width: 160px;
    height: 160px;
    border: 4px solid var(--black);
    border-radius: 50%;
    object-fit: cover;
}
.profile-editor-card__main {
    display: grid;
    gap: 20px;
}
.profile-editor-alert {
    padding: 14px 18px;
    border: 1px solid var(--black);
    font-weight: 600;
    color: var(--black);
}
.profile-editor-alert.is-success {
    background: rgba(34, 211, 97, 0.18);
}
.profile-editor-alert.is-error {
    background: rgba(239, 22, 47, 0.14);
}
.profile-editor-form {
    display: grid;
    gap: 20px;
}
.profile-editor-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
    font-family: var(--heading-font-family);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.profile-editor-field input,
.profile-editor-field textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
}
.profile-editor-field textarea {
    min-height: 210px;
    resize: vertical;
}
.profile-editor-checkbox {
    margin-top: 12px;
}
.profile-editor-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: var(--gray-eight);
    font-family: var(--body-font-family);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
}
.profile-editor-actions {
    display: flex;
    justify-content: flex-start;
}
.profile-editor-guest {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 32px;
    border: 2px solid var(--black);
    background: var(--white);
    text-align: center;
    box-shadow: 10px 10px 0 var(--primary-pink);
}
.profile-editor-guest p {
    color: var(--black);
    font-size: 18px;
}
.community-bios-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}
.community-bio-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border: 2px solid var(--black);
    background: var(--white);
    box-shadow: 8px 8px 0 rgba(31, 199, 188, 0.25);
}
.community-bio-card__avatar img {
    width: 84px;
    height: 84px;
    border: 3px solid var(--black);
    border-radius: 50%;
    object-fit: cover;
}
.community-bio-card__content h3 {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 24px;
}
.community-bio-card__content h3 a {
    color: inherit;
}
.community-bio-card__content p {
    margin-bottom: 0;
    color: var(--gray-eight);
    line-height: 1.7;
}
.community-bio-card__link {
    display: inline-block;
    margin-top: 14px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.community-bios-empty {
    margin: 24px 0 0;
    color: var(--black);
    font-size: 18px;
}
.author-breadcrumb-area {
    padding-top: 30px;
    padding-bottom: 10px;
    background: #fff;
}
.author-profile-hero {
    padding: 30px 0 40px;
    background: #fff;
}
.author-profile-hero__heading {
    margin-bottom: 34px;
}
.author-profile-hero__heading h1 {
    color: var(--black);
    font-size: 42px;
    text-transform: uppercase;
}
.author-profile-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 0 0 34px;
    border-bottom: 1px solid var(--widget-border-color-three);
}
.author-profile-card__avatar img,
.author-profile-card__avatar .avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
}
.author-profile-card__body h2 {
    margin-bottom: 16px;
    color: var(--black);
    font-size: 32px;
}
.author-profile-card__body p {
    max-width: 820px;
    margin-bottom: 0;
    color: var(--gray-eight);
    font-size: 18px;
    line-height: 1.8;
}
.author-profile-card__edit-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.author-article-section {
    padding-bottom: 80px;
}
.author-feature-card {
    margin-bottom: 36px;
}
.author-pagination-wrap {
    margin-top: 24px;
}
.connect-card {
    text-transform: uppercase;
    color: #6f4d84;
    margin-top: 5rem;
}
.connect-title {
    /*font-size: 0.9rem;
    margin-bottom: 24px;*/

    font-size: 18px;
    color: var(--heading-font-color);
    font-weight: 600;
    line-height: 1.4;
    font-family: 'superclarendonregular';
}
.connect-icons .connect-icon {
    width: 46px;
    height: 46px;
    background: var(--secondary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.connect-icons .connect-icon:hover,
.connect-icons .connect-icon:focus-visible {
    transform: translateY(-3px);
}
.manifesto-card {
    background:#FFF;
    padding: 48px 56px;
    gap: 48px;
}
.manifesto-copy {
    max-width: 420px;
}
.manifesto-intro {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.8);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.manifesto-copy h3 {
    font-size:1.6rem;
    letter-spacing:1px;
    color: var(--secondary-color);
    margin: 0 0 1.1rem;
    font-weight: 500;
}
.manifesto-copy h3 span{
  color: var(--heading-font-color);
}
.manifesto-description {
    color: var(--paragraph-color);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}
.manifesto-link {
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    border-bottom: 1px solid var(--primary-color2);
    padding-bottom: 4px;
    display: inline-block;
    text-transform: uppercase;
}
.manifesto-link:hover,
.manifesto-link:focus-visible {
    color: var(--underline);
}
.manifesto-image {
    width: 220px;
    min-width: 220px;
}
.manifesto-image svg {
    width: 100%;
    height: auto;
}
.manifesto-ring {
    fill: #3c42d6;
}
.manifesto-globe {
    fill: #1c9cc7;
}
.manifesto-lines {
    stroke: #fefefe;
    stroke-width: 4;
    fill: none;
}
.manifesto-text {
    font-size: 20px;
    letter-spacing: 0.4em;
    fill: #ffffff;
}
.manifesto-hands path {
    fill: #4f2f8f;
}

@media (max-width: 1100px) {
.resource-cards {
    grid-template-columns: 1fr;
}
.resource-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.resource-card:last-child {
    border-bottom: none;
}
}
@media (max-width: 960px) {
.hero-inner {
    flex-direction: column;
}
.cta-panels {
    flex-direction: column;
    margin-top: -80px;
}
.signup-card,
.resource-card {
    padding: 48px 36px 56px;
}
}
@media (max-width: 640px) {
.hero {
    padding: 72px 24px 140px;
}
.hero-heading {
    letter-spacing: 0.18em;
}
.resource-cards {
    grid-template-columns: 1fr;
}
.signup-button {
    width: 100%;
}
}

.topics-card {
    padding: 40px 48px 48px;
    min-height: 100%;
    text-align: center;
}
.topics-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.4);
    font-size:18px;
    margin-bottom: 1.25rem;
    text-align: center;
}
.topics-cloud {
    gap: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.45);
    margin-bottom: 1.25rem;
}
.topics-cloud ul li{
    position: relative;
    display: inline-block;
    padding: 5px 0 5px 18px;
}
.topics-cloud ul li:after {
    content: ".";
    font-family: 'Integral CF';
    margin: 0 5px;
    line-height: 0.6;
    position: absolute;
    font-size: 2.2rem;
    top: 0;
}
.topics-cloud ul li:last-child:after {
    content: "";
}
.topics-cloud li{
    font-family: 'Integral CF';
    font-size: 24px;
}
.topics-cloud a{
    position: relative;
    font-family: 'Integral CF';
    font-size:24px;
}
.topics-cloud .highlight {
    color: #6c4378;
    font-size: 1.15rem;
    letter-spacing: 0.28em;
}
.topics-cloud.primary {
    font-size: 1.25rem;
    row-gap: 6px;
}
/*.topics-cloud.primary a:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(26, 26, 26, 0.2);
}*/
.topics-cloud a:hover{
  color: var(--primary-color2);
  text-decoration:line-through;
}
.topics-focus {
    margin-bottom: 1.5rem;
}
.topics-focus a {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 1.4rem;
    color: #a469b8;
    text-decoration: line-through;
    margin-top:5rem;
    display:block;
    font-family: 'Integral CF';
}
.topics-question {
    font-size: 21px;
    color: rgba(26, 26, 26, 0.55);
    margin-bottom: 1.25rem;
    padding: 0 3rem;
}
.topics-cta {
    letter-spacing:2px;
    font-size:18px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-color2);
    color: var(--primary-color2);
    padding-bottom: 4px;
    font-family: 'Integral CF';
}
.topics-cta:hover {
    color: var(--primary-color);
}

.rs-title-tag a {
  position: relative;
}
.rs-title-tag a {
    color: var(--primary-color3);
    font-size: 18px;
}
.single-section {
    padding: 60px 0 30px;
    background: #FFF;
}
.entry-main-content h2 {
    color: #4F4F4F;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    font-family: --body-font-family;
    font-weight: 600;
}
.entry-main-content h2:before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 2px;
    background: #D5C4DA;
    flex-shrink: 0;
    margin-right: 15px;
    position: absolute;
    top: 55%;
    left: -60px;
    transform: translate(-50%, -50%);
}
.entry-main-content h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 28px;
}
.entry-main-content h5{
    color: #000;
    text-transform: capitalize;
    font-size: 21px;
    margin-bottom:15px;
}
.entry-main-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.8;
    padding-right: 15px;
    font-weight:500;
}
.entry-main-content .post-brief-description {
    margin: 0 0 1rem;
    display: block;
    color: #171717;
    font-size: 19px;
    line-height: 1.75;
    font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
    font-weight: 600;
}
.entry-main-content img,
.entry-main-content .wp-block-image img,
.entry-main-content .wp-caption img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
.entry-main-content figure,
.entry-main-content .wp-block-image,
.entry-main-content .wp-caption {
    width: 100% !important;
    max-width: 100%;
    margin: 2.25rem 0;
}
.entry-main-content .wp-block-image{
  margin:0;
}
.entry-main-content figcaption,
.entry-main-content .wp-caption-text {
    margin-top: 1rem;
    color: #171717;
    font-size: 18px;
    line-height: 1.6;
    font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
}
.entry-main-content .media-description {
    margin-top: 1rem;
    color: #9b9b9b;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'relativebook';
}
.entry-main-content--lead-dropcap p:first-of-type::first-letter{
  font-size:4em;
  float:left;
  margin-top:.15em;
  margin-right:0.15em;
  line-height:0.5;
  font-weight: 600;
  color:var(--secondary-color);   
}
.about-content-section .entry-main-content--lead-dropcap p:first-of-type::first-letter{
    color:var(--paragraph-color);
    font-size: 16px;
    line-height: 1.8;
    padding-right: 0;
    font-weight:500;
    margin-top:0;
    margin-left:0;
    margin-right:0 !important;
    line-height: inherit;
}
/*.entry-main-content p:first-child::first-letter{
  font-size:4em;
  float:left;
  margin-top:.15em;
  margin-right:0.15em;
  line-height:0.5;
  font-weight: 600;
}*/
.entry-main-content blockquote {
    padding-left: 30px;
}
.entry-main-content blockquote,
.entry-main-content blockquote h2,
.entry-main-content blockquote h3,
.entry-main-content blockquote h4{
  color: var(--black);
  font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
}
.entry-main-content blockquote h2{
  font-size:26px;
}
.entry-main-content blockquote h3{
  font-size:22px;
}
.entry-main-content blockquote p{
  color:#D5C4DA;
  font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
  font-size:26px;
  font-weight:500;
}
.entry-main-content blockquote p:first-letter{
  font-weight: normal;
  font-size:25px !important;
  margin:0;
  padding:0;
  line-height: inherit;
  float: none;
  
}
.entry-main-content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding-top:15px;
  color: var(--black);
  font-family: "superclarendonlight", Helvetica, Arial, sans-serif;
}
.entry-main-content h4:before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 2px;
    background: #D5C4DA;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    /* margin-right: 15px; */
    /* position: absolute;
    top: 55%;
    left: -60px;
    transform: translate(-50%, -50%); */
}
.entry-main-content blockquote h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    padding-top:15px;
}
.entry-main-content blockquote h4:before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 2px;
    background: #D5C4DA;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    /* margin-right: 15px; */
    /* position: absolute;
    top: 55%;
    left: -60px;
    transform: translate(-50%, -50%); */
}
.wp-element-caption {
    padding: 30px 6rem;
    background: linear-gradient(180deg, #F4F4F4 0%, #FFFFFF 100%);
    margin-top: 1px !important;
    font-size: 14px !important;
}
.entry-main-content .wp-element-caption p {
    color: #202020;
    font-size: 14px;
}
.entry-main-content .wp-element-caption p.caption{
  color:#9B9B9B;
}
.entry-main-content .wp-element-caption p:first-child::first-letter{
  font-weight: normal;
  font-size:18px;
  margin-top:0;
  margin-right:0;
  line-height: inherit;
  float: none;
}
.entry-main-content h6{
    font-size: 14px;
    line-height: 1.8;
    padding-right: 15px;
    font-weight: 400;
    color: #9B9B9B;
    font-family: var(--body-font-family);
    margin-top:15px;
}
.entry-main-content a{
  color:var(--secondary-color);
}
.entry-main-content a:hover{
  text-decoration: underline;
}

.connected-officer-visual {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: left center;
}

.connected-officer-copy p {
  margin-bottom: 20px;
}

.connected-officer-copy .caption {
  color: #9B9B9B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Feature hero (Microsoft Police State) */
.feature-hero {
    background: #212121;
}
.feature-hero__copy {
    background: #000;
    color: #f5f5f5;
    height: 100%;
    padding: 60px 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.feature-hero__title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-family: var(--heading2-font-family);
    text-transform: uppercase;
    margin-bottom:10px;
}
.feature-hero__copy,
.feature-hero__image {
    min-height: 520px;
}
.feature-hero__subtitle {
    font-size: 2rem;
    color: #d0d0d0;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0;
}
.feature-hero__divider {
    width: 2px;
    height: 55px;
    background: rgba(255, 255, 255, 0.4);
}
.feature-hero__meta {
    font-family: "Integral CF", monospace;
    letter-spacing: 0.35em;
    color: #FFF;
    font-size: 12px;
}
.feature-hero__image {
    height: 80vh;
    background: #161616;
    width: 94%;
    display: flex;
    flex-direction: column;
}
.feature-hero__image-media {
    flex: 1 1 auto;
    min-height: 0;
}
.feature-hero__image-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*.featured-media-caption {
    padding: 12px 16px;
    background: #121212;
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.45;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.featured-media-caption__caption {
    font-weight: 600;
}*/
.featured-media-caption {
    padding: 12px 16px;
    background: transparent;
    color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    line-height: 1.45;
    border-top: 0;
    position: absolute;
    bottom:60px;
}
.featured-media-caption__caption {
    font-weight: 500;
}
.featured-media-caption__description {
    margin-top: 6px;
}
.featured-media-caption__description > p:last-child {
    margin-bottom: 0;
}
.video-lg-main .featured-media-caption {
    margin-top: 10px;
}

@media (max-width: 991px) {
.feature-hero__copy,
.feature-hero__image {
    min-height: unset;
}
.feature-hero__copy {
    padding: 40px 28px;
}
.feature-hero__title {
    font-size: 26px;
}
.feature-hero__subtitle {
    font-size: 22px;
}
}
@media (max-width: 575px) {
  .feature-hero__copy {
      padding: 32px 22px;
  }
  .feature-hero__title {
      font-size: 24px;
  }
  .feature-hero__subtitle {
      font-size: 20px;
  }
}

.widgetarea{
  margin-bottom:3rem;
}
.author-card h4{
    font-size:15px;
    text-transform: uppercase;
    color:#9B9B9B;
    font-family: 'relativebook';
    margin-bottom:30px;
}
.author-card-details{
  margin-bottom:35px;
}
.author-card-details img{
  width:70px;
  height:70px;
  margin-right:15px;
}
.author-card-details h2 {
    margin-top: 0.85rem;
    font-size:14px;
    text-transform: uppercase;
    color:#9B9B9B;
    margin-bottom:5px;
    font-family: 'relativebook';
}
.author-card-details p {
    font-size:16px;
    color: var(--secondary-color);
}
.abouttechempire{
  margin:60px 0;
  padding-right:60px;
}
.abouttechempire h2{
  color: var(--secondary-color);
  margin-bottom:30px;
  font-size:21px;
  position: relative;
  padding-top:10px;
}
.abouttechempire h2:before{
  content: "";
  width: 40px;
  height: 2px;
  background: #888;
  position: absolute;
  left: 0;
  top:-10px;
}
.abouttechempire p{
  color:var(--paragraph-color);
}

.widget-title{
  margin-bottom:15px;
}
.widget-title h3{
  color:#9B9B9B;
  position: relative;
  font-size:24px;
  padding-left: 30px;
  text-transform: uppercase;
  font-family: 'maison_neuebook';
}
.widget-title h3:after{
    content: "";
    background: #9B9B9B;
    width:60px;
    height: 2px;
    margin-top: 15px;
    position: absolute;
    bottom:-10px;
    left: 0;
}
.widget-news.news-items {
    gap: 1.5rem;
}
.widget-news .news-item {
    padding-right: 0;
    border-right: none;
}
.widget-news .news-item h3 {
    margin-bottom: 20px;
}
.widget-news .news-item h3 a {
    font-size: 16px;
}
.widget-news .meta {
    margin-top:15px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom:0;
}
.widgetarea .signup-card {
    background:#F4F4F4;
    color: #fff;
}
.widgetarea .signup-card h2 {
    font-size: 2rem;
    color:#4F4F4F;
    text-transform: uppercase;
}
.widgetarea .signup-description {
    color:#4F4F4F;
}
.widgetarea .signup-button {
    color: #FFF;
    background: var(--secondary-color);
}
.widgetarea .signup-button:hover,
.widgetarea .signup-button:focus-visible {
    background:var(--primary-color2);
}

.banner-dark-top{
  background:#000;
  padding:3rem 0 60px;
  /*margin-bottom:1rem;*/
}

/* News single (category: news) uses the teal theme color. */
.single-post.category-news .banner-dark-top{
  background: var(--secondary-color);
}
.banner-strip{
  background:#ffffff;
  padding:1.4rem 0 0.65rem;
}
.banner-strip__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 15px 0 30px;
    border-bottom: 1px solid #d8d8d8;
    color: #7d7d7d;
    font-size: 14px;
    background: #ffffff;
}
.banner-strip__total,
.banner-strip__pager,
.banner-strip__sort{
  display:flex;
  align-items:center;
  gap:0.9rem;
}
.banner-strip__total span{
  color:#202020;
}
.banner-strip__pager{
  justify-content:center;
  flex:1 1 auto;
}
.banner-strip__pager a,
.banner-strip__pager span,
.banner-strip__sort label{
  color:inherit;
}
.banner-strip__pager a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:20px;
  padding:0;
  border:0;
  background:transparent;
  color:#202020;
}
.banner-strip__pager a.is-active{
  color:#cf4e46;
}
.banner-strip__pager .banner-strip__dots{
  letter-spacing:0.2em;
}
.banner-strip__next{
  color:#7d7d7d !important;
}
.banner-strip__sort{
  gap:0.7rem;
}
.banner-strip__sort label{
  margin:0;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.banner-strip__select-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.banner-strip__select-wrap select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  border:0;
  background:transparent;
  color:#202020;
  font-size:14px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:0 1.25rem 0 0;
  line-height:1;
  cursor:pointer;
}
.banner-strip__select-wrap i{
  position:absolute;
  right:0;
  font-size:12px;
  color:#202020;
  pointer-events:none;
}
.banner-strip__select-wrap select:focus{
  outline:none;
}
.feat-rs-post-overlay.rs-post-overlay-one .rs-post-overlay-bg-thumb{
    position: relative;
}
.rs-sideinfo h3{
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Integral CF';
}
.rs-sideinfo a:hover h3{
  text-decoration:underline;
}
.top-featuredcard{
  display: flex;
  align-items: center;
}
.topcard-image {
    width: 30%;
    max-height: 150px;
    overflow: hidden;
    min-width: 30%;
    position: relative;
}
.topfeature-card-content{
  padding-left: 30px;
}
.topfeature-card-content h3{
  font-size:18px;
  margin-bottom:15px;
  font-family: 'Integral CF';
}
.topfeature-card-content .card-date{
  margin-bottom:8px;
  font-size:14px;
  line-height:1.4;
  color:#FFF;
}
.topfeature-card-content a{
  color:#FFF;
}
.topfeature-card-content a:hover h3{
  text-decoration: underline;
}
.feature-card-description{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.6;
  color:#FFF;
}
.single-news-hero-caption {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .8);
}
.card-image.newscard-image {
    overflow: visible;
}
.donate-strip{
  background: var(--secondary-color);
  padding:30px 0;
}
.donateinfo{
  color:var(--white);
}
.donateinfo h2{
  font-size:44px;
}
.donateinfo p{
  font-size:21px;
}
.articlesimple-head{
  padding-right:30px;
}
.simple-art-page .feature-card-content h3{
  color:#FFF;
  font-size:40px;
  /* margin-top:2rem; */
}
.simple-art-page .feature-card-content a:hover h3{
  text-decoration: underline;
}
.simple-art-page .topfeature-card-content {
    padding-left: 0;
}
.simple-art-page .topfeature-card-content .card-author{
  color: var(--secondary-color);
}
.simple-art-page .topfeature-card-content p{
    color:#C8C8C8;
    font-size:18px;
}
.donate-strip .pt-actions {
    align-items: end;
    justify-content: end;
}

.pagination-items {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.pagination .pagination-items li a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #CDCDCD;
    padding: 0 10px 0 20px;
}
.pagination .pagination-items li:first-child a {
  border-left:none;
}
.pagination .pagination-items li a.active, 
.pagination .pagination-items li a:hover {
  color: rgb(var(--primary-color));
}
@media (max-width: 575px) {
  .pagination .pagination-items li a {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .profile-editor-card,
  .profile-editor-guest {
    padding: 24px;
    box-shadow: 6px 6px 0 var(--secondary-color);
  }
  .community-bios-grid {
    grid-template-columns: 1fr;
  }
  .community-bio-card {
    flex-direction: column;
  }
  .author-profile-hero__heading h1 {
    font-size: 28px;
  }
  .author-profile-card {
    grid-template-columns: 1fr;
  }
  .author-profile-card__avatar img,
  .author-profile-card__avatar .avatar {
    width: 140px;
    height: 140px;
  }
  /*.banner-strip__bar{
    flex-direction:column;
    align-items:flex-start;
  }*/
  .banner-strip__pager{
    flex-wrap:wrap;
    justify-content:flex-start;
  }
}

.asidesticky {
    height: 100vh;
    position: fixed;
    top: 0;
    right:0;
    background: var(--secondary-color);
    padding: 30px 15px;
    z-index: 91;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 999;
}
.aside-social {
  margin-top:auto;
}
.aside-social ul li{
  margin:15px 0;
}
.aside-social a {
  color:#CF4E46;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 21px;
  transition: 0.3s;
  color: var(--black);
}
.aside-social a:hover {
  color: var(--white);
}
.linevh {
    width: 1px;
    flex: 1 1 auto;
    min-height: 120px;
    max-height: calc(100vh - 220px);
    background: var(--black);
    margin:0 auto;
}
.rs-header-toggle {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  padding: 0;
  transition: right 0.3s ease-in-out 0s;
  width: 33px;
  z-index: 12;
  transition: right 0.3s ease-in-out 0s;
  -webkit-transition: right 0.3s ease-in-out 0s;
  -moz-transition: right 0.3s ease-in-out 0s;
  -o-transition: right 0.3s ease-in-out 0s;
  cursor: pointer;
}
/*.rs-header-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background: #202020;
  margin: 3px;
}
.rs-header-toggle span:nth-child(1) {
  background: #FFF;
}
.rs-header-toggle span:nth-child(3) {
  background: #FFF;
}
.rs-header-toggle span:nth-child(5) {
  background: #FFF;
}
.rs-header-toggle span:nth-child(7) {
  background: #FFF;
}
.rs-header-toggle span:nth-child(9) {
  background: #FFF;
}*/

.rs-header-toggle span {
    display: block;
    border-radius: 4px;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    background: #000;
    transition: 0.6s all ease;
}
.rs-header-toggle span:nth-child(2) {
  position: relative;
}
.rs-header-toggle span:nth-child(2):before, 
.rs-header-toggle span:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 50%;
  height: 100%;
  background:#000;
  transition: 0.3s all ease-in-out;
}
.rs-header-toggle span:nth-child(2):before {
  left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.rs-header-toggle span:nth-child(2):after {
  right: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.off-canvas-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  min-height: 100vh;
  right: 0;
  transition: all 0.4s;
  z-index: 999;
  margin-right: -100%;
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrap {
    width: 100%;
  }
}
.off-canvas-wrap.show-off-canvas {
  margin-right: 0;
}
.off-canvas-wrap .overly {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 998;
  background-color: #202020;
  left: 0;
  top: 0;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  cursor: url(https://demo.rstheme.com/wordpress/insurigo/wp-content/plugins/rselements/widgets/header-offcanvas/close.png), auto;
}
.off-canvas-wrap .overly.show-overly {
  visibility: visible;
  opacity: 0.9;
}
.off-canvas-wrap .off-canvas-widget {
  background-color: #000;
  height: 100vh;
  position: relative;
  z-index: 999;
  /*overflow-y: scroll;*/
}
@media only screen and (max-width: 575px) {
  .off-canvas-wrap .off-canvas-widget {
    padding: 60px 20px;
  }
}
.off-canvas-wrap .off-canvas-widget a.off-canvas-close {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 26px;
  color: #ffffff;
  background:var(--secondary-color);
  padding: 4px 6px;
  border-radius:50%;
}
.off-canvas-right{
    position: relative;
    padding:2rem 8rem 0;
}
.off-canvas-wrap .off-canvas-widget .widget {
  margin-bottom: 30px;
}
.off-canvas-wrap .off-canvas-widget .widget:last-child {
  margin-bottom: 0;
}
.topic-offcanvas-area{
  margin-top:2rem;
  margin-bottom:1rem;
}
.topics-cloud-offcanvas ul li {
    display: inline-block;
    padding: 1px 0;
    margin: 8px 10px;
    position: relative;
}
.topics-cloud-offcanvas ul li:after {
    content: ".";
    font-family: 'Integral CF';
    margin: 0 4px 0 12px;
    line-height: 0.6;
    position: absolute;
    font-size: 2.2rem;
    color: var(--primary-color2);
    top: 0;
    transform: translate(-50%, -50%);
    top: 25%;
}
.topics-cloud-offcanvas ul li:last-child:after {
    content: "";
}
.topics-cloud-offcanvas ul li {
    font-size: 2.1rem;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Integral CF';
}
.topics-cloud-offcanvas ul li a {
    font-size:2.1rem;
    color: #fff;
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    font-family: var(--heading2-font-family);
    text-transform: uppercase;
}
/*.topics-cloud-offcanvas ul li:nth-child(even) a {
  color:#606060;
}*/
.topics-cloud-offcanvas ul li a:hover{
  color: var(--secondary-color);
  border-bottom:1px solid #FFF;
}
.off-canvas-right .section-heading {
    padding-top: 1rem;
    margin-bottom: 0;
}
.off-canvas-right .eyebrow{
  color: var(--secondary-color);
  text-transform: capitalize;
  font-weight:400;
  /*font-family: var(--heading2-font-family);*/
}
.off-canvas-right .link-all {
  font-size: 16px;
  letter-spacing: 2px;
  color:#606060;
  /*font-family: var(--heading2-font-family);*/
  text-transform: capitalize;
  font-weight:400;
  font-family: 'superclarendonregular';
}
.off-canvas-right .link-all:hover{
    color: var(--secondary-color);
    text-decoration: underline;
}
.header-search-form {
  margin:30px 0 15px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.axil-search.form-group{
    position: relative;
    margin-bottom: 0;
    text-align: right;
    display: inline-block;
    width:100%;
}
.axil-search.form-group .search-button {
    position: absolute;
    left: 0;
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    border: 0 none;
    padding: 0;
    left: 21px;
    background: transparent;
    color: #FFF;
    font-size: 21px;
}
.axil-header.header-dark .axil-search.form-group .search-button i {
    color: var(--color-white);
}
.axil-search.form-group input {
    background: #454545;
    border-radius: 0;
    padding-left: 66px;
    color: var(--white);
    max-width: 100%;
    font-size: 19px;
    height: 56px;
    border: none;
}
.axil-search.form-group input::placeholder { /* Standard syntax, supported in most modern browsers */
  color:rgba(255,255,255,0.3);
  opacity: 1; /* Fixes Firefox's default lower opacity */
}
.axil-search.form-group input::-webkit-input-placeholder { /* Chrome, Safari, Opera, older Edge */
  color:rgba(255,255,255,0.3);
}
.axil-search.form-group input:-moz-placeholder { /* Firefox 4 to 18 */
  color:rgba(255,255,255,0.3);
  opacity: 1;
}
.axil-search.form-group input::-moz-placeholder { /* Firefox 19+ */
  color:rgba(255,255,255,0.3);
  opacity: 1;
}
.axil-search.form-group input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:rgba(255,255,255,0.3);
}
.footer-off-canvas{
  position: relative;
  width:100%;
  border-top:1px solid rgba(255, 255, 255, 0.3);
  margin-top:4rem;
  padding:40px 0 30px;
}
.footer-off-canvas ul li {
  list-style: none;
  line-height: 1;
  font-weight: 500;
}
.footer-off-canvas ul li:not(:last-child) {
  margin-bottom: 19px;
}
.footer-off-canvas ul li a {
  position: relative;
  font-size:16px;
  padding-inline-start: 15px;
  transition: 0.5s;
  color:var(--white);
}
.footer-off-canvas ul li a:hover {
  color: var(--secondary-color);
  padding-inline-start: 20px;
  text-decoration: underline;
}
.off-canvas-left {
    background: var(--secondary-color);
    min-height: 100vh;
    padding: 60px;
    margin-right: -15px;
}
.leftcanvas-info {
    margin-bottom: 30px;
    border-bottom: 1px solid #202020;
    padding-bottom: 60px;
}
.leftcanvas-info:last-child{
    border-bottom: none;
}
.leftcanvas-info h2 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 0;
    font-family: var(--heading2-font-family);
}
.leftcanvas-info h2 strong{
  color: var(--black);
  display: block;
  text-transform: capitalize;
  font-weight:400;
  font-family: 'superclarendonregular';
}
.leftcanvas-info p{
  padding:1rem 0 2rem;
  font-size:21px;
  color: var(--black);
}
.leftcanvas-info a{
  padding:20px 35px;
  font-size:18px;
  background:var(--black);
  color:var(--white);
  text-transform:uppercase;
}
.leftcanvas-info a:hover{
  background:var(--primary-color2);
}
.pagetitle h1 {
    font-family: 'Integral CF';
    color:var(--secondary-color);
}
.margin-negative-60 {
    margin-top: -8rem;
}
.rs-video-one .section-btn.margin-0{
  margin-top:0;
  display: block;
}
.podcastfeatured h2{
  margin-bottom:40px;
  font-size:24px;
}
.podcastfeatured h2 a{
  color:#FFF;
}
.podcastfeatured-image {
  height: 100%;
}
.podcastfeatured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcastfeatured-image .rs-play-btn,
.podcastblock-media .rs-play-btn,
.podcast-single-video .rs-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.podcastblock-media {
  margin-bottom: 18px;
}
.podcast-single-video .card-image {
  max-height: 420px;
}
.podcast-single-video .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.podcastblock h2{
  line-height:1.1;
}
.podcastblock h2 a{
    font-size: 22px;
    margin: 25px 0;
    display: inline-block;
    line-height: 1.35;
    font-weight: 500;
    color: var(--heading-font-color);
    font-family: 'Integral CF';
}
.podcastblock h2 a:hover{
  color:var(--primary-color);
}
.podcastblock .card-author{
    font-size:16px;
    color: var(--primary-color);
}
.podcast-episode {
    background: #F4F4F4;
    padding:15px;
    width:80%;
}
.podcast-episode-player, 
body .castilo-mejs-container {
    margin-bottom: 0 !important;
}
.border-top-light{
  border-top:1px solid rgba(255, 255, 255, 0.2);
}
.links-itemarea .news-item{
  margin:15px 0;
}

.theme-purple .off-canvas-left,
.theme-purple .donate-strip,
.theme-purple .pt-panel--involved,
.theme-purple .asidesticky,
.theme-purple .off-canvas-wrap .off-canvas-widget a.off-canvas-close{
    background: var(--primary-purple);
}
.theme-purple .off-canvas-right .eyebrow,
.theme-purple .author-card-details p,
.theme-purple .pagetitle h1,
.theme-purple .theme-social a,
.theme-purple .card-author,
.theme-purple .link-all,
/*.theme-purple .off-canvas-wrap .off-canvas-widget a.off-canvas-close,*/
.theme-purple .topics-cloud-offcanvas ul li:after,
.theme-purple .footer-off-canvas ul li a:hover,
.theme-purple .topics-cloud-offcanvas ul li a:hover,
.theme-purple .feature-card-content a:hover,
.theme-purple .topfeature-card-content a:hover,
.theme-purple .topauthortags li a:hover,
.theme-purple .podcast-promo-name,
.theme-purple .podcast-promo-link,
.theme-purple .podcast-promo-social-links a,
.theme-purple .feature-card a:hover h3,
.theme-purple .abouttechempire h2,
.theme-purple .entry-main-content--lead-dropcap p:first-of-type::first-letter,
.theme-purple .pagetitle h1,
.theme-purple .card-author,
.theme-purple .entry-main-content a{
    color: var(--primary-purple) !important;
}
.theme-purple .entry-main-content .post-brief-description{
    border-left-color: var(--primary-purple);
}
.theme-purple .btn-red,
.theme-purple .navigation-menu > ul > li:hover > a:before, 
.theme-purple .navigation-menu > ul > li.active > a:before,
.theme-purple .menu-style-four .navigation-menu > ul > li > a:before{
    background: var(--primary-purple) !important;
}
.theme-purple .btn-red:hover{
    background: var(--white) !important;
    color:var(--primary-purple);
}

.theme-pink .off-canvas-left,
.theme-pink .donate-strip,
.theme-pink .pt-panel--involved,
.theme-pink .asidesticky,
.theme-pink .off-canvas-wrap .off-canvas-widget a.off-canvas-close,
.theme-pink .navigation-menu > ul > li:hover > a:before, 
.theme-pink .navigation-menu > ul > li.active > a:before,
.theme-pink .menu-style-four .navigation-menu > ul > li > a:before{
    background: var(--primary-pink);
}
.theme-pink .off-canvas-right .eyebrow,
.theme-pink .author-card-details p,
.theme-pink .pagetitle h1,
.theme-pink .theme-social a,
.theme-pink .card-author,
.theme-pink .link-all,
.theme-pink .topics-cloud-offcanvas ul li:after,
.theme-pink .footer-off-canvas ul li a:hover,
.theme-pink .topics-cloud-offcanvas ul li a:hover,
.theme-pink .feature-card-content a:hover,
.theme-pink .topfeature-card-content a:hover,
.theme-pink .top-widgetarea .widget-news .news-item h3 a:hover,
.theme-pink .feature-card-content a:hover h3,
.theme-pink .news-item h3 a:hover,
.theme-pink .authortags ul li a:hover,
.theme-pink .topauthortags li a:hover,
.theme-pink .podcast-promo-name,
.theme-pink .podcast-promo-link,
.theme-pink .podcast-promo-social-links a,
.theme-pink .feature-card a:hover h3,
.theme-pink .abouttechempire h2,
.theme-pink .rl-banner-contribute,
.theme-pink .rl-banner-breadcrumb-link,
.theme-pink .entry-main-content--lead-dropcap p:first-of-type::first-letter,
.theme-pink .pagetitle h1,
.theme-pink .card-author,
.theme-pink .entry-main-content a{
    color: var(--primary-pink) !important;
}
.theme-pink .entry-main-content .post-brief-description{
    border-left-color: var(--primary-pink);
}
.theme-pink .btn-red{
    background: var(--primary-pink) !important;
}
.theme-pink .btn-red:hover{
    background: var(--white) !important;
    color:var(--primary-pink) !important;
}

.theme-orange .off-canvas-left,
.theme-orange .donate-strip,
.theme-orange .pt-panel--involved,
.theme-orange .asidesticky,
.theme-orange .widgetarea .signup-button,
.theme-orange .navigation-menu > ul > li:hover > a:before, 
.theme-orange .navigation-menu > ul > li.active > a:before{
    background: var(--primary-orange);
}
.theme-orange .off-canvas-right .eyebrow,
.theme-orange .author-card-details p,
.theme-orange .pagetitle h1,
.theme-orange .theme-social a,
.theme-orange .card-author,
.theme-orange .link-all,
.theme-orange .off-canvas-wrap .off-canvas-widget a.off-canvas-close,
.theme-orange .topics-cloud-offcanvas ul li:after,
.theme-orange .footer-off-canvas ul li a:hover,
.theme-orange .topics-cloud-offcanvas ul li a:hover,
.theme-orange .rl-banner-contribute,
.theme-orange .rl-banner-breadcrumb-link,
.theme-orange .feature-card a:hover h3,
.theme-orange .entry-main-content p:first-child::first-lette{
    color: var(--primary-orange);
}
.theme-orange .entry-main-content .post-brief-description{
    border-left-color: var(--primary-orange);
}
.theme-orange .btn-red{
    background: var(--primary-orange) !important;
}
.theme-orange .btn-red:hover{
    background: var(--white) !important;
    color:var(--primary-orange) !important;
}

.theme-green .off-canvas-left,
.theme-green .donate-strip,
.theme-green .pt-panel--involved,
.theme-green .asidesticky {
    background: var(--green);
}
.theme-green .off-canvas-right .eyebrow,
.theme-green .author-card-details p,
.theme-green .pagetitle h1,
.theme-green .theme-social a,
.theme-green .card-author,
.theme-green .link-all,
.theme-green .off-canvas-wrap .off-canvas-widget a.off-canvas-close,
.theme-green .topics-cloud-offcanvas ul li:after,
.theme-green .footer-off-canvas ul li a:hover,
.theme-green .topics-cloud-offcanvas ul li a:hover{
    color: var(--green);
}
.theme-green .btn-red{
    background: var(--green) !important;
}
.theme-green .btn-red:hover{
    background: var(--white) !important;
    color:var(--green) !important;
}

.top-widgetarea .widget-news .news-item h3 a {
    color:var(--white);
}
.newsitem-flex {
    display: flex;
    align-items: center;
    border-right:none;
}
h3.titlenews{
  font-size:1.6rem;
  color:var(--white);
}
h3.titlenews span{
  display: block;
  color:var(--primary-pink);
  font-family: 'Integral CF';
}
.contributeblock p{
  color:#9B9B9B;
  font-size:18px;
}
.contributeblock a{
  color:var(--primary-pink);
  font-size:20px;
}
.contributeblock a:hover{
  color:var(--white);
}

.imagenews {
    width: 40%;
    margin-left: 30px;
}
.newsblock .news-item{
  margin-bottom:30px;
}
/*==============================
  Resource Filter Sidebar
================================*/
.resource-filter-sidebar {
  background: #f2f2f2;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  max-width: 320px;
}

@media (min-width: 992px) {
  .resource-filter-sidebar {
    position: sticky;
    top: 120px;
  }
}

/* Search bar */
.rfs-search-wrap {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 10px;
  background: #f2f2f2;
}

.rfs-search-icon {
  color: #999;
  font-size: 15px;
  flex-shrink: 0;
}

.rfs-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: #444;
  font-family: var(--body-font-family);
}

.rfs-search-input::placeholder {
  color: #aaa;
}

.rfs-search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 13px;
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
}

.rfs-search-btn:hover {
  color: #555;
}

/* Divider */
.rfs-divider {
  height: 1px;
  background: #d8d8d8;
  margin: 0;
}

/* Filter group */
.rfs-group {
  padding: 0;
}

.rfs-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.rfs-group-icon {
  color: #aaa;
  font-size: 13px;
  flex-shrink: 0;
}

.rfs-group-title {
  flex: 1;
  font-size: 14px;
  color: #444;
  font-family: var(--body-font-family);
  font-weight: 500;
}

.rfs-group-arrow {
  color: #888;
  font-size: 11px;
  flex-shrink: 0;
}

/* Filter options list */
.rfs-options {
  list-style: none;
  margin: 0;
  padding: 0 16px 12px 16px;
}

.rfs-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  cursor: pointer;
}

.rfs-option-label {
  font-size: 14px;
  color: #444;
  font-family: var(--body-font-family);
}

.rfs-option--active .rfs-option-label {
  color: var(--primary-pink);
  font-weight: 500;
}

/* Dots */
.rfs-option-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c8c8;
  flex-shrink: 0;
}

.rfs-option-dot--active {
  background: var(--primary-pink);
}

/*==============================
  Podcast Promo Strip
================================*/
.podcast-promo-strip {
  background: #fff;
  /*border-top: 1px solid #e8e8e8;*/
  padding: 28px 0;
}
.podcast-promo-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.podcast-promo-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.podcast-promo-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.podcast-promo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.podcast-promo-name {
  color: var(--secondary-color);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  font-family: var(--body-font-family);
}
.podcast-promo-tagline {
  color: #333;
  font-size: 14px;
  margin: 0;
  font-family: var(--body-font-family);
}
.podcast-promo-link {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--heading-font-family);
  margin-top:8px;
}
.podcast-promo-link:hover {
  text-decoration: underline;
}
.podcast-promo-divider {
  width: 1px;
  height: 48px;
  background: #c8c8c8;
  flex-shrink: 0;
}

.podcast-promo-connect {
  flex: 1;
}
.podcast-promo-connect-text {
  color: #555;
  font-size: 14px;
  margin: 0 0 5px 0;
  font-family: var(--body-font-family);
}
.podcast-promo-social-links {
  margin: 0;
  font-size: 14px;
  color: #555;
  font-family: var(--body-font-family);
}
.podcast-promo-social-links a {
  color: var(--secondary-color);
  text-decoration: none;
}
.podcast-promo-social-links a:hover {
  text-decoration: underline;
}

/*==============================
  Reading List Section
================================*/
.reading-list-section {
  background: #fff;
  padding: 60px 0;
}

/* Sidebar nav */
.rl-sidebar {
  padding-top: 4px;
}

.rl-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rl-sidebar {
    padding-top: 4px;
    padding-right: 40px;
}
.rl-sidebar-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.rl-sidebar-item a:before{
  content:"";
  display: inline-block;
  width:45px;
  height:3px;
  background:transparent;
  flex-shrink: 0;
  margin-right:15px;
}
.rl-sidebar-nav li+li{
  margin-top:10px;
}
.rl-sidebar-nav li a:hover:before,
.rl-sidebar-nav li.active a:before{
  background:#D5C4DA;
}
.rl-sidebar-nav li a{
    flex: 1;
    font-size: 16px;
    color: #333;
    font-family: var(--body-font-family);
    text-transform: capitalize;
    font-weight: 500;
    padding-right:30px;
}
.rl-sidebar-nav li a:hover,
.rl-sidebar-nav li.active a{
  color: var(--secondary-color);
}
.rl-sidebar-item:not(.rl-sidebar-item--active) .rl-sidebar-dash {
  display: none;
}
.rl-sidebar-link:after {
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  flex-shrink: 0;
  position: absolute;
  right:0;
}
.rl-sidebar-nav li a:hover:after,
.rl-sidebar-nav li.active a:after{
  background: var(--secondary-color);
    width: 12px;
    height: 12px;
}
/* Section heading */
.rl-section-heading {
  font-size: 30px;
  font-family: var(--heading-font-family);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Resource list */
.rl-resource-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}
.rl-resource-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  font-family: var(--body-font-family);
  line-height: 1.5;
}
.rl-resource-list a {
  color: #333;
  text-decoration: none;
}
.rl-resource-list a:hover {
  color: var(--primary-pink);
  text-decoration: underline;
}
/* Content section spacing */
.rl-content-section--gap {
  margin-top: 56px;
}
/* Sub-section (e.g. South Africa) */
.rl-subsection {
  margin-top: 36px;
}
.rl-subsection-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-family: var(--body-font-family);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 500;
  margin-bottom: 20px;
}
.rl-subsection-dash {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #ccc;
  flex-shrink: 0;
}

/*==============================
  Reading List Banner
================================*/
.rl-banner {
  background: #000;
  padding:60px 0 52px;
  color: #fff;
}
.rl-banner-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 44px;
  font-family: var(--body-font-family);
}
.rl-banner-breadcrumb-link {
  color: var(--secondary-color);
  text-decoration: none;
}
.rl-banner-breadcrumb-link:hover {
  text-decoration: underline;
}
.rl-banner-breadcrumb-sep {
  margin: 0 6px;
  color: #555;
}
.rl-banner-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.rl-banner-left {
  flex: 1;
}
.rl-banner-title {
  font-size: 40px;
  font-family: var(--body-font-family);
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.rl-banner-subtitle-wrap {
  border-left: 3px solid #444;
  padding-left: 20px;
}
.rl-banner-subtitle {
  font-size: 26px;
  color: #888;
  font-family: var(--body-font-family);
  margin: 0;
  line-height: 1.35;
}
.rl-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-shrink: 0;
}
.rl-banner-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.rl-banner-meta-label {
  font-size: 12px;
  text-transform: uppercase;
  /*letter-spacing: 0.14em;*/
  color: #888;
  line-height:1.5;
  font-family: var(--body-font-family);
}
.rl-banner-meta-date {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--body-font-family);
}
.rl-banner-contribute {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--body-font-family);
}
.rl-banner-contribute:hover {
  text-decoration: underline;
}

/*==============================
  About Page Main Section
================================*/
.about-main-section {
  background: #fff;
  padding: 60px 0;
}

/* "Jump to" label above sidebar */
.about-jump-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    padding-left: 65px;
}
/* Orange theme overrides for sidebar active state */
.theme-orange .rl-sidebar-item--active .rl-sidebar-label {
  color: var(--orange);
}

.theme-orange .rl-sidebar-dot--active {
  background: var(--orange);
}

/* Drop cap intro */
.about-dropcap-wrap {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 48px;
}
.about-dropcap-wrap p:first-child::first-letter{
  font-size:4em;
  float:left;
  margin-top:.15em;
  margin-right:0.15em;
  line-height:0.5;
  font-weight: 600;
}
.about-intro-text {
  font-size: 16px;
  color: #333;
  line-height: 1.75;
  font-family: var(--body-font-family);
  margin: 0;
  padding-top: 2px;
}

/* Secondary text + image row */
.about-secondary-text {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  font-family: var(--body-font-family);
  margin: 0;
}

.about-mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-wrap p{
    color: var(--paragraph-color);
}

.about-title{
  margin-bottom:30px;
}
.about-title h2 {
    color: var(--black);
}

.aboutgridarea ul {
  display: block;
  width:100%;
}
.aboutgridarea ul li {
    color: var(--paragraph-color);
    margin: 15px 0;
    position: relative;
    padding: 0 10px;
    float: left;
    width: 33.333%;
}
.aboutgridarea ul li span{
  display:block;
  margin-top:10px;
}
.aboutgridarea ul li:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #888;
    display: inline-block;
    position: absolute;
    right: 8px;
    top:80%;
    transform: translate(-50%, -50%);
}
.asideabout{
  position: sticky;
}
.team{
  margin-bottom:30px;
}
.team h2 {
  font-size:18px;
  color: var(--black);
  margin:10px 0;
}
.team p{
  font-size:15px;
}
.team a{
  font-size:15px;
}
.team a:hover{
  color:var(--secondary-color);
}
.teamimg{
  color: var(--paragraph-color);
}


/*==============================
  Take Action Page
================================*/
.take-action-main {
  background: #000;
  padding-top: 10px;
}
.take-action-page .rl-banner {
  padding: 160px 0 35px;
}
.take-action-page .rl-banner-title {
  text-transform: none;
  letter-spacing: 0;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 24px;
}
.take-action-intro {
  max-width: 840px;
}
.take-action-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: #d6d6d6;
  margin: 0 0 28px;
  font-family: var(--body-font-family);
}
.take-action-mustread {
  min-width: 280px;
}
.take-action-side-title {
  font-size: 19px;
  color: #fff;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: none;
  font-family: var(--body-font-family);
  font-weight: 400;
}
.take-action-side-list {
  margin: 0;
  padding-left: 20px;
}
.take-action-side-list li {
  color: #d8d8d8;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  list-style: disc;
}
.take-action-side-list a {
  color: #d8d8d8;
  text-decoration: none;
}

.take-action-side-list a:hover {
  color: var(--secondary-color);
}

.take-action-card-grid {
  background: #e8e8e8;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.take-action-card h3 {
    margin: 0 0 22px;
    color: #1f1f1f;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
}
.take-action-card p {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #2f2f2f;
    font-family: var(--body-font-family);
    min-height: 180px;
}
.take-action-card-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #1f1f1f;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid rgba(31, 31, 31, 0.25);
  padding-bottom: 4px;
  font-weight: 600;
}
.take-action-card-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.take-action-campaign {
  margin-top: 80px;
}
.take-action-campaign h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size:52px;
  text-transform: uppercase;
  line-height: 1.1;
}
.take-action-campaign h2 span {
  color: var(--secondary-color);
  display: block;
}
.take-action-campaign p {
  color: #d3d3d3;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.take-action-email-btn {
  width: 100%;
  border-radius: 0 !important;
  min-height: 56px;
  border-color: var(--secondary-color) !important;
  background: var(--secondary-color) !important;
  color: #202020 !important;
}
.theme-green .take-action-side-list a:hover,
.theme-green .take-action-card-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.take-action-campaigns-strip {
  background: #202020;
  padding: 26px 0 58px;
}
.take-action-campaigns-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.take-action-campaigns-head h2 {
  margin: 0;
  color: #f3f3f3;
  text-transform: uppercase;
  font-size:30px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.take-action-campaigns-head a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 20px;
}
.take-action-campaign-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.take-action-campaign-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.take-action-campaign-source {
  color: var(--secondary-color);
  margin: 0 0 10px;
  font-size: 18px;
  font-family:var(--heading-font-family);
}
.take-action-campaign-info h3 {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}
.take-action-campaign-info h3 a {
  color: #f3f3f3;
  text-decoration: none;
}
.take-action-campaign-info h3 a:hover {
  color: var(--secondary-color);
}
.take-action-campaign-meta {
  margin: 0;
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.authortags{
  position: relative;
  padding:30px 0;
  margin:30px 0 0;
}
.authortags:before, .authortags:after {
    content: "";
    width: 60px;
    height: 2px;
    background: #D5C4DA;
    position: absolute;
    left: 0;
}
.authortags:before{
  top:0;
}
.authortags:after{
  bottom:0;
}
.authortags ul li{
  display: inline-block;
  margin-right:30px;
}
.authortags ul li a{
  text-transform: uppercase;
}
.topauthortags{
  margin-bottom:30px;
}
.topauthortags li{
  margin-bottom:10px;
}
.topauthortags li a{
  text-transform: uppercase;
  font-size:15px;
}
.featured-greycard {
    padding: 30px;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgb(255 255 255) 0%, #f4f4f4 100%);
    margin:30px 0;
}
/* About jump sidebar sticky on scroll */
.about-main-section .asideabout {
  position: sticky;
  top: 110px;
}

@media screen and (max-width: 991px) {
  .about-main-section .asideabout {
    position: static;
    top: auto;
  }
}

/* Force sticky header across all pages */
.header-area.is-sticky .header-bottom-wrap,
.header-area .header-bottom-wrap.is-sticky,
.header-area .header-bottom-wrap.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

body.admin-bar .header-area.is-sticky .header-bottom-wrap,
body.admin-bar .header-area .header-bottom-wrap.is-sticky,
body.admin-bar .header-area .header-bottom-wrap.sticky {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header-area.is-sticky .header-bottom-wrap,
  body.admin-bar .header-area .header-bottom-wrap.is-sticky,
  body.admin-bar .header-area .header-bottom-wrap.sticky {
    top: 46px;
  }
}

.home-short-videos-section {
  padding: 18px 0 24px;
  background: #f8f7f2;
  overflow: hidden;
}

.home-short-videos-section .section-heading {
  align-items: center;
  margin-bottom: 18px;
}

.home-short-videos-carousel .owl-stage {
  display: flex;
}

.home-short-videos-carousel .owl-item {
  display: flex;
  height: auto;
}

.home-short-videos-carousel .owl-nav {
  position: absolute;
  top: -58px;
  right: 0;
  display: flex;
  gap: 12px;
}

.home-short-videos-carousel .owl-nav button.owl-prev,
.home-short-videos-carousel .owl-nav button.owl-next {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff !important;
  color: #1a1a1a !important;
  font-size: 22px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-short-videos-carousel .owl-nav button.owl-prev:hover,
.home-short-videos-carousel .owl-nav button.owl-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.home-short-videos-carousel .owl-dots {
  margin-top: 24px;
  text-align: center;
}

.home-short-videos-carousel {
  margin-bottom: 30px;
}

.home-short-video-card {
  width: 100%;
}

.home-short-video-card.is-current .home-short-video-card__media {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.home-short-video-card__media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd7ca;
}

.home-short-video-card__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-short-video-card__media::after {
  z-index: 0;
}

.home-short-video-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.home-short-video-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-short-video-card__play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--orange);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.home-short-video-card__content {
  padding-top: 12px;
}
.home-short-video-card__content h3 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.35;
    font-family: var(--body-font-family);
    font-weight: 500;
}
.home-short-video-card__content h3 a {
  color: var(--black);
}
.home-short-video-card__content h3 a:hover {
  color: var(--black);
  text-decoration: underline;
}

.error-404-page {
  /*min-height: calc(100vh - 120px);*/
  padding: 28px 18px;
  background: #d4d6d8;
  display: flex;
  align-items: center;
}
.error-404-shell {
    position: relative;
    min-height: 640px;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}
.error-404-code {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13%;
  font-family: 'Integral CF';
  font-size: clamp(220px, 32vw, 460px);
  line-height: 0.9;
  color: rgba(74, 105, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.error-404-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 420px;
  padding: 48px 24px;
}

.error-404-content h1 {
  margin-bottom: 18px;
  color: #141414;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  font-family: 'superclarendonlight', Helvetica, Arial, sans-serif;
}

.error-404-content p {
  margin-bottom: 28px;
  color: #707070;
  font-size: 16px;
  line-height: 1.5;
}

.error-404-home {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 28px;
  border-radius: 16px;
  background:var(--secondary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.error-404-home:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(53, 82, 244, 0.2);
}

.error-404-home__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: #3552f4;
  font-size: 24px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .error-404-shell {
    min-height: 520px;
  }

  .error-404-code {
    padding: 0 5%;
    font-size: clamp(150px, 32vw, 300px);
  }
}

@media screen and (max-width: 767px) {
  .error-404-page {
    padding: 16px 10px;
  }

  .error-404-shell {
    min-height: 420px;
    border-radius: 20px;
  }

  .error-404-code {
    padding: 0 2%;
    font-size: clamp(120px, 30vw, 190px);
  }

  .error-404-content p {
    font-size: 15px;
  }

  .error-404-home {
    padding-left: 20px;
  }
}

.mfp-short-video-wrap {
  position: relative;
  width: min(92vw, 560px);
  margin: 0 auto;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.mfp-short-video-player {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  background: #000;
}

.mfp-short-video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  z-index: 2;
}

.mfp-short-video-shell .mfp-close {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .profile-editor-card {
    grid-template-columns: 1fr;
  }

  .community-bios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .author-profile-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .home-short-videos-section {
    padding: 56px 0 40px;
  }

  .home-short-videos-carousel .owl-nav {
    position: static;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .home-short-videos-section .section-heading {
    align-items: flex-start;
  }

  .home-short-video-card__content h3 {
    font-size: 16px;
  }
}

/* Contact page (block pattern + shortcode form) */
.peoplestech-contact {
  background: #efe4d4;
  padding: clamp(48px, 6vw, 80px) 0;
}

.peoplestech-contact__columns {
  gap: clamp(24px, 4vw, 48px);
}

.peoplestech-contact__title {
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.peoplestech-contact__subtitle {
  max-width: 46ch;
  margin: 0 0 28px;
  color: rgba(0, 0, 0, 0.65);
}

.peoplestech-contact__info-grid {
  gap: 24px;
  margin-top: 16px;
}

.peoplestech-contact__info-title {
  font-size: 16px;
  margin: 0 0 8px;
}

.peoplestech-contact__info-desc {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  max-width: 34ch;
}

.peoplestech-contact__info-value {
  margin: 0;
  font-weight: 600;
}

.peoplestech-contact__info-value a {
  color: #111;
  text-decoration: none;
}

.peoplestech-contact__info-value a:hover {
  text-decoration: underline;
}

.peoplestech-contact__card {
  background: #f7f0e3;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.peoplestech-contact-template .wp-block-group__inner-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.peoplestech-contact-form__notice {
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 14px;
  font-size: 14px;
}

.peoplestech-contact-form__notice--success {
  background: #e7f7ee;
  color: #0b6b3a;
}

.peoplestech-contact-form__notice--error {
  background: #fdecec;
  color: #8a1a1a;
}

.peoplestech-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.peoplestech-contact-form__field {
  display: block;
  margin: 12px 0 0;
}

.peoplestech-contact-form__field > span {
  display: block;
  font-size: 12px;
  margin: 0 0 6px;
  color: rgba(0, 0, 0, 0.7);
}

.peoplestech-contact-form__field input,
.peoplestech-contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #efe6d8;
  padding: 12px 14px;
  outline: none;
}

.peoplestech-contact-form__field textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 140px;
}

.peoplestech-contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.peoplestech-contact-form__checkbox input {
  width: 16px;
  height: 16px;
}

.peoplestech-contact-form__submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.peoplestech-contact-form__submit:hover {
  background: #000;
}

@media (max-width: 781px) {
  .peoplestech-contact__columns {
    flex-wrap: wrap;
  }

  .peoplestech-contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.peoplestech-contact {
  background: #efe4d4;
  padding: clamp(48px, 6vw, 80px) 0;
}

.peoplestech-contact__columns {
  gap: clamp(24px, 4vw, 48px);
}

.peoplestech-contact__title {
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.peoplestech-contact__subtitle {
  max-width: 46ch;
  margin: 0 0 28px;
  color: rgba(0, 0, 0, 0.65);
}

.peoplestech-contact__info-grid {
  gap: 24px;
  margin-top: 16px;
}

.peoplestech-contact__info-title {
  font-size: 16px;
  margin: 0 0 8px;
}

.peoplestech-contact__info-desc {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  max-width: 34ch;
}

.peoplestech-contact__info-value {
  margin: 0;
  font-weight: 600;
}

.peoplestech-contact__info-value a {
  color: #111;
  text-decoration: none;
}

.peoplestech-contact__info-value a:hover {
  text-decoration: underline;
}

.peoplestech-contact__card {
  background: #f7f0e3;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.peoplestech-contact-template .wp-block-group__inner-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.peoplestech-contact-form__notice {
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 14px;
  font-size: 14px;
}

.peoplestech-contact-form__notice--success {
  background: #e7f7ee;
  color: #0b6b3a;
}

.peoplestech-contact-form__notice--error {
  background: #fdecec;
  color: #8a1a1a;
}

.peoplestech-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.peoplestech-contact-form__field {
  display: block;
  margin: 12px 0 0;
}

.peoplestech-contact-form__field > span {
  display: block;
  font-size: 12px;
  margin: 0 0 6px;
  color: rgba(0, 0, 0, 0.7);
}

.peoplestech-contact-form__field input,
.peoplestech-contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #efe6d8;
  padding: 12px 14px;
  outline: none;
}

.peoplestech-contact-form__field textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 140px;
}

.peoplestech-contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}

.peoplestech-contact-form__checkbox input {
  width: 16px;
  height: 16px;
}

.peoplestech-contact-form__submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.peoplestech-contact-form__submit:hover {
  background: #000;
}

@media (max-width: 781px) {
  .peoplestech-contact__columns {
    flex-wrap: wrap;
  }

  .peoplestech-contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* FAQs page */
.peoplestech-faqs {
  background: #ffffff;
  padding: clamp(56px, 6vw, 84px) 0;
}

.peoplestech-faqs__section + .peoplestech-faqs__section {
  margin-top: clamp(56px, 7vw, 92px);
}

.peoplestech-faqs__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.peoplestech-faqs__heading {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.peoplestech-faqs__subheading {
  color: rgba(0, 0, 0, 0.65);
  max-width: 46ch;
  font-size: 14px;
}

.peoplestech-faqs__accordion {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.peoplestech-faqs__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.peoplestech-faqs__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: #111;
}

.peoplestech-faqs__qtext {
  flex: 1;
}

.peoplestech-faqs__icon {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.peoplestech-faqs__icon::before,
.peoplestech-faqs__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
}

.peoplestech-faqs__icon::before {
  width: 9px;
  height: 1px;
}

.peoplestech-faqs__icon::after {
  width: 1px;
  height: 9px;
}

.peoplestech-faqs__question[aria-expanded="true"] .peoplestech-faqs__icon::after {
  display: none;
}

.peoplestech-faqs__answer {
  padding: 0 0 16px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.peoplestech-faqs__answer p:last-child {
  margin-bottom: 0;
}

.peoplestech-faqs__empty {
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

@media (max-width: 991px) {
  .peoplestech-faqs__grid {
    grid-template-columns: 1fr;
  }
}



.pt-event-single__map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.06);
}

.pt-event-single__side-location {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 13px;
}

.pt-event-single__related {
  padding: clamp(46px, 6vw, 86px) 0;
  background: #f6f7fb;
}

.pt-event-single__related-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
}

.pt-event-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pt-event-mini {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.pt-event-mini__media img,
.pt-event-mini__placeholder {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.06);
}

.pt-event-mini__body {
  padding: 14px;
}

.pt-event-mini__date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
  margin-bottom: 8px;
}

.pt-event-mini__title {
  margin: 0 0 8px;
  font-size: 14px;
}

.pt-event-mini__title a {
  color: #111;
  text-decoration: none;
}

.pt-event-mini__title a:hover {
  text-decoration: underline;
}

.pt-event-mini__loc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
  .pt-event-single__hero-grid {
    grid-template-columns: 1fr;
  }

  .pt-event-single__content-grid {
    grid-template-columns: 1fr;
  }

  .pt-event-single__related-grid {
    grid-template-columns: 1fr;
  }
}

















/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media screen and (max-width:1700px){ 
}
@media screen and (max-width:1600px){
}
@media screen and (max-width:1500px){ 
}
@media screen and (max-width:1400px){
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1300px){
}
@media screen and (max-width:1280px){
}
@media screen and (max-width:1200px){
  .take-action-intro p {
    font-size: 16px;
  }
  .take-action-side-list li,
  .take-action-card p,
  .take-action-campaign p {
    font-size: 15px;
  }
  .take-action-card h3 {
    font-size: 18px;
  }
  .take-action-campaign h2 {
    font-size: 38px;
  }
  .take-action-campaign-item {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
  .take-action-campaign-thumb img {
    height: 190px;
  }
  .take-action-campaign-source {
    font-size: 16px;
  }
  .take-action-campaign-info h3 {
    font-size: 20px;
  }
  .take-action-campaign-meta {
    font-size: 11px;
  }
}
@media screen and (max-width:1150px){
}
@media screen and (max-width:1100px){
}
@media screen and (max-width:1024px){
}
@media screen and (max-width:991px){
.take-action-card-grid {
  grid-template-columns: 1fr;
  padding: 34px 28px;
}
.take-action-campaign {
  margin-top: 38px;
}
.take-action-side-title {
  margin-top: 10px;
}
.take-action-campaign-item {
  grid-template-columns: 1fr;
}
.take-action-campaign-thumb img {
  height: auto;
}
.topics-cloud-offcanvas ul li a {
    font-size: 24px;
}
.footer-off-canvas {
    margin-top: 5rem;
}
.leftcanvas-info a {
    padding: 14px 30px;
    font-size: 15px;
}
.leftcanvas-info p {
    padding: 10px 0;
    font-size: 18px;
}
.feature-hero__image {
    width:100%;
}
.bottom-ve {
    margin-bottom: 0;
}
}
@media screen and (max-width:900px){
}
@media screen and (max-width:800px){
}
@media screen and (max-width:767px){
  .take-action-intro p {
    font-size: 15px;
    line-height: 1.55;
  }
  .take-action-side-list li,
  .take-action-card p,
  .take-action-campaign p {
    font-size: 14px;
    line-height: 1.55;
  }
  .take-action-card h3 {
    font-size: 16px;
  }
  .take-action-campaign h2 {
    font-size: 30px;
  }
  .take-action-card-link {
    font-size: 16px;
  }
  .take-action-campaigns-head h2 {
    font-size: 18px;
  }
  .take-action-campaigns-head a {
    font-size: 16px;
  }
  .take-action-campaign-source {
    font-size: 15px;
  }
  .take-action-campaign-info h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .take-action-campaign-meta {
    font-size: 10px;
  }
.rs-post-overlay-one .rs-post-overlay-title {
    font-size: 26px;
}
.rs-post-video-three .rs-post-video-thumb {
    max-height: inherit;
}
h2.section-title {
    font-size: 28px;
}
.section-heading h2 {
    margin-bottom: 0;
    font-size: 28px;
}
.rs-footer-copyright-link img {
    display: block;
    text-align: center;
    margin: 0 auto 15px;
}
.rs-footer-copyright-item {
    text-align: center;
    width: 100%;
}
.rs-copyright-one .rs-footer-copyright p {
    margin-left: 0;
}
.rs-footer-copyright-link ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-top .g-5 {
    --bs-gutter-y: 1rem;
}
.rs-footer-widget-logo {
    margin-left: 0;
    padding: 30px 0;
}
.card-author {
    margin-bottom: 10px;
}
.news-item h3 {
    margin-bottom: 0;
}
.links-itemarea .news-item {
    padding-bottom: 0;
}
}
@media screen and (max-width:715px){
}
@media screen and (max-width:630px){
}
@media screen and (max-width:600px){
/*.header__logo > a span {
    margin-left: 10px;
    font-size: 18px;
}*/
.header__logo > a .logotext{
    font-size: 18px;
}
.topics-cloud-offcanvas ul li a {
    font-size: 18px;
}
.footer-off-canvas .col-lg-4.col-md-6 {
    width: 33.333333%;
}
.offcanvs-menu {
    margin-bottom: 15px;
}

.footer-widget {
    text-align: center;
}
.rs-footer-widget-logo {
    text-align: center;
}
.topics-cloud li {
    font-size: 16px;
}
.highlight h3 {
    font-size: 1rem;
}
.highlight {
    padding: 20px;
    min-height: inherit;
    flex: 1 1 100%;
}
.donate-strip .pt-actions {
    align-items: center;
    justify-content: center;
}
.donateinfo p {
  text-align: center;
}
.donateinfo h2 {
    text-align: center;
    margin-bottom: 10px;
}
.signup-card, .resource-card {
    padding: 30px;
    gap: 15px;
}
.widgetarea .signup-card h2 {
    font-size: 22px;
}
.podcast-promo-connect {
    width: 100%;
    text-align: center;
}
.related-articles-slider .owl-nav {
    display: none;
}
.about-title h2 {
    font-size: 20px;
}
.aboutgridarea ul li {
    width: 50%;
}
.pagetitle h1 {
    font-size: 28px;
}
}
@media screen and (max-width:575px){
.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 1.5rem;
}
.single-section {
    padding-bottom: 0;
}
.cta-graphic {
    padding: 1.5rem 0;
}
.cta-graphic img {
    margin-top: 0rem;
    width: 55%;
}
.rl-banner {
    padding-top: 15px !important;
}
.entry-main-content h2 {
    font-size: 22px;
}
.entry-main-content p {
    font-size: 15px !important;
}
.podcastblock h2 a {
    font-size: 18px;
}
.feature-card-content {
    padding: 15px 0;
}
}
@media screen and (max-width:480px){
.header__logo svg {
    height: 55px;
}
.entry-main-content p {
    font-size: 15px;
}
.entry-main-content blockquote h3{
  font-size:18px;
}
.section-heading h2 {
    font-size: 24px;
}
.manifesto-card {
    padding: 30px;
    gap: 30px;
}
.manifesto-copy h3 {
    font-size: 1.2rem;
}
.rs-post-overlay-one .rs-post-overlay-title {
    font-size: 22px;
}
}
@media screen and (max-width:390px){
}
@media screen and (max-width:320px){
}

/* ==========================================================
   Events (archive + single)
   ========================================================== */
.pt-events__hero {
    padding: 60px 0 30px;
}

.pt-events__breadcrumb {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 18px;
}

.pt-events__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pt-events__breadcrumb span {
    margin: 0 6px;
    color: #9a9a9a;
}

.pt-events__title {
    font-size: 54px;
    font-weight: 300;
    margin: 0 0 14px;
    line-height: 1.1;
}

.pt-events__intro {
    max-width: 640px;
    font-size: 16px;
    color: #444;
    margin: 0;
}

.pt-events__section {
    padding: 24px 0 38px;
}

.pt-events__section--past {
    padding-top: 6px;
}

.pt-events__section-title {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 18px;
}

.pt-events__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pt-event-card {
    background: #f5f5f5;
    border: 1px solid #ececec;
}

.pt-event-card__top {
    padding: 18px 18px 6px;
    min-height: 162px;
}

.pt-event-card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0 0 14px;
    color: #222;
}

.pt-event-card__title a {
    color: inherit;
    text-decoration: none;
}

.pt-event-card__date {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pt-event-card__day {
    font-size: 58px;
    line-height: 1;
    font-weight: 300;
    color: #111;
}

.pt-event-card__month {
    font-size: 14px;
    line-height: 1.15;
    color: #555;
    max-width: 52px;
    word-break: break-word;
}

.pt-event-card__media {
    position: relative;
    background: #ddd;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.pt-event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pt-event-card__media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dcdcdc, #f3f3f3);
}

.pt-event-card__actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(1px);
}

.pt-event-card__btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.pt-event-card__btn:last-child {
    border-right: 0;
}

.pt-events__more {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.pt-events__more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 14px 18px;
    border: 1px solid #bdbdbd;
    background: #fff;
    color: #333;
    text-decoration: none;
}

.pt-event-single__hero {
    padding: 50px 0 18px;
}

.pt-event-single__breadcrumb {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 18px;
}

.pt-event-single__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.pt-event-single__breadcrumb span {
    margin: 0 6px;
    color: #9a9a9a;
}

.pt-event-single__title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 10px;
}

.pt-event-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
}

.pt-event-single__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pt-event-single__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.pt-event-single__btn--ghost {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

.pt-event-single__body {
    padding: 18px 0 40px;
}

.pt-event-single__image {
    margin-bottom: 18px;
}

.pt-event-single__related {
    padding: 30px 0 60px;
}

.pt-event-single__related-title {
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 18px;
}

@media (max-width: 1199px) {
    .pt-events__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .pt-events__title {
        font-size: 44px;
    }
    .pt-events__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .pt-events__title {
        font-size: 38px;
    }
    .pt-events__grid {
        grid-template-columns: 1fr;
    }
}
