/* ===================== TABLE OF CONTENT =======================

1. COMMON CSS
2. Home page 1  
   2.1 Navbar
   2.2 Search Section
   2.3 Banner Section
   2.4 Featured Posts
   2.5 Popular Posts
   2.6 Instagram Posts
   2.7 Footer Section
3. Home page 2
   3.1 Navbar
   3.2 Banner section
   3.3 Featured posts
   3.4 Popular posts
   3.5 kavya posts
   3.6 Instagram Posts
   3.7 Footer Section
4. Home page 
   4.1 Navbar
   4.2 Banner section
   4.3 Featured Posts
   4.4 Kavya Posts
   4.5 Instagram Posts
   4.6 Popular Posts
   4.7 Footer section
5. Sticky Header
6. Sticky Sidebar
7. Page header/breadcrumb
8. Scroll to top
9. Pagination section
10. Slick CSS
11. Archive Layout One
12. Archive Layout Two
13. Archive Layout Three
14. Single Layout One
15.Single Layout Two
16.Search Results
17.About Page
18.Contact Page
19. 404 Page with image
20. 404 Page with text
21. Archive Layout Four
22. Single Layout Three
23. Single Layout Four


================================================================= */

/* ================================================================================== 
									1.	Common Css
===================================================================================== */

html,
body,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
ul,
ol {
  list-style-position: inside;
}
a{
  color: #0c2a50;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
}
.title-font {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.btn-solid {
  background: #eac46e;
  color: #fff;
  font-size: 12px;
  padding: 7px 20px;
  text-transform: uppercase;
}
.btn-solid:hover {
  color: #fff;
  background-color: #0c2a50;
}
.btn-read {
  max-width: 150px;
}
.btn-outline {
  border: 1px solid #eac46e;
}
.btn-outline:hover {
  background: #eac46e;
  color: #fff;
}
.btn-small {
  font-size: 13px;
  color: #eac46e;
}
.py-20 {
  padding: 20px 0;
}
.py-30 {
  padding: 30px 0;
}

.title-font a {
  color: #333;
}
.writer-name-small {
  font-style: italic;
  font-size: 13px;
}
.section-title {
  font-family: "poppins", sans-serif;
  position: relative;
  margin-bottom: 50px;
  z-index: 11;
  text-transform: uppercase;
}
.section-title h2 {
  font-weight: 700;
}
.section-title:before {
  content: url("../images/title-bg.png");
  height: 30px;
  width: 50px;
  display: block;
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: -1;
}
.section-padding {
  padding: 50px 0;
}
.card,
.card-img,
.card-img-top {
  border-radius: 0;
}
.sidebar-title {
  font-family: "poppins", sans-serif;
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.sidebar-title h5 {
  font-weight: 600;
}
.sidebar-title i {
  font-size: 10px;
  color: #eac46e;
  padding: 5px;
}
.card-text {
  color: #666;
}
.card-img,
.card-img-top {
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 100%;
  object-fit: cover;
}
.card-img:hover,
.card-img-top:hover {
  opacity: 0.9;
}
.card-500 .card-img {
  height: 500px;
}
.card-350 .card-img,
.card-350 .card-img-top {
  height: 350px;
}
.title-font a:hover {
  color: #eac46e;
}
.author-date {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-style: italic;
  font-family: "Lora", serif;
  justify-content: space-between;
}
.author-date a {
  color: #666;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.author-date a:hover {
  color: #000;
}
.author-date .author img {
  height: 30px;
  width: 30px;
  object-fit: cover;
  margin-right: 5px;
}
.category-tag-list {
  list-style: none;
  margin-bottom: 10px;
}
.category-tag-list .category-tag-name {
  display: inline-block;
}
.category-tag-list .category-tag-name:after {
  content: "\f111";
  font-size: 5px;
  color: #a7a7a7;
  font-family: "Font awesome 5 free";
  font-weight: 600;
  padding: 0 5px;
}
.category-tag-list .category-tag-name:last-of-type:after {
  content: "";
}
.category-tag-list .category-tag-name a ,
.category-tag-list .category-tag-name span {
  color: #0c2a50;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.category-tag-list .category-tag-name:hover a {
  color: #e24c07 !important;
}

/* ================================================================================== 
									2.	Default Home page 1
===================================================================================== */

/* 2.1 Navbar */
.top-header {
  padding: 20px 0;
}
.social-links ul {
  list-style: none;
}
.social-links ul li {
  display: inline-block;
  padding-right: 10px;
}
.social-links ul li a {
  color: #666;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  display: block;
}
.social-links ul li a:hover {
  color: #0c2a50;
}
.brand-name a h1 , .brand-name a p{
  color: #0c2a50;
  font-size: 40px;
  font-family: "Great Vibes", cursive;
  font-weight: 600;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.brand-name a span {
  color: #a7a7a7;
  font-size: 12px;
}
.brand-name a:not(.btn):hover {
  color: #0c2a50;
}
.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.search-wrapper button {
  border: none;
  background: transparent;
  color: #666;
  margin-left: 10px;
  padding: 5px;
  height: 40px;
  width: 40px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50%;
}
.search-wrapper button:hover {
  background: #ecf1ff;
}
.kavya-navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  transition: all 0.2s ease;
}
.kavya-navbar .nav-menu-wrapper {
  display: flex;
  align-items: center;
}
.kavya-navbar .nav-menu {
  list-style: none;
}
.kavya-navbar .nav-menu .nav-item {
  display: inline-block;
  padding: 10px 0;
  position: relative;
  transition: all 0.4s;
}
.kavya-navbar .nav-menu .nav-item .arrow{
  transition:0.2s;
}
.kavya-navbar .nav-menu .arrow-icon {
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.kavya-navbar .arrow-icon span {
  top: 0.5rem;
  position: absolute;
  width: 0.5rem;
  height: 0.1rem;
  background-color: #333;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.kavya-navbar .arrow-icon .left-bar {
  left: 0;
  transform: rotate(45deg);
}
.kavya-navbar .arrow-icon .right-bar {
  right: 0;
  transform: rotate(-45deg);
}
.kavya-navbar .arrow-icon.active .left-bar {
  transform: rotate(-45deg);
}
.kavya-navbar .arrow-icon.active .right-bar {
  transform: rotate(45deg);
}
.kavya-navbar .nav-menu .nav-item a {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.kavya-navbar .nav-menu .nav-item:hover .nav-link {
  color: #0c2a50;
}
.kavya-navbar .nav-menu .nav-item:hover .arrow-icon span {
  background-color: #0c2a50;
}

.kavya-navbar .drop-menu {
  list-style: none;
  position: absolute;
  min-width: 250px;
  text-align: left;
  background: #fff;
  display: none;
  z-index: 99;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.kavya-navbar .nav-menu .nav-item:hover .drop-menu {
  display: block;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.kavya-navbar .nav-menu .drop-menu .drop-menu-item a {
  padding: 15px 30px;
  display: block;
  font-size: 13px;
}
.kavya-navbar .nav-menu .drop-menu .drop-menu-item a:hover {
  background: #e9ecef;
}
.kavya-navbar .sidebar-btn {
  cursor: pointer;
  padding: 5px;
}
.navbar-toggle {
  display: none;
}
.show {
  display: block !important;
}
/* navbar end */


/* 2.2 Search section */
.search-section{
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  transition: 0.5s ease;
  justify-content: center;
  align-items: center;
  transform: scale(0.2);
}
.search-section .overlay-content {
  position: relative;
  width: 70%;
}
.search-section .closebtn {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  cursor: pointer;
  color: #656565;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
}
.search-section .closebtn:hover {
  background: #ddd;
}
.search-section input[type="text"] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 85%;
  background: white;
  border: 1px solid #ddd;
}
.search-section button {
  float: left;
  width: 15%;
  padding: 13px;
  background: #ddd;
  font-size: 19px;
  border: 1px solid #ddd;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  color: #656565;
}
.search-section button:hover {
  background: #0c2a50;
  border: 1px solid #0c2a50;
  color: #fff;
}
.search-show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
/* Search section end */

/* 2.3 Banner section */

.banner-section .main-banner .banner-bg {
  display: flex;
  height: 650px;
  position: relative;
  overflow: hidden;
}

.banner-section .banner-bg-left {
  width: 30%;
  background: #ecf1ff;
}

.banner-section .banner-bg-right {
  width: 70%;
  background: #f8f8fa;
  position: relative;
}

/*
 * Спільний контейнер картинки та слайдера.
 * Саме він зміщується вліво на 35%.
 */
.banner-section .banner-content {
  display: flex;
  align-items: center;
  position: relative;
  left: -35%;
  width: 130%;
  padding: 75px 0;
  box-sizing: border-box;
}

/* Постійна картинка */

.banner-section .banner-content .banner-img {
  width: 40%;
  height: 500px;
  flex: 0 0 40%;
}

.banner-section .banner-content .banner-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-section .banner-content .banner-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 300px;
  margin: 0 auto;
}

.banner-content .banner-img {
  position: relative;
  height: 500px;
  width: 40%;
  overflow: hidden;
}

.banner-content .banner-img .banner-img-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-content .banner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
          transform 0.6s ease,
          filter 0.6s ease;
}

.banner-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(
          to top,
          rgba(20, 28, 55, 0.8) 0%,
          rgba(20, 28, 55, 0.2) 45%,
          rgba(20, 28, 55, 0) 75%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.banner-img-label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transform: translateY(15px);
  transition: transform 0.45s ease;
}

.banner-img-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 25px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transform: translateX(-10px);
  transition:
          transform 0.45s ease,
          background-color 0.3s ease,
          color 0.3s ease;
}

.banner-img-link:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.banner-img-link:hover .banner-img-overlay {
  opacity: 1;
}

.banner-img-link:hover .banner-img-label {
  transform: translateY(0);
}

.banner-img-link:hover .banner-img-arrow {
  transform: translateX(0);
  background-color: #fff;
  color: #303f78;
}
.banner-img-link:focus-visible {
  outline: 3px solid #0c2a50;
  outline-offset: 4px;
}

.banner-img-link:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.banner-img-link:focus-visible .banner-img-overlay {
  opacity: 1;
}

.banner-img-link:focus-visible .banner-img-label,
.banner-img-link:focus-visible .banner-img-arrow {
  transform: none;
}
/* Слайдер із текстом */

.banner-section .banner-content .banner-carousel {
  width: 60%;
  flex: 0 0 60%;
  min-width: 0;
  position: relative;
}

/*
 * Усередині banner-item тепер немає картинки,
 * тому display: flex тут більше не потрібен.
 */
.banner-section .main-banner .banner-carousel .banner-item {
  display: block;
  width: 100%;
}

.banner-section .banner-carousel .banner-item .banner-text {
  width: 100%;
  min-height: 500px;
  padding: 80px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.banner-section .banner-carousel .category-tag-list .category-tag-name a {
  color: #0c2a50;
}

.banner-section .banner-carousel .banner-item .banner-text .title-font {
  margin-bottom: 15px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
}

.banner-section .banner-carousel .banner-item .banner-text p {
  font-size: 18px;
}

/* Slick */

.banner-section .banner-carousel .slick-list,
.banner-section .banner-carousel .slick-track {
  height: 100%;
}

.banner-section .banner-carousel .slick-slide {
  height: auto;
}

.banner-section .banner-carousel .slick-slide > div {
  height: 100%;
}

/* Старі стилі карток */

.banner-section .main-banner .card {
  border: none;
  border-radius: 0;
}

.banner-section .main-banner .card .card-img {
  height: 500px;
  object-fit: cover;
  border-radius: 0;
}

.banner-section .main-banner .card .card-img:hover {
  opacity: 1;
}

.banner-section .main-banner .card .card-img-overlay {
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 45px;
  background: rgba(255, 255, 255, 0.5);
}

.banner-section .main-banner .card .card-title {
  color: #292929;
  font-size: 30px;
}

.banner-section .main-banner .card .card-text {
  margin-bottom: 15px;
  font-weight: 500;
}

.more-content-grid .card {
  border: none;
  border-radius: 0;
}

.more-content-grid .card .card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

/* Banner section end */

/* 2.4 Featured Posts */
.featured-posts .featured-left .card {
  border: none;
}
.featured-posts .featured-left .title-font {
  font-size: 28px;
}

.featured-posts .featured-left .card-img-overlay {
  top: auto;
  padding: 30px;
  color: #333;
  background: #fff;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  outline: 3px solid #fff;
  outline-offset: 11px;
  bottom: 50px;
}

.featured-posts .featured-right .card:first-of-type {
  margin-bottom: 90px;
}
.featured-posts .featured-left .card-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.featured-posts .featured-right .card .card-img-top {
  height: 210px;
  object-fit: cover;
}
.featured-right .card .card-body {
  position: absolute;
  right: -3px;
  background: #fff;
  bottom: -80px;
  width: 75%;
  padding: 30px;
  text-align: right;
}
/* Featured posts end */

/* 2.5 Popular Posts */
.popular-posts .card {
  border: none;
}
.popular-posts .card .card-img {
  height: 250px;
  object-fit: cover;
}
.popular-posts .card .card-text {
  margin-bottom: 20px;
}
.popular-posts .recent-posts {
  margin-top: -40px;
}
.sidebar-content {
  border: 1px solid #dee2e6;
  padding: 20px;
}
.sidebar-content .category-tag-list .category-tag-name a {
  font-size: 12px;
}
.sidebar-content .author-date {
  font-size: 12px;
}
.sidebar-list {
  list-style: none;
}
.recent-posts .sidebar-item {
  font-size: 50px;
  color: rgba(48, 60, 108, 0.27);
  font-weight: 600;
  font-family: "poppins", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sidebar-item a {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  opacity: 1;
  padding-left: 15px;
}
.sidebar-item a:hover {
  color: #eac46e;
}
.sidebar-item .author-date {
  width: 100%;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
}
.tags-list li {
  background: rgba(48, 60, 108, 0.1);
  margin: 5px;
  border-radius: 20px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.tags-list li a {
  color: #aaa;
  font-size: 12px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  padding: 3px 18px;
  display: block;
}
.tags-list li:hover {
  background: #0c2a50;
}
.tags-list li:hover a {
  color: #fff;
}

/* 2.6 Instagram posts */
.insta-posts {
  background: url("../images/indexation-bg.png");
  background-size: cover;
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 30px;
}
.insta-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.insta-title img {
  width: 40px;
}
.insta-posts h2 {
  font-family: "poppins", sans-serif;
  color: #666;
  padding-left: 10px;
  font-weight: 600;
}
.insta-posts i {
  color: #0c2a50;
  font-size: 40px;
  padding-right: 10px;
}
.image-item-grid {
  display: flex;
  justify-content: space-between;
}
.image-item {
  height: 210px;
  width: 200px;
  padding: 20px;
  position: relative;
}
.image-item:nth-of-type(even) {
  margin-top: 50px;
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-item .image-hover {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 16px;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  transition: all 0.3s;
  padding: 30px 20px 0px 10px;
  right: 20px;
  z-index: -1;
}
.image-item .image-hover i {
  font-size: 16px;
  color: #0c2a50;
}
.image-item:hover .image-hover {
  opacity: 1;
  bottom: 20px;
  z-index: 9;
  padding: 30px 20px 10px 10px;
}
/* Instagram posts end */

/* 2.7 Footer section */
.footer-section {
  background: #212121;
  padding: 60px 0;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-section .brand-name {
  font-family: "Great Vibes", cursive;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}
.footer-content .social-links ul li {
  font-size: 16px;
}
.footer-content .social-links ul li a {
  color: #a7a7a7;
}
.footer-content .social-links ul li a:hover {
  color: #fff;
}
.footer-content p {
  color: #a7a7a7;
}
.footer-content p a {
  color: #fff;
}
.footer-content p a:hover {
  text-decoration: underline;
}
/* Footer section end */

/* ================================================================================== 
										3. Home page 2
===================================================================================== */

/* 3.1 Navbar */
.kavya-home-2 .kavya-navbar-2 {
  display: block;
  padding-top: 15px;
  border-bottom: none;
}
.kavya-navbar-2 .brand-name{
  text-align:center;
}
.kavya-navbar-2 .nav-menu .nav-item {
  padding: 10px;
}
/* Navbar end */

/* 3.2 Banner section */
.kavya-home-2 .banner-section {
  margin-top: 30px;   
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .card {
  border: none;
  height: 650px;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .card-img {
  margin-left: 100px;
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .card-img:hover {
  opacity: 1;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .banner-text {
  position: absolute;
  left: 0;
  top: 45%;
  bottom: auto;
  background: #ecf1ff;
  padding: 50px 70px;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .title-font {
  font-size: 30px;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .card-text {
  font-size: 15px;
}
.kavya-home-2 .banner-section .banner-carousel .banner-item .card-img-overlay {
  position: absolute;
}
/* Banner section end */

/* 3.3 Featured posts */
.kavya-home-2 .featured-posts .card {
  margin-bottom: 30px;
  border: none;
}
.card.simple-overlay-card .card-img-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  top: auto;
  padding: 30px;
  padding-top: 50px;
}
.kavya-home-2 .featured-posts .card .title-font {
  margin-bottom: 0;
}
.kavya-home-2 .featured-posts .card .category-tag-list {
  margin-bottom: 5px;
}
.kavya-home-2 .featured-posts .card .card-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.kavya-home-2 .featured-posts .card .title-font a {
  color: #bbbbbb;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.kavya-home-2 .featured-posts .card .title-font a:hover {
  color: #fff;
}
/* Featured posts end */

/* 3.4 Popular posts */
.kavya-home-2 .popular-posts{
  padding-top:20px;
}
.kavya-home-2 .popular-posts .card {
  margin-bottom: 30px;
}
.kavya-home-2 .popular-posts .card-img-top {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.kavya-home-2 .popular-posts .sidebar-posts {
  margin-top: -40px;
}
.sidebar-posts .author-posts {
  border: none;
  padding: 0;
}
.sidebar-posts .author-posts .card-img {
  height: 90px;
  width: 100%;
}
.sidebar-posts .author-posts .card {
  border: 1px solid #dee2e6;
  padding: 15px;
}
.sidebar-posts .author-posts .card-body {
  padding: 0;
  padding-left: 15px;
}
.sidebar-posts .author-posts .title-font {
  font-size: 16px;
  margin-bottom: 5px;
}
.kavya-home-2 .popular-tags .sidebar-content {
  border: 1px solid #dee2e6;
  padding: 10px;
}

/* 3.5 Kavya Posts */
.kavya-posts .card {
  border: none;
}
.kavya-posts .posts-wrapper .small-card .card-img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.kavya-posts .posts-wrapper .long-card .card-img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.kavya-posts .posts-wrapper .long-card .card-body {
  padding: 30px;
}
.kavya-posts .more-posts .small-card .card-img-overlay {
  padding: 10px;
}
.kavya-posts .posts-wrapper .long-card .title-font {
  font-size: 25px;
}
.kavya-posts .more-posts .small-card .title-font a {
  color: #bbbbbb;
  font-size: 18px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.kavya-posts .more-posts .small-card .title-font a:hover {
  color: #fff;
}
.kavya-posts .more-posts .small-card .category-tag-name a {
  font-size: 10px;
}

.kavya-posts .instagram-posts {
  margin-top: -40px;
}
/* Kavya posts end */

/* 3.6 Instagram posts */
.instagram-posts .sidebar-content .insta-item {
  height: 150px;
  width: 100%;
  padding: 0;
}
.instagram-posts .sidebar-content .insta-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.instagram-posts .sidebar-content .insta-link {
  margin-top: 15px;
  text-align: center;
}
.instagram-posts .sidebar-content .insta-link a {
  display: block;
  border-radius: 3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.instagram-posts .sidebar-content .insta-link a i {
  padding-left: 5px;
  font-size: 14px;
}
.instagram-posts .sidebar-content .insta-link .btn-solid {
  padding: 10px;
}

.instagram-posts .sidebar-content .insta-item .image-hover {
  left: 0;
  right: 0;
  bottom: 0;
}
/* Instagram posts */

/* 3.7 Footer section */
.kavya-home-2 .footer-section {
  margin-top: 50px;
  text-align: center;
  padding-bottom: 0;
}
.kavya-home-2 .footer-section .footer-links ul {
  list-style: none;
  margin: 15px 0;
}
.kavya-home-2 .footer-section .footer-links ul li {
  display: inline-block;
  padding: 10px;
}
.kavya-home-2 .footer-section .footer-links ul li a {
  color: #a7a7a7;
}
.kavya-home-2 .footer-section .footer-links ul li a:hover {
  color: #fff;
}
.footer-section .circular-icons.social-links ul li {
  border-color: #a7a7a7;
}
.footer-section .circular-icons.social-links ul li a {
  color: #a7a7a7;
  display: block;
}
.footer-section .circular-icons.social-links ul li:hover {
  background: #fff;
  color: #a7a7a7;
  border-color: #fff;
}
.footer-section .circular-icons.social-links ul li:hover a {
  color: #212121;
}
.footer-section .circular-icons.social-links ul li a:hover {
  color: #212121;
}
.footer-section .footer-bottom {
  background: #272727;
  padding: 15px 0;
  margin-top: 50px;
  color: #a7a7a7;
  font-size: 14px;
  text-align: center;
}
.footer-section .footer-bottom a {
  color: #fff;
}
.footer-section .footer-bottom a:hover {
  text-decoration: underline;
}
/* Footer section end */

/* ================================================================================== 
										4. Home Page 3
===================================================================================== */
/* 4.1 Navbar */
.kavya-home-3 .top-header {
  padding: 0;
  background: #f8f9fa;
}
.kavya-home-3 .bottom-header {
  text-align: center;
  padding-top: 10px;
}
.kavya-home-3 .kavya-navbar {
  border-bottom: none;
  margin-bottom: 0;
}
/* Navbar end */

/* 4.2 Banner section */
.kavya-home-3 .banner-section {
  margin-top: 0;
}
.kavya-home-3 .banner-section .banner-carousel .banner-item .banner-text {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  background: #fff;
  padding: 30px;
  width: 80%;
  text-align: center;
}
.kavya-home-3 .banner-section .banner-item .card {
  height: 600px;
  border: none;
}
.kavya-home-3 .banner-section .banner-item .card .card-img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.kavya-home-3 .banner-section .banner-item .card .card-img:hover {
  opacity: 1;
}
.kavya-home-3 .banner-section .banner-item .title-font {
  font-size: 30px;
}
.kavya-home-3 .banner-section .banner-item .card-text {
  font-size: 15px;
}
.kavya-home-3 .banner-section .more-content-grid .card-img {
  height: 250px;
  object-fit: cover;
}
.kavya-home-3 .banner-section .more-content-grid .card .card-img-overlay {
  padding-bottom: 20px;
}
.kavya-home-3 .banner-section .more-content-grid .title-font {
  margin-bottom: 0;
}
.kavya-home-3 .more-content-grid .card-img-overlay .title-font a {
  color: #bbbbbb;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.kavya-home-3 .more-content-grid .card-img-overlay .title-font a:hover {
  color: #fff;
}
/* Banner section end */

/* 4.3 Featured posts */
.kavya-home-3 .featured-posts .card-350 {
  margin-top: 40px;
}
.kavya-home-3 .featured-posts .card-350 .card-img-top {
  width: 100%;
  object-fit: cover;
}
.kavya-home-3 .featured-posts .card-500 .card-img-overlay {
  top: auto;
  background-color: #fff;
  margin: 30px;
  text-align: center;
}
.kavya-home-3 .featured-posts .card-500 .card-img {
  width: 100%;
  object-fit: cover;
}
.kavya-home-3 .featured-posts .card-500 .title-font {
  font-size: 25px;
}
/* Featured posts end */

/* 4.4 Kavya Posts*/
.kavya-home-3 .kavya-posts .card .card-img-top {
  height: 200px;
}

.kavya-home-3 .kavya-posts .card-350 .card-img-top {
  height: 350px;
}
.kavya-home-3 .kavya-posts .sidebar-posts {
  margin-top: -40px;
}
/* Kavya posts */

/* 4.5 Instagram posts */
.kavya-home-3 .instagram-posts {
  margin-top: 20px;
}
.kavya-home-3 .instagram-posts .sidebar-content .insta-item {
  height: 110px;
  padding: 5px;
}
.kavya-home-3 .instagram-posts .sidebar-content .insta-item .image-hover {
  margin: 5px;
}
/* Instagram posts end */

/* 4.6 Popular posts */
.kavya-home-3 .popular-posts .recent-posts {
  margin-top: -40px;
}
.kavya-home-3 .recent-posts .sidebar-item {
  margin-bottom: 10px;
}
.recent-posts .sidebar-item .num-left {
  background: rgba(48, 60, 108, 0.27);
  color: #fff;
  height: 70px;
  width: 20%;
  text-align: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.recent-posts .sidebar-item .content-right {
  color: #333;
  font-size: 16px;
  width: 80%;
  padding-left: 15px;
}
.recent-posts .sidebar-item .content-right a {
  padding-left: 0;
  font-weight: 600;
  display: block;
}
.recent-posts .sidebar-item:hover .num-left {
  background: #0c2a50;
}
.recent-posts .sidebar-item:hover .content-right a {
  color: #eac46e;
}
/* Popular posts end */

/* 4.7 Footer section */
.footer-section p {
  color: #a7a7a7;
  padding: 15px 0;
}
.footer-section .footer-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #a7a7a7;
  padding-bottom: 20px;
}
.kavya-home-3 .footer-section .social-links {
  padding-top: 30px;
}
.footer-section .popular-tags .sidebar-content {
  border-color: #333;
  padding: 10px;
}
.footer-section .popular-tags .tags-list li {
  background: #2b2b2b;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-section .popular-tags .tags-list li:hover {
  background: #fff;
  color: #212121;
}
.footer-section .popular-tags .tags-list li:hover a {
  color: #212121;
}
.footer-section .author-posts .posts-wrapper {
  border: 1px solid #333;
  padding: 15px;
}
.footer-section .author-posts .posts-wrapper .card {
  background: transparent;
  border: none;
  margin-bottom: 15px;
}
.footer-section .author-posts .posts-wrapper .card:last-of-type {
  margin-bottom: 0;
}
.footer-section .author-posts .posts-wrapper .card .card-img {
  height: 70px;
}
.footer-section .author-posts .posts-wrapper .card .card-body {
  padding: 0;
  padding-left: 15px;
  text-align:left;
}
.footer-section .author-posts .category-tag-list .category-tag-name a {
  font-size: 10px;
}
.footer-section .author-posts .title-font a {
  font-size: 15px;
  color: #a7a7a7;
}
.footer-section .author-posts .title-font a:hover {
  font-size: 15px;
  color: #fff;
}
.footer-section .author-posts .author-date a {
  font-size: 10px;
  color:#aaa;
}
.footer-section .author-posts .author-date a:hover {
  color: #fff;
}
/* Footer section end */

/* ================================================================================== 
									5.	Sticky Header
===================================================================================== */
#sticky-top{
  z-index:99!important;
  background:#fff;
}

.kavya-navbar.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  padding: 0;
}
.kavya-navbar.sticky-header .brand-name a h1 {
  font-size: 30px;
}
.sticky-logo {
  visibility: hidden;
  opacity: 0;
}
.sticky-logo-active {
  visibility: visible;
  opacity: 1;
}
.sticky-search {
  visibility: hidden;
  opacity: 0;
}
.sticky-search-active {
  visibility: visible;
  opacity: 1;
}
.sticky-logo a {
  color: #0c2a50;
  font-family: "Great Vibes", cursive;
  font-weight: 600;
  font-size: 30px;
}
.sticky-header + .banner-section {
  margin-top: 150px;
}


/* ================================================================================== 
										6. Sticky Sidebar
===================================================================================== */

.sticky-sidebar {
  width: 22%;
  height: 100%;
  overflow: scroll;
  /* background: #f7f8fa; */
  background: #fff;
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  padding: 30px;
  text-align: center;
  margin-right: -20%;
  transition: 0.4s ease;
}
.sticky-sidebar-content h3 {
  font-weight: 600;
  margin: 20px 0;
}
.sticky-sidebar .author-img {
  height: 200px;
  width: 200px;
  margin: auto;
}
.sticky-sidebar .author-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.sticky-sidebar .author-desc {
  padding: 20px 0;
}
.circular-icons.social-links ul li {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #666;
  line-height: 38px;
  text-align: center;
  padding-right: 0;
  margin: 3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.sticky-sidebar .social-links ul li a {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.sticky-sidebar .social-links ul li:hover {
  background: #666;
}
.sticky-sidebar .social-links ul li:hover a {
  color: #fff;
}
.sticky-sidebar .author-posts {
  margin-top: 20px;
}
.sticky-sidebar .author-posts:before {
  content: "";
  height: 3px;
  width: 50px;
  background-color: #0c2a50;
  display: block;
  margin: auto;
}
.sticky-sidebar .author-posts .card {
  padding: 10px;
}
.sticky-sidebar .author-posts .card .card-img {
  height: 100px;
  width: 100%;
  object-fit: cover;
}
.sticky-sidebar .author-posts .card .card-body {
  text-align: left;
  padding: 0;
  padding-left: 15px;
}
.sticky-sidebar .author-posts .card .title-font {
  font-size: 16px;
  margin-bottom: 5px;
}
.sticky-sidebar .author-posts .card .category-tag-list {
  margin-bottom: 0;
}
.sticky-sidebar .author-date {
  font-size: 11px;
}
.sticky-sidebar .author-posts .card .category-tag-list .category-tag-name a {
  font-size: 11px;
}
.sidebar-show {
  opacity: 1;
  margin-right: 0 !important;
}
.close-sidebar {
  font-size: 30px;
  font-weight: 500;
  color: #a7a7a7;
  padding: 10px;
  cursor: pointer;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.close-sidebar:hover {
  background: #ecf1ff;
}
.body-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
}
.body-overlay-active {
  visibility: visible;
  opacity: 1;
}

/* ================================================================================== 
										7. Page Header/Breadcrumb
===================================================================================== */
.page-header {
  padding: 70px 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/coffee.jpg") no-repeat;
  background-size: cover;
}
.page-header .page-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.page-header .page-title span {
  text-transform: initial;
  font-weight: 400;
}
.page-breadcrumb .breadcrumb {
  background-color: transparent;
  text-align: right;
  justify-content: flex-end;
  margin-bottom: 0;
}
.page-breadcrumb .breadcrumb-item.active {
  color: #0c2a50;
}
.page-breadcrumb .breadcrumb-item a {
  color: #fff;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.page-breadcrumb .breadcrumb-item a:hover {
  color: #0c2a50;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* ================================================================================== 
										8. Scroll to top
===================================================================================== */
.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #fff;
  padding: 15px;
  opacity: 0;
  -webkit-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.24);
  -o-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.24);
  -ms-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  z-index: 999;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.scroll-to-top:hover {
  background: #0c2a50;
}
.scroll-to-top a {
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.scroll-to-top:hover a {
  color: #fff;
}

/* ================================================================================== 
										9. Pagination section
===================================================================================== */
.pagination-section {
  margin: 50px 0;
}
.pagination-section .page-link {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  margin: 3px;
  color: #666;
  font-weight: 600;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.pagination-section .page-item.active .page-link {
  background: #0c2a50;
  border-color: #0c2a50;
}
.pagination-section .page-item:first-of-type .page-link,
.page-item:last-of-type .page-link {
  border-radius: 50%;
  border: none;
  color: #0c2a50;
  padding-top: 10px;
}
.pagination-section .page-link:hover {
  background: #0c2a50;
  border-color: #0c2a50;
  color: #fff;
}

.pagination-section .page-item.disabled .page-link {
  color: #a7a7a7;
}

/* ================================================================================== 
										10. Slick slider Css
===================================================================================== */
.banner-carousel .prev-icon {
  position: absolute;
  bottom: 0;
}
.banner-carousel .slick-prev,
.banner-carousel .slick-next {
  width:50px;
  height:50px;
  padding: 19px;
  z-index: 11;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.banner-carousel .slick-prev {
  z-index: 11;
  background: #fff;
  left: 0;
  top:550px;
}
.banner-carousel .slick-prev:hover {
  background: #ecf1ff;
}
.banner-carousel .slick-next {
  left:50px;
  top:550px;
}
.banner-carousel .slick-next:hover {
  background: #ecf1ff;
}
.banner-carousel .slick-dots {
  top: 50%;
  transform: translateY(-20%);
  right: -100%;
}
.banner-carousel .slick-dots li {
  display: block;
  height: 45px;
  width: 45px;
  margin-bottom: -20px;
}
.banner-carousel .slick-dots li button {
  width: 45px;
  height: 45px;
}
.banner-carousel .slick-dots li button:before {
  font-size: 45px;
  left: -25px;
  color: rgba(0, 0, 0, 0.8);
}
.banner-carousel .slick-dots li:hover button:before {
  color: #0c2a50;
}
.banner-carousel .slick-dots li.slick-active button:before {
  color: #0c2a50;
}

.kavya-home-2 .banner-carousel .slick-dots {
  right: -98%;
}
.kavya-home-2 .banner-carousel .slick-prev {
  top: 500px;
  left: 84%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 18px;
}
.kavya-home-2 .banner-carousel .slick-next {
  top: 500px;
  left: 90%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  padding: 18px;
}
.kavya-home-2 .banner-carousel .slick-prev:hover,
.kavya-home-2 .banner-carousel .slick-next:hover {
  background: #fff;
}
.kavya-home-3 .banner-carousel .slick-dots {
  top: auto;
  bottom: -10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.kavya-home-3 .slick-dots li {
  display: inline-block;
  margin-bottom: 0;
  height: 20px;
  width: 20px;
  margin-bottom: 30px;
}
.kavya-home-2 .banner-carousel .slick-dots li button:before, .kavya-home-3 .banner-carousel .slick-dots li button:before {
  color: #fff;
  opacity: 0.5;
}
.kavya-home-2 .banner-carousel .slick-dots li:hover button:before, .kavya-home-3 .banner-carousel .slick-dots li:hover button:before {
  color: #0c2a50;
  opacity: 1;
}
.kavya-home-3 .banner-carousel .slick-dots li button:before {
  left:0;
}
.kavya-home-3 .banner-carousel .slick-prev,
.kavya-home-3 .banner-carousel .slick-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  padding: 25px 15px;
}
.kavya-home-3 .banner-carousel .slick-prev {
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.kavya-home-3 .banner-carousel .slick-next {
  left: auto;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
}
.kavya-home-3 .banner-carousel .slick-prev:hover,
.kavya-home-3 .banner-carousel .slick-next:hover {
  background: #fff;
}
.kavya-home-2 .banner-carousel .slick-dots li.slick-active button:before,.kavya-home-3 .banner-carousel .slick-dots li.slick-active button:before {
  color: #0c2a50;
  opacity: 1;
}


/* ================================================================================== 
									11. Archive Layout One
===================================================================================== */
.kavya-archive .kavya-navbar {
  margin-bottom: 0;
}
.kavya-archive .archive-content {
  padding-top: 50px;
}
.kavya-archive .archive-posts .card .card-body {
  padding-left: 30px;
}
.kavya-archive .archive-posts .card .card-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.kavya-archive .sidebar-posts .card {
  padding: 15px;
}
.kavya-archive .sidebar-posts .card:nth-of-type(even) {
  background: #ecf1ff;
}
.kavya-archive .archive-posts .card .card-text {
  margin-bottom: 15px;
}
.archive-content .sidebar-posts .card .card-body {
  padding: 0;
}
.sidebar-posts .card .title-font {
  font-size: 16px;
}
.archive-content .sidebar-posts .category-tag-name a {
  font-size: 13px;
}
.archive-content .sidebar-posts .card .card-img {
  font-size: 13px;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.sidebar-content .archive-date-list {
  list-style: none;
}
.sidebar-content .archive-date-list li {
  margin-bottom: 10px;
}
.sidebar-content .archive-date-list li a {
  color: #333;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar-content .archive-date-list li a:hover {
  color: #0c2a50;
}
.sidebar-content .archive-date-list li img {
  height: 25px;
  margin-right: 15px;
}
.sidebar-content .category-name-list .card {
  padding: 0;
  border: none;
  margin-bottom: 15px;
}
.sidebar-content .category-name-list .card:last-of-type {
  margin-bottom: 0;
}
.sidebar-content .category-name-list .card .card-img {
  width: 100%;
  height: 120px;
  border-radius: 0;
}
.sidebar-content .category-name-list .card-img-overlay {
  padding: 0;
  background: #fff;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
}
.sidebar-content .category-name-list .title-font a {
  display: block;
  padding: 10px;
}
/* ================================================================================== 
									12. Archive Layout Two
===================================================================================== */
.kavya-archive-2 .sidebar-title {
  text-align: left;
}
.kavya-archive-2 .archive-content .sidebar-posts .card {
  background: #fff;
  padding-bottom: 0;
}
.kavya-archive-2 .archive-content .sidebar-posts .card:last-of-type {
  padding-bottom: 15px;
}
.kavya-archive-2 .archive-content .sidebar-posts .card .card-img {
  border-radius: 0;
}
.kavya-archive-2 .archive-posts {
  margin-top: 40px;
}
.kavya-archive-2 .recent-posts .sidebar-item {
  margin-bottom: 10px;
}
/* ================================================================================== 
									13. Archive Layout Three
===================================================================================== */
.kavya-archive-3 .card {
  margin: 20px 0;
}
.kavya-archive-3 .card .card-img-top {
  height: 350px;
}
/* ================================================================================== 
									14. Single Layout One
===================================================================================== */
.single-layout {
  padding-bottom: 50px;
}
.single-layout-breadcrumb .page-breadcrumb .breadcrumb {
  justify-content: center;
}
.single-layout-breadcrumb .page-breadcrumb .breadcrumb-item a {
  color: #666;
}
.blog-img-main {
  height: 600px;
  padding: 30px 0;
}
.blog-img-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.blog-title-wrap .author-date {
  padding-right: 20px;
}
.blog-title-wrap .author-date .author {
  padding-right: 20px;
}
.blog-title-wrap .author-date a {
  font-size: 14px;
}
.blog-title-wrap .title-font {
  font-size: 40px;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.blog-desc p {
  font-size: 16px;
  font-weight: 400;
  margin: 15px 0;
  line-height: 1.8;
}
.blog-desc h2 {
  font-size: 25px;
}
.blog-desc h3 {
  font-size: 23px;
}
.blog-desc h4 {
  font-size: 20px;
}
.blog-desc h5 {
  font-size: 18px;
}
.blog-desc h6 {
  font-size: 16px;
}
.blog-desc blockquote {
  background: #f6f7fa;
  padding: 30px;
  padding-top: 60px;
  text-align: center;
  font-size: 20px;
  position: relative;
  font-style: italic;
  margin: 30px 0;
}
.blog-desc blockquote:before {
  content: "\f10e";
  font-size: 35px;
  font-family: "Font awesome 5 free";
  font-weight: 900;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  position: absolute;
  color: #c7cad7;
}
.blog-desc img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  margin: 30px 0;
}
.tags-wrap {
  display: flex;
  align-items: center;
  padding: 15px 0;
  justify-content: space-between;
}
.blog-tags {
  display: flex;
  align-items: center;
  width: 50%;
}
.blog-tags .tags-list li {
  border-radius: 0;
}
.blog-tags p {
  font-weight: 600;
  padding-right: 10px;
}
.share-buttons{
  display:flex;
  align-items:center;
}
.share-buttons p{
  font-weight: 600;
}
.share-buttons .share-list{
  list-style:none;
  padding-left:5px;
}
.share-buttons .share-list li{
  display:inline-block;
  padding-left:3px;
}
.share-buttons .share-list li a img{
  border-radius:5px;
  transition:0.2s ease;
  -webkit-transition:0.2s ease;
  -moz-transition:0.2s ease;
  -o-transition:0.2s ease;
  -ms-transition:0.2s ease;
  height:30px;
}
.share-buttons .share-list li a:hover img{
  margin-top:-5px;
}
.blog-author-info {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.blog-author-info .author-img {
  height: 100px;
  width: 100px;
  margin-right: 27px;
  position: relative;
  margin-left: 27px;
}
.blog-author-info .author-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.25);
}
.blog-author-info .author-img:before {
  content: "";
  height: 50px;
  width: 50px;
  background: #0c2a50;
  border-radius: 50%;
  left: -27px;
  top: -15px;
  position: absolute;
  z-index: -1;
}
.blog-author-info .author-desc {
  width: 60%;
}
.blog-author-info .author-desc h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-author-info .author-desc p {
  color: #666;
  font-size: 14px;
}
.comment-section {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin-top: 15px;
}
.comment-card {
  background: #f6f7fa;
  margin: 20px 0;
  padding: 30px;
  border:none;
}
.comment-card .card-body {
  padding: 0;
}
.comment-card .author-date{
  justify-content:flex-start;
}
.comment-card .author-date .author img {
  height: 50px;
  width: 50px;
  margin-right:10px;
}
.comment-card .author-date .inner-author-date{
  display:flex;
  flex-direction:column;
}
.comment-card .author-date .inner-author-date .author{
  font-style:normal;
  color:#333;
  font-weight:500;
  font-family: "Raleway", sans-serif;
  font-size:15px;
}
.comment-card .author-date span {
  font-size: 14px;
}
.comment-card .comment-card {
  border: none;
  margin: 0;
  margin-left: 20px;
}
.view-all-btn {
  border: 1px solid #a7a7a7;
  background: transparent;
  color: #666;
  padding: 10px 20px;
  font-weight: 500;
  width: 100%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.view-all-btn:hover {
  color: #eac46e;
  border-color: #eac46e;
}
.comment-form {
  margin-top: 30px;
  text-align: left;
}
.comment-form h5 {
  margin-bottom: 15px;
}
.comment-form .form-control {
  border-radius: 0;
}
.comment-form .form-control:focus {
  box-shadow: none;
  border-color: #7d97fd;
}
.comment-form .btn-solid {
  padding: 10px 30px;
}
.related-posts {
  padding: 50px 0;
  background: #ecf1ff;
}

.related-posts .related-title h3 {
  font-family: "poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.related-posts .card-img {
  height: 200px;
}
.related-posts .card .card-img-overlay {
  padding: 15px;
}
.related-posts .title-font a {
  color: #bbbbbb;
  font-size: 18px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.related-posts .title-font a:hover {
  color: #fff;
}
/* ================================================================================== 
									15. Single Layout TWo
===================================================================================== */
.kavya-single-2 .blog-title-wrap {
  justify-content: flex-start;
  width: 65%;
}
.kavya-single-2 .blog-title-wrap .title-font {
  text-align: left;
}
.kavya-single-2 .blog-img-main {
  padding-top: 0;
}
.author-card .title-font {
  font-size: 25px;
  margin-bottom: 10px;
}
.author-card .circular-icons.social-links ul li {
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: 1px solid #666;
  font-size: 15px;
}
.author-card .circular-icons.social-links ul li:hover {
  background: #0c2a50;
  border-color: #0c2a50;
}
.author-card .circular-icons.social-links ul li:hover a {
  color: #fff;
}
.kavya-single-2 .sidebar-posts .card {
  margin-bottom: 15px;
}
.kavya-single-2 .sidebar-posts .card-img {
  height: 70px;
}
.kavya-single-2 .sidebar-posts .card-body {
  padding: 0;
  padding-left: 15px;
}
/* ================================================================================== 
										16. Search Results
===================================================================================== */
.search-results {
  padding: 40px 0;
}
.search-results .search-result-title {
  margin-bottom: 30px;
}
.search-results .card {
  margin-bottom: 30px;
}
.search-results .card-body {
  padding: 0;
  padding-left: 15px;
}
.search-results .card-img {
  height: 150px;
}
.search-results .category-tag-list {
  margin-bottom: 0;
}
.how-to-cite:hover {
  cursor: copy;
}
/* ================================================================================== 
									17. About Page
===================================================================================== */
.about-section {
  padding: 60px 0;
}
.about-inner {
  position: relative;
  /*height: 400px;*/
  align-items: center;
}
.about-section .about-text {
  background: #ecf1ff;
  padding: 100px;
  padding-bottom: 50px;
  margin: 50px 0;
}

.about-text .about-title,
.search-result-title.author {
  font-family: "poppins", serif;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}
.about-text .about-title:before,
.search-result-title.author:before {
  content: "";
  height: 3px;
  width: 100px;
  background: #0c2a50;
  position: absolute;
  left: 100%;
  margin-left: 15px;
  bottom: 5px;
}
.about-inner-2 .about-text .about-title:before {
  left: auto;
  right: 100%;
  z-index: 11;
  margin-right: 15px;
}
.about-text p {
  color: #666;
}
.about-section .about-img {
  height: 520px;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
}

.about-section .about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-inner-2 .about-img {
  margin: 0 100px;
}
.about-inner-2 .about-text {
  width: 100%;
  padding: 100px;
  padding-left: 0;
  margin: 50px 0;
  background: transparent;
}
.author-section {
  margin-bottom: 30px;
}
.author-section h2 {
  text-align: center;
  font-family: "poppins", serif;
  font-weight: 600;
  margin-bottom: 30px;
}
.author-card {
  text-align: center;
  align-items: center;
  border: none;
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.author-card .card-img {
  height: 100px;
  width: 100px;
  margin-bottom: 10px;
}
.author-card .card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.author-card h5{
  margin-bottom:4px;
}
.author-card h5 a {
  font-weight: 500;
  color: #333;
}
.author-card h5 a:hover {
  color: #eac46e;
}
.author-card p {
  padding:20px 0;
}
.author-card small {
  color: #0c2a50;
  font-style: italic;
}
/* ================================================================================== 
										18. Contact page
===================================================================================== */
.contact-section {
  padding: 50px 0;
}
.contact-section h3 {
  font-weight: 600;
  color: #444;
  margin-bottom: 7px;
}
.contact-section p {
  color: #666;
  margin-bottom: 30px;
}

.contact-section .contact-info {
  background: #ecf1ff;
  padding: 60px 80px;
}
.contact-section .contact-info .contact-list {
  list-style: none;
}
.contact-list li {
  margin: 15px 0;
  position: relative;
  padding-left: 40px;
  color: #666;
}
.contact-list li i {
  position: absolute;
  left: 0;
  color: #eac46e;
  font-size: 18px;
}
.contact-list li a {
  color: #666;
}
.contact-list li a:hover {
  color: #eac46e;
}
.contact-info .social-links {
  margin-top: 30px;
}
.contact-info .social-links ul li:hover {
  background: #0c2a50;
  border-color: #0c2a50;
}
.contact-info .social-links ul li:hover a {
  color: #fff;
}
.contact-section .contact-form {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 50px;
}

.contact-form .form-control {
  background: #f6f7fa;
  border: none;
  font-size: 13px;
  padding: 10px 15px;
}
.contact-form input {
  height: 40px;
  margin-bottom: 20px;
}
.contact-form .form-control:focus {
  box-shadow: none;
}
.contact-form .btn-solid {
  margin-top: 30px;
}
/* ================================================================================== 
										19. 404 page with image
===================================================================================== */
.error-content {
  background: url("../images/404-bg.svg") no-repeat;
  height: calc(100vh - 50px);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}
.error-text {
  position: absolute;
  bottom:100px;
  left: 50%;
  transform: translateX(-50%);
  width:100%;
}
.error-text h2 {
  text-transform: uppercase;
  font-family: "poppins", serif;
  font-weight: 600;
  margin-bottom: 20px;
  font-size:40px;
}
.error-text .btn-solid{
  padding:12px 30px;
  font-size:15px;
}
@media screen and (min-width: 1400px) {
  .error-content {
    height: calc(100vh - 200px);
  }
  .error-text {
    bottom: 150px;
  }
}

/* ================================================================================== 
										20. 404 page with text
===================================================================================== */
.error-section .error-text-wrapper {
  text-align: center;
  padding: 100px 0;
}
.error-text-wrapper .title-404 {
  font-weight: 700;
  font-size: 250px;
  font-family: "Poppins", serif;
  color:#eac46e;
  margin-bottom:-15px;
}
.error-text-wrapper .sub-404 {
  margin-bottom: 70px;
  font-weight: 600;
  font-size:50px;
}
.error-text-wrapper .desc-404 {
  font-size:18px;
  margin-bottom:30px;
  color: #666;
}
.error-text-wrapper .btn-solid{
  font-size:15px;
  padding:12px 30px;
}
@media screen and (min-width: 1400px) {
  .error-section .error-text-wrapper {
    padding: 150px 0;
  }
}


/* ================================================================================== 
										21. Archive Image Overlay
===================================================================================== */
.kavya-archive-4 .card{
  height:400px;
  margin-bottom:30px;
}
.kavya-archive-4 .card > a,
.kavya-archive-4 .card > a img{
  height:100%;
}
.kavya-archive-4 .author-date a,
.kavya-archive-4 .card-title a{
  color:#fff;
}
/* ================================================================================== 
										22. Single Layout Three
===================================================================================== */
.kavya-single-3 .sidebar{
  margin-top:30px;
}

/* ================================================================================== 
										23. Single Layout Four
===================================================================================== */
.kavya-single-4 .blog-img-title-wrap{
  position:relative;
  margin:30px 0;
  display:flex;
  background:#ecf1ff;
  flex-wrap:wrap;
}
.kavya-single-4 .blog-img-main{
  padding:0;
  width:60%;
}
.kavya-single-4 .blog-title-wrap{
  width:40%;
  padding:30px;
  align-items: center;
  flex-direction: column;
}
.kavya-single-4 .sidebar{
  margin-top:15px;
}
.kavya-single-4 .title-font{
  text-align:left;
}
.kavya-single-4 .author-date{
  width:100%;
  justify-content:flex-start;
}
.kavya-single-4 .category-tag-list{
  width:100%;
}
.blog-desc p[style="text-align:center"]  a{
  background: #eac46e;
  color: #fff;
  font-size: 12px;
  padding: 7px 20px;
  text-transform: uppercase;
}

.blog-desc p[style="text-align:center"]  a:hover {
  color: #fff;
  background-color: #0c2a50;
}
.blog-desc p a input {
  background: transparent;
  border: none;
  outline: none;
}

.issue-section {
  margin-bottom: 60px;
}

.issue-info {
  height: 100%;
}

.issue-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0 30px;
}

.issue-meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 16px;
  line-height: 1.5;
}

.issue-meta-item strong {
  font-weight: 700;
}

.issue-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.issue-preview {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #f3f3f3;
}

.issue-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.issue-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  pointer-events: none;
  background: linear-gradient(
          to top,
          rgba(21, 29, 58, 0.85) 0%,
          rgba(21, 29, 58, 0.15) 45%,
          rgba(21, 29, 58, 0) 75%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.issue-preview:hover .issue-preview-overlay {
  opacity: 1;
}

.issue-preview-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition:
          color 0.3s ease,
          background-color 0.3s ease,
          transform 0.3s ease;

}

.issue-preview-overlay:hover {
  color: #fff;
}

.issue-preview-overlay:hover .issue-preview-arrow {
  color: #303f78;
  background: #fff;
  transform: translateX(4px);
}

.issue-no-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 30px;
  text-align: center;
}

.issue-articles {
  padding-top: 0;
}

.issue-article-card {
  margin-bottom: 25px;
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
}

.issue-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25, 31, 52, 0.08);
}

.issue-article-title {
  margin-bottom: 18px;
}

.issue-article-authors {
  margin-bottom: 20px;
  line-height: 1.7;
}

.issue-article-authors p {
  margin: 8px 0 0;
}

.issue-article-citation {
  margin-bottom: 22px;
  line-height: 1.7;
}

.issue-article-link {
  display: inline-flex;
}

@media screen and (max-width: 767px) {
  .issue-preview {
    min-height: 400px;
  }

  .issue-pdf-frame {
    min-height: 400px;
  }

  .issue-preview-overlay {
    padding: 20px;
    opacity: 1;
  }

  .issue-section {
    margin-bottom: 40px;
  }

  .issue-article-title {
    font-size: 22px;
  }
}

.article-section {
  margin-bottom: 60px;
}

.article-info {
  height: 100%;
}

.article-authors {
  margin-top: 20px;
  line-height: 1.7;
}

.article-authors a {
  font-weight: 500;
}

.article-authors p {
  margin: 8px 0 0;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0 30px;
}

.article-meta-item {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 16px;
  line-height: 1.5;
}

.article-meta-item strong {
  font-weight: 700;
}

.article-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-preview {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #f3f3f3;
}

.article-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.article-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background: linear-gradient(
          to top,
          rgba(21, 29, 58, 0.78) 0%,
          rgba(21, 29, 58, 0) 45%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.article-preview:hover .article-preview-overlay {
  opacity: 1;
}

.article-preview-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
}

.article-preview-download:hover {
  color: #fff;
}

.article-preview-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition:
          color 0.3s ease,
          background-color 0.3s ease,
          transform 0.3s ease;
}

.article-preview-download:hover .article-preview-arrow {
  color: #303f78;
  background: #fff;
  transform: translateY(-2px);
}

.article-no-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 30px;
  text-align: center;
}

.article-content-section {
  padding-top: 0;
}

.article-content-card {
  margin-bottom: 25px;
}

.article-content-title {
  margin-bottom: 20px;
  font-size: 26px;
}

.article-description,
.article-keywords,
.article-citation,
.article-references {
  font-size: 16px;
  line-height: 1.8;
}

.article-description > *:last-child,
.article-keywords > *:last-child,
.article-citation > *:last-child,
.article-references > *:last-child {
  margin-bottom: 0;
}

.article-references {
  overflow-wrap: anywhere;
}

.article-references ul,
.article-references ol {
  margin-left: 0;
  padding-left: 22px;
  list-style-position: outside;
}

.article-references li {
  margin-bottom: 12px;
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .article-section {
    margin-bottom: 40px;
  }

  .article-preview,
  .article-pdf-frame {
    min-height: 400px;
  }

  .article-preview-overlay {
    padding: 20px;
    opacity: 1;
  }

  .article-content-title {
    font-size: 22px;
  }

  .article-meta-item {
    display: block;
  }

  .article-meta-item strong {
    margin-right: 4px;
  }
}


.references-list ol {
  list-style-type: none; /* Убираем стандартные маркеры */
  padding: 0;
}

.references-list ol li {
  counter-increment: item; /* Увеличиваем счетчик */
  position: relative;
  padding-left: 37px; /* Отступ для текста */
}

.references-list ol li::before {
  content: "[" counter(item) "]"; /* Вставляем счетчик в формате [X] */
  position: absolute;
  left: 0;
  top: 0;
}
.iframe-responsive {
  max-width: 100%;
}
.iti__country-list {
  z-index:4;
}
.article-search-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.article-search-header {
  margin-bottom: 45px;
  padding: 36px 40px;
  background: #ecf1ff;
}

.article-search-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  color: #252525;
}

.article-search-query {
  font-weight: 400;
}

.article-search-form {
  width: 100%;
  max-width: 760px;
}

.article-search-form form {
  width: 100%;
}

.article-search-form .form-search-container {
  display: flex !important;
  align-items: stretch;
  width: 100%;
  max-width: 680px;
}

.article-search-form .form-group {
  flex: 1 1 auto;
  margin: 0;
}

.article-search-form .form-control {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #d9ddea;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: #fff;
  color: #252525;
  font-size: 16px;
  box-shadow: none;
  transition:
          border-color 0.25s ease,
          box-shadow 0.25s ease;
}

.article-search-form .form-control::placeholder {
  color: #8b8f9d;
}

.article-search-form .form-control:focus {
  border-color: #303f78;
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 63, 120, 0.1);
}

.article-search-form .btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 1px solid #303f78;
  border-radius: 0 4px 4px 0;
  background: #303f78;
  color: #fff;
  box-shadow: none;
  white-space: nowrap;
  transition:
          background-color 0.25s ease,
          border-color 0.25s ease,
          transform 0.25s ease;
}

.article-search-form .btn-search:hover {
  background: #253463;
  border-color: #253463;
  color: #fff;
}

.article-search-form .btn-search:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 63, 120, 0.15);
}

.article-search-form .btn-search:active {
  transform: translateY(1px);
}

.article-search-form .btn-search .icon {
  font-size: 16px;
  line-height: 1;
}

.article-search-form .help-block {
  margin: 5px 0 0;
  font-size: 13px;
  color: #d9534f;
}

.article-search-form .has-error .form-control {
  border-color: #d9534f;
}

.article-search-form .has-error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}

.article-search-results-head {
  margin-bottom: 25px;
}

.article-search-results-head .search-result-title {
  margin-bottom: 0;
}

.issue-article-keywords {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.issue-article-keywords strong {
  font-weight: 700;
}

.article-search-empty {
  padding: 60px 30px;
  background: #f8f8fa;
  text-align: center;
}

.article-search-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ecf1ff;
  color: #303f78;
  font-size: 26px;
}

.article-search-empty-title {
  max-width: 600px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .article-search-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .article-search-header {
    margin-bottom: 30px;
    padding: 25px 20px;
  }

  .article-search-title {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .article-search-form {
    max-width: 100%;
  }

  .article-search-form .form-search-container {
    max-width: 100%;
  }

  .article-search-form .form-control {
    height: 50px;
    font-size: 15px;
  }

  .article-search-form .btn-search {
    flex-basis: 52px;
    width: 52px;
    height: 50px;
    min-height: 50px;
  }

  .article-search-empty {
    padding: 40px 20px;
  }

  .article-search-empty-title {
    font-size: 20px;
  }
}
textarea {
  min-height: 150px;
}

.issue-archive-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.issue-archive-title {
  margin-bottom: 40px;
}

.issue-archive-year {
  margin-bottom: 55px;
}

.issue-archive-year:last-child {
  margin-bottom: 0;
}

.issue-archive-year-title {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.issue-archive-year-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 3px;
  background: #303f78;
}

.issue-archive-card {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
  border: none;
  border-radius: 0;
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
}

.issue-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(25, 31, 52, 0.1);
}

.issue-archive-cover {
  position: relative;
  display: block;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #f8f8fa;
}

.issue-archive-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(48, 63, 120, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.issue-archive-cover img {
  display: block;
  width: 65%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.issue-archive-card:hover .issue-archive-cover::after {
  opacity: 1;
}

.issue-archive-card:hover .issue-archive-cover img {
  transform: scale(1.035);
}

.issue-archive-card-body {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.issue-archive-card-title {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.4;
}

.issue-archive-card-title a {
  color: inherit;
}

.issue-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: auto;
}

.issue-archive-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.issue-archive-meta-item i {
  color: #303f78;
}

@media screen and (max-width: 991px) {
  .issue-archive-cover {
    height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .issue-archive-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .issue-archive-title {
    margin-bottom: 30px;
  }

  .issue-archive-year {
    margin-bottom: 40px;
  }

  .issue-archive-year-title {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .issue-archive-cover {
    height: 400px;
  }

  .issue-archive-card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .issue-archive-cover {
    height: 340px;
  }

  .issue-archive-card-body {
    padding: 20px;
  }

  .issue-archive-meta {
    flex-direction: column;
    gap: 8px;
  }
}
.submission-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.submission-section .row {
  box-shadow: 0 5px 25px rgba(25, 31, 52, 0.1);
}

.submission-form-block {
  height: 100%;
  padding: 45px 50px;
  background: #fff;
  box-shadow: none;
}

.submission-title {
  margin: 0 0 30px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #252525;
}

.submission-fields {
  margin-right: -10px;
  margin-left: -10px;
  padding: 35px 0;
}

.submission-fields > [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.submission-fields .form-group {
  margin-bottom: 20px;
}

.submission-fields .form-control {
  display: block;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dce0e9;
  border-radius: 0;
  background: #fff;
  color: #292929;
  font-size: 15px;
  box-shadow: none;
  transition:
          border-color 0.25s ease,
          box-shadow 0.25s ease;
}

.submission-fields .form-control::placeholder {
  color: #9296a3;
}

.submission-fields .form-control:focus {
  border-color: #303f78;
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 63, 120, 0.08);
}

.submission-fields select.form-control {
  cursor: pointer;
}

.submission-fields .help-block {
  margin: 6px 0 0;
  color: #d9534f;
  font-size: 13px;
}

.submission-fields .has-error .form-control {
  border-color: #d9534f;
}

/* Телефон */

.submission-fields .iti,
.submission-fields .intl-tel-input {
  width: 100%;
}

.submission-fields .iti input {
  width: 100%;
  height: 52px;
  padding-right: 16px;
  border: 1px solid #dce0e9;
  border-radius: 0;
  box-shadow: none;
}

.submission-fields .iti input:focus {
  border-color: #303f78;
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 63, 120, 0.08);
}

/* Select2 */

.submission-fields .select2-container {
  width: 100% !important;
}

.submission-fields .select2-container .select2-selection--single {
  height: 52px;
  border: 1px solid #dce0e9;
  border-radius: 0;
  background: #fff;
}

.submission-fields
.select2-container
.select2-selection--single
.select2-selection__rendered {
  height: 50px;
  padding: 0 42px 0 16px;
  color: #292929;
  line-height: 50px;
}

.submission-fields
.select2-container
.select2-selection--single
.select2-selection__placeholder {
  color: #9296a3;
}

.submission-fields
.select2-container
.select2-selection--single
.select2-selection__arrow {
  top: 0;
  right: 8px;
  width: 30px;
  height: 50px;
}

.submission-fields
.select2-container--focus
.select2-selection--single,
.submission-fields
.select2-container--open
.select2-selection--single {
  border-color: #303f78;
}

/* Файл */

.submission-fields .file-input {
  width: 100%;
}

.submission-fields .file-input .input-group {
  display: flex;
  width: 100%;
}

.submission-fields .file-caption {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  border: 1px solid #dce0e9;
  border-radius: 0;
  box-shadow: none;
}

.submission-fields .file-caption .form-control {
  height: 50px;
  border: 0;
  box-shadow: none;
}

.submission-fields .file-input .input-group-btn,
.submission-fields .file-input .input-group-append {
  display: flex;
  flex: 0 0 auto;
  position: absolute;
  right: 0;
  width: auto;
  justify-content: end;
}

.submission-fields .file-input .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 0;
  font-size: 12px;
  white-space: nowrap;
}

.submission-fields .file-input .btn-file {
  color: #fff;
  background: #303f78;
  border-color: #303f78;
}

.submission-fields .file-input .btn-file:hover {
  color: #fff;
  background: #253463;
  border-color: #253463;
}

/* Надіслати */

.submission-submit {
  margin-top: 5px;
}

.submission-submit .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 11px 28px;
}

/* Правий блок */

.submission-sidebar {
  height: 100%;
  min-height: 100%;
  padding: 45px 38px;
  background: #ecf1ff;
}

.submission-sidebar-title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 16px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #252525;
}

.submission-sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #303f78;
}

.submission-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.submission-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(48, 63, 120, 0.12);
  font-size: 15px;
  line-height: 1.5;
}

.submission-sidebar-list li:first-child {
  padding-top: 0;
}

.submission-sidebar-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.submission-sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #303f78;
  background: #fff;
  font-size: 15px;
}

/* Якщо $static згодом буде заповнено */

.submission-static-content {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #e1e3ea;
  font-size: 16px;
  line-height: 1.8;
}

.submission-static-content > *:first-child {
  margin-top: 0;
}

.submission-static-content > *:last-child {
  margin-bottom: 0;
}

.submission-static-content ul,
.submission-static-content ol {
  margin-left: 0;
  padding-left: 22px;
  list-style-position: outside;
}

/* Адаптивність */

@media screen and (max-width: 991px) {
  .submission-section .row {
    box-shadow: none;
  }

  .submission-form-block {
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(25, 31, 52, 0.1);
  }

  .submission-sidebar {
    margin-top: 30px;
    min-height: auto;
    padding: 35px 30px;
  }
}

@media screen and (max-width: 767px) {
  .submission-section {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .submission-form-block,
  .submission-sidebar {
    padding: 25px 20px;
  }

  .submission-title,
  .submission-sidebar-title {
    font-size: 23px;
  }

  .submission-fields .file-input .input-group {
    flex-wrap: wrap;
  }

  .submission-fields .file-caption {
    flex: 0 0 100%;
    width: 100%;
  }
  .submission-fields .file-input .btn.fileinput-remove {
    display: none;
  }

  .submission-fields .file-input .input-group-btn,
  .submission-fields .file-input .input-group-append {
    width: 100%;
  }

  .submission-fields .file-input .btn {
    /*flex: 1 1 auto;*/
  }
  .submission-submit .btn {
    width: 100%;
  }
}
.bi-folder2-open,
.bi-slash-circle,
.bi-trash {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.bi-slash-circle:before {
  content: "\e090";
}
.bi-folder2-open:before {
  content: "\e118";
}
.bi-trash.glyphicon-trash:before {
  content: "\e020";
}
.contact-form .submission-submit .btn-solid {
  margin-top: 0;
}
.indexing-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.indexing-title {
  margin-bottom: 40px;
}

.indexing-card {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: #fff;
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
}

.indexing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(25, 31, 52, 0.1);
}

.indexing-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.indexing-card-link:hover {
  color: inherit;
  text-decoration: none;
}

.indexing-card-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 35px;
  overflow: hidden;
  background: #ecf1ff;
}

.indexing-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(48, 63, 120, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.indexing-card-image img {
  display: block;
  max-width: 100%;
  max-height: 145px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.indexing-card:hover .indexing-card-image::after {
  opacity: 1;
}

.indexing-card:hover .indexing-card-image img {
  transform: scale(1.05);
}

.indexing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 25px;
}

.indexing-card-title {
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 1.4;
}

.indexing-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  color: #303f78;
  font-size: 15px;
  font-weight: 600;
}

.indexing-card-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(48, 63, 120, 0.25);
  border-radius: 50%;
  transition:
          color 0.3s ease,
          background-color 0.3s ease,
          border-color 0.3s ease,
          transform 0.3s ease;
}

.indexing-card:hover .indexing-card-action-icon {
  color: #fff;
  background: #303f78;
  border-color: #303f78;
  transform: translateX(3px);
}

@media screen and (max-width: 767px) {
  .indexing-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .indexing-title {
    margin-bottom: 30px;
  }

  .indexing-card-image {
    height: 190px;
    padding: 30px;
  }

  .indexing-card-image img {
    max-height: 125px;
  }

  .indexing-card-title {
    font-size: 20px;
  }
}

.editorial-board-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.editorial-board-section > .container > .about-text {
  margin-bottom: 45px;
}

.editorial-board-group {
  margin-bottom: 55px;
}

.editorial-board-group:last-child {
  margin-bottom: 0;
}

.editorial-board-group-title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 13px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.35;
  color: #292929;
}

.editorial-board-group-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: #303f78;
}

.editorial-member-card {
  height: calc(100% - 24px);
  margin-bottom: 24px;
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 18px rgba(25, 31, 52, 0.07);
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
}

.editorial-member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25, 31, 52, 0.11);
}

