/*=================================================================*/
/*                      BASE
/*=================================================================*/
body {
  color: var(--text-color);
  background-color: #fff;
  font-family: var(--primary-font);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.relative {
  position: relative;
}

/*=================================================================*/
/*                      Preloader
/*=================================================================*/
#preloader {
  background: #FFF;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1031;
}

.book {
  --color: #FE4F70;
  --duration: 6.8s;
  width: 32px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.book .inner {
  width: 32px;
  height: 12px;
  position: relative;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  animation: book var(--duration) ease infinite;
}
.book .inner .left,
.book .inner .right {
  width: 60px;
  height: 4px;
  top: 0;
  border-radius: 2px;
  background: var(--color);
  position: absolute;
}
.book .inner .left:before,
.book .inner .right:before {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: inherit;
  position: absolute;
  top: -10px;
  left: 6px;
}
.book .inner .left {
  right: 28px;
  transform-origin: 58px 2px;
  transform: rotateZ(90deg);
  animation: left var(--duration) ease infinite;
}
.book .inner .right {
  left: 28px;
  transform-origin: 2px 2px;
  transform: rotateZ(-90deg);
  animation: right var(--duration) ease infinite;
}
.book .inner .middle {
  width: 32px;
  height: 12px;
  border: 4px solid var(--color);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateY(2px);
}
.book ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 0;
}
.book ul li {
  height: 4px;
  border-radius: 2px;
  transform-origin: 100% 2px;
  width: 48px;
  right: 0;
  top: -10px;
  position: absolute;
  background: var(--color);
  transform: rotateZ(0deg) translateX(-18px);
  animation-duration: var(--duration);
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.book ul li:nth-child(0) {
  animation-name: page-0;
}
.book ul li:nth-child(1) {
  animation-name: page-1;
}
.book ul li:nth-child(2) {
  animation-name: page-2;
}
.book ul li:nth-child(3) {
  animation-name: page-3;
}
.book ul li:nth-child(4) {
  animation-name: page-4;
}
.book ul li:nth-child(5) {
  animation-name: page-5;
}
.book ul li:nth-child(6) {
  animation-name: page-6;
}
.book ul li:nth-child(7) {
  animation-name: page-7;
}
.book ul li:nth-child(8) {
  animation-name: page-8;
}
.book ul li:nth-child(9) {
  animation-name: page-9;
}
.book ul li:nth-child(10) {
  animation-name: page-10;
}
.book ul li:nth-child(11) {
  animation-name: page-11;
}
.book ul li:nth-child(12) {
  animation-name: page-12;
}
.book ul li:nth-child(13) {
  animation-name: page-13;
}
.book ul li:nth-child(14) {
  animation-name: page-14;
}
.book ul li:nth-child(15) {
  animation-name: page-15;
}
.book ul li:nth-child(16) {
  animation-name: page-16;
}
.book ul li:nth-child(17) {
  animation-name: page-17;
}
.book ul li:nth-child(18) {
  animation-name: page-18;
}

@keyframes page-0 {
  4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  13%, 54% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  63% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-1 {
  5.86% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  14.74%, 55.86% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  64.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-2 {
  7.72% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  16.48%, 57.72% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  66.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-3 {
  9.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  18.22%, 59.58% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  68.22% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-4 {
  11.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  19.96%, 61.44% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  69.96% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-5 {
  13.3% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  21.7%, 63.3% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  71.7% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-6 {
  15.16% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  23.44%, 65.16% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  73.44% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-7 {
  17.02% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  25.18%, 67.02% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  75.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-8 {
  18.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  26.92%, 68.88% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  76.92% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-9 {
  20.74% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  28.66%, 70.74% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  78.66% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-10 {
  22.6% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  30.4%, 72.6% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  80.4% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-11 {
  24.46% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  32.14%, 74.46% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  82.14% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-12 {
  26.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  33.88%, 76.32% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  83.88% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-13 {
  28.18% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  35.62%, 78.18% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  85.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-14 {
  30.04% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  37.36%, 80.04% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  87.36% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-15 {
  31.9% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  39.1%, 81.9% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  89.1% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-16 {
  33.76% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  40.84%, 83.76% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  90.84% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-17 {
  35.62% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  42.58%, 85.62% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  92.58% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes page-18 {
  37.48% {
    transform: rotateZ(0deg) translateX(-18px);
  }
  44.32%, 87.48% {
    transform: rotateZ(180deg) translateX(-18px);
  }
  94.32% {
    transform: rotateZ(0deg) translateX(-18px);
  }
}
@keyframes left {
  4% {
    transform: rotateZ(90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
  }
  46%, 54% {
    transform: rotateZ(90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(90deg);
  }
}
@keyframes right {
  4% {
    transform: rotateZ(-90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
  }
  46%, 54% {
    transform: rotateZ(-90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
@keyframes book {
  4% {
    transform: rotateZ(-90deg);
  }
  10%, 40% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  40.01%, 59.99% {
    transform-origin: 30px 2px;
  }
  46%, 54% {
    transform: rotateZ(90deg);
  }
  60%, 90% {
    transform: rotateZ(0deg);
    transform-origin: 2px 2px;
  }
  96% {
    transform: rotateZ(-90deg);
  }
}
/*=================================================================*/
/*                      TYPOGRAPHY
/*=================================================================*/
h1, h2, h3, h4, h5, h6 {
  color: #203656;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0;
}

a {
  color: var(--primary-color);
  outline: 0;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: #203656;
}
a:focus {
  outline: 0;
}

.blockquote {
  font-size: 18px;
}

blockquote {
  padding: 20px 20px;
  margin: 0 0 20px;
  background: #fff8fa;
  border-left: solid 3px var(--primary-color);
  border-radius: 5px;
}

blockquote p {
  line-height: 1.6;
}

.blockquote-footer {
  margin-top: 0;
}

.table {
  color: #707a88;
}

/*=================================================================*/
/*                      HEADER                              
/*=================================================================*/
.header-default {
  padding: 40px 0;
  position: relative;
  width: 100%;
}
.header-default .navbar-nav {
  margin-left: 50px;
}

.header-default.clone {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  border-bottom: solid 1px #EBEBEB;
  right: 0;
  padding: 25px 0;
  transform: translateY(-100%);
  transition: 0.2s transform cubic-bezier(0.3, 0.73, 0.3, 0.74);
  z-index: 4;
}

.header-personal nav.clone, .header-classic .header-bottom.clone {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  border-bottom: solid 1px #EBEBEB;
  right: 0;
  transform: translateY(-100%);
  transition: 0.2s transform cubic-bezier(0.3, 0.73, 0.3, 0.74);
  z-index: 4;
}
.header-personal nav.clone .centered-nav, .header-classic .header-bottom.clone .centered-nav {
  border-top: 0;
}

.header-classic .header-top {
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: solid 1px #EBEBEB;
}
.header-classic .header-bottom {
  padding: 20px 0;
}

.header-minimal {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: solid 1px #EBEBEB;
}

body.down .header-default.clone, body.down .header-personal nav.clone, body.down .header-classic .header-bottom.clone {
  transform: translateY(0);
}

.header-personal .header-top {
  padding-top: 30px;
  padding-bottom: 30px;
}
.header-personal .centered-nav {
  border-top: solid 1px #EBEBEB;
  padding: 20px 0;
}
.header-personal.light {
  left: 0;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 2;
}
.header-personal.light .centered-nav {
  border-top-color: rgba(235, 235, 235, 0.2);
}
.header-personal.light .text-logo {
  color: #FFF;
}
.header-personal.light .social-icons li a {
  color: #FFF;
}
.header-personal.light .social-icons li a:hover {
  color: var(--primary-color);
}
.header-personal.light .navbar .nav-link {
  color: #FFF;
}
.header-personal.light .navbar.clone .nav-link {
  color: var(--text-color);
}
.header-personal.light .navbar.clone .nav-link:hover {
  color: #203656;
}
.header-personal.light .navbar.clone li.active .nav-link {
  color: #FFF;
}

.text-logo {
  color: #203656;
  font-size: 30px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin: 0px 0 5px;
}
.text-logo .dot {
  color: var(--primary-color);
  font-size: 44px;
  margin-left: 5px;
}

.slogan {
  font-family: var(--heading-font);
  color: var(--text-color);
  font-size: 14px;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  font-family: var(--heading-font);
  font-size: 14px;
}
.navbar-nav .nav-link {
  padding: 0.439rem 1rem;
  color: var(--text-color);
}
.navbar-nav .nav-link:hover {
  color: #203656;
}
.navbar-nav li.active .nav-link {
  color: #FFF;
  border-radius: 25px;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 100%);
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0;
  margin: 0;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 0.25rem;
  box-shadow: 0 8px 20px rgba(32, 54, 86, 0.2);
}
.dropdown-menu:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: -10px;
  left: 25%;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #FFF;
}
.dropdown-menu li:after {
  content: "";
  background: #EBEBEB;
  background: linear-gradient(to right, #EBEBEB 0%, transparent 100%);
  display: block;
  height: 1px;
  width: 100%;
}
.dropdown-menu li:last-child:after {
  content: "";
  display: none;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.6rem 1.5rem;
  clear: both;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover {
  margin-left: 5px;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.dropdown-divider {
  height: 0;
  margin: 0.1rem 0;
  overflow: hidden;
  border-top: 1px solid #DDD;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  content: "\e604";
  font-family: "simple-line-icons";
  font-size: 8px;
  border-top: transparent;
  border-right: transparent;
  border-bottom: 0;
  border-left: transparent;
}

.burger-icon:before, .burger-icon:after {
  content: "";
  background: #FFF;
  display: block;
  margin: auto;
  height: 1px;
  width: 15px;
}
.burger-icon:before {
  margin-bottom: 6px;
}
.burger-icon:after {
  margin-top: 6px;
}

.header-right .social-icons {
  display: inline-block;
}
.header-right .header-buttons {
  display: inline-block;
  margin-left: 50px;
}
.header-right .header-buttons button {
  margin-left: 10px;
}
.header-right .header-buttons button:first-child {
  margin-left: 0;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.3rem;
    padding-left: 1.3rem;
  }
}
.canvas-menu {
  background: #FFF;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px;
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  z-index: 6;
  box-shadow: -4px 0px 20px rgba(32, 54, 86, 0.1);
  transform: translateX(350px);
  transition: all 0.3s ease-in-out;
  /* === Vertical Menu === */
  /* === Submenu === */
}
.canvas-menu.open {
  transform: translateX(0);
}
.canvas-menu.position-left {
  left: 0;
  right: auto;
  transform: translateX(-350px);
}
.canvas-menu.position-left.open {
  transform: translateX(0);
}
.canvas-menu .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  position: absolute;
  padding: 0.25em 0.25em;
  color: #000;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.4;
  right: 30px;
  top: 20px;
  transition: all 0.3s ease-in-out;
}
.canvas-menu .btn-close:focus {
  outline: none;
  box-shadow: none;
}
.canvas-menu .btn-close:hover {
  opacity: 1;
}
.canvas-menu .logo {
  margin-bottom: 80px;
  margin-top: 50px;
  width: 100%;
}
.canvas-menu nav {
  width: 100%;
}
.canvas-menu .vertical-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.canvas-menu .vertical-menu li.openmenu > a {
  color: #203656;
}
.canvas-menu .vertical-menu li.openmenu .switch {
  transform: rotate(180deg);
}
.canvas-menu .vertical-menu li {
  padding: 0;
  position: relative;
  list-style: none;
  transition: all 0.2s ease-in-out;
}
.canvas-menu .vertical-menu li:after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to right, #EBEBEB 0%, transparent 100%);
}
.canvas-menu .vertical-menu li.active a {
  color: var(--primary-color);
}
.canvas-menu .vertical-menu li.active .submenu a {
  color: var(--text-color);
}
.canvas-menu .vertical-menu li.active .submenu a:hover {
  color: #203656;
}
.canvas-menu .vertical-menu li .switch {
  border: solid 1px #EBEBEB;
  border-radius: 5px;
  font-size: 10px;
  display: inline-block;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  color: var(--primary-color);
  position: absolute;
  top: 0px;
  right: 0;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.canvas-menu .vertical-menu li a {
  color: #203656;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}
.canvas-menu .submenu {
  display: none;
  padding: 10px 20px;
}
.canvas-menu .submenu li {
  padding: 5px 0;
}
.canvas-menu .submenu li:after {
  content: "";
  display: none;
}
.canvas-menu .submenu li a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}
.canvas-menu .submenu li a:hover {
  color: #203656;
}

/*=================================================================*/
/*                      SECTIONS                              
/*=================================================================*/
.site-wrapper .main-overlay {
  opacity: 0;
  visibility: hidden;
  filter: blur(2px);
  background: #fff;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 5;
  transition: all 0.3s ease-in-out;
}
.site-wrapper .main-overlay.active {
  opacity: 0.6;
  visibility: visible;
}

section {
  position: relative;
}

.main-content {
  margin-top: 60px;
}

.main-content-lg {
  margin-top: 140px;
  margin-bottom: 140px;
}

.container-minimal {
  max-width: 900px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-header {
  margin-bottom: 30px;
  position: relative;
}
.section-header img.wave {
  margin-top: 10px;
}

.section-title {
  font-size: 24px;
  margin: 0;
}

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 1040px;
  width: 100%;
}
.hero:after {
  content: "";
  background: #203656;
  display: block;
  left: 0;
  opacity: 0.8;
  top: 0;
  height: 100%;
  position: absolute;
  width: 100%;
}
.hero .cta {
  margin: auto;
  max-width: 700px;
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.hero .cta h2 {
  color: #FFF;
  font-size: 48px;
}
.hero .cta p {
  color: #FFF;
  font-size: 18px;
  opacity: 0.7;
}
.hero svg {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/*=================================================================*/
/*                      POST                              
/*=================================================================*/
.post .category-badge {
  color: #FFF;
  font-size: 13px;
  border-radius: 25px;
  display: inline-block;
  padding: 6px 11px;
  line-height: 1;
  left: 20px;
  top: 20px;
  z-index: 1;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 51%, var(--primary-color) 100%);
  background-size: 200% auto;
  transition: all 0.3s ease-in-out;
}
.post .category-badge.lg {
  font-size: 14px;
  padding: 8px 20px;
}
.post .category-badge:hover {
  background-position: right center;
}
.post .post-format {
  color: #FFF;
  display: block;
  border-radius: 50%;
  font-size: 20px;
  height: 50px;
  line-height: 54px;
  right: 20px;
  text-align: center;
  bottom: -25px;
  position: absolute;
  width: 50px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  background: var(--primary-color);
  background: linear-gradient(to top, var(--primary-color) 0%, #FFA387 100%);
  z-index: 1;
}
.post .post-format-sm {
  color: #FFF;
  display: block;
  border-radius: 50%;
  font-size: 14px;
  height: 30px;
  line-height: 34px;
  left: 20px;
  text-align: center;
  top: 20px;
  position: absolute;
  width: 30px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  background: var(--primary-color);
  background: linear-gradient(to top, var(--primary-color) 0%, #FFA387 100%);
  z-index: 1;
}
.post .thumb {
  position: relative;
}
.post .thumb.rounded .inner {
  border-radius: 10px;
  overflow: hidden;
}
.post .thumb.circle .inner {
  overflow: hidden;
  border-radius: 50%;
}
.post .thumb.top-rounded .inner {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.post .thumb img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.post .thumb:hover img {
  transform: scale(1.07);
}
.post .post-title a {
  color: #203656;
}
.post .post-title a:hover {
  color: var(--primary-color);
}
.post .excerpt {
  font-size: 16px;
}
.post .meta {
  font-size: 14px;
  color: var(--text-color);
}
.post .meta a {
  color: var(--text-color);
  font-weight: 400;
}
.post .meta a:hover {
  color: var(--primary-color);
}
.post .meta i {
  vertical-align: middle;
}
.post .meta li:last-child:after {
  content: "";
  display: none;
}
.post .meta li:after {
  content: "";
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-left: 1rem;
  height: 3px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 3px;
}
.post .meta li:not(:last-child) {
  margin-right: 0.8rem;
}
.post .meta li img.author {
  margin-right: 12px;
  vertical-align: middle;
}
.post .post-bottom .social-share .toggle-button {
  font-size: 16px;
  color: var(--text-color);
  background-color: transparent;
  border: 0;
  padding: 0;
  vertical-align: middle;
}
.post .post-bottom .social-share .icons {
  display: inline;
  vertical-align: middle;
}
.post .post-bottom .social-share .icons li a {
  color: var(--text-color);
  font-size: 14px;
}
.post .post-bottom .social-share .icons li a:hover {
  color: #203656;
}
.post .post-bottom .social-share .icons li:not(:last-child) {
  margin-right: 0.8rem;
}
.post .post-bottom .more-button a {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}
.post .post-bottom .more-button a i {
  color: var(--text-color);
  font-size: 12px;
  margin-left: 10px;
  vertical-align: middle;
}
.post .post-bottom .more-button a:hover {
  color: var(--primary-color);
}
.post .post-bottom .more-link {
  color: #203656;
  font-size: 17px;
  font-weight: bold;
}
.post .post-bottom .more-link i {
  font-size: 12px;
  color: var(--text-color);
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.post .post-bottom .more-link:hover i {
  right: -5px;
}
.post.post-list-sm {
  clear: both;
}
.post.post-list-sm.circle .thumb {
  max-width: 60px;
}
.post.post-list-sm.circle .details {
  margin-left: 80px;
}
.post.post-list-sm.square .thumb {
  max-width: 110px;
}
.post.post-list-sm.square .details {
  margin-left: 130px;
}
.post.post-list-sm .thumb {
  float: left;
  position: relative;
}
.post.post-list-sm .thumb .number {
  color: #FFF;
  display: block;
  border: solid 2px #FFF;
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  height: 24px;
  line-height: 22px;
  left: 0;
  text-align: center;
  top: -10px;
  position: absolute;
  width: 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  background: var(--primary-color);
  background: linear-gradient(to top, var(--primary-color) 0%, #FFA387 100%);
  z-index: 1;
}
.post.post-list-sm .post-title {
  font-size: 15px;
}
.post.post-list-sm:after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.post.post-list-sm.before-seperator:before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.post.post-list-sm.before-seperator:after {
  content: "";
  display: none;
}
.post.post-list-sm:last-child:after {
  content: "";
  display: none;
}
.post.post-list {
  margin-bottom: 30px;
}
.post.post-list .thumb {
  float: left;
  max-width: 265px;
}
.post.post-list .details {
  margin-left: 295px;
}
.post.post-list .post-title {
  margin: 9px 0;
}
.post.post-list .post-bottom {
  margin-top: 9px;
}
.post.post-list .post-bottom .social-share .icons {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.post.post-list .post-bottom .social-share .icons:before {
  content: "";
  background: #DDD;
  display: inline-block;
  height: 1px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  width: 30px;
}
.post.post-list .post-bottom .social-share .icons.visible {
  opacity: 1;
  visibility: visible;
}
.post.post-list:after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 30px;
  margin-top: 30px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.post.post-grid .thumb .inner {
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
}
.post.post-grid .details {
  padding: 30px;
}
.post.post-grid .post-bottom {
  border-top: solid 1px #EBEBEB;
  margin: 0 30px;
  padding: 20px 0;
}
.post.post-grid .post-bottom .icons {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.post.post-grid .post-bottom .icons:before {
  content: "";
  background: #DDD;
  display: inline-block;
  height: 1px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  width: 30px;
}
.post.post-grid .post-bottom .icons.visible {
  opacity: 1;
  visibility: visible;
}
.post.post-classic {
  margin-bottom: 40px;
}
.post.post-classic .thumb .inner {
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
}
.post.post-classic .details {
  padding: 50px 50px 40px;
}
.post.post-classic .details .post-title {
  font-size: 30px;
}
.post.post-classic .post-bottom {
  border-top: solid 1px #EBEBEB;
  margin: 0 50px;
  padding: 20px 0;
}
.post.post-classic .post-bottom .social-share .toggle-button {
  display: none;
}
.post.post-classic .post-format {
  font-size: 24px;
  height: 60px;
  line-height: 64px;
  right: 50px;
  bottom: -30px;
  width: 60px;
}
.post.post-xl {
  margin-bottom: 140px;
}
.post.post-xl:last-of-type {
  margin-bottom: 80px;
}
.post.post-xl .thumb .inner {
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
}
.post.post-xl .post-top {
  padding: 0 100px;
  margin-bottom: 40px;
}
.post.post-xl .post-top .post-title {
  font-size: 36px;
}
.post.post-xl .details {
  padding: 50px 100px 50px;
}
.post.post-xl .post-bottom {
  border-top: solid 1px #EBEBEB;
  margin: 0 100px;
  padding-top: 20px;
}
.post.post-xl .post-bottom .social-share .toggle-button {
  display: none;
}
.post.post-xl .post-format {
  font-size: 24px;
  height: 60px;
  line-height: 64px;
  right: 50px;
  bottom: -30px;
  width: 60px;
}
.post.post-over-content {
  position: relative;
}
.post.post-over-content .thumb {
  position: relative;
  overflow: hidden;
}
.post.post-over-content .thumb:after {
  content: "";
  background: #203656;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  position: absolute;
  width: 100%;
}
.post.post-over-content .details {
  bottom: 20px;
  left: 20px;
  right: 20px;
  position: absolute;
  z-index: 1;
}
.post.post-over-content .post-title {
  font-size: 22px;
}
.post.post-over-content .post-title a {
  color: #FFF;
}
.post.post-over-content .post-title a:hover {
  color: #FFF;
}
.post.post-over-content .meta {
  color: rgba(255, 255, 255, 0.5);
}
.post.post-over-content .meta li:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
}
.post.post-over-content .meta li a {
  color: rgba(255, 255, 255, 0.5);
}

.post-single .post-header {
  margin-bottom: 30px;
}
.post-single .post-header .title {
  font-size: 36px;
}
.post-single .featured-image {
  margin-bottom: 30px;
}
.post-single .featured-image img {
  border-radius: 10px;
}
.post-single .post-content {
  color: #707a88;
  font-size: 16px;
}
.post-single .post-bottom {
  border-top: solid 1px #EBEBEB;
  padding-top: 30px;
  margin-top: 30px;
}
.post-single ul li {
  list-style-type: circle;
}

.single-cover {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 600px;
  position: relative;
}
.single-cover:after {
  content: "";
  background: #203656;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  position: absolute;
  width: 100%;
}
.single-cover .cover-content {
  bottom: 60px;
  max-width: 720px;
  position: absolute;
  z-index: 1;
}
.single-cover .cover-content .title {
  color: #FFF;
  font-size: 36px;
}
.single-cover .cover-content .breadcrumb .breadcrumb-item a {
  color: #FFF;
}
.single-cover .cover-content .breadcrumb-item + .breadcrumb-item::before {
  color: #FFF;
}
.single-cover .cover-content .meta {
  color: rgba(255, 255, 255, 0.6);
}
.single-cover .cover-content .meta a {
  color: rgba(255, 255, 255, 0.6);
}
.single-cover .cover-content .meta li:after {
  content: "";
  background-color: #FFF;
}

.featured-post-lg {
  position: relative;
}
.featured-post-lg:hover .thumb .inner {
  transform: scale(1.05);
}
.featured-post-lg .thumb {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(32, 54, 86, 0.3);
}
.featured-post-lg .thumb:after {
  content: "";
  background: #203656;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  position: absolute;
  width: 100%;
}
.featured-post-lg .details {
  bottom: 50px;
  left: 50px;
  right: 50px;
  position: absolute;
  z-index: 1;
}
.featured-post-lg .post-title {
  font-size: 32px;
}
.featured-post-lg .post-title a {
  color: #FFF;
}
.featured-post-lg .post-title a:hover {
  color: #FFF;
}
.featured-post-lg .meta {
  color: rgba(255, 255, 255, 0.6);
}
.featured-post-lg .meta li:after {
  content: "";
  background: rgba(255, 255, 255, 0.6);
}
.featured-post-lg .meta li a {
  color: rgba(255, 255, 255, 0.6);
}
.featured-post-lg .thumb .inner {
  background-size: cover;
  background-position: center center;
  height: 533px;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

.featured-post-md {
  position: relative;
}
.featured-post-md:hover .thumb .inner {
  transform: scale(1.05);
}
.featured-post-md .thumb {
  position: relative;
  overflow: hidden;
}
.featured-post-md .thumb .inner {
  background-size: cover;
  background-position: center center;
  height: 356px;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.featured-post-md .thumb:after {
  content: "";
  background: #203656;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  position: absolute;
  width: 100%;
}
.featured-post-md .details {
  padding: 0 30px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}
.featured-post-md .post-title {
  font-size: 22px;
  margin: 15px 0;
}
.featured-post-md .post-title a {
  color: #FFF;
}
.featured-post-md .post-title a:hover {
  color: #FFF;
}
.featured-post-md .meta {
  color: rgba(255, 255, 255, 0.5);
}
.featured-post-md .meta li:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
}
.featured-post-md .meta li a {
  color: rgba(255, 255, 255, 0.5);
}

.featured-post-xl {
  position: relative;
}
.featured-post-xl:hover .thumb .inner {
  transform: scale(1.05);
}
.featured-post-xl .thumb {
  position: relative;
  overflow: hidden;
}
.featured-post-xl .thumb .inner {
  background-size: cover;
  background-position: center center;
  height: 540px;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.featured-post-xl .thumb:after {
  content: "";
  background: #203656;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.6;
  top: 0;
  position: absolute;
  width: 100%;
}
.featured-post-xl .details {
  padding: 0 30px;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  max-width: 650px;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.featured-post-xl .post-title {
  font-size: 36px;
  margin: 20px 0;
}
.featured-post-xl .post-title a {
  color: #FFF;
}
.featured-post-xl .post-title a:hover {
  color: #FFF;
}
.featured-post-xl .meta {
  color: rgba(255, 255, 255, 0.5);
}
.featured-post-xl .meta li:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
}
.featured-post-xl .meta li a {
  color: rgba(255, 255, 255, 0.5);
}

.post-carousel-lg {
  box-shadow: 0 8px 20px rgba(32, 54, 86, 0.3);
  overflow: hidden;
  border-radius: 10px;
}
.post-carousel-lg .slick-dots {
  position: absolute;
  bottom: 30px;
  margin: 0;
}
.post-carousel-lg .slick-prev {
  left: 30px;
}
.post-carousel-lg .slick-next {
  right: 30px;
}
.post-carousel-lg .slick-next, .post-carousel-lg .slick-prev {
  width: 50px;
  height: 50px;
  line-height: 65px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
}
.post-carousel-lg .slick-prev:before, .post-carousel-lg .slick-next:before {
  color: #FFF;
  font-size: 16px;
  position: initial;
}
.post-carousel-lg .slick-next:hover, .post-carousel-lg .slick-prev:hover {
  background: #fff;
}

.post-carousel-featured {
  padding: 0 15px;
}

.post-carousel .slick-slide {
  margin: 0 12px;
}

.post-carousel-widget .post-carousel .thumb {
  max-width: 300px;
}

.post-tabs {
  padding: 30px;
}
.post-tabs .tab-content {
  margin-top: 30px;
}

/*=================================================================*/
/*                      ABOUT AUTHOR                              
/*=================================================================*/
.about-author {
  background: #F1F8FF;
}
.about-author:last-child {
  margin-bottom: 0;
}
.about-author.child {
  margin-left: 60px;
}
.about-author .thumb {
  float: left;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.about-author .details {
  margin-left: 130px;
}
.about-author .details h4.name {
  font-size: 20px;
  margin: 0 0 10px;
}
.about-author .details h4.name a {
  color: #203656;
}
.about-author .details h4.name a:hover {
  color: var(--primary-color);
}
.about-author .details p {
  margin-bottom: 10px;
}
.about-author .author-link {
  font-size: 16px;
  font-weight: 700;
}
.about-author .author-link i {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 10px;
}

/*=================================================================*/
/*                      POST COMMENTS                              
/*=================================================================*/
.comments {
  padding: 0;
  margin: 0;
}
.comments li {
  list-style: none;
}
.comments li:after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 30px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.comments li.comment {
  margin-bottom: 30px;
}
.comments li.comment:last-child {
  margin-bottom: 0;
}
.comments li.comment:last-child:after {
  content: "";
  display: none;
}
.comments li.comment.child {
  margin-left: 60px;
}
.comments li.comment .thumb {
  float: left;
}
.comments li.comment .details {
  margin-left: 90px;
}
.comments li.comment .details h4.name {
  font-size: 18px;
  margin: 0;
}
.comments li.comment .details h4.name a {
  color: #203656;
}
.comments li.comment .details h4.name a:hover {
  color: var(--primary-color);
}
.comments li.comment .details .date {
  color: var(--text-color);
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

/*=================================================================*/
/*                      PAGE                              
/*=================================================================*/
.page-header {
  background: #F1F8FF;
  padding: 40px 0;
}
.page-header h1 {
  font-size: 30px;
}

.page-content {
  color: #707a88;
  font-size: 16px;
}

/*=================================================================*/
/*                      CONTACT                              
/*=================================================================*/
.contact-item {
  border-radius: 10px;
  padding: 25px;
}
.contact-item .icon {
  color: #FFF;
  float: left;
  border-radius: 10px;
  display: block;
  font-size: 25px;
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 50px;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 100%);
}
.contact-item .details {
  margin-left: 20px;
}
.contact-item h3 {
  font-size: 18px;
}

/*=================================================================*/
/*                      WIDGETS                              
/*=================================================================*/
.widget {
  border: solid 1px #EBEBEB;
  padding: 35px 30px;
  margin-bottom: 40px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget.no-container {
  padding: 0;
  border: 0;
}
.widget .widget-header {
  margin-bottom: 30px;
}
.widget .widget-header img.wave {
  margin-top: 10px;
}
.widget .widget-title {
  font-size: 20px;
  margin: 0;
}
.widget .widget-about {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.widget .widget-ads {
  display: block;
  text-align: center;
}
.widget ul.list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.widget ul.list li {
  line-height: 2.8rem;
}
.widget ul.list li a {
  color: #203656;
  font-weight: 700;
}
.widget ul.list li a:before {
  content: "\e606";
  color: var(--primary-color);
  font-family: "simple-line-icons";
  font-size: 11px;
  vertical-align: middle;
  margin-right: 25px;
}
.widget ul.list li a:hover {
  color: var(--primary-color);
}
.widget ul.list li:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to right, #EBEBEB 0%, transparent 100%);
}
.widget ul.list li span {
  float: right;
}
.widget ul.list.social-icons li a:before {
  content: "";
  margin-right: 0;
}

/*=================================================================*/
/*                      INSTAGRAM FEED                              
/*=================================================================*/
.instagram {
  margin: 60px 0 0;
  position: relative;
}

.instagram-feed {
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.instagram-feed .insta-item {
  overflow: hidden;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.instagram-feed .insta-item img {
  border-radius: 10px;
}

/*=================================================================*/
/*                      FOOTER                              
/*=================================================================*/
footer {
  margin-top: 50px;
}
footer .footer-inner {
  border-top: solid 1px #EBEBEB;
  padding: 40px 0;
}
footer .footer-inner .copyright {
  color: var(--text-color);
}

/*=================================================================*/
/*                      SEARCH POPUP                              
/*=================================================================*/
.search-popup {
  background: rgb(255, 255, 255);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
}
.search-popup.visible {
  opacity: 1;
  visibility: visible;
  animation: growOut 500ms ease-in-out forwards;
}
.search-popup .search-content {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 650px;
  transform: translate(-50%, -50%);
}
.search-popup .btn-close {
  right: 30px;
  top: 30px;
  position: absolute;
}

/*=================================================================*/
/*                      HELPER                              
/*=================================================================*/
.rounded {
  border-radius: 10px !important;
}

.bordered {
  border: solid 1px #EBEBEB;
}

.padding-30 {
  padding: 30px;
}

.alignleft {
  float: left;
  margin: 0.375em 1.75em 1em 0;
}

.alignright {
  float: right;
  margin: 0.375em 0 1em 1.75em;
}

.newsletter-headline {
  font-size: 15px;
  font-weight: bold;
  color: #203656;
  display: block;
}

.newsletter-privacy {
  font-size: 13px;
  display: block;
}

.ads-title {
  color: #C0C0C0;
  font-family: var(--heading-font);
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

::-moz-selection {
  color: #FFF;
  background: var(--primary-color);
  /* WebKit/Blink Browsers */
}

::selection {
  color: #FFF;
  background: var(--primary-color);
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  color: #FFF;
  background: var(--primary-color);
  /* Gecko Browsers */
}

.tag {
  color: var(--text-color);
  border: solid 1px #EBEBEB;
  border-radius: 25px;
  font-size: 13px;
  display: inline-block;
  padding: 3px 14px;
  margin: 4px 0;
}
.tag:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.mouse {
  border: solid 1px #FFF;
  border-radius: 16px;
  display: block;
  height: 26px;
  width: 20px;
  left: 50%;
  bottom: 100px;
  position: absolute;
  z-index: 1;
  transform: translateX(-50%);
}

.mouse .wheel {
  background: #FFF;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 3px;
  animation: animation-mouse 2s linear infinite;
}
@keyframes animation-mouse {
  0% {
    top: 29%;
  }
  15% {
    top: 50%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 29%;
  }
}
/*=================================================================*/
/*                     BUTTONS
/*=================================================================*/
button {
  transition: all 0.3s ease-in-out;
}
button:focus {
  outline: none;
  box-shadow: none !important;
}

.btn {
  color: #FFF;
  border: 0;
  border-radius: 25px;
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

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

.btn-default {
  color: #FFF;
  padding: 9.5px 36px;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 51%, var(--primary-color) 100%);
  background-size: 200% auto;
}
.btn-default:hover {
  color: #FFF;
  background-position: right center;
}

.btn-simple {
  color: var(--text-color);
  padding: 9.5px 36px;
  background: transparent;
  border: solid 1px #EBEBEB;
}
.btn-simple:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-light {
  color: #FFF;
  padding: 9.5px 36px;
  background: transparent;
  border: solid 1px #FFF;
}
.btn-light:hover {
  color: var(--primary-color);
  border-color: #FFF;
}

.btn-full {
  padding: 9.5px 36px;
  width: 100%;
}

.btn-lg {
  padding: 13px 40px;
  font-size: 16px;
}

.btn-sm {
  padding: 7px 20px;
  font-size: 12px;
}

.btn-xs {
  padding: 5px 10px;
  font-size: 11px;
}

.icon-button {
  color: #FFF;
  border: 0;
  border-radius: 50%;
  background: #FFA387;
  background: linear-gradient(to top, #FFA387 0%, var(--primary-color) 51%, #FFA387 100%);
  background-size: auto 200%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 37px;
  line-height: 39px;
  text-align: center;
  vertical-align: middle;
  width: 37px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}
.icon-button:hover {
  background-position: bottom center;
}

.btn-instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/*=================================================================*/
/*                     BOOTSTRAP ELEMENTS
/*=================================================================*/
.breadcrumb {
  font-size: 14px;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}
.breadcrumb .breadcrumb-item a {
  color: var(--text-color);
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-color);
}
.breadcrumb .breadcrumb-item.active {
  color: var(--text-color);
}

/* === Form Control === */
.form-control {
  display: block;
  border-radius: 25px;
  width: 100%;
  padding: 8px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #FFF;
  background-image: none;
  border: solid 1px #EBEBEB;
  box-shadow: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}

.form-group {
  margin-bottom: 30px;
}

.input-group-addon {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--text-color);
}

.form-control::-moz-placeholder { /* Firefox 19+ */
  color: var(--text-color);
}

.form-control:-ms-input-placeholder { /* IE 10+ */
  color: var(--text-color);
}

.form-control:-moz-placeholder { /* Firefox 18- */
  color: var(--text-color);
}

/* === Alert === */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-dismissable .close, .alert-dismissible .close {
  position: relative;
  top: 0;
  right: 0;
  color: inherit;
}

/* === Nav Tabs === */
.nav-tabs {
  border-bottom: 0;
}

.tab-content {
  position: relative;
}

.tab-pane {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.tab-pane.loading {
  opacity: 0.3;
}

.lds-dual-ring {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.lds-dual-ring.loading {
  visibility: visible;
  opacity: 1;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid;
  border-color: var(--primary-color) transparent var(--primary-color) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav-fill .nav-item, .nav-fill > .nav-link {
  margin-right: 10px;
}
.nav-fill .nav-item:last-child, .nav-fill > .nav-link:last-child {
  margin-right: 0;
}

.nav-fill .nav-item > .nav-link {
  color: #8F9BAD !important;
  margin-right: 10px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff !important;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 51%, var(--primary-color) 100%);
  border-color: transparent;
  background-size: 200% auto;
}

.nav-pills .nav-link {
  background: 0 0;
  border: solid 1px #EBEBEB;
  border-radius: 30px;
}

/* === Pagination === */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin: 40px 0 0;
}
.pagination li {
  list-style-type: none;
  margin: 0 5px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #FFF;
  border-color: transparent;
  background: #FFA387;
  background: linear-gradient(to top, #FFA387 0%, var(--primary-color) 51%, #FFA387 100%);
  background-size: auto 200%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in-out;
}

.page-link {
  position: relative;
  display: block;
  color: var(--text-color);
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  border: solid 1px #EBEBEB;
  height: 45px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  width: 45px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-link:hover {
  z-index: 2;
  color: #FFF;
  background: #FFA387;
  background: linear-gradient(to top, #FFA387 0%, var(--primary-color) 51%, #FFA387 100%);
  background-size: auto 200%;
  border-color: transparent;
}

.page-item:first-child .page-link {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

/*=================================================================*/
/*                      THEME ELEMENTS
/*=================================================================*/
/* === Go to Top === */
#return-to-top {
  color: var(--text-color);
  font-size: 13px;
  border: solid 1px #EBEBEB;
  text-decoration: none;
  border-radius: 25px;
  padding: 6px 20px;
  z-index: 4;
  transition: all 0.3s ease-in-out;
}
#return-to-top i {
  font-size: 11px;
  vertical-align: middle;
  margin-right: 10px;
}

#return-to-top:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-icons a {
  font-size: 16px;
  color: #203656;
}
.social-icons a:hover {
  color: var(--primary-color);
}
.social-icons li:not(:last-child) {
  margin-right: 1rem;
}

/*=================================================================*/
/*                      SLICK SETTINGS
/*=================================================================*/
.slick-slide {
  height: auto;
  outline: none;
}

.slick-next, .slick-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: transparent;
  border-radius: 50%;
  border: solid 1px #EBEBEB;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.slick-next:hover, .slick-next:focus, .slick-prev:hover, .slick-prev:focus {
  background: #FFF;
  border-color: #EBEBEB;
}
.slick-next:hover:before, .slick-next:focus:before, .slick-prev:hover:before, .slick-prev:focus:before {
  color: #FFA387;
}

.slick-prev {
  left: -30px;
}
.slick-prev:hover {
  background: var(--primary-color);
}

.slick-next {
  right: -30px;
}
.slick-next:hover {
  background: var(--primary-color);
}

.slick-prev:before, .slick-next:before {
  color: #909090;
  font-size: 10px;
  opacity: 1;
}

.slick-prev:before {
  content: "\e605";
  font-family: "simple-line-icons";
  top: 9px;
  left: 9px;
  position: absolute;
}

.slick-next:before {
  content: "\e606";
  font-family: "simple-line-icons";
  position: absolute;
  top: 9px;
  left: 9px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: relative;
  bottom: 0;
  padding: 0;
  margin: 25px 0 0;
}

.slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}

.slick-dots li.slick-active {
  width: 25px;
  height: 8px;
}

.slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
}

.slick-dots li.slick-active button:before {
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 100%);
  border-radius: 5px;
  opacity: 1;
  width: 25px;
}

.slick-dots li button:before {
  content: "";
  background: #d4d4d4;
  border-radius: 50%;
  opacity: 1;
  top: 8px;
  left: 8px;
  height: 8px;
  width: 8px;
}

.slick-arrows-top {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0px, -50%);
}

.slick-arrows-bot {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.slick-custom-buttons {
  color: #909090;
  font-size: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #FFF;
  border-radius: 50%;
  border: solid 1px #EBEBEB;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.slick-custom-buttons:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/*=================================================================*/
/*                      RESPONSIVE SETTINGS
/*=================================================================*/
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-right .social-icons {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .inner-wrapper-sticky {
    transform: none !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: auto !important;
  }
  .header-classic .header-buttons {
    width: 100%;
  }
  .single-cover {
    background-attachment: unset;
    height: 400px;
  }
  .single-cover .cover-content .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
    animation: growOut 300ms ease-in-out forwards;
    transform-origin: top center;
  }
  @keyframes growOut {
    0% {
      transform: scale(0);
    }
    80% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .featured-post-lg .thumb .inner {
    height: 425px;
  }
  .post.post-list .thumb {
    float: none;
    max-width: 550px;
  }
  .post.post-list .details {
    margin-left: 0;
    margin-top: 25px;
  }
  .post .meta li:after {
    content: "";
    margin-left: 0.5rem;
  }
  .post .meta li:not(:last-child) {
    margin-right: 0.3rem;
  }
  .instagram-feed .insta-item {
    text-align: center;
    margin: 2.5px 0;
  }
  .footer-inner {
    text-align: center;
  }
  .featured-post-lg .post-title {
    font-size: 26px;
  }
  .featured-post-lg .details {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }
  .search-popup .search-content {
    padding: 0 20px;
    width: 100%;
  }
  .post.post-classic .post-bottom .social-share .toggle-button {
    display: inline-block;
  }
  .post.post-classic .post-bottom .icons {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
  }
  .post.post-classic .post-bottom .icons:before {
    content: "";
    background: #DDD;
    display: inline-block;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    width: 30px;
  }
  .post.post-classic .post-bottom .icons.visible {
    opacity: 1;
    visibility: visible;
  }
  .featured-post-xl .thumb .inner {
    height: 350px;
  }
  .featured-post-xl .details {
    padding: 0 30px;
    left: 0;
    top: 50%;
    max-width: 100%;
    transform: translate(0%, -50%);
  }
  .featured-post-xl .post-title {
    font-size: 24px;
  }
  .post.post-classic .details {
    padding: 30px;
  }
  .post.post-classic .details .post-title {
    font-size: 20px;
  }
  .post.post-classic .post-bottom {
    margin: 0 30px;
  }
  .post.post-classic .post-format, .post.post-xl .post-format {
    font-size: 20px;
    height: 50px;
    line-height: 54px;
    right: 20px;
    bottom: -25px;
    width: 50px;
  }
  .post.post-xl .post-top {
    padding: 0 20px;
  }
  .post.post-xl .details {
    padding: 50px 20px 50px;
  }
  .post.post-xl .post-bottom {
    margin: 0 20px;
  }
  .post.post-xl .post-top .post-title {
    font-size: 24px;
  }
  .hero {
    height: 740px;
  }
  .hero .cta h2 {
    font-size: 30px;
  }
  .hero .cta p {
    font-size: 16px;
  }
  .alignleft, .alignright {
    float: none;
  }
  .post-single .post-header .title {
    font-size: 26px;
  }
  .post-single .social-icons {
    margin-top: 20px;
    text-align: center;
  }
  .about-author .thumb {
    float: none;
    margin: auto;
  }
  .about-author .details {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }
  .comments li.comment.child {
    margin-left: 30px;
  }
  .breadcrumb .breadcrumb-item.active {
    display: none;
  }
  .post-carousel-widget .post-carousel {
    margin: 0 12px;
  }
  .post-carousel-widget .post-carousel .post-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .single-cover {
    height: 300px;
  }
  .alignleft {
    margin: 0.375em auto 1em;
    clear: both;
    display: block;
  }
  .alignright {
    margin: 0.375em auto 1em;
    clear: both;
    display: block;
  }
}
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Soft Light Blue Background */
body {
  background-color: #f0f8ff !important; /* Alice Blue - soft light blue tone */
}

/* Disable text truncation - show full text */
.truncate-custom {
  display: block !important;
  -webkit-box-orient: unset !important;
  overflow: visible !important;
}

.truncate-1-custom,
.truncate-2-custom,
.truncate-3-custom {
  -webkit-line-clamp: unset !important;
  display: block !important;
  overflow: visible !important;
}

footer .footer-inner .widget-back-to-top-button a svg {
  margin-bottom: 2px;
}

svg.icon {
  width: 20px;
}

.header-buttons button {
  margin-inline-start: 10px;
}

.btn.btn-primary {
  color: #FFF;
  padding: 9.5px 36px;
  background: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color) 0%, #FFA387 51%, var(--primary-color) 100%);
  background-size: 200% auto;
}
.btn.btn-primary:hover {
  color: #FFF;
  background-position: right center;
}

.icon-button.member {
  overflow: hidden;
}
.icon-button.member .avatar {
  aspect-ratio: 1;
}
.icon-button.member a {
  color: white;
}

.auth-card h3 {
  margin-top: 0 !important;
}
.auth-card .input-group .input-group-text {
  padding: 8px 16px !important;
  font-size: 14px;
  border-radius: 25px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.auth-card .input-group .form-control {
  padding: 8px 16px !important;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 25px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.auth-card .input-group .input-group-text.slug-actions {
  display: none !important;
}

.language-switcher-button {
  height: 37px;
}
.language-switcher-button .dropdown-toggle {
  line-height: 35px;
  color: var(--text-color) !important;
}

svg .gradient-from {
  stop-color: var(--gradient-from-color);
}
svg .gradient-to {
  stop-color: var(--gradient-to-color);
}

.contact-item svg.icon {
  background-color: transparent !important;
  height: 24px;
}

.show-admin-bar .navbar.navbar-expand-lg.clone,
.show-admin-bar .header-default.clone,
.show-admin-bar .header-classic .navbar.navbar-expand-lg .clone {
  top: 40px;
}

.search-popup {
  z-index: 9999 !important;
}

.page-breadcrumb {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: var(--breadcrumb-height, auto) !important;
  background-position: center;
  background-size: cover;
  background-color: var(--breadcrumb-bg-color, #F1F8FF) !important;
}
.page-breadcrumb, .page-breadcrumb .breadcrumb-item a {
  color: var(--breadcrumb-txt-color, inherit) !important;
}
.page-breadcrumb .breadcrumb-item.active {
  color: var(--breadcrumb-txt-color, #9faabb) !important;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--breadcrumb-txt-color, var(--bs-breadcrumb-divider-color)) !important;
}
.page-breadcrumb h1 {
  color: var(--breadcrumb-txt-color, #203656) !important;
}

.single-cover .cover-content .breadcrumb-item.active {
  color: #fff;
}
.single-cover .cover-content .meta {
  color: rgba(255, 255, 255, 0.75);
}

.pagination .page-link svg.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.comments .thumb a {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ebebeb;
}
.comments .thumb a img {
  width: 80px;
  height: auto;
}

.header-author-avatar {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.header-author-avatar img {
  width: 80px;
  height: auto;
}

.post .meta .list-inline-item .author .author-avatar {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  height: 30px;
  width: 30px;
}
.post .meta .list-inline-item .author .author-avatar .author {
  width: 100%;
  height: auto;
}

.fob-comment-item-reply {
  background-color: unset !important;
  border-bottom: unset !important;
  color: unset !important;
  display: unset !important;
  font-size: unset !important;
  font-style: normal !important;
}

.blog-posts {
  margin-top: 60px;
}

.featured-post-lg .thumb .inner img {
  width: 100%;
}

.widget-blog-categories .widget-content ul li {
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.widget-blog-categories .widget-content ul li:after {
  content: unset !important;
}

.newsletter-widget .subscribe-form button.btn {
  margin-top: 1rem;
  width: 100%;
}

.nav-link.active {
  background: var(--gradient-color) !important;
  background-size: auto 200%;
}
.nav-link.active:hover {
  background: var(--gradient-color-hover) !important;
}

.nav-item.active .nav-link {
  background: var(--gradient-color) !important;
  background-size: auto 200%;
}
.nav-item.active .nav-link:hover {
  background: var(--gradient-color-hover) !important;
}

.icon-button, .category-badge, .btn-default, span.icon, .btn-primary {
  background: var(--gradient-color) !important;
  background-size: auto 200%;
}
.icon-button:hover, .category-badge:hover, .btn-default:hover, span.icon:hover, .btn-primary:hover {
  background: var(--gradient-color-hover) !important;
}

span.icon svg {
  background: transparent !important;
}

.canvas-menu .vertical-menu li .switch {
  color: var(--text-color) !important;
}
.canvas-menu .vertical-menu li .switch:hover {
  color: var(--primary-color) !important;
}
.canvas-menu .vertical-menu li a {
  color: var(--text-color) !important;
}
.canvas-menu .vertical-menu li a:hover {
  color: var(--primary-color) !important;
}

.auth-card p, .auth-card span {
  color: var(--text-color) !important;
}

.auth-card {
  color: var(--text-color) !important;
}

.ck-content .widget-blog-posts ul {
  list-style-type: none !important;
}

@media screen and (max-width: 400px) {
  .footer-inner .d-flex {
    justify-content: center !important;
  }
}
.slick-loading .slick-list {
  background: #fff url("/themes/katen/images/ajax-loader.gif") center center no-repeat !important;
}

.header-right .header-buttons {
  margin-inline-start: 50px;
}

.header-buttons .icon-button {
  position: relative;
}
.header-buttons .icon-button svg.icon {
  display: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-item .details {
  margin-left: unset;
  margin-inline-start: 20px;
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.fob-comment-item-reply {
  color: #ffffff !important;
}

.header-personal.light {
  top: unset !important;
}
.header-personal.light a.dropdown-toggle {
  color: #ffffff;
}
.header-personal.light a.dropdown-toggle:hover {
  color: var(--primary-color);
}

.main-content.homepage {
  margin-top: 0 !important;
}

.button-loading {
  color: transparent !important;
}
.button-loading:before {
  animation: button-loading-spinner 1s linear infinite;
  border: 3px solid;
  border-color: #fff #fff transparent;
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
  width: 18px;
}

.mx-n2 {
  margin-left: -0.5em !important;
  margin-right: -0.5em !important;
}

@keyframes button-loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
.page-breadcrumb .author-header .author-content {
  display: flex;
  gap: 30px;
}
.page-breadcrumb .author-header .author-content .author-avatar {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  height: 150px;
  width: 150px;
  flex-shrink: 0;
}
.page-breadcrumb .author-header .author-content .author-avatar .author {
  width: 100%;
  height: auto;
}
.page-breadcrumb .author-header .author-content .author-title {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 35px;
}
.page-breadcrumb .author-header .author-content p {
  margin-bottom: 15px;
}

.logo-dark {
  display: none;
}

.dark-mode-switcher-button {
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 1;
  transform: rotate(90deg);
}
.dark-mode-switcher-button.active .dark-mode-switcher-button-inner-left {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(235, 235, 235, 0.2);
}
.dark-mode-switcher-button.active .dark-mode-switcher-button-inner-left .moon {
  opacity: 0;
}
.dark-mode-switcher-button.active .dark-mode-switcher-button-inner-left .sun {
  opacity: 1;
  right: 10px;
  color: #ffffff !important;
}
.dark-mode-switcher-button-inner-left {
  position: relative;
  color: rgba(149, 149, 149, 0.51);
  background: rgba(255, 255, 255, 0.1);
  content: "";
  display: inline-block;
  color: #fff;
  background: #fff;
  width: 3.5em;
  height: 1.8em;
  border-radius: 1em;
  vertical-align: middle;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, 0.05);
}
.dark-mode-switcher-button-inner-left .btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
}
.dark-mode-switcher-button-inner-left .moon {
  right: 26px;
}
.dark-mode-switcher-button-inner-left .sun {
  opacity: 0;
}

.post-single .post-content {
  color: var(--text-color);
}

.search-popup .btn-close {
  background: unset !important;
  color: var(--text-color) !important;
  z-index: 999;
}
.search-popup .blog-posts-search-results {
  position: absolute;
  padding-bottom: 40px;
  padding-top: 20px;
  width: 100%;
}
.search-popup .blog-posts-search-results .content.loading {
  opacity: 0.3;
}
.search-popup .blog-posts-search-results .post-list-sm:after {
  content: unset;
}
.search-popup .blog-posts-search-results .post-list-sm:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.btn-simple.button-loading:before {
  border-color: var(--primary-color) var(--primary-color) transparent !important;
}

.btn-simple.disabled {
  border: solid 1px #EBEBEB !important;
}

@media screen and (max-width: 500px) {
  .search-popup .search-content {
    top: 10%;
  }
  .search-popup .search-content .blog-posts-search-results .content {
    margin-inline-end: 50px;
  }
}
@media screen and (max-width: 768px) {
  .ae-anno-announcement-wrapper .ae-anno-announcement__dismiss-button {
    top: 5px;
  }
}
.fob-comment-list-wrapper {
  padding: 30px;
  border: solid 1px #EBEBEB;
  border-radius: 10px !important;
}
.fob-comment-list-wrapper .fob-comment-item-inner {
  margin-bottom: unset;
}
.fob-comment-list-wrapper .fob-comment-item-inner:after {
  position: absolute;
  bottom: 1px;
  content: "";
  display: block;
  height: 1px;
  margin-top: 30px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item:last-child {
  padding-bottom: unset;
  margin-bottom: unset;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item:last-child .fob-comment-item-inner:after {
  content: unset;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-inner + .fob-comment-list {
  margin-top: 2rem;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-inner + .fob-comment-list .fob-comment-item {
  margin-bottom: unset;
  padding-bottom: unset;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-inner + .fob-comment-list .fob-comment-item .fob-comment-item-inner {
  padding-top: 2rem;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-inner + .fob-comment-list .fob-comment-item .fob-comment-item-inner:after {
  content: unset;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-inner + .fob-comment-list .fob-comment-item .fob-comment-item-inner:before {
  position: absolute;
  top: -2rem;
  content: "";
  display: block;
  height: 1px;
  margin-top: 30px;
  width: 100%;
  background: #EBEBEB;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-avatar img {
  border-radius: 50%;
  width: 80px;
  border: 1px solid #EBEBEB;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-content {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  padding-bottom: 40px;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-content .fob-comment-item-info {
  line-height: 1;
  display: block !important;
  margin-bottom: 20px;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-content .fob-comment-item-info .fob-comment-item-date {
  font-size: 13px;
  font-weight: 400;
  margin-top: -10px;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-content .fob-comment-item-info .fob-comment-item-author {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-content .fob-comment-item-reply {
  position: absolute;
  color: #FFF !important;
  border: 0;
  border-radius: 25px;
  font-weight: 400;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease-in-out;
  background: var(--gradient-color) !important;
  padding: 7px 20px;
  font-size: 12px;
  bottom: 0;
  left: 0;
}
.fob-comment-list-wrapper .fob-comment-list .fob-comment-item .fob-comment-item-footer {
  display: block;
}

.post-title.h5 {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.25rem;
  font-family: var(--heading-font);
}
.post-title.h6 {
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--heading-font);
}

.about-author {
  min-height: 160px;
}
.about-author .details .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.about-author .details .name a {
  color: #203656 !important;
}

.widget-blog-tags .widget-content .tag {
  margin-inline-end: 6px;
}

.post-bottom .tag {
  margin-inline-end: 6px;
}

/* Logo with Text Layout */
.logo-with-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.logo-text-left,
.logo-text-right {
  font-family: var(--heading-font, "Poppins"), sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--text-color, #203656);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Animated Logo Styles */
.animated-logo {
  display: inline-block;
  transition: transform 0.3s ease;
  animation: logoRotate 4s linear infinite;
  background: transparent !important;
  flex-shrink: 0;
}

.animated-logo:hover {
  animation-play-state: paused;
}

/* Remove background from logo images */
.animated-logo img {
  background: transparent !important;
  background-color: transparent !important;
}

/* Disable animation in sticky header (clone) and sidebar */
.clone .animated-logo,
.canvas-menu .animated-logo,
.inner-wrapper-sticky .animated-logo {
  animation: none;
}

/* Circular logo in sidebar */
.inner-wrapper-sticky .animated-logo img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes logoRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive Logo Layout - Keep in one line */
@media (max-width: 768px) {
  .logo-with-text-wrapper {
    gap: 15px;
  }
  .logo-text-left,
  .logo-text-right {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 480px) {
  .logo-with-text-wrapper {
    gap: 10px;
  }
  .logo-text-left,
  .logo-text-right {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
<<<<<<< Updated upstream
=======
  .animated-logo img {
    height: 50px !important;
  }
>>>>>>> Stashed changes
}
/* Full-Width Banner Styles */
.full-width-banner {
  width: 100%;
  margin: 40px 0 60px 0; /* Added margins for spacing */
  padding: 0;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 250px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.banner-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  position: relative;
}

.banner-content {
  text-align: center;
  color: white;
}

.banner-text {
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive banner */
@media (max-width: 768px) {
  .full-width-banner {
    margin: 20px 0 40px 0; /* Smaller margins for mobile */
  }
  .banner-image,
  .banner-placeholder {
    min-height: 150px;
  }
  .banner-text {
    font-size: 14px;
  }
}
/* Hide tag clouds and tag-related elements */
.widget-blog-tags,
.tag-cloud,
.tagcloud,
.post-tags,
.tag {
  display: none !important;
}

/* Hide login/user icon from header */
.header-buttons .member,
.icon-button.member,
.member.icon-button,
.header-right .member,
.ti-user,
.user-icon,
.login-icon {
  display: none !important;
}

/* Hide all comment sections */
.comments-area,
.comment-form,
.comment-list,
.comments,
.fob-comment,
.comment-section,
#comments,
.post-comments,
.comment-wrapper {
  display: none !important;
}

/* Hide dark mode toggle button */
.dark-mode-switcher-button {
  display: none !important;
}

/* Sponsors Slideshow Styles */
.sponsors-slideshow {
  padding: 60px 0;
  margin: 60px 0 80px 0; /* Increased top and bottom margins */
}

.sponsors-title {
  font-size: 28px;
  font-weight: 700;
  color: #203656;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.sponsors-subtitle {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 0;
}

.sponsors-slider {
  margin-top: 40px;
}

.sponsor-item {
  padding: 0 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.sponsor-item:hover {
  transform: translateY(-5px);
}

.sponsor-logo {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.sponsor-item a {
  display: inline-block;
  text-decoration: none;
}

/* Slick slider customization for sponsors */
.sponsors-slider.slick-initialized .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.sponsors-slider.slick-initialized .slick-dots {
  bottom: -50px;
}
.sponsors-slider.slick-initialized .slick-dots li button:before {
  color: var(--primary-color);
  font-size: 12px;
}
.sponsors-slider.slick-initialized .slick-dots li.slick-active button:before {
  color: var(--primary-color);
}
.sponsors-slider.slick-initialized .slick-arrow {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsors-slideshow {
    padding: 40px 0;
    margin: 40px 0 60px 0; /* Increased margins for mobile too */
  }
  .sponsors-title {
    font-size: 24px;
  }
  .sponsors-subtitle {
    font-size: 14px;
  }
  .sponsor-logo {
    max-height: 60px;
    max-width: 120px;
  }
}
/* Continuous Sponsors Slider */
.sponsors-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px 0;
}

.sponsors-slider-track {
  display: flex;
  width: calc(200% + 40px); /* Double width for seamless loop */
  animation: slideSponsors 30s linear infinite;
  align-items: center;
}

.sponsors-slider-track:hover {
  animation-play-state: paused;
}

.sponsor-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  min-width: 180px;
  height: 100px;
}

.sponsor-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-item:hover a {
  transform: scale(1.1);
  opacity: 0.8;
}

.sponsor-logo {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes slideSponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Responsive adjustments for sponsors slider */
@media (max-width: 768px) {
  .sponsors-slider-track {
    animation-duration: 25s; /* Slightly faster on mobile */
  }
  .sponsor-item {
    min-width: 140px;
    padding: 0 20px;
    height: 80px;
  }
  .sponsor-logo {
    max-width: 100px;
    max-height: 60px;
  }
}
@media (max-width: 480px) {
  .sponsors-slider-track {
    animation-duration: 20s;
  }
  .sponsor-item {
    min-width: 120px;
    padding: 0 15px;
    height: 70px;
  }
  .sponsor-logo {
    max-width: 80px;
    max-height: 50px;
  }
}
body[dir=rtl] .header-right .header-buttons {
  margin-left: unset !important;
}
body[dir=rtl] .header-right .header-buttons button {
  margin-inline-start: 10px;
  margin-left: unset !important;
}
body[dir=rtl] .header-buttons button {
  margin-left: unset !important;
  margin-inline-start: 10px;
}
body[dir=rtl] .post .meta li:not(:last-child) {
  margin-inline-end: 0.8rem;
  margin-right: unset !important;
}
body[dir=rtl] .post .meta li:after {
  margin-inline-start: 1rem;
}
body[dir=rtl] .post .meta li.list-inline-item:not(:last-child) {
  margin-inline-start: 0.5rem;
  margin-left: unset !important;
}
body[dir=rtl] .post .meta li img.author {
  margin-inline-end: 12px !important;
  margin-right: unset !important;
}
body[dir=rtl] .widget-blog-categories .widget-content ul.list li a:before {
  content: unset !important;
}
body[dir=rtl] .widget-blog-categories .widget-content ul.list li a:after {
  content: "\e605";
  color: var(--primary-color);
  font-family: "simple-line-icons";
  font-size: 11px;
  vertical-align: middle;
  margin-inline-end: 25px;
  transform: rotate(-180deg);
}
body[dir=rtl] .slick-arrows-top {
  right: unset;
  left: 0;
}
body[dir=rtl] .nav-fill .nav-item, body[dir=rtl] .nav-fill > .nav-link {
  margin-right: unset !important;
  margin-inline-end: 10px !important;
}
body[dir=rtl] .dropdown-toggle:after {
  margin-inline-start: 5px !important;
}
body[dir=rtl] .language-switcher-button .dropdown-menu li {
  text-align: start;
}
body[dir=rtl] .social-icons li:last-child {
  margin-right: 1rem;
}
body[dir=rtl] .social-icons li:first-child {
  margin-left: unset !important;
  margin-right: unset !important;
}
body[dir=rtl] .main-menu .navbar-nav ul.dropdown-menu li a {
  text-align: start;
}
body[dir=rtl] .dropdown-item:hover {
  margin-left: unset !important;
  margin-inline-start: 5px;
}
body[dir=rtl] .canvas-menu .vertical-menu li:after {
  transform: rotate(-180deg);
}
body[dir=rtl] .canvas-menu .vertical-menu li .switch {
  right: unset !important;
  left: 0;
}
body[dir=rtl] .auth-card form .auth-input-icon {
  left: unset !important;
  right: 1px;
}

html[data-theme=dark] body {
  --background-dark-color: #142030;
  --border-dark-color: rgba(235, 235, 235, .2);
  --text-color: #8f9bad !important;
  background-color: var(--background-dark-color);
}
html[data-theme=dark] body .main-overlay {
  background: var(--background-dark-color) !important;
}
html[data-theme=dark] body .widget {
  border: solid 1px var(--border-dark-color);
}
html[data-theme=dark] body .bordered, html[data-theme=dark] body .tag {
  border: solid 1px var(--border-dark-color);
}
html[data-theme=dark] body .post:after {
  background: linear-gradient(to left, rgba(235, 235, 235, 0.2) 0%, transparent 100%);
}
html[data-theme=dark] body .post:before {
  background: linear-gradient(to left, rgba(235, 235, 235, 0.2) 0%, transparent 100%);
}
html[data-theme=dark] body .widget-blog-categories .widget-content ul li {
  border-bottom: 1px solid var(--border-dark-color);
}
html[data-theme=dark] body footer .footer-inner {
  border-top: solid 1px var(--border-dark-color);
}
html[data-theme=dark] body .btn {
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .post .post-title a {
  color: #fff;
}
html[data-theme=dark] body .widget ul.list li a {
  color: #fff;
}
html[data-theme=dark] body h1, html[data-theme=dark] body h2, html[data-theme=dark] body h3, html[data-theme=dark] body h4, html[data-theme=dark] body h5, html[data-theme=dark] body h6, html[data-theme=dark] body .newsletter-headline {
  color: #fff;
}
html[data-theme=dark] body .slick-custom-buttons {
  background: 0 0;
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .social-icons a {
  color: #fff;
}
html[data-theme=dark] body .social-icons a svg {
  color: #fff;
}
html[data-theme=dark] body a:hover {
  color: var(--primary-color) !important;
}
html[data-theme=dark] body .nav-link {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .nav-link:hover {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body #return-to-top {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .post-bottom {
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body header .nav-link {
  color: #ffffff !important;
}
html[data-theme=dark] body header a.dropdown-toggle {
  color: #ffffff !important;
}
html[data-theme=dark] body .page-header {
  background-color: rgba(255, 255, 255, 0.05) !important;
}
html[data-theme=dark] body .page-header h1 {
  color: #fff !important;
}
html[data-theme=dark] body .breadcrumb-item {
  --breadcrumb-txt-color: #fff !important;
}
html[data-theme=dark] body header .clone {
  background-color: var(--background-dark-color) !important;
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .header-default.clone {
  background-color: var(--background-dark-color) !important;
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .canvas-menu {
  background-color: var(--background-dark-color);
}
html[data-theme=dark] body .canvas-menu .vertical-menu li a {
  color: #ffffff !important;
}
html[data-theme=dark] body .canvas-menu .vertical-menu li .switch {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .about-author {
  background-color: rgba(255, 255, 255, 0.05);
}
html[data-theme=dark] body .about-author .details .name a {
  color: #ffffff !important;
}
html[data-theme=dark] body .breadcrumb-item:before {
  color: var(--text-color) !important;
}
html[data-theme=dark] body .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark-color);
  color: #ffffff;
}
html[data-theme=dark] body .header-personal .centered-nav {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .header-minimal {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .header-classic .header-top {
  border-color: var(--border-dark-color);
}
html[data-theme=dark] body .logo-light {
  display: none;
}
html[data-theme=dark] body .logo-dark {
  display: block;
}
html[data-theme=dark] body .auth-card {
  background-color: var(--background-dark-color) !important;
  border: 1px solid var(--border-dark-color) !important;
}
html[data-theme=dark] body .auth-card .card-header {
  background-color: var(--background-dark-color) !important;
}
html[data-theme=dark] body .auth-card .input-group .input-group-text {
  background: var(--background-color-dark) !important;
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .auth-card .input-group .form-control {
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .search-popup {
  background-color: var(--background-dark-color) !important;
}
html[data-theme=dark] body .search-popup .btn-close {
  color: #ffffff !important;
}
html[data-theme=dark] body .blog-posts-search-results .post-list-sm {
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .post.before-seperator:before {
  background: linear-gradient(to left, rgba(235, 235, 235, 0.2) 0%, transparent 100%) !important;
}
html[data-theme=dark] body .fob-comment-list-wrapper {
  border-color: var(--border-dark-color) !important;
}
html[data-theme=dark] body .fob-comment-list-wrapper .fob-comment-item .fob-comment-item-inner:after, html[data-theme=dark] body .fob-comment-list-wrapper .fob-comment-item .fob-comment-item-inner:before {
  background: linear-gradient(to left, rgba(235, 235, 235, 0.2) 0%, transparent 100%) !important;
}
html[data-theme=dark] body .header-buttons .icon-button a {
  color: #ffffff !important;
}
html[data-theme=dark] body .header-buttons .icon-button a:hover {
  color: #ffffff !important;
}
html[data-theme=dark] body .newsletter-popup-content {
  background-color: var(--background-dark-color);
}
html[data-theme=dark] body .newsletter-popup-content .text-muted {
  color: var(--text-color) !important;
}
html[data-theme=dark] body .newsletter-popup .btn-close {
  filter: var(--bs-btn-close-white-filter) !important;
}
