h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.3;
}

body {
  font-size: 16px;
  color: white;
  background: black;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  font-family: var(--font-family);
  overflow-x: hidden;
}

#outer-wrap {
  overflow: hidden;
}

.full-width {
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  position: relative;
}

.container,
.has-sidebar #content-wrap {
  width: 1150px;
  margin: 0 auto;
  max-width: 90%;
  position: relative;
  z-index: 1;
}

.main-container {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .main-container {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}

ul,
ol {
  margin: 0 0 20px 30px;
  padding: 0;
}

button {
  padding: 0;
  border: 0;
  cursor: pointer;
  font-family: var(--font-family);
  transition: 0.15s all;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

p {
  margin: 0 0 15px;
}

:root {
  --main-color: #be9787;
  --second-color: #ff0000;
  --light-color: #eeeeee;
  --border-color: #cccccc;
  --border-radius: 8px;
  --form-height: 50px;
  --font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

a,
:visited {
  color: black;
  text-decoration: none;
  -webkit-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

iframe {
  border: 0;
  max-width: 100%;
}

@media (max-width: 1200px) {
  #site-header .main-container {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}

/* Layout */
.right-sidebar #content-wrap,
.left-sidebar #content-wrap {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.right-sidebar #primary {
  width: calc(100% - 360px);
}

.left-sidebar #primary {
  width: calc(100% - 360px);
}

.has-sidebar #sidebar {
  width: 300px;
  padding-bottom: 60px;
}

.right-sidebar #sidebar {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media (max-width: 960px) {

  .has-sidebar #primary,
  .has-sidebar #sidebar {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  #primary {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  #sidebar {
    margin-top: 40px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/* Header */
#site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s all;
}

.home #site-header {
  opacity: 0;
}

.p-canvas__info {
  transition: 0.3s all;
}

.is-waitLoad #site-header,
.is-waitLoad .p-canvas__info {
  opacity: 0 !important;
}

.wf-active:not(.is-waitLoad) #site-header {
  opacity: 1;
}

#site-header-inner {
  position: relative;
}

.master-header-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  width: 100%;
  position: relative;
}

#site-logo {
  width: 230px;
  max-width: 70%;
}

#site-logo img {
  filter: invert(1);
}

.light-body #site-logo img {
  filter: none;
}

#site-navigation {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#site-navigation-wrap .master-main-menu {
  list-style: none;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  margin: 0;
  padding: 0;
}

#site-navigation-wrap .master-main-menu>.menu-item {
  margin: 0 25px;
  position: relative;
}

#site-navigation-wrap .master-main-menu>.menu-item:last-child {
  margin-right: 0;
}

#site-navigation-wrap .master-main-menu>.menu-item>a {
  color: white;
  white-space: nowrap;
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 5px;
}

.light-body #site-navigation-wrap .master-main-menu>.menu-item>a {
  color: black;
}

#site-navigation-wrap .master-main-menu>.menu-item>a:hover,
#site-navigation-wrap .master-main-menu>.current-menu-item>a {
  color: var(--main-color);
}

#site-navigation-wrap .master-main-menu>.menu-item-has-children>a {
  padding-right: 15px;
}

#site-navigation-wrap .master-main-menu>.menu-item-has-children>a:after {
  content: "\e92e";
  font-family: Feather;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 13px;
}

#site-navigation-wrap .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  list-style: none;
  padding: 10px 0;
  border-bottom: 0;
  z-index: 10;
  min-width: 160px;
  background: var(--main-color);
}

#site-navigation-wrap .master-main-menu>.menu-item>.sub-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--main-color);
  position: absolute;
  bottom: 100%;
  left: 15px;
}

#site-navigation-wrap .menu-item-has-children:hover>.sub-menu {
  display: block;
}

#site-navigation-wrap .master-main-menu .sub-menu li {
  margin: 0;
  position: relative;
}

#site-navigation-wrap .sub-menu a {
  padding: 5px 15px;
  display: block;
  height: auto;
  white-space: nowrap;
  color: white;
}

#site-navigation-wrap .sub-menu a:hover {
  background: #1c66c8;
}

#site-navigation-wrap .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  padding: 5px 0;
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 12px;
  font-weight: 600;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a {
  padding-right: 30px;
  position: relative;
}

@media (max-width: 960px) {
  #site-navigation-wrap {
    display: none;
  }

  .desk-logo {
    display: none;
  }
}

@media (min-width: 960px) {

  #mobile-sidebar-menu,
  .mobile-menu-area {
    display: none;
  }

  .mobile-logo {
    display: none;
  }
}

/* Mobile menu */
#mobile-sidebar-menu {
  width: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.mobil-menu-line-icon span {
  width: 25px;
  height: 2px;
  margin-bottom: 5px;
  background: white;
  display: block;
}

.light-body .mobil-menu-line-icon span {
  background: black;
}

.mobil-menu-line-icon span:last-child {
  margin-bottom: 0;
}

.mobile-menu-area {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  max-width: 90%;
  background: rgb(0 0 0 / 45%);
  height: calc(100% + 80px);
  z-index: 1000;
  overflow: auto;
  transform: translate3d(100%, 0, 0);
  transition: 0.3s all;
}

.mobile-menu-area * {
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close {
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  padding: 30px 30px 80px !important;
}

.mobile-menu-close-icon {
  cursor: pointer;
}

.mobile-menu-container {
  padding: 0 40px;
  transform: translateX(60px);
  opacity: 0;
  transition: 0.6s all;
}

.animated-mobile-menu-container {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.active-mobile-menu {
  transform: none;
}

.mobile-menu-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-area a {
  font-size: 15px;
  position: relative;
  color: white;
  padding: 7px 0;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 5px;
}

.mobile-menu-area .menu-item-has-children>a:after {
  content: "\e92e";
  font-family: Feather;
  margin-left: 7px;
  font-size: 17px;
}

.mobile-menu-area .sub-menu {
  display: none;
  padding-left: 15px;
  padding-bottom: 10px;
  position: relative;
}

.mobile-menu-area .sub-menu a {
  font-weight: 400;
  font-size: 18px;
  padding: 5px 0;
  color: #dddddd;
}

.mobile-menu-area a:hover {
  opacity: 0.4;
}

.mobile-search-area {
  position: relative;
  padding: 0 30px;
  margin-bottom: 40px;
}

#mobile-search {
  position: relative;
}

.mobile-search-area input[type="text"] {
  width: 100%;
  border: 0;
  height: 46px;
  font-size: 15px;
  padding: 0 20px;
  background: #191919;
  color: white;
  border-radius: 30px;
}

.mobile-search-area input::-webkit-input-placeholder {
  opacity: 1;
}

.mobile-search-area button {
  position: absolute;
  top: 0;
  right: 2px;
  width: 46px;
  height: 46px;
  font-size: 18px;
  border-radius: 50%;
  font-weight: 600;
}

.master-overlay {
  position: fixed;
  width: 100%;
  height: calc(100% + 80px);
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

/* Menu search */
.master-menu-search-icon {
  cursor: pointer;
  font-size: 20px;
}

.master-search-area {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 60px 0 80px;
  visibility: hidden;
  transform: translateY(-300px);
  transition: 0.5s all;
}

.visible-search {
  visibility: visible;
  transform: translateY(0);
}

#master-search {
  width: 100%;
  position: relative;
  opacity: 0;
  transition: 0.5s all;
}

.visible-search #master-search {
  opacity: 1;
  transition-delay: 0.3s;
}

.master-search-input {
  position: relative;
}

.master-search-input input[type="text"] {
  border: 0;
  padding: 0;
  font-size: 40px;
  height: 80px;
  font-weight: 700;
}

.master-search-input input[type="text"]::placeholder {
  opacity: 1;
  color: black;
}

.master-search-line {
  height: 2px;
  width: 0;
  background: black;
  transition: 0.8s all;
}

.visible-search .master-search-line {
  width: 100%;
  transition-delay: 0.5s;
}

.master-search-close {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  position: absolute;
  top: 16px;
  right: 0;
  cursor: pointer;
  z-index: 1;
}

.master-search-close i {
  position: relative;
  z-index: 2;
}

.master-search-close:before {
  content: "";
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}

.master-search-close:hover:before {
  transform: translate(-50%, -50%) scale(1.2);
}

.master-search-results:not(:empty) {
  padding-top: 40px;
}

/* Page header */
#page-header {
  background: var(--light-color);
  padding: 25px 0;
  margin-bottom: 60px;
}

.page-header-title {
  font-size: 28px;
  line-height: 1.3;
}