.editorial-member-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 30px;
}

.editorial-member-name {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.editorial-member-name a {
  color: inherit;
  text-decoration: none;
}

.editorial-member-name a:hover {
  color: #303f78;
}

.editorial-member-description {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.editorial-member-description > *:first-child {
  margin-top: 0;
}

.editorial-member-description > *:last-child {
  margin-bottom: 0;
}

.editorial-member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eceef3;
}

.editorial-member-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #dfe3ed;
  color: #303f78;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
          color 0.25s ease,
          background-color 0.25s ease,
          border-color 0.25s ease;
}

.editorial-member-link:hover {
  color: #fff;
  background: #303f78;
  border-color: #303f78;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .editorial-board-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .editorial-board-section > .container > .about-text {
    margin-bottom: 30px;
  }

  .editorial-board-group {
    margin-bottom: 40px;
  }

  .editorial-board-group-title {
    margin-bottom: 22px;
    font-size: 23px;
  }

  .editorial-member-body {
    padding: 23px 20px;
  }

  .editorial-member-name {
    font-size: 20px;
  }
}

.editor-section {
  padding-bottom: 60px;
}

.editor-info {
  height: 100%;
}

.editor-meta {
  margin-top: 25px;
}

.editor-description {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.75;
}

.editor-description > *:first-child {
  margin-top: 0;
}

