/*
@File: Aparto Template Styles
*/

/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*
Default CSS
<<<<======================================================>>>>*/
:root {
  --fontFamily: 'Nunito Sans', sans-serif;
  --headingFontFamily: 'Work Sans', sans-serif;
  --mainColor: #0E71AA;
  --optionalColor: #666666;
  --bgColor: #F9F5F2;
  --whiteColor: #FFFFFF;
  --blackColor: #222222;
  --fontSize: 16px;
  --transition: .5s;
}

body {
  margin: 0;
  padding: 0;
  color: var(--optionalColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

/* Sections
   ========================================================================== */

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: slider-content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-size: 16px;
  color: var(--whiteColor);
  padding: 16px 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  background-color: var(--mainColor);
  border: none;
}

button,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  background-color: var(--whiteColor);
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

textarea {
  color: #271273;
  border: 1px solid #eaedff;
  background-color: var(--whiteColor);
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--mainColor);
}

@media only screen and (max-width: 767px) {
  button, input[type="button"], input[type="reset"], input[type="submit"] {
   font-size: 15px;
   padding: 14px 24px;
  }
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  cursor: help;
}

mark,
ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  width: 100%;
}

/* Links
--------------------------------------------- */
a:hover,
a:active {
  outline: 0;
}

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--mainColor);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--optionalColor);
}

a:focus {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#reply-title {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

#reply-title small {
  display: block;
  margin-top: 10px;
}

/* Widgets
--------------------------------------------- */
.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {

  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Buttons
--------------------------------------------- */
button {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  padding-top: 20px;
  padding-bottom: 20px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--mainColor);
}

.owl-theme .owl-dots {
  line-height: 1;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: var(--optionalColor);
  width: 20px;
  height: 5px;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 0;
  margin-bottom: 0;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor);
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--mainColor);
  width: 30px;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