.breadcrumbs {
  margin-top: 5px;
}

.breadcrumbs__separator {
  margin: 0 7px;
}

/* Index */
.master-post {
  padding-bottom: 80px;
}

.master-post-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -25px -50px;
}

.master-post-thumbnail,
.master-post-details {
  padding: 0 25px 50px;
  width: 50%;
}

.master-post-thumbnail img {
  background: var(--light-color);
}

.master-post-thumbnail a {
  display: block;
  position: relative;
  overflow: hidden;
}

.master-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s all;
}

.master-post-thumbnail a:hover .master-post-overlay {
  opacity: 0.3;
}

.master-post-title {
  margin-bottom: 15px;
}

.master-post-title a {
  font-size: 34px;
  line-height: 1.3;
  display: block;
  font-weight: 600;
}

.master-post-excerpt {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #777;
  font-size: 20px;
}

.master-post-date {
  margin-bottom: 10px;
}

.master-post-button a {
  display: table;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

@media (max-width: 1065px) {
  .master-post-title a {
    font-size: 34px;
  }
}

@media (max-width: 930px) {
  .master-post-excerpt {
    display: none;
  }
}

@media (max-width: 767px) {
  .master-post-inner {
    margin: 0 -15px -30px;
  }

  .master-post-thumbnail,
  .master-post-details {
    padding: 0 15px 30px;
  }

  .master-post-title a {
    font-size: 24px;
  }
}

@media (max-width: 500px) {

  .master-post-thumbnail,
  .master-post-details {
    width: 100%;
  }

  .master-post-excerpt {
    display: block;
    font-size: 17px;
  }
}



/* Scroll to top */
#site-scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 998;
  cursor: pointer;
  display: none;
  width: var(--form-height);
  height: var(--form-height);
  line-height: var(--form-height);
  background: var(--main-color);
  color: white;
  font-size: 24px;
  text-align: center;
  -webkit-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

#site-scroll-top:hover {
  background: var(--second-color);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media (max-width: 767px) {
  #site-scroll-top {
    right: 20px;
    bottom: 20px;
  }
}

/* Social networks */
.social-networks {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3px;
}

.social-network-item {
  padding: 0 3px;
}

.colorfull-social .social-networks a {
  color: white;
  width: var(--form-height);
  height: var(--form-height);
  line-height: var(--form-height);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.colorfull-social .facebook-social a {
  background: #6f6fd2;
}

.colorfull-social .instagram-social a {
  background: #bb8181;
}

.colorfull-social .youtube-social a {
  background: #e00000;
}

.colorfull-social .whatsapp-social a {
  background: #00da00;
}

.colorfull-social .twitter-social a {
  background: #55adee;
}

.colorfull-social .telegram-social a {
  background: #0088cc;
}

.colorfull-social .linkedin-social a {
  background: #0077b5;
}

.colorfull-social .tiktok-social a {
  background: #333333;
}

.colorfull-social .social-networks a:hover {
  background: #555;
}

.social-network-item-wl {
  width: 100%;
  margin-bottom: 7px;
}

.social-network-item-wl a {
  display: flex;
  align-items: center;
}

.social-network-label {
  padding-left: 12px;
}

/* Search results */
.search-title a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  color: black;
  font-size: 20px;
}

.search-title:last-child a {
  border-bottom: 0;
}

.search-title a:hover {
  color: var(--main-color);
}

/* Social share */
.master-social-share-area {
  margin-bottom: 40px;
}