.editor-description > *:last-child {
  margin-bottom: 0;
}

.editor-meta .issue-meta-item a {
  color: #303f78;
  text-decoration: none;
}

.editor-meta .issue-meta-item a:hover {
  text-decoration: underline;
}

.editor-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px;
  background: #ecf1ff;
}

.editor-photo img {
  display: block;
  width: 100%;
  max-width: 360px;
  max-height: 440px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(25, 31, 52, 0.14);
}

.editor-biography-section {
  padding-top: 0;
  padding-bottom: 70px;
}

.editor-biography-card {
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 5px 25px rgba(25, 31, 52, 0.08);
}

.editor-biography-card .card-body {
  padding: 40px 45px;
}

.editor-biography-title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 14px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.35;
}

.editor-biography-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: #303f78;
}

.editor-biography-content {
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.editor-biography-content > *:first-child {
  margin-top: 0;
}

.editor-biography-content > *:last-child {
  margin-bottom: 0;
}

.editor-biography-content p {
  margin-bottom: 18px;
}

.editor-biography-content ul,
.editor-biography-content ol {
  margin-left: 0;
  padding-left: 22px;
  list-style-position: outside;
}

.editor-biography-content li {
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .editor-section {
    padding-bottom: 35px;
  }

  .editor-photo {
    min-height: auto;
    padding: 30px 20px;
  }

  .editor-photo img {
    max-width: 280px;
    max-height: 360px;
  }

  .editor-biography-section {
    padding-bottom: 45px;
  }

  .editor-biography-card .card-body {
    padding: 28px 20px;
  }

  .editor-biography-title {
    font-size: 23px;
  }

  .editor-biography-content {
    font-size: 15px;
  }
}

.login-section {
  padding-top: 60px;
  padding-bottom: 70px;
}

.login-section .about-inner {
  box-shadow: 0 5px 25px rgba(25, 31, 52, 0.1);
}

.login-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: 55px 60px;
  background: #fff;
}

