/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */

:root {
  accent-color: var(--accent);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #696c6d;
  font-size: 16px;
  min-height: 100svh;
}

p,
.paragraph {
  font-weight: 400;
  color: #696c6d;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Open Sans", sans-serif;
}

.about-container {
  p {
    font-size: 1rem;
  }
}

.navbar-brand {
  color: var(--heading, #1c1d1f);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading, #1c1d1f);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 45px;
}

h2,
.h2 {
  font-size: 36px;
}

h3,
.h3 {
  font-size: 28px;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  padding: 8px 25px;
  border-radius: 50px;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--button, #ce8460);
  color: var(--buttonForeground, #fff);
  border-color: var(--button, #ce8460);
}
.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.focus,
.btn-primary.active {
  background: var(--button, #c56f44) !important;
  border-color: var(--button, #c56f44) !important;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: var(--accent, #daa287);
  color: #fff;
}

::selection {
  background: var(--accent, #daa287);
  color: #fff;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}
a:focus,
button:focus,
select:focus {
  outline: 0;
}

a {
  color: var(--link, #007bff);
}

a:hover {
  color: var(--link-hover, var(--link, #ce8460));
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section:nth-of-type(1) {
  padding-top: 100px;
}

.section:nth-last-of-type(1) {
  padding-bottom: 100px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-sm:nth-of-type(1) {
  padding-top: 80px;
}

.section-sm::nth-last-of-type(1) {
  padding-bottom: 80px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* overlay */
.overlay {
  position: relative;
}
.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.rounded-lg,
.post-slider {
  border-radius: 10px !important;
}

.border-default {
  border-color: #ddd !important;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  font-size: 80%;
}
.form-control::placeholder {
  font-size: 80%;
}

.nav-item {
  margin: 0;
}
.nav-item .nav-link {
  text-transform: capitalize;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.navbar-white .navbar-nav .nav-link {
  color: var(--heading, #1c1d1f);
}
.navbar-white .navbar-nav .nav-link:hover {
  color: var(--link-hover, var(--link, #ce8460));
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 15px 20px;
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}
.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  border: 0;
  top: 50px;
  left: 0px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transform-origin: unset;
  }
}
.navbar .dropdown-menu.show {
  visibility: hidden;
}
@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.post-title {
  color: var(--heading, #1c1d1f);
}

.post-title:hover {
  color: var(--link-hover, var(--link, #ce8460));
}

.post-meta li {
  margin-right: 10px;
  font-size: 90%;
}
.post-meta a {
  color: #696c6d;
  border-bottom: 1px dotted #ddd;
}
.post-meta a:hover {
  color: var(--link-hover, var(--link, #ce8460));
}

.post-slider {
  overflow: hidden;
  margin-bottom: 20px;
}
.post-slider img {
  border-radius: inherit;
}

@media (max-width: 575px) {
  .navbar a.btn {
    display: none;
  }
}

.content * {
  word-break: break-word;
  overflow-wrap: break-word;
}
.content img {
  max-width: 100%;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.content strong {
  font-weight: 600;
}
.content a {
  color: var(--link, #ae5124);
  border-bottom: 1px dotted currentColor;
}
.content a:hover {
  color: var(--link-hover, var(--link, #ce8460));
}
.content ol,
.content ul {
  padding-left: 20px;
}
.content ol li,
.content ul li {
  margin-bottom: 10px;
}
.content ul {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
}
.content ul li {
  padding-left: 20px;
  position: relative;
}
.content ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--accent, #ce8460);
  left: 3px;
  top: 8px;
}
.content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}
.content table td,
.content table th {
  padding: 0.75rem;
  vertical-align: top;
  margin-bottom: 0;
}
.content tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.content th {
  font-weight: 500;
}
.content thead {
  background: #f0f0f0;
  margin-bottom: 0;
}
.content thead tr {
  border-bottom: 1px solid #ddd;
}
.content tbody {
  background: #fdfdfd;
  margin-bottom: 0;
}
.content blockquote {
  font-size: 20px !important;
  color: #696c6d;
  padding: 20px 40px;
  border-left: 2px solid var(--accent, #ce8460);
  margin: 40px 0;
  font-weight: bold;
  background: #f0f0f0;
}
.content blockquote p {
  margin-bottom: 0 !important;
}
.content pre {
  display: block;
  padding: 9.5px;
  margin: 10px 0px 10px;
  white-space: pre-wrap;
}
.content code {
  margin-bottom: 0 !important;
  font-size: 100%;
}

.form-group label {
  font-size: 13px;
  color: var(--heading, #1c1d1f);
}

.form-group .form-control:not(.is-invalid):focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--accent, #ce8460);
}
.form-group textarea.form-control {
  height: 120px;
}

.widget {
  background: #fff;
  margin-bottom: 40px;
}
.widget-title {
  position: relative;
  margin-bottom: 15px;
}
.widget-title span {
  background: #fff;
  position: relative;
  padding-right: 5px;
  z-index: 1;
}
.widget-title::before {
  position: absolute;
  content: "";
  right: 0;
  height: 1px;
  width: 100%;
  background: #ddd;
  top: 50%;
}
.widget-search {
  position: relative;
}
.widget-search input {
  border: 0;
  border-bottom: 1px dotted #ddd;
  width: 100%;
  height: 40px;
}
.widget-search input:focus {
  outline: 0;
}
.widget-search input::-moz-placeholder {
  font-size: 90%;
}
.widget-search input::placeholder {
  font-size: 90%;
}
.widget-search button {
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: inline-block;
  padding: 0;
  background: #f0f0f0;
  color: var(--heading, #1c1d1f);
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 5px;
  border: 0;
  font-size: 12px;
}
.widget-list li {
  padding: 5px 0;
}
.widget-list li:not(:last-child) {
  border-bottom: 1px dotted #ddd;
}
.widget-list li a {
  color: var(--heading, #1c1d1f);
}
.widget-list li a:hover {
  color: var(--link-hover, var(--link, #ce8460));
}
.widget-list-inline li {
  margin-bottom: 10px;
}
.widget-list-inline li a {
  padding: 2px 10px;
  border: 1px solid #ddd;
  border-radius: 40px;
  display: block;
  color: #696c6d;
}
.widget-list-inline li a:hover {
  border-color: #ce8460;
  background: #ce8460;
  color: #fff;
}
.widget-post {
  padding: 15px 0 !important;
}
.widget-post img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-list a {
  display: block;
  color: var(--link, #888c8e);
  padding: 5px 0;
}
.footer-list a:hover {
  color: var(--link-hover, var(--link, #ce8460));
}

input[required] + label:after {
  content: "*";
  color: red;
  margin-left: 0.5rem;
}

.form-group .input-group-lg label {
  font-size: 1rem;
}

.form-group .input-group-lg .invalid-feedback {
  font-size: 0.875rem;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.75rem 2.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .about-container,
  .newsletter-container {
    max-width: 800px;
  }
}

.text-lg {
  font-size: 18px;
}

@media (min-width: 992px) {
  .text-lg {
    font-size: 20px;
  }
}

.custom-card {
  border-color: var(--accent, #ce8460);
  border-radius: 2rem;
}

.custom-card .card-title {
  font-size: 2rem;
}
@media (min-width: 576px) {
  .custom-card .card-body.py-5 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
}

@media (min-width: 992px) {
  .custom-card .card-title {
    font-size: 2.5rem;
  }
}

.card-title > strong {
  color: var(--accent, #ce8460);
}

.image-attribution[open] summary::after {
  content: "";
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: auto;
}

.image-attribution:not([open])
  .image-attribution-summary:hover
  .image-attribution-tooltip {
  visibility: visible;
  opacity: 1;
}

.image-attribution:not([open]) .image-attribution-summary:hover path {
  fill: rgba(128, 128, 128);
  transition: fill 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-attribution-popover {
  position: absolute;
  inset: unset;
  right: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: calc(20px + 8px + 8px);
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  margin-left: 8px;
}

.image-attribution-summary {
  padding: 0;
  border: none;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 8px;
  bottom: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}

.camera-icon {
  width: 20px;
  height: 20px;
}

.camera-icon > * {
  fill: transparent;
  stroke: rgba(128, 128, 128, 0.9);
}

.image-attribution-tooltip {
  visibility: hidden;
  background-color: #484847;
  border: 1px solid #646362;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 0px 12px;
  white-space: nowrap;
  position: absolute;
  bottom: calc(20px + 8px);
  right: 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-attribution-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: calc(20px / 2 - 10px / 5);
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #484847;
  filter: drop-shadow(0px 1px 0px #646362);
}

.ai-disclaimer {
  margin-top: 32px;
}