p:empty {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-control, input[type="search"] {
  height: 50px;
  color: #271273;
  border: 1px solid #eaedff;
  background-color: var(--whiteColor);
  border-radius: 0;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
}

.form-control::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder {
  color: #495057;
}

.form-control:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder {
  color: #495057;
}

.form-control::-ms-input-placeholder, input[type="search"]::-ms-input-placeholder {
  color: #495057;
}

.form-control::placeholder, input[type="search"]::placeholder {
  color: #495057;
}

.form-control:focus, input[type="search"]:focus {
  color: #000000;
  background-color: transparent;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
  border: 1px solid var(--mainColor);
}

.form-control:hover:focus, .form-control:focus, 
input[type="search"]:hover:focus, input[type="search"]:focus {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

textarea.form-control {
  height: auto;
}
 
.elementor.elementor .e-con>.elementor-widget.container.container-elementor {
  max-width: 1230px;
}

.container {
  max-width: 1230px;
}

@media only screen and (min-width: 1600px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1520px;
  }
}

.elementor-element.e-con-full.e-flex.e-con.e-parent {
  padding: 0
}

@media (max-width: 767px) {
  .e-con.e-flex {
    --flex-wrap: auto !important;
  }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--headingFontFamily);
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  color: var(--optionalColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.bg-F9F5F2 {
  background-color: var(--bgColor);
}

.bg-f9f9f9 {
  background-color: #f9f9f9;
}

.bg-black-color {
  background-color: var(--blackColor);
}

.bg-black-color .section-title .sub-title {
  color: var(--mainColor);
}

.bg-black-color .section-title h2 {
  color: var(--whiteColor);
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-60 {
  padding-bottom: 60px;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title .sub-title {
  display: block;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}

.section-title h2 {
  margin-bottom: 20px;
  font-size: 34px;
}

.section-title.text-start {
  margin-left: 0;
  margin-right: 0;
}

/*default-btn*/
.default-btn {
  display: inline-block;
  border: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  position: relative;
  z-index: 1;
  color: var(--mainColor);
  background-color: transparent;
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  padding: 11px 30px 11px 52px;
  font-family: var(--headingFontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
}

.default-btn.no-icon {
  padding: 11px 30px 11px 30px;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  bottom: 0;
  z-index: -1;
  background-color: var(--mainColor);
  border-radius: 5px;
  opacity: .15;
}

.default-btn i {
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  font-weight: normal;
}

.default-btn:hover {
  background-color: transparent;
  color: var(--whiteColor);
}

.default-btn:hover::before {
  opacity: 1;
}

.btn-area {
  margin-top: 20px;
}

/*form-control*/
.form-control {
  height: 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border-radius: 0;
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
  font-size: var(--fontSize);
  padding-left: 15px;
  color: var(--optionalColor);
}

.form-control::-webkit-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::-ms-input-placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control::placeholder {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #999999;
}

.form-control:focus {
  border-color: var(--mainColor);
}

.form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.form-control:focus::placeholder {
  color: transparent;
}

textarea.form-control {
  height: auto !important;
  padding-top: 15px;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
  position: absolute;
  z-index: 999;
  height: auto;
  right: 0;
  left: 0;
  top: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor);
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  padding-top: 0;
  padding-bottom: 0;
}

.admin-bar .navbar-area, .admin-bar .navbar-area.is-sticky {
  top: 32px;
}

.aparto-responsive-nav {
  display: none;
}

.aparto-nav .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.aparto-nav .navbar {
  padding: 0;
  position: inherit;
}

.site-branding {
  padding: 5px 0;
  margin-right: 2rem;
  position: relative;
  bottom: 3px;
}

.site-branding .site-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.aparto-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}

.aparto-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.aparto-nav .navbar .navbar-nav {
  margin-left: auto;
}

.aparto-nav .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.aparto-nav .navbar .navbar-nav .nav-item a {
  position: relative;
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: 17px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.aparto-nav .navbar .navbar-nav .nav-item a:hover, 
.aparto-nav .navbar .navbar-nav .nav-item a:focus, 
.aparto-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 14px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  position: absolute;
  content: "\EA4E";
  line-height: 1;
  right: -6px;
  top: 31px;
  font-family: remixicon;
  font-size: 15px;
  border: none;
  margin-left: 5px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-toggle::after {
  right: inherit;
  top: 13px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  display: none;
}

.dropdown-item:focus, .dropdown-item:hover, 
.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
}

.aparto-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.aparto-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.aparto-nav .navbar .navbar-nav .nav-item:hover a, 
.aparto-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 75px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 265px;
  margin-top: 0;
  display: block;
  padding: 10px 0;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  position: relative;
  color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, 
.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: auto;
  right: 250px;
  margin-top: 0;
  visibility: hidden;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--optionalColor);
  padding-left: 20px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, 
.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--optionalColor);
  padding-left: 20px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, 
.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  padding-left: 25px;
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: 250px;
  visibility: hidden;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  padding-left: 20px;
  color: var(--optionalColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, 
.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus {
  color: var(--mainColor);
  padding-left: 25px;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}

.aparto-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.aparto-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.aparto-nav .navbar .others-option {
  margin-left: 30px;
}

@media only screen and (max-width: 991px) {
  .navbar-area {
    position: relative;
    background-color: var(--whiteColor);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-area.is-sticky {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .aparto-responsive-nav {
    display: block;
  }
  .aparto-responsive-nav .aparto-responsive-menu {
    position: relative;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav {
    margin-top: 96px;
    background-color: var(--whiteColor);
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    border: none !important;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #DBEEFD;
    color: var(--optionalColor);
    text-transform: unset;
    font-weight: 600;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 50%;
    height: 28px;
    text-align: right;
    padding: 11px !important;
    background: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul li a.active {
    color: var(--mainColor);
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .navbar-nav {
    height: 318px;
    overflow-y: scroll;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .aparto-responsive-nav .mean-container a.meanmenu-reveal {
    top: 0;
    padding: 0;
    width: 35px;
    height: 30px;
    padding-top: 22px;
    color: var(--optionalColor);
    font-family: var(--fontFamily);
  }
  .aparto-responsive-nav .mean-container a.meanmenu-reveal span {
    top: 8px;
    height: 4px;
    margin-top: -6px;
    border-radius: 3px;
    position: relative;
    background: var(--optionalColor);
  }
  .aparto-responsive-nav .mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 999;
    padding: 0;
  }
  .aparto-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .aparto-responsive-nav .others-option {
    position: absolute;
    z-index: 999;
    right: 52px;
    top: 0px;
  }
  .aparto-responsive-nav .others-option .default-btn {
    font-size: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .aparto-responsive-nav .others-option .default-btn i {
    display: none;
  }
  .aparto-responsive-nav .logo {
    position: relative;
    width: 60%;
    z-index: 999;
  }
  .aparto-nav {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .aparto-responsive-nav .logo img {
    max-width: 115px;
  }
  .aparto-responsive-nav .others-option {
    right: 44px;
    top: 3px;
  }
  .aparto-responsive-nav .others-option .default-btn {
    padding-left: 10px;
    padding-right: 10px;
  }
  .aparto-responsive-nav .mean-container a.meanmenu-reveal {
    padding-top: 8px;
  }
  .aparto-responsive-nav .aparto-responsive-menu.mean-container .mean-nav {
    margin-top: 70px;
  }
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
  margin-bottom: 30px;
}

.single-blog-post .post-image {
  border-radius: 5px;
}

.single-blog-post .post-image a {
  border-radius: 5px;
}

.single-blog-post .post-image a img {
  border-radius: 5px;
}

.single-blog-post .post-content {
  position: relative;
  margin-top: 20px;
}

.single-blog-post .post-content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}

.single-blog-post .post-content .meta li {
  display: inline-block;
  color: var(--mainColor);
  font-weight: 600;
  position: relative;
  margin-right: 10px;
}

.single-blog-post .post-content .meta li a {
  display: inline-block;
  color: var(--mainColor);
}

.single-blog-post .post-content .meta li a:hover {
  color: var(--blackColor);
}

.single-blog-post .post-content .meta li::before {
  content: '';
  width: 1px;
  height: 12px;
  background-color: var(--mainColor);
  position: absolute;
  right: -7px;
  top: 6px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.single-blog-post .post-content .meta li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .meta li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.single-blog-post .post-content h3 a {
  color: var(--blackColor);
}

.single-blog-post .post-content h3 a:hover {
  color: var(--mainColor);
}

.single-blog-post .post-content p {
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn {
  font-weight: 700;
  display: inline-block;
  color: var(--blackColor);
  position: relative;
  bottom: 0px;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-blog-post .post-content .link-btn:hover {
  color: var(--mainColor);
}

.single-blog-post:hover .post-content p {
  opacity: 0;
  visibility: hidden;
}

.single-blog-post:hover .post-content .link-btn {
  opacity: 1;
  visibility: visible;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content ul {
  padding: revert;
  margin: unset;
  list-style: inherit;
}

.page .site-main article .entry-content ul:not(.page.elementor-page .site-main article .entry-content ul, .widget-area .widget ul) {
  padding: 0;
  margin: unset;
  list-style: inherit;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: 15px;
}

.blog-details-desc .article-content .entry-meta ul, 
.blog-details-desc .article-content .entry-meta ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li, 
.blog-details-desc .article-content .entry-meta ol li {
  color: var(--blackColor);
  display: inline-block;
  margin-right: 20px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li i {
  top: 0;
  left: 0;
  position: absolute;
  color: var(--mainColor);
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li a {
  color: var(--blackColor); 
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: var(--mainColor); 
}

.blog-details-desc .article-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
  list-style-type: none;
  margin-right: 0;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  color: var(--blackColor);
  margin-bottom: 15px;
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}

.blog-details-desc .article-footer .article-tags {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-tags p {
  line-height: 1;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--optionalColor);
}

.blog-details-desc .article-footer .article-tags a {
  margin-left: 10px;
  padding: 7px 20px;
  border-radius: 30px;
  display: inline-block;
  color: var(--blackColor);
  background-color: #f9f9f9;
  font-size: 15px;
  font-weight: 600;
}

.blog-details-desc .article-footer .article-tags a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: -3px;
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}

.blog-details-desc .article-footer .article-share .social li a:hover, 
.blog-details-desc .article-footer .article-share .social li a:focus {
  color: var(--mainColor);
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.facebook:hover, 
.blog-details-desc .article-footer .article-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.twitter:hover, 
.blog-details-desc .article-footer .article-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.linkedin:hover, 
.blog-details-desc .article-footer .article-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.instagram:hover, 
.blog-details-desc .article-footer .article-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.whatsapp {
  background-color: #00a884;
  border-color:#00a884;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.whatsapp:hover, 
.blog-details-desc .article-footer .article-share .social li a.whatsapp:focus {
  color: #00a884;
  background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a.pinterest {
  background-color: #E60023;
  border-color: #E60023;
  color: var(--whiteColor);
}

.blog-details-desc .article-footer .article-share .social li a.pinterest:hover, 
.blog-details-desc .article-footer .article-share .social li a.pinterest:focus {
  color: #E60023;
  background-color: transparent;
}

blockquote, .blockquote {
  z-index: 1;
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
  padding: 40px 50px !important;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--blackColor);
  font-weight: 700;
  font-style: italic;
  font-size: 17px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::after, .blockquote::after {
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  content: '';
  position: absolute;
  background-color: var(--mainColor);
  margin-top: 20px;
  margin-bottom: 20px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: initial;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px dashed #eeeeee;
  padding-left: 70px;
  color: var(--blackColor);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px dashed #ded9d9;
  color: var(--blackColor);
  display: inline-block;
  padding: 5.5px 20px 5px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.comments-area .comment-body .reply a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.comments-area .comment-author {
  font-size: 17px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  top: 4px;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  margin-bottom: .7em;
  color: var(--blackColor);
  letter-spacing: 0.01em;
  font-size: 14px;
  font-weight: 500;
}

.comments-area .comment-respond {
  margin-top: 30px;
  margin-bottom: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 22px;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 20px;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: none;
}

.comments-area .comment-respond input[type="date"], 
.comments-area .comment-respond input[type="time"], 
.comments-area .comment-respond input[type="datetime-local"], 
.comments-area .comment-respond input[type="week"], 
.comments-area .comment-respond input[type="month"], 
.comments-area .comment-respond input[type="text"], 
.comments-area .comment-respond input[type="email"], 
.comments-area .comment-respond input[type="url"], 
.comments-area .comment-respond input[type="password"], 
.comments-area .comment-respond input[type="search"], 
.comments-area .comment-respond input[type="tel"], 
.comments-area .comment-respond input[type="number"], 
.comments-area .comment-respond textarea {
  outline: 0;
  width: 100%;
  height: 50px;
  display: block;
  font-size: var(--fontSize);
  border-radius: 3px;
  padding: 1px 0 0 15px;
  color: var(--blackColor);
  background-color: #f9f9f9;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, 
.comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="time"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="week"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="month"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="text"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="email"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="url"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="password"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="search"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, 
.comments-area .comment-respond input[type="number"]:-ms-input-placeholder, 
.comments-area .comment-respond textarea:-ms-input-placeholder {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="time"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="week"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="month"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="text"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="email"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="url"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="password"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="search"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, 
.comments-area .comment-respond input[type="number"]::-ms-input-placeholder, 
.comments-area .comment-respond textarea::-ms-input-placeholder {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::placeholder, 
.comments-area .comment-respond input[type="time"]::placeholder, 
.comments-area .comment-respond input[type="datetime-local"]::placeholder, 
.comments-area .comment-respond input[type="week"]::placeholder, 
.comments-area .comment-respond input[type="month"]::placeholder, 
.comments-area .comment-respond input[type="text"]::placeholder, 
.comments-area .comment-respond input[type="email"]::placeholder, 
.comments-area .comment-respond input[type="url"]::placeholder, 
.comments-area .comment-respond input[type="password"]::placeholder, 
.comments-area .comment-respond input[type="search"]::placeholder, 
.comments-area .comment-respond input[type="tel"]::placeholder, 
.comments-area .comment-respond input[type="number"]::placeholder, 
.comments-area .comment-respond textarea::placeholder {
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="time"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="week"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="month"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="text"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="email"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="url"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="password"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="search"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="tel"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond input[type="number"]:focus::-webkit-input-placeholder, 
.comments-area .comment-respond textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="time"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="week"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="month"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="text"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="email"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="url"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="password"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="search"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="tel"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond input[type="number"]:focus:-ms-input-placeholder, 
.comments-area .comment-respond textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="time"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="datetime-local"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="week"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="month"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="text"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="email"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="url"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="password"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="search"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="tel"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond input[type="number"]:focus::-ms-input-placeholder, 
.comments-area .comment-respond textarea:focus::-ms-input-placeholder {
  color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::placeholder, 
.comments-area .comment-respond input[type="time"]:focus::placeholder, 
.comments-area .comment-respond input[type="datetime-local"]:focus::placeholder, 
.comments-area .comment-respond input[type="week"]:focus::placeholder, 
.comments-area .comment-respond input[type="month"]:focus::placeholder, 
.comments-area .comment-respond input[type="text"]:focus::placeholder, 
.comments-area .comment-respond input[type="email"]:focus::placeholder, 
.comments-area .comment-respond input[type="url"]:focus::placeholder, 
.comments-area .comment-respond input[type="password"]:focus::placeholder, 
.comments-area .comment-respond input[type="search"]:focus::placeholder, 
.comments-area .comment-respond input[type="tel"]:focus::placeholder, 
.comments-area .comment-respond input[type="number"]:focus::placeholder, 
.comments-area .comment-respond textarea:focus::placeholder {
  color: transparent;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  margin: 0;
  display: inline-block;
  color: var(--blackColor);
  font-weight: normal;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.comments-area .comment-respond .form-submit input {
  border: none;
  cursor: pointer;
  display: inline-block;
  color: var(--whiteColor);
  background: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-weight: 700;
  font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit input:hover, 
.comments-area .comment-respond .form-submit input:focus {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  background: -webkit-gradient(linear, left top, right bottom, from(#fffefe), color-stop(#fffbf6), color-stop(#fcfbee), color-stop(#eafeef), to(#d7fffe));
  background: linear-gradient(to right bottom, #fffefe, #fffbf6, #fcfbee, #eafeef, #d7fffe);
  padding-bottom: 100px;
  padding-top: 180px;
}

.page-title-content {
  text-align: center;
}

.page-title-content h2 {
  margin-bottom: 12px;
  font-size: 50px;
}

.page-title-content p {
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-title-content ul li {
  font-size: 17px;
  position: relative;
  display: inline-block;
  margin-left: 13px;
  margin-right: 13px;
}

.page-title-content ul li:first-child {
  margin-left: 0;
}

.page-title-content ul li::before {
  top: 50%;
  opacity: .7;
  right: -26px;
  content: "\e9f9";
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'boxicons';
  font-size: 24px;
}

.page-title-content ul li:last-child::before {
  content: none;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
}

.pagination-area .pagination {
  display: block;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 39.5px;
  position: relative;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  background-color: transparent;
  font-size: 16px;
  font-weight: 700;
  margin-left: 3px;
  margin-right: 3px;
}

.pagination-area .page-numbers.next, 
.pagination-area .page-numbers.prev {
  top: 3px;
}

.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  padding-left: 15px;
}

.widget-area .widget {
  margin-bottom: 35px;
}

.widget-area .widget .wp-block-heading {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
  margin-bottom: 30px;
  position: relative;
  font-size: 21px;
}

.widget-area .widget .wp-block-heading::before {
  left: 0;
  width: 70px;
  height: 1px;
  content: '';
  bottom: -1px;
  position: absolute;
  background-color: var(--mainColor);
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget_search {
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  background-color: var(--whiteColor);
  padding: 15px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  outline: 0;
  width: 100%;
  height: 50px;
  display: block;
  padding: 0 0 0 15px;
  font-size: var(--fontSize);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: transparent;
}

.widget-area .widget_search form .search-field:focus {
  border-color: var(--mainColor);
}

.widget-area .widget_search form button {
  right: 0;
  bottom: 0;
  outline: 0;
  height: 50px;
  border: none;
  position: absolute;
  color: var(--whiteColor);
  font-size: var(--fontSize);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
}

.widget-area .widget_search form button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.widget-area .widget_aparto_posts_thumb {
  position: relative;
}

.widget-area .widget_aparto_posts_thumb .item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 115px;
}

.widget-area .widget_aparto_posts_thumb .item .thumb {
  top: 0;
  left: 0;
  width: 100px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
}

.widget-area .widget_aparto_posts_thumb .item .thumb .fullimage {
  width: 100px;
  height: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center center !important;
}

.widget-area .widget_aparto_posts_thumb .item .thumb::before, 
.widget-area .widget_aparto_posts_thumb .item .thumb::after {
  content: '';
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  background-color: var(--whiteColor);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
}

.widget-area .widget_aparto_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}

.widget-area .widget_aparto_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}

.widget-area .widget_aparto_posts_thumb .item .info .title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.widget-area .widget_aparto_posts_thumb .item .info .title a {
  display: inline-block;
}

.widget-area .widget_aparto_posts_thumb .item .info .date {
  padding-left: 20px;
  position: relative;
  color: var(--blackColor);
}

.widget-area .widget_aparto_posts_thumb .item .info .date i {
  left: 0;
  top: -1px;
  position: absolute;
  color: var(--mainColor);
}

.widget-area .widget_aparto_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_aparto_posts_thumb .item:hover .thumb::before, 
.widget-area .widget_aparto_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

.widget-area .widget ol {
  padding-left: 0;
}

ol.wp-block-latest-comments {
  box-sizing: border-box;
  margin-left: 0;
}

.wp-block-latest-comments__comment {
  list-style: none;
  margin-bottom: 1em;
}

.has-avatars .wp-block-latest-comments__comment {
  list-style: none;
  min-height: 2.25em;
}

.wp-block-latest-comments .avatar, .wp-block-latest-comments__comment-avatar {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  width: 2.5em;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt, 
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em;
}

.widget-area .widget ol .wp-block-latest-comments__comment-excerpt {
  display: none;
}

.widget-area .widget ol .wp-block-latest-comments__comment-date {
  display: none;
}

.widget-area .widget ol .wp-block-latest-comments__comment-link {
  display: inline;
}

.widget-area .widget ol li .wp-block-latest-comments__comment-meta a {
  color: var(--blackColor);
}

.widget-area .widget ol li .wp-block-latest-comments__comment-meta a:hover {
  color: var(--mainColor);
}

.widget-area .widget ol li footer {
  color: var(--mainColor);
}

.widget-area .widget ul, 
.widget-area .widget ol {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget ul li, 
.widget-area .widget ol li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.widget-area .widget ul li::before, 
.widget-area .widget ol li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_newsletter {
  background-color: #f9f9f9;
  text-align: center;
  padding: 30px;
}

.widget-area .widget_newsletter h4 {
  font-size: 21px;
  margin-bottom: 8px;
}

.widget-area .widget_newsletter .newsletter-form {
  margin-top: 20px;
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter {
  width: 100%;
  height: 50px;
  display: block;
  padding-left: 15px;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--whiteColor);
}

.widget-area .widget_newsletter .newsletter-form .input-newsletter:focus {
  border-color: var(--optionalColor);
}

.widget-area .widget_newsletter .newsletter-form button {
  width: 100%;
  border: none;
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  padding: 13px 30px;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--blackColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.widget-area .widget_newsletter .newsletter-form button:hover {
  background-color: var(--blackColor);
}

.widget-area .widget .wp-block-tag-cloud .tag-cloud-link {
  padding: 6px 13px;
  display: inline-block;
  color: var(--blackColor);
  border: 1px solid #eeeeee;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 14.5px !important;
  font-weight: 600;
}

.widget-area .widget .wp-block-tag-cloud .tag-cloud-link:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: var(--whiteColor);
}

.widget-area .widget_archive ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.widget-area .widget_archive ul li::before {
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--mainColor);
}

.widget-area .widget_archive ul li a {
  font-weight: 600;
  display: inline-block;
  color: var(--blackColor);
}

.widget-area .widget_archive ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_service_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_service_categories ul li {
  font-weight: 600;
  overflow: hidden;
  margin-bottom: 13px;
  padding-bottom: 13px;
  color: var(--blackColor);
  border-bottom: 1px dashed #eeeeee;
}

.widget-area .widget_service_categories ul li a {
  display: block;
  position: relative;
  color: var(--blackColor);
}

.widget-area .widget_service_categories ul li a i {
  top: 50%;
  right: 5px;
  position: absolute;
  font-size: var(--fontSize);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--blackColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.widget-area .widget_service_categories ul li a:hover {
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li a:hover i {
  right: 0;
  color: var(--mainColor);
}

.widget-area .widget_service_categories ul li:last-child {
  margin-bottom: 0;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  padding-bottom: 100px;
  padding-top: 100px;
}

.error-content {
  text-align: center;
}

.error-content img {
  margin: 0 auto;
}

.error-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 45px;
}

.error-content p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.error-content .search-submit {
  margin-top: 10px;
}

.error-content .search-form {
  margin-top: 20px;
}

.error-content .default-btn {
  margin-top: 30px;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: var(--bgColor);
  position: relative;
  padding-top: 100px;
  z-index: 1;
}

.footer-area .single-footer-widget, 
.footer-area .widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-area .widget-title, 
.footer-area .footer-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.single-footer-widget .mc4wp-form {
  margin-bottom: 20px;
}

.single-footer-widget .mc4wp-form input {
  width: initial;
  margin-bottom: 10px;
}

.single-footer-widget .mc4wp-form .mc4wp-response {
  margin-top: 20px;
}

.single-footer-widget .newsletter-form {
  margin-bottom: 20px;
  position: relative;
}

.single-footer-widget .newsletter-form .input-newsletter {
  height: 50px;
  display: block;
  width: 100%;
  background-color: var(--whiteColor);
  border: none;
  padding-left: 15px;
  color: var(--optionalColor);
  border-radius: 5px;
}

.single-footer-widget .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter::placeholder {
  color: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.single-footer-widget .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}

.single-footer-widget .newsletter-form button {
  top: 0;
  right: 0;
  height: 50px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  border: none;
  padding: 0 30px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 700;
}

.single-footer-widget .newsletter-form button:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}

.single-footer-widget .newsletter-form .validation-danger {
  color: red;
  margin-top: 15px;
}

.single-footer-widget .newsletter-form .validation-success {
  margin-top: 15px;
  color: #198754;
}

.single-footer-widget .social-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .social-links li {
  display: inline-block;
  margin-right: 7px;
}

.single-footer-widget .social-links li a {
  display: block;
  line-height: 1;
  font-size: 18px;
  color: var(--optionalColor);
}

.single-footer-widget .social-links li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .social-links li:last-child {
  margin-right: 0;
}

.footer-area .widget .menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.footer-area .widget .menu li {
  color: var(--optionalColor);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.footer-area .widget .menu li a {
  display: inline-block;
  color: var(--optionalColor);
}

.footer-area .widget .menu li a:hover {
  color: var(--mainColor);
}

.footer-area .widget .menu li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 12px;
  color: var(--optionalColor);
  font-size: 15px;
  font-weight: 600;
}

.single-footer-widget .footer-contact-info li span {
  font-weight: 700;
  color: var(--optionalColor);
}

.single-footer-widget .footer-contact-info li a {
  color: var(--optionalColor);
}

.single-footer-widget .footer-contact-info li a:hover {
  color: var(--mainColor);
}

.single-footer-widget .payment-types {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .payment-types li {
  display: inline-block;
}

.single-footer-widget.pr-5 {
  padding-right: 5rem;
}

.copyright-area {
  background-color: var(--whiteColor);
  position: relative;
  margin-top: 70px;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright-area p {
  font-weight: 600;
}

.copyright-area p a {
  color: var(--mainColor);
}

.copyright-area p a:hover {
  color: var(--optionalColor);
  text-decoration: underline;
}

.copyright-area ul {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  list-style-type: none;
}

.copyright-area ul li {
  display: inline-block;
  color: var(--optionalColor);
  font-weight: 600;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area ul li a {
  display: block;
  color: var(--optionalColor);
}

.copyright-area ul li a:hover {
  color: var(--mainColor);
}

.copyright-area ul li::before {
  top: 50%;
  width: 8px;
  height: 1px;
  content: '';
  right: -16px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--optionalColor);
}

.copyright-area ul li:last-child {
  margin-right: 0;
}

.copyright-area ul li:last-child::before {
  display: none;
}

.copyright-area ul li:first-child {
  margin-left: 0;
}

.shape1 {
  right: 27%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

.shape2 {
  right: 35%;
  z-index: -1;
  bottom: 85px;
  position: absolute;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 4;
  opacity: 0;
  right: 20px;
  width: 43px;
  height: 45px;
  bottom: 20px;
  position: fixed;
  cursor: pointer;
  font-size: 30px;
  visibility: hidden;
  text-align: center;
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--mainColor);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.go-top:hover {
  color: var(--whiteColor);
  background-color: var(--optionalColor);
}

/*================================================
Search Area CSS
=================================================*/
.search.search-results article {
  margin-bottom: 20px;
}

.search.search-results article img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.search.search-results time {
  margin-right: 10px;
}

.search.search-results span {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

/*================================================
Additional CSS
=================================================*/
ol.wp-block-latest-comments {
  box-sizing: border-box;
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.widget-area .widget ol.wp-block-latest-comments li, 
.widget-area .widget ul.wp-block-latest-comments li {
  padding-left: 0;
}

.widget-area .widget ol.wp-block-latest-comments li::before, 
.widget-area .widget ul.wp-block-latest-comments li::before {
  content: none;
}

.has-avatars .wp-block-latest-comments__comment {
  list-style: none;
  min-height: 2.25em;
}

ol.wp-block-latest-comments__comment {
  list-style: none;
  margin-bottom: 1em;
}

.wp-block-latest-comments .avatar, .wp-block-latest-comments__comment-avatar, 
.wp-block-latest-comments .wp-block-latest-comments__comment img {
  border-radius: 1.5em;
  display: block;
  float: left;
  height: 2.5em;
  margin-right: 0.75em;
  width: 2.5em;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt, 
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em;
}

.wp-block-latest-comments__comment-date {
  display: block;
  font-size: .75em;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt, 
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 3.25em;
}

.wp-block-latest-comments__comment-excerpt p {
  font-size: .875em;
  margin: 0.36em 0 1.4em;
}

.page .post-thumbnail {
  margin-bottom: 30px;
}

.bxl-twitter::before {
  content: "𝕏" !important;
  position: relative;
  bottom: 2px;
  font-size: 17px;  
}

.ri-twitter-fill::before {
  content: "𝕏" !important;
  position: relative;
  bottom: 3px;
  font-size: 17px;
}

/*================================================
Slider Area CSS
=================================================*/
.wpr-slider-item-overlay {
  opacity: 0.7;
}

/*================================================
Apartment Area CSS
=================================================*/
.vbdivsearch {
  padding: 25px 50px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  background-color: var(--whiteColor);
}

.vbdivsearch .vbo-search-submit .btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.vbdivsearch .vbo-search-submit .btn:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}

.vbdivsearch .vbo-search-submit .btn:before, 
.vbdivsearch .vbo-search-submit .btn:after {
  transition: none;
}

.vik-dots-slider-inner .vik-dots-slider-slide img {
  width: 100%;
  max-height: 100%;
  height: 100%;
}

.vbo-searchdet-gallery-container .vik-dots-slider-inner .vik-dots-slider-slide img {
  width: auto;
}

.vbroomnumnightsdet {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.vikfxg-wrapper .vikfxg-navigation button {
  background-color: transparent;
}

.vikfxg-wrapper .vikfxg-close {
  background-color: transparent;
}

.vbo-showprc-room-block .vbo-showprc-roomname {
  margin-bottom: 20px;
}

.vbroomimgdesc .vikfx-roomdetails-gallery-container {
  width: auto;
}

.vikfx-gallery-fade-container img.vblistimg {
  margin: 0;
}

.vikfx-gallery-container .vikfx-gallery img {
  max-height: 96px;
}

.btn.vbselectr-result.vbo-pref-color-btn:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}

.vbo-alert-container-confirm, 
.wrap.plugin-container .vbo-alert-container-confirm {
  left: 35%;
  position: relative;
}

.vbo-booking-details-head > h4 {
  color: var(--whiteColor);
}

.vbordcancform-inner .vbordcancform-entry {
  margin-bottom: 10px;
}

.vbo-precheckin-adult-wrap .vbo-precheckin-guest-detail.vbo-precheckin-guest-detail-files label {
  margin-bottom: 10px;
}

.vbo-booking-details-topcontainer button {
  background-color: var(--mainColor);
}

.vbo-booking-details-topcontainer button:hover, 
.vbo-booking-details-topcontainer button:focus {
  background-color: #121212;
}

.vbo-booking-details-topcontainer .vbo-precheckin-room-wrapper button i {
  margin-right: 5px;
}

.vbo-search-noresults-cont .vbo-search-roomnum, .vbo-search-roomnum {
  margin: 24px 15px 0 0;
}

.vbselectr a, .vbselectr-result {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.vbselectr a:hover, .vbselectr-result:hover {
  background-color: var(--optionalColor);
}

.vbo-reqinfo-cont .vbo-reqinfo-opener {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.vbo-reqinfo-cont .vbo-reqinfo-opener:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}

.vbo-search-submit .vbdetbooksubmit.btn {
  padding: 13px 40px !important;
}

.vbdialog-reqinfo input {
  position: relative;
  left: 5px;
  top: 1px;
}

.wrap.plugin-container .notice {
  margin-bottom: 20px;
}

.vbentercoupon input.vbsubmitcoupon, .vbo-enterpin-top .vbo-pincode-sbmt {
  padding: 11px 30px;
}

.vbcustomfields .vbo-oconfirm-cfield-entry-checkbox input {
  position: relative;
  bottom: 1px;
  left: 2px;
}

.vbselectr .btn.vbo-pref-color-btn {
  background-color: var(--mainColor);
}

.vbselectr .btn.vbo-pref-color-btn:hover {
  background-color: var(--optionalColor);
}

.wrap.plugin-container .btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.wrap.plugin-container .btn:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}

.vik-dots-slider-inner {
  height: 203px !important;
}

@media only screen and (max-width: 767px) {
  .vbdivsearch {
    padding: 25px 25px;
  }
  .vbo-alert-container-confirm, 
  .wrap.plugin-container .vbo-alert-container-confirm {
    left: 65%;
    width: 55%;
    padding: 10px;
  }
  .vboconfirmbottom .booknow, .wrap.plugin-container .vboconfirmbottom .booknow {
    margin-bottom: 50px;
    margin-top: 15px;
  }
  .vbroomnumnightsdet {
    margin-bottom: 10px;
  }
  .vbo-booking-cancform-inner h4 {
    overflow: auto;
    padding-bottom: 10px;
    font-size: 16px;
  }
  .vbcalsblock {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .vbsrchdetpriceboxinner .vbroomnumnightsdet {
    margin: 12px 10px 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .vbo-alert-container-confirm, 
  .wrap.plugin-container .vbo-alert-container-confirm {
    left: 25%;
    width: 31%;
  }
}

@media only screen and (min-width: 992px) {
  .vbdivsearch #vbjstotnights {
    margin: 38px 10px 10px 22px;
  }
  .vbdivsearch input[type^="text"] {
    min-width: 130px;
  }
  .vbdivsearch .vb-search-inner select {
    min-width: 130px;
  }
  .vblistroomblock .vbimglistdiv img.vblistimg {
    margin: 0 15px -7px 0;
  }
}
