
/*
	1. PRIMARY STYLES
	2. COMMONS FOR PAGE DESIGN
	3. HEADER AND MENU

/* ---------------------------------
1. PRIMARY STYLES
--------------------------------- */
* { margin: 0; padding: 0; }

html{ font-size: 100%; height: 100%;  overflow-x: hidden; touch-action: manipulation; scroll-behavior: smooth; }

body{ font-size: 15px; font-family: 'Roboto', sans-serif; width: 100%; height: 100%; margin: 0; font-weight: 400;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; word-wrap: break-word; 
	color: #144748; background: #fdfff5; }

h1, h2, h3, h4, h5, h6, p, a, ul, span, li, img, inpot, button{ margin: 0; padding: 0; }

h1,h2,h3,h4,h5,h6{ line-height: 1.5; font-weight: inherit; }

p{ font-size: 1.3em;
    line-height: 1.3em; 
    font-family: 'Maven Pro', 
    sans-serif; 
    font-weight: 400; 
    color: #144748; 
}

h1{ font-size: 3em; line-height: 1; }
h2{ font-size: 2.8em; line-height: 1.1; }
h3{ font-size: 1.8em; }
h4{ font-size: 1.5em; }
h5{ font-size: 1.2em; }
h6{ font-size: .9em; letter-spacing: 1px; }

a, button{ display: inline-block; text-decoration: none; color: inherit; transition: all .3s; }

a:focus, a:active, a:hover,
button:focus, button:active, button:hover,
a b.light-color:hover{ text-decoration: none; color: #FFAD4D; }
b{ font-weight: 500; }

img{ width: 100%; }

li{ list-style: none; display: inline-block; }

span{ display: inline-block; }

button{ outline: 0; border: 0; background: none; cursor: pointer; }

b.light-color{ color: #444; }

.light-color:hover{ text-decoration: none; color: #FFAD4D; }

/* ---------------------------------
2. COMMONS FOR PAGE DESIGN
--------------------------------- */

.btn{ font-size: .9em; padding: 15px 30px; border-radius: 1px; letter-spacing: 1px; 
	border: 1px solid #FFAD4D; background: #FFAD4D; color: #fff; font-weight: 500; }

.btn:hover{ color: #FFAD4D; background: none; }

.btn-2{ background: none; color: #FFAD4D; }

.btn-2:hover{ background: #FFAD4D; color: #fff; }

.section{ padding: 40px 0 30px; }

.section .heading{ padding-bottom: 70px; }

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

.color-white{ color: #fff; }

.display-table{ display: table; height: 100%; width: 100%; }

.display-table-cell{ display: table-cell; vertical-align: middle; }

.card{ background: transparent; border: 0; }

.no-side-padding{ padding-right: 0px; padding-left: 0px; }

.no-left-padding{ padding-left: 0px; }

.no-right-padding{ padding-right: 0px; }

.icon{ font-size: 2em; }


.left-area{ float: left;  }

.right-area{ float: right;  }

.width-60{ width:60%; }

.width-50{ width: 50%; }

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content {
  flex: 1 0 auto;
}
.content h1, .content h2, .content h3 {
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.content h1 {
  font-size: 1.5em;
  margin: 0 0 30px;
  line-height: 1.7em;
}
.content h2 {
  font-size: 1.3em;
  margin: 20px 0 30px 0;
  line-height: 1.5em;
}
.content p {
  margin: 1em 0;
}
.footer {
  flex: 0 0 auto;
}
::-webkit-input-placeholder { font-size: .9em; letter-spacing: 1px; }

::-moz-placeholder { font-size: .9em; letter-spacing: 1px; }

:-ms-input-placeholder { font-size: .9em; letter-spacing: 1px;  }

:-moz-placeholder { font-size: .9em; letter-spacing: 1px;  }

.title { 
  color: #444;
  font-weight: 500;
  text-transform: uppercase;
}

/* ---------------------------------
3. HEADER AND MENU
--------------------------------- */
/* Основной хедер */
.main-header {
    background-color: #fdfff5;
    border-bottom: 1px solid #eee;
    position: relative;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    padding: 10px 0;
}

.custom-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: #144748 !important;
    padding: 40px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Кнопка бургера */
.navbar-toggler {
    width: 40px;
    height: 40px;
    border: none;
    outline: none !important;
    background: transparent;
    padding: 0;
    z-index: 2100;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler.active {
    position: fixed;
    right: 20px; 
    top: 25px;   
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #144748;
    position: relative;
    transition: background 0.3s ease;
}

.navbar-toggler-icon::before, 
.navbar-toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #144748;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { bottom: -8px; }

.navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent !important;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0; 
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-item.active .custom-link,
.custom-link:hover {
    color: #FFAD4D !important;
}

/* ---------------------------------
4. SLIDER
--------------------------------- */

.main-slider{
  position: relative; 
  height: calc(100vh - 265px); 
  min-height: 650px;
	width: 100%; 
	overflow: hidden; 
} 

#slider{ height: 100%; width: 100%; }
 
.main-slider .ls-nav-prev,
.main-slider .ls-nav-next{ display: block!important; opacity: 1!important; }
.load-more-btn{ clear: both; margin: 70px 0 30px; }

/* ---------------------------------
6. SIDEBAR
--------------------------------- */

.sidebar-section{ margin-bottom: 30px; }

.sidebar-section .title{ 
  margin-bottom: 10px;
  font-size: 1.3em;
  line-height: 1.4em;
  text-align: center;
}

/* RECOMENDED POSTS */

.recomended-post{ 
  overflow: hidden;
  padding: 0 0 15px;
  background: #fdfff5;
  border-bottom: 1px solid #144748;
  margin: 0 10px 20px;
}

.recomended-post:last-child { 
  border-bottom: 0;
}

.recomended-post a.title {
  font-size: 14px;
  line-height: 21px;
  display: block;
  margin: 10px 10px 0 10px;
  text-align: left;
}

.recomended-post a.title:hover {
  color: #FFAD4D;;
}
.recomended-post .image-wrapper {
  border-radius: 5px;
  box-shadow: 1px 10px 10px rgba(0, 0, 0, .15);
  position: relative;
  margin: 10px;
}
.recomended-post .image-wrapper img {
  border-radius: 5px;
}

.recomended-post .image-wrapper .date {
  display: block;
  font-size: 0.9em;
  padding: 10px 15px;
  height: 38px;
  letter-spacing: 1px;
  position: absolute;
  top: 15px;
  right: 0;
  background-color: rgba(255, 173, 77, 0.8);
  font-weight: 500;
  color: #fff;
}

/* ---------------------------------
9. MAIN INFO
--------------------------------- */
.main-info{     
  box-shadow: 0px 10px 40px rgba(0, 0, 0, .2);
  padding: 26px;
  text-align: center;
  border-radius: 10px;
  background-color: #fdfff5;
  margin-bottom: 20px;
}

.main-info .about-project{ font-size: 24px; line-height: 26px; }

.main-info .project-name { font-size: 27px; line-height: 36px; margin-top: 15px; }

.main-info .phrase { font-size: 22px;  margin-top: 10px; }

/* ---------------------------------
10. CUSTOM STYLES
--------------------------------- */

.block-break_quote {
  background: url("/uploads/images/quote_orange_small.png") no-repeat;
  width: 22px;
  height: 18px;
  background-size: contain;
  margin-top: 10px;
}
.blog-article-area { padding: 0 0 0 40px; }
.blog-area { padding: 40px 0 0 40px; }
.white-area { background: #fdfff5; }
.green-area { background: #f1f8e9; }
.green-area h2 {
  margin: 10px 0 15px;
  line-height: 1.8em;
}
.toblog-btn {
  border-radius: 10px;
  text-transform: uppercase;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  border: 1px solid #FFAD4D;
  background: #fff;
  color: #FFAD4D;
  margin-top: 30px;
}

.block-break {
  background: url("/uploads/images/list.png") no-repeat;
  width: 130px;
  height: 40px;
  background-size: contain;
  opacity: 0.5;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px;
}

.post__cover {
  display: flex;
  position: relative;
}

.post__cover img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border-radius: 10px;
}

.post-content__wrapper {
   padding: 2em 1em;
}

.post-content h1 {
  margin: 20px 0 25px;
}
.post-content h2 {
  margin: 25px 20px;
}
.post-content h3 {
  margin: 20px;
}
.post-content ul {
  list-style-type: circle;
}
.post-content ul li {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  list-style-type: disc;
  margin-left: 35px;
  display: list-item;
}
.sidebar-area {
  padding: 20px 5px;
  border-radius: 10px;
  height: min-content;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  border: 2px solid #f1f8e9;
}

/*-------------------------- POST ITEM ------------------------------ */
.post-item {
  margin-bottom: 30px;
}
.post-item .category-btn {
  width: 100%;
  display: block;
  font-size: 0.8em;
  padding: 10px 20px;
  height: 36px;
  letter-spacing: 1px;
  border-radius: 0 0 10px 10px;
  position: absolute;
  bottom: 0;
}
.post-item .category-btn:hover {
  background-color: #fdfff5;
  color: #FFAD4D;
}
.post-item .image-wrapper {
  border-radius: 10px;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  position: relative;
}
.post-item .image-wrapper a {
  display: block;
}

.post-item .image-wrapper.scale:hover img,
.post-item .image-wrapper.scale:focus img {
  transform: scale(1.1);
}

.post-item .date { 
  display: block;
  font-size: 1em;
  padding: 10px 20px;
  height: 2.6em;
  letter-spacing: 1px;
  position: absolute;
  top: 20px;
  right: 0;
  background-color: rgba(255, 173, 77, 0.8);
  font-weight: 500;
  color: #fff;
}

.post-item a.title {
  display: block;
  margin: 1.2em 1em 1.5em 0.5em;
  line-height: 1.5em; 
  font-size: 1.2em;
  color: #444;
}
.post-item a.title:hover {
  color: #FFAD4D;
}
.post-btn {
  border-radius: 10px;
  text-transform: uppercase;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  border: 1px solid #FFAD4D;
  background: #fff;
  color: #FFAD4D;
  margin: 20px;
}

/* --------------------- CATEGORY ITEMS ----------------------*/
.category-item {
  padding: 20px;
}
.category-item .image-wrapper {
  border-radius: 10px;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  position: relative;
  overflow: hidden;
}
.category-item__link {
  z-index: 10;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  max-width: 100%;
}
.category-item .title-wrapper .title {
  font-size: 18px;
  line-height: 26px;
  padding: 5px 0;
  color: #fdfff5;
}
.category-item .title-wrapper {
  position: absolute;
  z-index: 1;
  padding: 30px 20px;
  margin-top: -120px;
  bottom: 0;
}
.category-item .title-wrapper .title-line {
  width: 100%;
  height: 2px;
  background-color: #fdfff5;
}
.card-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: -moz-linear-gradient(top, rgba(20, 71, 72, 0.40), rgba(0, 0, 0, 0.40));
  background: -webkit-linear-gradient(top, rgba(20, 71, 72, 0.40), rgba(20, 71, 72, 0.40));
  background: -o-linear-gradient(top, rgba(20, 71, 72, 0.40), rgba(0, 0, 0, 0.40));
  background: -ms-linear-gradient(top, rgba(20, 71, 72, 0.40), rgba(0, 0, 0, 0.40));
  border-radius: 10px;
}
.scale {
  display: block;
  overflow: hidden; 
}
.scale img {
  transition: 1s; 
  display: block;
}
.category-item:hover .scale img,
.category-item:focus .scale img{
  transform: scale(1.1);
}
.sidebar-wrapper .sidebar-area {
  position: sticky;
  top: 20px;
}
.with-back {
  margin: 40px 0 80px 0;
}
.with-back__content {
  background: #fdfff5;
  border-radius: 10px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, .2);
  text-align: center;
  padding: 30px 70px;
  margin-top: -120px;
}
.with-back__content::before {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: url("/uploads/images/list.png") no-repeat;
  width: 150px;
  height: 50px;
  background-size: contain;
  opacity: 0.5;
}
.with-back__content::after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: url("/uploads/images/list.png") no-repeat;
  width: 150px;
  height: 50px;
  background-size: contain;
  opacity: 0.5;
}
.with-back__content p {
  font-size: 20px;
  padding: 10px 0;
  line-height: 26px;
}
.with-back__content ul {
  list-style-type: circle;
  text-align: left;
}
.with-back__content ul li {
  margin: 10px 0;
  font-size: 20px;
  line-height: 28px;
  list-style-type: disc;
  margin-left: 60px;
  display: list-item;
}
.line-between {
  background: url(/uploads/images/line_between.png) no-repeat;
  width: 100px;
  height: 30px;
  background-size: contain;
}
a.light-color { color: #FFAD4D; }
a.light-color:hover { color: #144748; }
.post__content a {color: #FFAD4D;}
.post__content a:hover {color: #144748;}
.correction__content {
  margin-top: 30px;
}
.video-container {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-wrapper {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts-services p {
  padding: 0;
}
.contacts-info p {
  padding: 5px 0;
}
.reviews .card {
  border-radius: 10px;
  box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
  padding: 15px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  margin-bottom: 30px;
}
.reviews .card .card-block {
  padding: 10px;
}
.reviews .card .card-title {
    margin-bottom: 0.25rem;
}
.all-reviews-btn {
  margin-bottom: 15px;
}
.all-reviews-btn.hidden { display: none; } 

.annotation_img {
  border-radius: 50%;
  width: 100%;
}

.blog-info {
  box-shadow: 0px 10px 40px rgba(0, 0, 0, .2);
  padding: 26px;
  text-align: center;
  border-radius: 10px;
  background-color: #fdfff5;
  margin-bottom: 20px;
}

.blog-info .phrase { 
  font-size: 20px;  
  margin-top: 10px;
}

.blog-info .phrase p { 
  line-height: 1.4;
  font-size: 1em;
  margin-bottom: 10px;
}

.latest-post-area h4.title{
  text-transform: uppercase;
  color: #444;
  font-weight: 500;
}
.mobile-only {
  display: none;
}
.only-desctop {
  display: block; 
}

/*---------------------- Разделы блога ---------------------*/
.tab-pane.fade {
  transform: translateY(15px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.tab-pane.fade.show {
  transform: translateY(0);
}

.nav-pills .nav-link {
  transition: all 0.3s ease;
  border-radius: 5px;
  border: 1px solid transparent;
  color: #666;
  font-size: 1.2em;
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: rgba(0, 123, 255, 0.05);
  color: #007bff;
}

.nav-pills .nav-link i {
  margin-right: 8px;
  vertical-align: middle;
  font-size: 1.2em;
}

#pills-home .category-item {
  animation: fadeInScale 0.5s ease backwards;
}

/* Задержка появления для первых 6 элементов (эффект очереди) */
#pills-home .category-item:nth-child(1) { animation-delay: 0.1s; }
#pills-home .category-item:nth-child(2) { animation-delay: 0.15s; }
#pills-home .category-item:nth-child(3) { animation-delay: 0.2s; }
#pills-home .category-item:nth-child(4) { animation-delay: 0.25s; }
#pills-home .category-item:nth-child(5) { animation-delay: 0.3s; }
#pills-home .category-item:nth-child(6) { animation-delay: 0.35s; }

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.nav-pills .nav-link.active {
  color: #fff;
  background-color: rgba(255, 173, 77, 1);
}

.tab-content {
  transition: height 0.4s ease; overflow: hidden;
  overflow: hidden;
  position: relative;
}

/*---------------- Список категорий блога  --------------------------------*/

/* Контейнер списка */
.category-list-simple {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

/* Отступы для мобильных, чтобы не липло к краям */
@media (max-width: 767px) {
    .category-list-simple {
        padding: 0 20px; 
    }
}

/* Ссылка */
.category-list-link {
    display: flex;
    align-items: flex-start; 
    padding: 18px 0;
    color: #144748;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125em; /* 18px */
    line-height: 1.4;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

/* Иконка-стрелочка */
.category-list-link::before {
    content: '\f3d1'; 
    font-family: "Ionicons";
    margin-right: 15px;
    flex-shrink: 0; 
    color: #FFAD4D;
    font-size: 20px;
    line-height: 25px; 
    transition: all 0.3s ease;
}

/* Ховер эффект */
.category-list-link:hover {
    color: #FFAD4D;
    /* Сдвиг всей ссылки вправо */
    padding-left: 15px !important; 
    text-decoration: none;
    background-color: rgba(253, 255, 245, 0.5); 
}

@media (max-width: 991px) {
    .list-item-anim:last-child .category-list-link {
        border-bottom: none;
    }
}

/* -------  FOOTER -----------------------------------*/
/* 1. Общий контейнер футера */
.footer-main.footer-dark {
    background-color: #144748 !important;
    padding: 60px 0 30px;
    color: #fdfff5 !important;
    border-top: 1px solid rgba(253, 255, 245, 0.1);
}

/* 2. Блок Логотипа и Названия */
.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-logo-box img {
    max-width: 100%;
    height: auto;
}

.footer-site-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-site-name .name-top {
    font-size: 18px;
    font-weight: 700;
    color: #FFAD4D;
    text-transform: uppercase;
}

.footer-site-name .name-bottom {
    font-size: 14px;
    color: #fdfff5;
    opacity: 0.8;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fdfff5;
    opacity: 0.7;
}

/* 3. Заголовки  */
.footer-dark .footer-title {
    color: #FFAD4D !important;
    font-size: 0.95rem; 
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* 4. Навигация в столбик */
.footer-links-list {
    display: block !important; 
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-list li {
    display: block !important;
    width: 100%;
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #fdfff5 !important;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block !important;;
}

.footer-links-list a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #FFAD4D;
}

.footer-links-list a:hover {
    color: #FFAD4D !important;
    opacity: 1;
    padding-left: 5px;
}

.footer-links-list li.active a,
.footer-links-list a.active {
    color: #FFAD4D !important; 
    opacity: 1;
    font-weight: 600;
    padding-left: 5px;
}

.footer-links-list li.active a::before,
.footer-links-list a.active::before {
    margin-right: 15px;
    opacity: 1;
}

.privacy-link {
    font-size: 13px !important;
    margin-top: 10px;
    opacity: 0.6 !important;
    border-bottom: 1px solid rgba(253, 255, 245, 0.2);
}

/* 5. Соцсети */
.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 24px;
    color: #FFAD4D !important;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #fdfff5 !important; 
    transform: translateY(-3px);
}

.footer-contact {
    font-size: 15px;
    color: #fdfff5 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #FFAD4D;
    font-size: 18px;
}

/* 6. Нижняя панель */
.footer-bottom {
    border-top: 1px solid rgba(253, 255, 245, 0.1);
    padding: 25px 0 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom .copyright {
    color: #fdfff5 !important;
    opacity: 0.6;
    font-size: 14px;
    margin: 0;
}
/* 7. Кнопка Вверх */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #FFAD4D;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #fdfff5;
    color: #144748;
    transform: translateY(-5px);
}

/*------------------------------------------------*/
#pdopage .btn-more {
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 1px 10px 15px rgba(0, 0, 0, .15);
    border: 1px solid #FFAD4D;
    background: #fff;
    color: #FFAD4D;
    margin-top: 30px;
    white-space: nowrap;
    width: fit-content !important;
    margin-bottom: 2em;
    display: block;
}

.without-pagination .pagination {
  display: none !important;
}

/*-----------------------  Contacts  ------------------------ */
.contact-photo-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 71, 72, 0.1);
}

.main-contact-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.photo-overlay-mask {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

.contact-photo-wrapper:hover .main-contact-img {
    transform: scale(1.04);
}

.contact-name {
    font-size: 2rem;
    color: #144748;
    font-weight: 700;
}

.contact-intro-text {
    font-size: 1.3em;
    line-height: 1.3;
    margin: 0.7em !important;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: #FFAD4D;
}
.group-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFAD4D;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-links-list {
    list-style: none;
    padding: 0;
}

.contact-links-list li {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #444;
}

.contact-links-list li i {
    color: #144748;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-links-list li a {
    color: #144748;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 173, 77, 0.3);
    transition: all 0.3s ease;
}

.contact-links-list li a:hover {
    color: #FFAD4D;
    border-bottom-color: #FFAD4D;
}

.social-link-item {
    font-size: 18px;
    color: #144748;
    font-weight: 550;
    margin-right: 25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link-item i {
    margin-right: 8px;
}

.social-link-item:hover {
    color: #FFAD4D;
}
/*---------------------------------------------------------------------*/

.post-card-accent {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); 
}

.post-item-horizontal:hover .post-card-accent {
    transform: translateY(3px); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.post-image-link {
    display: block;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-img-custom {
    border-radius: 8px;
    display: block;
    width: 100%;
}

.post-date-edge {
    position: absolute;
    top: 20px;
    right: 0 !important;
    background: #FFAD4D;
    color: #fff;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
    border-radius: 0 !important;
}

.post-title {
    color: #144748;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 0.4em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-title-link:hover .post-title {
    color: #FFAD4D;
}

.post-intro {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 1.5em;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    color: #144748;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFAD4D;
    padding-bottom: 4px;
}

.btn-read-more:hover {
    color: #FFAD4D;
    padding-right: 8px;
    text-decoration: none;
}

.category-link{
  text-transform: uppercase;
  font-size: 1em;
}

.category-link a{
   font-weight: 500;
}

/*--------------------- breadcrumbs ------------------------*/

.breadcrumb-wrapper {
    margin-bottom: 20px;
    padding: 10px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.3em;
    color: #6c757d;
    background: transparent;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 7px;
    padding-left: 7px;
    color: #dee2e6;
    content: "/"; 
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item a {
    color: #144748; 
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #FFAD4D;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*--------------- pagination ------------------*/

#pdopage.loading .rows {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.rows {
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.theme-pagination .pagination {
    gap: 5px;
    display: flex !important;
    align-items: center;
    list-style: none;
}

.page-item.disabled .page-link {
    cursor: default;
}

.page-item {
  padding: 0 3px;
}
.page-item .page-link {
    border: 1px solid #dee2e6;
    color: #144748;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background-color: #144748;
    border-color: #144748;
    color: #fff;
}

.page-item .page-link:hover {
    background-color: #FFAD4D;
    border-color: #FFAD4D;
    color: #fff;
}

/*------------------------------------*/

.about-blog-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.collapse {
    transition: all 0.3s ease;
}

.blog-sub-nav { 
    font-size: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
}
.nav-link-inline { color: #144748; text-decoration: none; cursor: pointer; }
.nav-divider { margin: 0 10px; color: #dee2e6; }

.about-blog-full-width {
    width: 100%;
}

.about-content {
    font-size: 1em;
    line-height: 1.7em;
    color: #444;
}

.nav-link-inline.active {
    color: #FFAD4D; 
    border-bottom: 2px solid #FFAD4D;
    padding-bottom: 2px;
}

.collapse.show {
    display: block;
}

.about-blog-full-width {
    min-height: 200px;
}