.login-info .about-title {
  margin-bottom: 35px;
}

.login-form {
  width: 100%;
  max-width: 560px;
}

.login-fields .form-group {
  margin-right: 0;
  margin-bottom: 22px;
  margin-left: 0;
}

.login-fields .col-lg-12 {
  padding-right: 0;
  padding-left: 0;
}

.login-fields .form-control {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #dce0e9;
  border-radius: 0;
  background: #fff;
  color: #252525;
  font-size: 15px;
  box-shadow: none;
  transition:
          border-color 0.25s ease,
          box-shadow 0.25s ease;
}

.login-fields .form-control::placeholder {
  color: #9296a3;
}

.login-fields .form-control:focus {
  border-color: #303f78;
  outline: none;
  box-shadow: 0 0 0 3px rgba(48, 63, 120, 0.08);
}

.login-fields .help-block {
  margin: 6px 0 0;
  color: #d9534f;
  font-size: 13px;
}

.login-fields .has-error .form-control {
  border-color: #d9534f;
}

.login-submit {
  margin-top: 10px;
}

.login-submit .btn {
  min-width: 155px;
  min-height: 50px;
  padding: 12px 30px;
}

.login-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  padding: 45px 35px;
  background: #ecf1ff;
  text-align: center;
}

.login-side-content {
  width: 100%;
}