.master-title {
  border-bottom: 1px solid var(--light-color);
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.master-social-share-area ul {
  padding: 0;
  margin: 0 -5px;
  list-style: none;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.master-social-share-area.share-with-label ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.master-social-share-area:not(.share-with-label) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.master-social-share-area:not(.share-with-label) .master-title {
  border-bottom: 0;
  margin: 0;
  padding: 0 15px 0 0;
}

.master-social-share-area.share-with-label li {
  width: 20%;
}

.master-social-share-area li {
  padding: 0 5px;
  text-align: center;
  -webkit-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

.master-social-share-area a {
  display: block;
}

.master-social-share-area:not(.simple-share-area) a {
  color: white;
}

.master-social-share-area.simple-share-area a {
  color: black;
}

.master-social-share-area.share-with-label a {
  padding: 5px 15px;
}

.master-social-share-area:not(.share-with-label) a {
  width: 30px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.share-with-label li .master-label {
  padding-left: 10px;
}

.simple-share-area.share-with-label a {
  border: 1px solid #eee;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a {
  background: #00aced;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
  background: #0093cb;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a {
  background: #3b5998;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
  background: #324b80;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a {
  background: #0088cc;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
  background: #3e659c;
}

.master-social-share-area:not(.simple-share-area) .email-share a {
  background: #e40303;
}

.master-social-share-area:not(.simple-share-area) .email-share a:hover {
  background: #ca0303;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
  background: #30d244;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
  background: #25b938;
}

@media (min-width: 960px) {
  .whatsapp-mobile-share {
    display: none;
  }
}

@media (max-width: 959px) {
  .whatsapp-desktop-share {
    display: none;
  }
}

@media (min-width: 960px) and (max-width: 1050px) {
  .master-label {
    display: none;
  }

  .master-social-share-area li .fa {
    margin-right: 0;
  }
}

@media (min-width: 270px) and (max-width: 767px) {
  .master-label {
    display: none;
  }

  .master-social-share-area li .fa {
    margin-right: 0;
  }
}

@media (max-width: 269px) {
  .master-social-share-area li {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Post navigation */
#post-navigation-wrap {
  background: var(--light-color);
  padding: 20px 0;
}

.post-navigation {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}

.next-previous-post {
  padding: 0 15px;
}

.no-prev-es-post {
  display: table;
  margin-left: auto;
}

.post-navigation a {
  color: black;
  position: relative;
  width: 50%;
}

.next-previous-heading {
  display: table;
  background-color: var(--main-color);
  color: white;
  padding: 3px 20px;
  margin-bottom: 10px;
  -webkit-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

.post-navigation a:hover .next-previous-heading {
  background: var(--second-color);
}

.next-post .next-previous-heading {
  margin-left: auto;
  margin-right: 0;
}

.next-post {
  text-align: right;
  margin-left: auto;
}

.prev-post-no {
  display: table;
  margin-right: 0;
  margin-left: auto;
}

.next-previous-post>div {
  position: relative;
}

.next-previous-post>div:before {
  position: absolute;
  top: 0;
  font-family: "Font Awesome 6 Free";
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: white;
  text-align: center;
  border-radius: 3px;
  background: var(--main-color);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
}

.prev-post>div {
  padding-left: 40px;
}

.prev-post>div:before {
  content: "\f104";
  margin-right: 15px;
  left: 0;
}

.next-post>div {
  padding-right: 40px;
}

.next-post>div:before {
  content: "\f105";
  margin-left: 15px;
  right: 0;
}

@media (max-width: 767px) {
  .post-navigation a {
    width: 100%;
  }
}

/* Wordpress default gallery css */
.ms-gallery.ms-gallery-type-false {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.ms-gallery-type-true {
  column-gap: 0;
  margin: 0 -10px;
}

.ms-gallery-type-false .ms-image-9 {
  width: calc(100% / 9);
}

.ms-gallery-type-false .ms-image-8 {
  width: calc(100% / 8);
}

.ms-gallery-type-false .ms-image-7 {
  width: calc(100% / 7);
}

.ms-gallery-type-false .ms-image-6 {
  width: calc(100% / 6);
}

.ms-gallery-type-false .ms-image-5 {
  width: 20%;
}

.ms-gallery-type-false .ms-image-4 {
  width: 25%;
}

.ms-gallery-type-false .ms-image-3 {
  width: 33.3%;
}

.ms-gallery-type-false .ms-image-2 {
  width: 50%;
}

.ms-gallery-type-false .ms-image-1 {
  width: 100%;
}

.ms-image {
  padding: 0 10px 20px;
  margin: 0;
}

.ms-image a {
  display: block;
}

.ms-image img {
  background: #eee;
}

figure.image {
  margin: 0 0 20px;
}

.image figcaption {
  font-style: italic;
  margin-top: 5px;
}

.ms-gallery-tools {
  display: none;
}

.ms-gallery-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: red;
  border-radius: 50%;
}

.ms-gallery-pagination.swiper-pagination {
  margin: 15px -5px 30px;
}

.ms-gallery-nav:before {
  font-family: Feather;
}

.ms-gallery-nav-prev:before {
  content: "\e910";
}

.ms-gallery-nav-next:before {
  content: "\e912";
}

@media (max-width: 340px) {
  .ms-gallery {
    margin: 0 -7.5px;
  }

  .ms-gallery-type-true {
    column-count: 1 !important;
  }

  .ms-image {
    width: 100% !important;
    padding: 0 7.5px 15px;
  }
}

@media (min-width: 341px) and (max-width: 767px) {
  .ms-gallery {
    margin: 0 -7.5px;
  }

  .ms-gallery-type-true {
    column-count: 2 !important;
  }

  .ms-image {
    width: 50% !important;
    padding: 0 7.5px 15px;
  }
}

@media (min-width: 767px) and (max-width: 959px) {
  .ms-gallery-type-true {
    column-count: 3 !important;
  }

  .ms-image {
    width: 33.3% !important;
  }
}

/* Sidebar */
.master-widget:not(:last-child) {
  margin-bottom: 40px;
}

.master-sidebar-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

/* Sidebar types */
.sidebar-type-item {
  margin-bottom: 10px;
}

.sidebar-type-item a {
  color: black;
  height: 80px;
  display: flex;
  align-items: center;
  background: #eee;
  border-radius: var(--border-radius);
  padding: 0 50px 0 20px;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  transition: 0.3s all;
}

.sidebar-type-item a:hover {
  transform: translateX(5px);
}

.active-type-item a {
  background: var(--main-color);
  color: white;
  pointer-events: none;
}

.sidebar-type-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* Sidebar posts */
.sidebar-post-item {
  margin-bottom: 25px;
}

.sidebar-post-item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: black;
  line-height: 1.4;
}

.sidebar-post-item a:hover {
  color: var(--main-color);
}

.sidebar-post-thumbnail {
  width: 100px;
}

.sidebar-post-thumbnail img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.sidebar-post-details {
  width: calc(100% - 120px);
}

.sidebar-post-title {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Sidebar archives */
.widget-archives {
  margin-top: 7px;
}

.widget-archives a {
  display: block;
  border-bottom: 1px solid var(--light-color);
  padding-bottom: 7px;
  padding-top: 7px;
  color: black;
}

.widget-archives a:hover {
  color: var(--main-color);
}

.widget-archives a:before {
  content: "\f114";
  font-family: FontAwesome;
  margin-right: 10px;
  color: black;
}

.sidebar-search {
  position: relative;
}

.sidebar-search input {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  color: black;
  padding: 0 15px;
  font-size: 15px;
}

.sidebar-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--main-color);
  color: white;
}

/* Single post */
.single-post-title {
  margin-bottom: 30px;
}

.single-post-title h1 {
  font-size: 32px;
}

.single-post-thumbnail {
  margin-bottom: 30px;
}

.single-post-thumbnail img {
  background: var(--light-color);
}

.single-post-meta {
  margin-top: 15px;
}

.single-post-date,
.single-post-meta a {
  color: #666;
}

.single-post-date,
.single-post-category,
.single-post-author {
  display: inline-block;
  vertical-align: middle;
  padding-right: 30px;
}

.single-post-date:before {
  content: "\f073";
  font-family: "FontAwesome";
  margin-right: 10px;
  color: black;
}

.single-post-category:before {
  content: "\f044";
  font-family: "FontAwesome";
  margin-right: 5px;
}

.single-post-author:before {
  content: "\f2be";
  font-family: "FontAwesome";
  margin-right: 5px;
}

.single-post-container-main {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.single-content {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.single-content img {
  width: auto;
  max-height: 350px;
}

.single-content .ms-gallery img {
  width: 100% !important;
  max-height: inherit !important;
  height: 100% !important;
}

.aligncenter {
  margin: 0 auto;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
  text-align: left;
  margin-bottom: 10px;
}

.single-content ul,
.single-content ol {
  text-align: left;
}

.master-embed {
  position: relative;
  padding-top: 56%;
}

.master-embed iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.master-table {
  overflow-x: auto;
  max-width: 100%;
}

/* Designed List */
.designed-list ul {
  list-style: none;
  margin-left: 20px;
}

.designed-list ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.designed-list ul li:before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 2px;
  left: 0;
  font-weight: 900;
  color: var(--main-color);
  font-size: 13px;
}

/* Single Post Author */
.single-author-area {
  margin-top: 40px;
}

.single-author {
  display: table;
  width: 100%;
}

.single-author-block {
  display: table-cell;
  vertical-align: top;
}

.single-author-first {
  width: 150px;
}

.single-author-second {
  width: calc(100% - 150px);
  padding-left: 25px;
  padding-top: 5px;
}

.single-author img {
  height: 150px;
  width: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-author-name {
  font-size: 20px;
}

.single-author-profession {
  font-size: 17px;
  margin-bottom: 10px;
}

.single-author-description {
  margin-bottom: 10px;
}

.no-image-author:before {
  content: "\f2be";
  font-family: FontAwesome;
  width: 150px;
  height: 150px;
  background: var(--light-color);
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 76px;
  color: #999;
}

@media (max-width: 550px) {
  .single-author-block {
    display: block;
  }

  .single-author-second {
    width: 100%;
    padding-left: 0px;
    padding-top: 15px;
  }
}

/* Youtube */
.youtube-videos {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.youtube-video {
  padding: 0 15px 30px;
  width: 25%;
}

.youtube-image-area {
  position: relative;
}

.youtube-image {
  position: absolute;
  width: 100%;
  top: 0;
  padding-top: 56.26%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--light-color);
}

.youtube-icon-area {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.youtube-icon-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
}

.youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: rgba(22, 22, 22, 0.65);
  border-radius: 50%;
  font-size: 24px;
  opacity: 0;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.youtube-image-area:hover .youtube-icon {
  opacity: 1;
  width: 75px;
  height: 75px;
  line-height: 75px;
}

.youtube-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.youtube-image-area:hover .youtube-play-icon {
  opacity: 1;
}

.play-video:before {
  content: "\f04b";
  font-family: FontAwesome;
  color: white;
  font-size: 18px;
}

.youtube-iframe {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  z-index: 2;
}

.youtube-video iframe {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.youtube-video h3 {
  margin: 0;
  font-size: 15px;
}

.youtube-heading a {
  display: block;
  margin-top: 10px;
  line-height: 1.35;
  color: black;
  font-weight: 600;
  font-family: Arial, Helvetica, sans-serif;
}

.youtube-video img,
.youtube-video span {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.youtube-video span {
  height: 1.5em;
  text-align: center;
  font: 48px/1.5 sans-serif;
  color: white;
  text-shadow: 0 0 0.5em black;
}

.youtube-videos .next-videos {
  padding: 0 15px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.loading-area {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 16px;
  color: white;
  text-shadow: 0 0 5px black;
  opacity: 0;
}

@media (max-width: 500px) {
  .youtube-video {
    width: 100%;
  }
}

@media (min-width: 501px) and (max-width: 850px) {
  .youtube-video {
    width: 50%;
  }
}

@media (min-width: 851px) and (max-width: 1100px) {
  .youtube-video {
    width: 33.3%;
  }
}

@media (max-width: 959px) {

  .youtube-icon,
  .youtube-play-icon {
    opacity: 1;
  }

  .play-video:before {
    font-size: 22px;
  }
}

/* Instagram */
.instagram-images {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.instagram-image {
  width: 25%;
  padding: 0 10px 20px;
}

.instagram-ratio {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 100%;
}

.instagram-image-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  overflow: hidden;
  background-color: var(--light-color);
}

.instagram-image-link:hover .instagram-image-details {
  opacity: 1;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.instagram-image-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
}

.instagram-image-link:hover:before {
  opacity: 1;
}

.instagram-image-detallar {
  color: white;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 600;
  opacity: 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.instagram-icon {
  margin: 0 3px;
}

.instagram-icon:before {
  font-family: "FontAwesome";
  margin-right: 7px;
}

.next-images {
  width: 100%;
  padding: 0 15px;
}

.next-image-button {
  display: table;
  margin: 0 auto;
  background: var(--main-color);
  color: white;
  padding: 10px 25px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.15s all;
  -o-transition: 0.15s all;
  transition: 0.15s all;
}

.next-image-button:hover {
  background: var(--second-color);
}

.next-image-button::-moz-selection {
  background: transparent;
}

.next-image-button::selection {
  background: transparent;
}

.instagram-nav-button {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 1;
  font-size: 36px;
  text-shadow: 0 0 15px black;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.instagram-button-prev {
  left: 0;
}

.instagram-button-next {
  right: 0;
}

.instagram-ratio-carousel {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.instagram-carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.instagram-carousel,
.instagram-carousel .swiper-wrapper,
.instagram-carousel .swipet-slide {
  height: 100%;
}

.instagram-icon-area {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.instagram-icon-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.instagram-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background: var(--main-color);
  border-radius: 50%;
  font-size: 24px;
  opacity: 0;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.instagram-video:hover .instagram-icon {
  opacity: 1;
  width: 75px;
  height: 75px;
  line-height: 75px;
}

@media (min-width: 601px) and (max-width: 999px) {
  .instagram-image {
    width: 33.3%;
  }
}

@media (max-width: 600px) {
  .instagram-image {
    width: 50%;
  }
}

/* FAQ */
.master-accordion-title {
  color: black;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 15px 15px 30px;
  cursor: pointer;
  border-bottom: 1px solid var(--light-color);
  position: relative;
  line-height: 1.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.master-accordion-title:before {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 15px;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 17px;
  color: var(--main-color);
}

.master-accordion-title.active:before {
  content: "\f068";
}

.master-accordion-content {
  color: black;
  margin-top: 15px;
  display: none;
}

/* Default input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--font-family);
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  height: var(--form-height);
  line-height: var(--form-height);
  padding: 0;
  font-size: 15px;
  background: transparent;
  color: white;
}

textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--font-family);
  border: 0;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  padding: 10px 0;
  color: white;
  background: transparent;
  font-size: 15px;
  resize: vertical;
  min-height: 90px;
}

input[type="radio"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  position: absolute;
  cursor: pointer;
  background: white;
  top: 0;
  left: 0;
}

input[type="radio"]:checked {
  border-color: var(--main-color);
}

input[type="radio"]:checked:before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type="radio"]+label {
  user-select: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding-left: 30px;
}

input[type="checkbox"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  background: white;
  top: 2px;
  left: 0;
  margin: 0;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background: var(--main-color);
  border-color: var(--main-color);
  color: white;
}

input[type="checkbox"]:checked:before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
}

input[type="checkbox"]+label {
  user-select: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding-left: 30px;
  margin-bottom: 0;
}

input[type="file"]::file-selector-button {
  background: var(--light-color);
  border: 1px solid var(--border-color);
  padding: 5px 15px;
}

sup,
sub {
  font-size: 12px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

select {
  -webkit-appearance: none;
  background: transparent;
  background-image: url(/uploads/extra/chevron-down.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 5px);
  background-position-y: 15px;
  background-size: 18px;
  cursor: pointer;
  padding-right: 30px;
}

/* Form */
.grecaptcha-badge {
  display: none;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -15px;
}

.form-group .form-element {
  padding: 0 15px 15px;
}

.form-100 {
  width: 100%;
}

.form-85 {
  width: 85%;
}

.form-50 {
  width: 50%;
}

.form-33 {
  width: 33.3%;
}

.form-25 {
  width: 25%;
}

.form-15 {
  width: 15%;
}

.form-element {
  padding-bottom: 15px;
  position: relative;
}

.form-element label {
  display: block;
  width: 100%;
  margin-bottom: 3px;
}

.form-simple-file label {
  border: 1px solid #ddd;
  padding: 10px 15px;
  cursor: pointer;
}

.fsf-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fsf-button {
  border: 1px solid #ddd;
  background: #eee;
  padding: 5px 15px;
  line-height: 1.3;
  margin-right: 10px;
}

.faf-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.faf-items label {
  width: auto;
}

.faf-item {
  padding: 0 5px;
}

.faf-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.faf-item i {
  width: 80px;
  height: 80px;
  border: 2px dashed #ddd;
  line-height: 80px;
  text-align: center;
  font-size: 22px;
  background: #f5f5f5;
  cursor: pointer;
}

.form-result:not(:empty) {
  margin-top: 20px;
}

.form-simple-file input,
.form-advanced-file input {
  display: none;
}

.form-choices {
  display: flex;
  flex-wrap: wrap;
}

.form-choices .form-choice {
  padding-right: 30px;
}

.form-choice {
  position: relative;
}

.alert {
  padding: 10px 15px 10px 55px;
  text-align: left;
  min-height: 42px;
  position: relative;
  border-radius: var(--border-radius);
}

.alert-danger {
  color: #8d423b;
  background-color: #ffe2df;
  border-color: #ffd7d3;
}

.alert-success {
  color: #1d6944;
  background-color: #d4ffd3;
  border-color: #c3ecd8;
}

.alert-info {
  color: #281b80;
  background-color: #e0e0ff;
  border-color: #e0e0ff;
}

.alert:before {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  left: 5px;
  height: 35px;
  width: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  border-radius: var(--border-radius);
  transform: translateY(-50%);
}

.alert-danger:before {
  content: "\f071";
  background: #da6f64;
}

.alert-success:before {
  content: "\f058";
  background: #48c346;
}

.alert-info:before {
  content: "\f05a";
  background: #464fc3;
}

@media (max-width: 650px) {

  .form-50,
  .form-33,
  .form-25 {
    width: 100%;
  }
}

/* Progress bar */
.progress {
  background: #eee;
  border-radius: 5px;
  display: none;
  position: relative;
  margin-bottom: 20px;
  margin-top: 30px;
}

.progress-bar {
  height: 5px;
  line-height: 5px;
  background: red;
  font-weight: 600;
  color: white;
  padding: 0 15px;
  width: 0%;
  position: relative;
  max-width: 100%;
}

.progress-bar-text-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: -25px;
  font-weight: 600;
  width: 100%;
}

/* ACF Map */
.acf-map-area {
  position: relative;
}

.acf-map {
  height: 450px;
  background: #eee;
  position: relative;
}

.acf-iframe-map iframe {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  z-index: 1;
}

.map-loading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  background: #ddd;
}

.map-loading-text {
  padding-top: 40px;
  font-weight: 600;
  font-size: 18px;
}

/* Comments */
.default-comment-form-area {
  display: none;
}

.comment-reply-area {
  margin-bottom: 20px;
}

#comments {
  padding-bottom: 20px;
}

.comment-count-heading {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.comment-list {
  list-style: none;
  margin: 0;
}

.comment {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
}

.comment-author,
.comment-block {
  display: table-cell;
  vertical-align: top;
}

.comment-author {
  width: 70px;
  padding-right: 10px;
}

.comment-author .fa-solid {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #ddd;
  background: #f5f5f5;
  font-size: 30px;
  color: #999;
}

.comment-author img {
  border: 1px solid #ddd;
  padding: 3px;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment-block {
  border: 1px solid #ddd;
  padding: 10px 15px;
  width: calc(100% - 70px);
}

.comment-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}

.date.float-right {
  color: #a7a7a7;
}

.comment-rating {
  display: inline-flex;
  color: orange;
  font-size: 13px;
}

.comment-text {
  margin-top: 5px;
}

.comment-text p {
  margin-bottom: 5px;
}

.comment-reply {
  text-decoration: underline;
  color: var(--main-color);
  cursor: pointer;
  display: inline-block;
}

.comments .children {
  margin: 0 0 0 20px;
  list-style: none;
}

.comments .children>.comment {
  margin-bottom: 0;
}

.byuser .comment-block {
  background: #f5f5f5;
}

.comment-reply-heading-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
}

.comment-reply-heading,
.comment-reply-cancel {
  padding: 5px 0;
}

.comment-reply-cancel {
  text-decoration: underline;
  color: red;
  cursor: pointer;
  font-size: 14px;
}

.logged-user-comment-author {
  margin-bottom: 10px;
}

.comment-name {
  padding-right: 5px;
}

.default-comment-form {
  width: 100%;
  margin-top: 15px;
}

@-webkit-keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .comment-author {
    width: 40px;
    padding-right: 5px;
  }

  .comment-author img {
    width: 35px;
    height: 35px;
  }
}

/* Rating */
.comment-ratings {
  display: flex;
  align-items: center;
  margin: 0 -2px;
}

.comment-ratings input {
  display: none;
}

.comment-rating label {
  padding: 0 2px !important;
}

.comment-rating label:before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  color: var(--light-color);
  font-size: 20px;
}

.active-comment-rating label:before {
  color: orange;
}

/* Gallery */
.master-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -20px;
}

.master-image {
  width: 25%;
  padding: 0 10px 20px;
}

.master-image a {
  display: block;
  overflow: hidden;
  position: relative;
}

.master-image img {
  background: var(--light-color);
}

.master-image-overlay {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s all;
}

.master-image a:hover .master-image-overlay {
  opacity: 0.3;
}

@media (max-width: 350px) {
  .master-image {
    width: 100%;
  }
}

@media (min-width: 351px) and (max-width: 767px) {
  .master-gallery {
    margin: 0 -5px;
  }

  .master-image {
    width: 50%;
    padding: 0 5px 10px;
  }
}

@media (min-width: 768px) and (max-width: 999px) {
  .master-image {
    width: 33.3%;
  }
}

/* Table */
table {
  width: 100%;
  line-height: 1.5;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}

th,
td {
  border: 1px solid #ddd;
  padding: 5px 15px;
}

tr:nth-child(odd) {
  background: #f5f5f5;
}

/* Toolbar */
.toolbar-area {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000000;
}

.toolbar-area a {
  position: absolute;
  color: white;
  border-radius: 50%;
  left: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  display: block;
}

.toolbar-phone {
  background: #6565ff;
  bottom: 0;
}

.toolbar-whatsapp {
  background: #45c71b;
  bottom: 55px;
}

@media (min-width: 768px) {
  .toolbar-area {
    display: none;
  }
}

/* Loading */
.loading {
  color: transparent !important;
  position: relative;
  pointer-events: none;
}

.loading:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: opacity 0s ease;
  -webkit-transition: opacity 0s ease;
  opacity: 1;
  -webkit-animation: loading 450ms infinite linear;
  animation: loading 450ms infinite linear;
  transition: opacity 0.25s ease;
  -webkit-transition: opacity 0.25s ease;
}

.loading:before {
  visibility: hidden;
}

.small-loading-icon:after {
  width: 15px;
  height: 15px;
  margin-left: -7.5px;
  margin-top: -7.5px;
}

.big-loading-icon:after {
  width: 45px;
  height: 45px;
  margin-left: -22.5px;
  margin-top: -22.5px;
}

.light-loading-icon:after {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left-color: #fff;
}

.dark-loading-icon:after {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-left-color: #000;
}

@-webkit-keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* QR code */
.qr-code img {
  width: 150px;
}

/* Swiper js */
.master-slider {
  height: 0;
  overflow: hidden;
}

.master-slider.swiper-container-initialized {
  height: auto;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide img {
  background: var(--light-color);
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

/* Preloader */
:root {
  /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Hide admin bar */
.hide-admin-bar,
.show-admin-bar {
  position: fixed;
  top: 32px;
  right: 0;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
  z-index: 100000;
}

.show-admin-bar {
  top: 0;
}

/* Pagination */
.pagination {
  margin: 30px 0 0;
  list-style: none;
}

.page-item {
  display: inline-block;
}

.page-item a {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: transparent;
  margin-right: 5px;
  color: white;
  font-weight: 600;
  border-radius: 50%;
}

.page-item.active a,
.page-item a:hover {
  background: var(--main-color);
  color: white;
}

/* Fancybox */
body.compensate-for-scrollbar {
  overflow: unset !important;
}

/* Mobile sticky phone */
.mobile-sticky-area {
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
}

.mobile-sticky-elements a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  margin-top: 7px;
  font-size: 18px;
}

.mobile-sticky-phone {
  -webkit-box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
  box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
  background: #7d8cff;
}

.mobile-sticky-whatsapp {
  -webkit-box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
  box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
  background: #25ce25;
}

@media (min-width: 801px) {
  .mobile-sticky-area {
    display: none;
  }
}

/* MailChimp */
#mailchimp {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

#mailchimp>div {
  padding: 0 5px;
}

.mailchimp-element input {
  border: 1px solid #ddd;
  height: 40px;
  padding: 0 10px;
}

.mailchimp-button button {
  background: red;
  height: 40px;
  padding: 0 30px;
  font-size: 17px;
  color: white;
  text-transform: uppercase;
}

.mailchimp-result:not(:empty) {
  display: table;
  margin: 10px auto 0;
}

.mailchimp-success {
  position: relative;
  padding-left: 35px;
  font-weight: 600;
}

.mailchimp-success:before {
  content: "\f058";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
}

/* Notify template */
.notify-block-area {
  text-align: center;
  padding: 180px 0;
}

.notify-block-icon-area {
  width: 150px;
  height: 150px;
  background: #00a900;
  display: flex;
  align-items: center;
  margin: 0 auto 30px;
  justify-content: center;
  border-radius: 30px;
  color: white;
  font-size: 100px;
}

.notify-fe-fe-check {
  background: #00a900;
}

.notify-fe-fe-x {
  background: #ff0000;
}

.notify-block-area h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.notify-block-description {
  color: #666;
  margin: 0 auto 25px;
  width: 600px;
  max-width: 100%;
}

/* Callout */
.callout-form-element {
  margin-bottom: 10px;
}

.callout-form-element input {
  width: 100%;
  border: 1px solid #ddd;
  height: var(--form-height);
  font-size: 15px;
  padding: 0 15px;
}

.success-message {
  text-align: center;
  color: #ccc;
  display: none;
}

.success-message:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  display: table;
  margin: 0 auto 15px;
  font-size: 24px;
  color: yellow;
}

/* Callout modal */
#callout-modal-form {
  width: 500px;
  display: none;
}

/* Master icon box */
.master-icon-box-area {
  margin-bottom: 15px;
}

.master-icon-box {
  display: flex;
  flex-wrap: wrap;
}

.master-icon {
  width: 50px;
}

.master-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.master-icon-details {
  width: calc(100% - 50px);
  padding-left: 15px;
}

/* Master buttons */
.button {
  height: var(--form-height);
  cursor: pointer;
  padding: 0 30px;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 30px;
  line-height: 1.2;
  user-select: none;
  transition: 0.15s all;
}

.simple-button {
  height: 35px;
  cursor: pointer;
  padding: 0 15px;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: var(--border-radius);
  line-height: 1.2;
  user-select: none;
  transition: 0.15s all;
}

.primary-button {
  background: var(--main-color);
  color: white;
  border: 1px solid var(--main-color);
}

.primary-button:hover {
  background: #222;
  color: white;
  border: 1px solid #222;
}

.outline-button {
  background: #fff;
  color: black;
  border: 1px solid var(--main-color);
}

.outline-button:hover {
  background: var(--main-color);
  color: white;
  border: 1px solid var(--main-color);
}

.colored-button {
  background: var(--second-color);
  color: white;
  border: 1px solid var(--second-color);
}

.colored-button:hover {
  background: #f75848;
  border: 1px solid #f75848;
}

.wide-button {
  width: 100%;
}

.icon-right-button:after {
  content: "\e912";
  font-family: Feather;
  margin-left: 10px;
  margin-right: -10px;
  font-size: 14px;
}

.icon-left-button:before {
  content: "\e912";
  font-family: Feather;
  margin-left: -10px;
  margin-right: 10px;
  font-size: 14px;
}

/* Animations */
.animate {
  transition: 1.2s all;
}

.scale-animation {
  transform: scale(0.5);
  opacity: 0;
}

.fade-animation {
  opacity: 0;
}

.left-to-right-animation {
  transform: translateX(-100px);
  opacity: 0;
}

.right-to-left-animation {
  transform: translateX(100px);
  opacity: 0;
}

.top-to-bottom-animation {
  transform: translateY(-100px);
  opacity: 0;
}

.bottom-to-top-animation {
  transform: translateY(100px);
  opacity: 0;
}

.animated {
  opacity: 1;
  transform: none;
}

/* Fixed header */
#site-header.fixed-site-header {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  animation-name: sticky;
  animation-duration: 0.5s;
  box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}

.active-admin-bar #site-header.fixed-site-header {
  margin-top: 35px;
}

.fixed-site-header .master-header-area {
  padding: 10px 0;
}

.fixed-site-header #site-logo img {
  height: 50px;
}

@keyframes sticky {
  from {
    transform: translateY(-80px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  #site-logo img {
    width: 170px !important;
  }
}



/* Topbar */
#topbar-wrap {
  border-bottom: 1px solid #ddd;
}

.topbar-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 -15px;
}

.topbar-block {
  padding: 5px 15px;
}

.topbar-elements {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 -15px;
}

.topbar-element {
  padding: 5px 15px;
}

/* Master heading */
.master-heading-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -15px -30px;
}

.master-heading-block {
  padding: 0 15px 30px;
}

.mhb-first {
  width: 66.6%;
}

.mhb-second {
  width: 33.3%;
}

.master-heading-area {
  margin-bottom: 40px;
}

.master-heading-blocks .master-heading-area {
  margin-bottom: 0;
}

.master-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.master-description {
  margin-top: 5px;
  width: 600px;
  max-width: 100%;
}

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

.master-center-heading .master-description {
  margin: 5px auto 0;
}

.master-light-heading {
  color: white;
}

@media (max-width: 767px) {
  .master-heading-block {
    width: 100%;
  }
}

/* Whatsapp */
.whatsapp-toolbar-area {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-icon-box {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-toolbar-text {
  background: white;
  color: black;
  padding: 3px 15px;
  border-radius: 5px;
  margin-right: 15px;
  box-shadow: 0 0 10px rgb(0 0 0 / 28%);
  visibility: hidden;
  transition: 0.3s all;
}

.whatsapp-icon-box:hover .whatsapp-toolbar-text {
  visibility: visible;
}

.whatsapp-toolbar-icon {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #21ad21;
  border-radius: 50%;
  font-size: 22px;
}

.ring {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  z-index: -1;
  animation-delay: 1s;
}

.ring-1 {
  background: rgb(33 173 33 / 40%);
  animation: wave1 1.5s ease-out;
  animation-iteration-count: infinite;
}

.ring-2 {
  background: rgb(33 173 33 / 20%);
  animation: wave2 1.5s ease-out;
  animation-iteration-count: infinite;
}

@keyframes wave1 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 2;
  }

  100% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }
}

