/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  /*font-family: "Thasadith", sans-serif;*/
  font-family: "Playfair Display", serif;
  color: #373737;
}

a {
  color: #5e5e4a;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Thasadith", sans-serif;*/
  font-family: "Playfair Display", serif;
}

.btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #ffffff;
  background: #82826b;
}
.btn-read-more:hover {
  color: #ffffff;
  background: #a1a184;
}
.btn-read-more span {
  /*font-family: "Thasadith", sans-serif;*/
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
}
.btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.2s;
}
.btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #72827f;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 400;
  color: #444;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

.separator {
  width: 60px;
  border-top: 2px solid #c3b3dc;
  transition: all 0.5s ease 0s;
  margin-top: 28px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #b2a1cd;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c3b3dc;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  /*font-family: "Thasadith", sans-serif;*/
  font-family: "Playfair Display", serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 10px 0 10px 28px;
  cursor: pointer;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*font-family: "Urbanist", sans-serif;*/
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: #373737;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before,
.navbar .dropdown > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #c3b3dc;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar .dropdown > ul > li > a:before {
  bottom: 5px;
  left: 20px;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before,
.navbar .dropdown a:hover:before,
.navbar .dropdown li:hover > a:before,
.navbar .dropdown .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #222222;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  padding: 0;
}

.navbar .dropdown ul a {
  color: #373737;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #222222;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar > ul > li > .getstarted:before {
  height: 0px;
  visibility: hidden;
}
.navbar .getstarted:hover,
.navbar li:hover > .getstarted {
  color: white;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  border-radius: 0px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 28px;
  padding-right: 15px;
  color: #373737;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #222222;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 0px;
  margin-right: 28px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
}

.navbar-mobile a i,
.navbar-mobile a:focus i {
  font-size: 26px;
  line-height: 0;
  margin-right: 6px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #222222;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .getstarted:hover,
.navbar-mobile li:hover > .getstarted {
  color: white;
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: white;
  margin-top: 100px;
}

.hero h1 {
  margin: 0;
  color: #393d3c;
  font-size: 100px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

.hero h2 {
  color: #373737;
  margin: 15px 0 0 0;
  font-size: 24px;
  margin-left: 10px;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
  font-weight: 100;
}

.hero p {
  color: #373737;
  margin: 15px 0 0 0;
  font-size: 16px;
  text-align: justify;
}

.hero p .rotate::before {
  transform: rotate(180deg);
}

.hero p i {
  color: #c3b3dc;
}

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

@media (max-width: 991px) {
  .hero {
    height: auto;
    margin-top: 24px;
  }

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

  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  text-align: center;
  font-size: 18px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: #d7d7cb;
  padding: 80px;
}

.therapy {
  background-color: #e4dacf;
  margin-top: 40px;
  margin-bottom: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 400;
  color: #373737;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  color: #373737;
  font-weight: 100;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
}

.about p {
  margin: 15px 0 15px 0;
  line-height: 24px;
  color: #373737;
  text-align: justify;
}

.therapy .btn-read-more {
  color: #ffffff;
  background: #9f9387;
}

.therapy .btn-read-more:hover {
  color: #ffffff;
  background: #b8ada2;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: #f8f6f6;
}

.contact a {
  color: #373737;
  font-size: 18px;
}

.contact .text-center p {
  font-size: 18px;
}

.contact a:hover {
  color: #c3b3dc;
}

.contact .btn-read-more {
  color: #444;
  background: transparent;
  border: 1px solid #9f9387;
}

.contact .btn-read-more:hover {
  background: #9f9387;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #9f9387;
  color: #fff;
  padding: 24px 0 24px 0;
  font-size: 18px;
  text-align: center;
}

/*--------------------------------------------------------------
# Apie page
--------------------------------------------------------------*/
.apie {
  width: 100%;
  background: white;
  margin-top: 80px;
}

.apie h1 {
  /*margin: 24px 0 0 0;*/
  font-size: 72px;
  font-weight: 100;
  color: #393d3c;
  font-family: "Playfair Display", serif;
  /*font-weight: 400;*/
  font-style: normal;
}

.apie h2 {
  color: #373737;
  margin: 15px 0 0 0;
  font-size: 24px;
  margin-left: 10px;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
  font-weight: 100;
}

.apie p {
  color: #373737;
  margin: 15px 0 0 0;
  font-size: 21px;
  text-align: justify;
}

.apie .apie-img {
  display: none;
  margin-top: 24px;
}

.apie-mane {
  background-color: white;
  z-index: 9;
}

@media (max-width: 991px) {
  .apie .apie-img {
    display: unset;
  }

  .apie .apie-img img {
    width: 100%;
    /*max-height: 150px;*/
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .apie {
    text-align: center;
    margin-top: 30px;
  }

  .apie h1 {
    font-size: 32px;
  }

  .apie h2 {
    font-size: 24px;
  }
}

.patirtis {
  padding: 0;
}

.patirtis .section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 400;
  color: #444;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
}

.patirtis p {
  color: #373737;
  margin: 15px 0 0 0;
  font-size: 18px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Apie konsultacijas page
--------------------------------------------------------------*/
.apie .background-img-konsultacija {
  position: absolute;
}

.apie .background-img-konsultacija img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: none;
}

.apie .background-img img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
}

.image-right {
  object-position: right top;
}

.image-left {
  object-position: left top;
}

@media (max-width: 991px) {
  .apie .background-img {
    display: none;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog ul {
  list-style: none;
}

.blog .section-header {
  padding-bottom: 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img .img-fluid {
  width: 100%;
}

.blog .entry .entry-img-heading .img-fluid {
  width: 100%;
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-img-heading {
  max-height: 150px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: 300;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #222;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #7d65a4;
}

.blog .entry .entry-content p {
  line-height: 24px;
  font-size: 18px;
  text-align: justify;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #b2a1cd;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #c3b3dc;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #373737;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #c3b3dc;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #4154f1;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .entry-footer .social-links a {
  margin-right: 15px;
}

.blog .entry-footer .social-links a i {
  color: rgba(1, 41, 112, 0.5);
  font-size: 24px;
}

.blog .blog-pagination {
  color: #024ed5;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #4154f1;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 400;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #222;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .recent-posts a .post-item {
  margin-bottom: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  /*font-family: "Urbanist";*/
  font-family: "Playfair Display", serif;
  margin-left: 95px;
  font-weight: 400;
}

.blog .sidebar .recent-posts a {
  color: #222;
  transition: 0.3s;
}

.blog .sidebar .sidebar-title-link h3:hover {
  color: #7d65a4;
}

.blog .sidebar .recent-posts a:hover {
  color: #7d65a4;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