.login-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: #fff;
  color: #303f78;
  font-size: 34px;
  box-shadow: 0 8px 25px rgba(25, 31, 52, 0.1);
}

.login-side-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.35;
  color: #252525;
}

@media screen and (max-width: 767px) {
  .login-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .login-section .about-inner {
    box-shadow: none;
  }

  .login-info {
    min-height: auto;
    padding: 35px 25px;
    box-shadow: 0 5px 25px rgba(25, 31, 52, 0.1);
  }

  .login-info .about-title {
    margin-bottom: 28px;
  }

  .login-side {
    min-height: 260px;
    padding: 35px 20px;
  }

  .login-side-icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .login-side-title {
    font-size: 23px;
  }

  .login-submit .btn {
    width: 100%;
  }
}

.footer-section {
  padding-top: 65px;
  background: #252d4c;
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  padding-bottom: 45px;
}

.footer-column {
  height: 100%;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo a {
  color: #fff;
  text-decoration: none;
}

.footer-logo a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-logo .brand-name {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.footer-title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 13px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: #ecf1ff;
}

.footer-links,
.footer-contact-list,
.footer-bottom-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition:
          color 0.25s ease,
          padding-left 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background-color 0.25s ease;
}

.footer-links a:hover {
  padding-left: 18px;
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover::before {
  background: #fff;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list i {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 4px;
  color: #fff;
  text-align: center;
}

.footer-contact-list span {
  display: block;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 26px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .footer-section {
    padding-top: 50px;
  }

  .footer-main {
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .footer-section {
    padding-top: 40px;
  }

  .footer-column {
    margin-bottom: 35px;
  }

  .footer-logo .brand-name {
    font-size: 21px;
  }

  .footer-title {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}
.main-content {
  padding: 100px 0;
}

.card.active-language {
  border-color: #0c2a50;
}

.author-description {
  padding: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}