@keyframes wave2 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    opacity: 2;
  }

  100% {
    transform: scale(2.3, 2.3);
    opacity: 0;
  }
}

/* Contact toolbar */
.contact-toolbar {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100000;
}

.contact-toolbar-contents {
  background: white;
  min-width: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px;
  position: relative;
  box-shadow: 0 0 10px rgb(101 101 101 / 21%);
}

.contact-toolbar-contents:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  top: 100%;
  right: 25px;
}

.cs-content a {
  border-radius: 5px;
  padding: 3px 10px;
  display: block;
  color: black;
}

.cs-content a:hover {
  background: #f5f5f5;
}

.cs-content i {
  margin-right: 10px;
}

.contact-toolbar-icons {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 50%;
  border: 10px solid var(--main-color);
  font-size: 20px;
  background: white;
  cursor: pointer;
  margin-left: auto;
}

.ct-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Language switcher */
.language-switcher.language-list-switcher {
  margin-top: 50px;
}

.language-list-switcher ul {
  margin: 0 -10px;
  list-style: none;
  display: flex;
}

.language-list-switcher li {
  padding: 0 10px;
}

.language-list-switcher .language-item a {
  display: flex;
  align-items: center;
}

.language-list-switcher .language-item img {
  width: 22px;
  height: 22px;
}

.language-list-switcher .language-label {
  padding-left: 0;
  font-weight: 600;
  color: #ffffff;
  display: none;
}

/* Skills bar */
.cool-skills-bar .cool-bar {
  height: 5px;
  background: #eee;
  border-radius: 0;
  margin-bottom: 15px;
  position: relative;
  transition: all 2s linear;
}

.cool-skills-bar .cool-bar-inner {
  width: 0;
  height: 5px;
  line-height: 5px;
  background: #db3a34;
  border-radius: 0;
  position: relative;
  overflow: visible !important;
}

.cool-skills-bar .cool-bar-percent {
  position: absolute;
  right: -25px;
  top: -22px;
  font-size: 12px;
  color: white;
  background-color: black;
  width: 50px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: 600;
}

.cool-skills-bar .cool-bar-percent:before {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}

/* Custom scroll */
.custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Canvas sidebar */
.canvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.7;
  display: block;
  z-index: 999;
  visibility: hidden;
}

.active-canvas-overlay {
  visibility: visible;
}

.canvas-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  background: white;
  height: 100%;
  transform: translate3d(100%, 0, 0);
  z-index: 10000;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.active-canvas-sidebar {
  transform: none;
}

.canvas-sidebar-header {
  border-bottom: 1px solid var(--light-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}

.csh-heading {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
}

.canvas-sidebar-body {
  padding: 40px 20px;
  overflow-y: auto;
  height: calc(100% - 97px);
}

.csh-close {
  font-size: 15px;
  cursor: pointer;
}

.csh-close:after {
  content: "\ea02";
  font-family: Feather;
  margin-left: 5px;
  transform: translateY(3px);
  display: inline-block;
  font-size: 18px;
}

/* Audio */
audio {
  height: 40px;
  width: 100%;
}

audio::-webkit-media-controls-enclosure {
  border-radius: 5px;
}

audio::-webkit-media-controls-panel {
  background: #ddd;
  height: 40px;
}

/* Swiper */
.relative-slider {
  position: relative;
}

.side-swiper-nav {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.ssn-prev {
  left: -30px;
}

.ssn-next {
  right: -30px;
}

.center-swiper-navigations {
  display: flex;
  justify-content: center;
  margin: 0 -5px;
}

.center-swiper-nav {
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
  cursor: pointer;
}

.swiper-pagination {
  display: flex;
  margin: 30px -5px 0;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  cursor: pointer;
  background: #ddd;
  transition: 0.3s all;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
  background: #444;
}

.dots-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.liner-swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  display: block;
}

.center-swiper-pagination {
  justify-content: center;
}

.swiper-slide .master-post {
  width: 100%;
  padding: 0;
}

/* Tabs */
.tabs {
  margin-top: 20px;
}

.tabs-heading {
  list-style: none;
  margin: 0;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.tabs-heading li {
  text-align: center;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding: 0 20px;
  line-height: 1.2;
  color: #888;
}

.tabs-heading .active-tab {
  color: black;
}

.tabs-heading .active-tab:before {
  content: "";
  height: 3px;
  width: 100%;
  background: var(--main-color);
  left: 0;
  bottom: -1.5px;
  position: absolute;
}

.tabs-body>div:not(:first-child) {
  display: none;
}

/* Contact */

/* Images */
.images-area {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.images {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
}

.image {
  width: 330px;
}

.image img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.image-text-area {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 600px;
  max-width: 90%;
  font-weight: 500;
  line-height: 1.3;
  font-size: 15px;
}

.image-logo img {
  filter: invert(1);
  width: 200px;
  margin: 0 auto 20px;
  aspect-ratio: unset !important;
}

.mobile-main-heading-area {
  padding: 150px 0 40px;
  text-align: center;
}

@media (min-width: 800px) {
  .mobile-main-heading-area {
    display: none;
  }
}

@media (max-width: 800px) {
  .images-area {
    min-height: auto;
  }

  .images {
    padding: 0;
  }

  .main-image {
    width: 100vw;
  }

  .image img {
    aspect-ratio: inherit;
  }

  .image-text-area {
    display: none;
  }
}

@media (max-width: 600px) {
  .main-image img {
    height: 350px;
  }
}



/* About */
.about-section {
  background: white;
  color: black;
}

.about-area {
  min-height: 600px;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  background: linear-gradient(var(--main-color), #f6f6f6);
}

.about-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -25px -50px;
}

.about-block {
  width: 50%;
  padding: 0 25px 50px;
}

.about-headings-area {
  display: flex;
  gap: 5px;
  user-select: none;
}

.about-default-heading,
.about-default-value {
  font-weight: 700;
  font-size: 24px;
}

.about-default-value {
  margin-bottom: 10px;
}

.about-content {
  font-size: 26px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: -.5px;
  display: none;
}

.about-dynamic-value {
  opacity: 0.2;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s all;
}

.about-dynamic-value:hover {
  opacity: 1;
}

.active-about-value {
  opacity: 1;
}

.about-progress-area {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 15px;
  position: absolute;
  bottom: 0;
  left: 20px;
  line-height: 1;
  align-items: center;
}

#progress-container {
  width: 22px;
  height: 25px;
  margin-top: 4px;
}

.active-about-content {
  display: block;
}

@media (max-width: 999px) {
  .about-area .main-container {
    height: 400px;
  }
}

@media (max-width: 850px) {
  .about-area .main-container {
    height: auto;
  }

  .about-block {
    width: 100%;
  }

  .about-content {
    font-size: 26px;
    letter-spacing: 0;
  }

  .about-progress-area {
    bottom: auto;
    left: auto;
    top: 0;
    right: 5%;
  }
}

@media (max-width: 600px) {
  .about-content {
    font-size: 18px;
    letter-spacing: 0;
  }
}


/* Page heading */
.page-heading-area {
  background: linear-gradient(#f6f6f6, var(--main-color));
}

.page-heading {
  color: var(--main-color);
  font-weight: 800;
  font-size: 18vw;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -16px;
  padding-bottom: 50px;
}

.site-language-az .page-heading {
  font-size: 14vw;
}

@media (max-width: 767px) {
  .page-heading {
    font-size: 64px;
    letter-spacing: -5px;
  }
}

/* Video */
.video {
  position: relative;
}

.video video {
  height: auto;
  width: 100vw;
  object-fit: cover;
  margin-bottom: -10px;
  will-change: transform;
}

.video-title {
  position: absolute;
  bottom: 40px;
  left: 20px;
  font-weight: 600;
  font-size: 100px;
  letter-spacing: -5px;
  color: white;
  opacity: 0.3;
  line-height: 0.9;
}

.video-sound-icons {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.video-sound-icon {
  width: 60px;
  height: 60px;
  background: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
}

.vsi-sound {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 850px) {
  .video-title {
    font-size: 60px;
  }
}

@media (max-width: 700px) {
  .video-title {
    font-size: 40px;
    letter-spacing: -2px;
    bottom: 20px;
  }
}

@media (max-width: 500px) {
  .video-title {
    font-size: 30px;
  }
}

/* Services */
.services-area {
  padding-bottom: 100px;
  position: relative;
}

.services-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(var(--main-color), #ffffff);
}

.services-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(transparent, #ffffff);
  z-index: 1;
}

.services-heading-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 45px;
  padding-bottom: 75px;
  line-height: 1.3;
}

.service-heading-block {
  width: 33.3%;
  display: flex;
  flex-wrap: wrap;
}

.service-heading {
  width: 100%;
}

.shb-3 {
  display: flex;
  justify-content: flex-end;
}

.services-heading {
  font-weight: 600;
  font-size: 8.6vw;
  letter-spacing: -8px;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: space-between;
}

.services {
  position: relative;
}

.service-block {
  position: relative;
  margin-bottom: -200px;
  overflow: hidden;
  transition: 0.5s all;
}

.active-service {
  transform: translateY(-130px);
}

.service-bg {
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.service {
  position: relative;
  padding: 30px 20px;
  text-align: center;
}

.service-desc {
  width: 500px;
  font-size: 15px;
  font-weight: 500;
  margin-left: auto;
  margin-right: 100px;
  max-width: 100%;
  padding: 100px 0;
  opacity: 0;
}

.active-service .service-desc {
  opacity: 1;
}

.service-title {
  font-weight: 800;
  font-size: 13vw;
  white-space: nowrap;
  letter-spacing: -3px;
  line-height: 0.5;
  padding-top: 15px;
  pointer-events: none;
  transition: 0.5s all;
}

.active-service .service-title {
  color: black !important;
}

.service-number {
  position: absolute;
  font-weight: 500;
  font-size: 15px;
  top: 10px;
}

.service-heading span:first-child {
  font-weight: 600;
}

.services-description {
  margin-left: auto;
  width: 300px;
  font-weight: 500;
  margin-right: 20%;
  margin-bottom: 70px;
  margin-top: 70px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

.service-button a {
  display: inline-block;
  position: relative;
}

.service-button a:before {
  content: "";
  height: 1px;
  width: 100%;
  background: black;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s all;
}

.service-button a:hover:before {
  width: 0;
}

.service-modal {
  display: none;
}

.service-mobile-button {
  display: table;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 500;
  margin-bottom: 5px;
}

.single-service-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.3;
}

@media (max-width: 999px) {
  .service-heading-block {
    width: 100%;
    justify-content: center;
  }

  .shb-3 {
    margin-top: 15px;
  }

  .services-description {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
    text-align: left;
  }
}

@media (max-width: 850px) {
  .services-heading {
    font-weight: 600;
    font-size: 44px;
    letter-spacing: -1.0px;
    white-space: inherit;
    line-height: 1.2;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }

  .services-heading span {
    padding: 0 2.5px;
  }

  .desc-services-area {
    display: none;
  }

  .service-slide {
    height: 300px;
    padding: 15px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-title {
    font-weight: 800;
    font-size: 25px;
    white-space: inherit;
    letter-spacing: -.5px;
    line-height: 1.2;
    padding-top: 0;
  }

  .services-area:before {
    background: white;
  }
}

@media (min-width: 850px) {
  .mobile-services-area {
    display: none;
  }
}



/* Projects */
.projetcs-area {
  padding: 250px 0;
}

.projects-circle-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: table;
  margin: 0 auto;
}

.projects-circle {
  border: 1px solid #555;
  border-radius: 50%;
  max-height: 78vw;
  max-width: 78vw;
  margin: 0 auto;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78vh;
  height: 78vh;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}

.project {
  width: 50%;
  padding: 0 25px;
  position: relative;
}

.project:nth-child(even) {
  transform: translateY(160px);
}

.project>a {
  display: block;
  position: relative;
  color: white;
  width: 75%;
  margin-left: auto;
}

.project-details {
  position: absolute;
  bottom: 40px;
  left: -25%;
}

.project-title h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 0 10px black;
}

.project-number {
  opacity: 0.3;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-thumbnail {
  aspect-ratio: 500 / 300;
}

.project-thumbnail .webgl-canvas {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center center;
}

.project-thumbnail img {
  filter: grayscale(1) contrast(0.6) saturate(0.9);
}

.project-overlay {
  background: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.55;
  transition: 0.3s all;
}

.project a:hover .project-overlay {
  opacity: 0;
}

.play-video-icon {
  height: 200px;
  display: flex;
  align-items: center;
  transition: 0.6s all;
  justify-content: center;
}

.play-video-icon>a {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 25px;
  background: linear-gradient(#ecbcb2, #7b4a3f);
  color: white;
  transition: 0.3s all;
}

.play-video-icon>a:hover {
  background: linear-gradient(transparent, transparent);
  border: 1px solid #555;
  color: white;
}

.hover-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  clip-path: circle(0px at 0px 0px);
  /* Start hidden */
  transition: clip-path 0.1s ease;
  pointer-events: none;
  /* Avoid blocking interactions */
}

.project-close-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: black;
  transition: 0.6s all;
}

.closed-projects .project-close-overlay {
  height: 100%;
}

.closed-projects .project-details {
  opacity: 0;
  transition-delay: 0.6s;
}

.closed-projects .play-video-icon {
  opacity: 0;
}

.project-video-title {
  font-weight: 600;
  font-size: 20px;
  padding-left: 20px;
  line-height: 1.2;
}

.project-video-title a {
  color: white;
}

@media (max-width: 1100px) {
  .projects {
    margin: 0;
  }

  .project {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .project-video-title {
    font-size: 16px;
  }

  .project-title h3 {
    font-size: 16px;
  }
}


/* Site overlay */
.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 10000;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s all;
}

.hide-site-overlay {
  opacity: 0;
  z-index: 0;
}

.site-overlay img {
  filter: invert(1);
  animation-name: hide;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  width: 300px;
  max-width: 100%;
}

@keyframes hide {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Cursor */
.cursor {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  transition: transform 0.1s ease-out, width 0.3s ease-out, height 0.3s ease-out;
}

.cursor.on-project {
  border-color: #fff;
  background-color: transparent;
}

.home .cursor {
  display: none;
}

.light-body .cursor {
  background: black !important;
}

.modal-cursor.cursor {
  background: black;
}

.active-nav .cursor {
  width: 40px !important;
  height: 40px !important;
  transition: 0.3s all;
}

.circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid rgb(255 255 255 / 31%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  z-index: -1;
  transition: 0.15s all;
}

.light-body .circle {
  border-color: #999;
}

a:hover .circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 959px) {
  .cursor {
    display: none;
  }
}



/* Single projects */
.single-projects .mobil-menu-line-icon span {
  background: black;
}

.light-body {
  background: white;
  color: black;
}

.single-project-header-area {
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.single-project-heading h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
  animation-name: up;
  animation-duration: 1s;
  transform: translateY(200px);
  animation-fill-mode: forwards;
}

.single-project-body {
  position: relative;
}

.single-project-bg {
  background: #f5f5f5;
  height: calc(100% + 300px);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.single-project-gallery-area {
  animation-name: up;
  animation-duration: 1s;
  transform: translateY(200px);
  animation-fill-mode: forwards;
}

.gallery-size-type-1 {
  width: 800px;
  margin: 0 auto;
}

.single-project-gallery {
  padding: 60px 0 100px;
}

.single-project-image:not(:last-child) {
  margin-bottom: 80px;
}

.single-project-pagination {
  position: fixed;
  bottom: 50px;
  left: 50px;
  font-weight: 600;
  font-size: 20px;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-project-content {
  padding-top: 100px;
  margin-bottom: 0;
}

@keyframes up {
  from {
    transform: translateY(200px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 800px) {
  .single-project-header-area {
    height: auto;
    padding: 160px 0 40px;
  }

  .single-project-heading h1 {
    font-size: 32px;
  }

  .single-project-gallery {
    padding: 60px 0 110px;
    margin-bottom: 0;
  }

  .single-project-image:not(:last-child) {
    margin-bottom: 40px;
  }
}


/* Home */
.js-target--springContainer.p-spring__container {
  display: none;
}

/* Order button */
.order-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.order-button a {
  color: white;
  font-weight: 600;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  padding: 0 30px;
  background: black;
}

.order-button a:hover {
  background: var(--main-color);
}

/* Contact */
.contact-area {
  padding: 150px 0;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -50px;
}

.contact-block {
  width: 50%;
  padding: 0 50px;
}

.contact-heading {
  font-weight: 600;
  font-size: 80px;
  line-height: 0.9;
  transform: translateX(-160px);
  margin-bottom: 50px;
}

.contact-description {
  font-size: 26px;
}

.contact-item a {
  color: white;
}

.contact-social .social-networks {
  margin: 30px 0;
  gap: 20px;
  padding-left: 100px;
  position: relative;
}

.contact-social .social-networks:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 1px;
  width: 70px;
  background: white;
}

.contact-social .social-network-item {
  padding: 0;
}

.contact-social .social-network-item a {
  color: white;
  font-size: 22px;
}

.contact-item {
  font-size: 17px;
}

.contact-item span {
  margin-right: 5px;
}

.contact-item:not(:last-child) {
  margin-bottom: 8px;
}

.contact-image {
  position: relative;
}

.contact-image img {
  aspect-ratio: 1/1.2;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  width: 100%;
  height: 100%;
  animation-name: contact;
  animation-duration: 1s;
  animation-delay: 2.3s;
  animation-fill-mode: forwards;
}

.contact-details {
  padding-right: 5vw;
}

.iti__country-list .iti__flag,
.iti__country-name {
  color: black;
}

@keyframes contact {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@media (max-width: 850px) {
  .contact-block {
    width: 100%;
  }

  .contact-1 {
    margin-bottom: 40px;
  }

  .contact-heading {
    transform: none;
  }

  .contact-image {
    width: 400px;
    max-width: 100%;
  }

  .contact-details {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .contact-area {
    padding: 150px 0 80px;
  }

  .contact-heading {
    font-size: 50px;
    margin-bottom: 35px;
  }

  .projects {
    flex-direction: column;
  }

  .projects .project {
    width: 100%;
    transform: none;
  }

  .projects .play-video-icon {
    height: 120px;
  }

  .projects .play-video-icon a {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .projects .project-link {
    width: 80%;
  }

  .projects .project-details {
    left: -20%;
  }
}

/* Callout */
.callout-blocks {
  padding: 60px 0 200px;
}

.callout-heading {
  text-align: center;
  font-size: 28px;
  line-height: 1.4;
  opacity: 0.5;
}

.callout-button {
  display: table;
  margin: 30px auto 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.callout-button a {
  color: white;
}

.contact-footer-text {
  text-align: center;
  padding-bottom: 30px;
  opacity: 0.5;
}

.callout-modal-heading {
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.8px;
}

.callout-modal-description {
  text-align: center;
  color: black;
  opacity: 0.7;
  margin-bottom: 45px;
}

.discuss__svg {
  position: absolute;
  width: 100%;
}

.discuss__svg svg {
  width: 100%;
}

#calloutModal {
  background: #ffffff2e;
  width: 600px;
  max-width: 100%;
  padding: 50px;
  color: #ffffff;
  display: none;
}

#calloutModal input,
#calloutModal textarea {
  color: white;
  caret-color: black;
}

#calloutModal input::placeholder,
#calloutModal textarea::placeholder {
  opacity: 1 !important;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: inherit !important;
}

.fancybox-slide--html .fancybox-close-small {
  color: black !important;
}

.contact-accordion-title {
  background: #e9e9e9;
  color: black;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 60px 0 30px;
  position: relative;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.contact-accordion-area {
  margin-top: 20px;
}

.contact-accordion-plus {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.contact-accordion-content {
  display: none;
  padding-top: 20px;
}

#calloutModal .form-submit {
  margin: 30px auto 0;
  display: table;
}

#calloutModal .form-submit button {
  border-radius: 0;
  width: 300px;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  height: 60px;
  font-weight: 600;
  background: white;
  border: 1px solid #ccc;
  position: relative;
  color: white;
  z-index: 1;
}

#calloutModal .form-submit button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: -1;
  transition: 0.3s all;
}

#calloutModal .form-submit button:hover:before {
  content: "";
  left: auto;
  right: 0;
  width: 0;
}

#calloutModal .form-submit button:hover {
  color: black;
}

#calloutModal .form-submit button i {
  font-size: 18px;
  margin-left: 10px;
}

.iti {
  width: 100%;
}

input.iti__search-input {
  padding: 0 20px;
  height: 40px;
}

@media (max-width: 767px) {
  .callout-heading {
    font-size: 20px;
  }

  #calloutModal .form-submit button {
    width: 100%;
    line-height: 1.3;
  }
}

/* Discuss */
.discuss-text-area {
  padding-top: 200px;
}

.discuss-text-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discuss-texts {
  position: relative;
}

.discuss-text {
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.absolute-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.discuss-text .char {
  transition: 0.3s all;
}

.discuss-text-second .char {
  opacity: 0;
}

.discuss-text-second {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  font-style: italic;
}

.discuss-text-arrow {
  width: 80px;
  margin-left: 30px;
  transition: 0.3s all;
}

.active-arrow {
  transform: translateX(15px);
}

.discuss-text-arrow img {
  filter: invert(1);
}

@media (max-width: 1050px) {
  .discuss-text {
    font-size: 60px;
  }

  .discuss-text-arrow {
    width: 60px;
  }
}

@media (max-width: 850px) {
  .discuss-text {
    font-size: 45px;
  }

  .discuss-text-arrow {
    width: 40px;
  }
}

@media (max-width: 700px) {
  .discuss-text {
    white-space: wrap;
    text-align: center;
  }
}



/* Home */
body.page-top .p-header__list__item--all a {
  display: none;
}



/* Language switcher */
.language-dropdown-switcher ul {
  margin: 0;
  list-style: none;
  position: relative;
  cursor: pointer;
  font-size: 16px;
}

.language-dropdown-switcher .ls-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -7px;
  width: 100%;
}

.language-dropdown-switcher img {
  width: 24px;
  height: 24px;
}

.language-dropdown-switcher:hover .ls-sub-menu {
  display: block;
}

.ls-current-lang {
  display: flex;
  align-items: center;
  height: 38px;
  border-radius: 8px;
}

.ls-current-lang:after {
  content: "\e92e";
  font-family: Feather;
  font-size: 14px;
}

.home #site-header:not(.fixed-site-header) .ls-current-lang:after {
  color: white;
}

.language-item {
  display: flex;
  justify-content: center;
}

.language-item a {
  color: black;
}

.language-dropdown-switcher .language-item:not(:last-child) {
  margin-bottom: 5px;
}

.language-switcher.language-dropdown-switcher {
  margin-left: 45px;
  display: none;
}

.language-label {
  display: none;
}

@media (max-width: 1100px) {
  .ls-current-lang {
    height: 40px;
    padding: 0 0 0 10px;
  }
}



/* Admin */
.admin-bar {
  height: 35px;
  overflow: hidden;
}



/* All posts */
.all-posts-area {
  padding: 160px 0;
}

.master-post a {
  color: white;
}

.single-post-area {
  padding: 160px 0 80px;
}

.single-content-part {
  width: 767px;
  margin: 0 auto;
  max-width: 100%;
  text-align: justify;
}

.single-post-title h1 {
  font-size: 56px;
  text-align: center;
  font-weight: 600;
}

.single-post-meta {
  color: #888;
  text-align: center;
}

.single-back-arrow {
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

.single-back-arrow img {
  width: 30px;
  transition: .3s all;
}

.single-back-arrow:hover img {
  transform: translateX(-10px);
}

@media (max-width: 767px) {
  .single-post-title h1 {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .p-control {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}


/* Home */
.site-language-az .prev .js-target__inner--pointer__stateChange,
.site-language-az .next .js-target__inner--pointer__stateChange {
  font-size: 0;
}

.site-language-az .prev .js-target__inner--pointer__stateChange:before {
  content: 'ƏVVƏL';
  font-size: 1.2rem;
}

.site-language-az .next .js-target__inner--pointer__stateChange:before {
  content: 'SONRA';
  font-size: 1.2rem;
}