@import "https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap";

:root {
  --font-default: "Source Sans 3";
  --font-primary: "Source Sans 3";
  --font-secondary: "Source Sans 3";
  --color-default: #364d59;
  --color-primary: #ef4444;
  --color-secondary: #52565e;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.m-auto {
  margin: 0 auto;
}

.br-n {
  border-right: none !important;
}

.full-width {
  width: 100%;
}

p {
  font-size: 14px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

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

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

@media (min-width: 320px) and (max-width: 600px) {
  .section-header h2 {
    font-size: 20px;
    text-align: center;
  }

  .section-header h2:before,
  .section-header h2:after {
    width: 30px;
  }

  .section-header h2:before {
    margin: 0 15px 5px 0;
  }

  .section-header h2:after {
    margin: 0 0 5px 15px;
  }

  .swiper {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  .section-header {
    padding-bottom: 25px;
  }

  section {
    padding: 30px 0;
  }
}

.breadcrumbs {
  height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs h1 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs p {
  color: #fff;
  font-size: 20px;
  max-width: 800px;
  text-align: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 600px) {
  .breadcrumbs h2 {
    font-size: 30px;
  }

  .breadcrumbs h1 {
    font-size: 30px;
  }

  .breadcrumbs p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.header {
  z-index: 997;
  position: absolute;
  padding: 16px 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
}

.header .logo img {
  height: 32px;
  margin-right: 6px;
  width: 100%;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }

  .header .logo img {
    height: 30px;
  }
}

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    color: #fff;
    transition: 0.3s;
    position: relative;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

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

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

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

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

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

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 0 0 10px;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

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

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 0px;
  }

  .mobile-nav-hide {
    color: black;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 8px;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 0 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

.offer {
  padding-top: 0;
}

.offer .service-item {
  padding: 16px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px dashed #bababa;
  min-height: 247px;
}

.offer .post-content {
  padding: 16px;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

.offer .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 20px;
}

.offer .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.offer .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.offer .service-item h3 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 20px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin: 0;
}

.offer .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.offer .service-item p b {
  color: #000;
  letter-spacing: 1px;
}

.offer .service-item .readmore,
.services .service-item .readmore:hover {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.offer .service-item:hover .icon:before {
  background: var(--color-primary);
}

.offer .service-item:hover h3 {
  border-color: var(--color-primary);
}

.offer .offerButtons {
  position: absolute;
  bottom: 16px;
}

.offer .offerButtons a.btn.btn-dark {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.offer .offerButtons a.btn-light {
  border: 1px dashed #333;
}

.offer .offerExpir {
  font-size: 12px;
}

.offer .service-item .icon img {
  z-index: 1;
  position: relative;
  max-width: 45px;
}

.offer .tncMain:hover .tnc {
  display: block;
}

.tncMain {
  position: relative;
  margin: 0 10px;
}

.tncMain i {
  color: #222;
  cursor: pointer;
  font-size: 20px;
}

.offer .tnc {
  font-size: 12px;
  padding: 10px;
  background: #222;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 8px;
  margin-top: 16px;
  display: none;
  position: absolute;
  right: -104px;
  width: fit-content;
  bottom: 35px;
  min-width: 240px;
  color: #fff;
}

.offer .tnc:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #222;
  bottom: -9px;
  left: 50%;
  margin-left: -5px;
}

.offer .tnc h5 {
  font-size: 14px;
  margin: 0 0 4px;
  color: #fff;
}

.tnc ul {
  margin: 0;
  padding: 0 0 0 14px;
}

@media (max-width: 767px) {
  .offer .tnc {
    right: -10px;
    min-width: 254px;
    bottom: 36px;
    min-height: 138px;
    z-index: 9;
  }

  .offer .tnc:after {
    font-size: 11px;
    left: inherit;
    margin-left: -5px;
    right: 8px;
  }
}

.services .service-item {
  padding: 0;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.services .post-content {
  padding: 16px;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 20px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin: 0;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore,
.services .service-item .readmore:hover {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.partner .service-item {
  padding: 20px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.partner .post-content {
  padding: 16px;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

.partner .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 35px;
}

.partner .service-item .icon img {
  z-index: 99;
  position: relative;
  max-width: 47px;
}

.partner .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.partner .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.partner .service-item h3 {
  color: #333;
  font-weight: 700;
  margin: 0 0 20px;
  font-size: 20px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin: 0;
}

.partner .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.partner .service-item .readmore,
.partner .service-item .readmore:hover {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.partner .service-item:hover .icon:before {
  background: var(--color-primary);
}

.partner .service-item:hover h3 {
  border-color: var(--color-primary);
}

.partner .service-item .list-unstyled {
  font-size: 16px;
  margin: 15px 0 0;
}

.partner .service-item .list-unstyled li {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
  margin-left: 0;
}

.partner .service-item .list-unstyled li b {
  display: block;
}

.partner .service-item .list-unstyled i {
  font-size: 25px;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  border-radius: 10px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 25px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box span img {
  width: 35px;
  height: 35px;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 22px;
}

.alt-services .icon-box h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
  cursor: default;
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .alt-services h3 {
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 12px;
    color: #2e3135;
  }

  .alt-services .icon-box {
    margin-top: 16px;
  }

  .alt-services .icon-box span {
    margin-right: 15px;
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .alt-services .icon-box span img {
    width: 25px;
    height: 25px;
  }

  .alt-services .icon-box h4 {
    font-size: 16px !important;
    font-weight: 600;
  }
}

.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px;
  }

  .about .our-story {
    padding-right: 40px;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .our-story h3 img {
  float: right;
  width: 127px;
  display: flex;
  align-items: center;
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.aboutValue {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 600px) {
  .about .our-story {
    margin-bottom: 16px;
    padding: 20px;
    border-radius: 8px;
  }

  .aboutValue {
    display: block;
  }

  .about .our-story h3 {
    font-size: 22px;
  }

  .about .col-lg-12.mb-5 {
    margin-bottom: 16px !important;
  }

  .about .our-story h3 img {
    width: 100px;
  }
}

.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

.team {
  padding-top: 0;
}

.team .member {
  position: relative;
}

.team .container {
  padding-top: 100px;
}

.team .section-header {
  padding-bottom: 30px;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: rgb(0 0 0 / 25%);
  width: 250px;
  height: 250px;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 22px;
  color: #222;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 18px;
  color: #666;
  padding-left: 5px;
}

.team .member .member-info .list-unstyled {
  max-width: 300px;
  margin: 5px auto 0;
}

.team .member .member-info .list-unstyled li {
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.team .member .member-info .list-unstyled li span {
  font-size: 14px;
  font-style: normal;
}

.team .teamInner .member .member-info h4 {
  font-size: 18px;
}

.team .teamInner .member .member-info span {
  font-size: 16px;
}

.team .teamInner .member .member-img {
  max-height: 200px;
  max-width: 200px;
  background: #e8e8e8;
  width: 200px;
  margin: 0 auto;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 600px) {
  .team .member .member-info h4 {
    font-size: 20px;
  }
}

.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  height: 100%;
  border-radius: 8px;
}

.contact.contactFloatForm .php-email-form .form-group {
  padding-bottom: 0;
}

.contact.contactFloatForm .php-email-form {
  border-radius: 8px;
}

.contact.contactFloatForm .php-email-form .min-head {
  margin: 0;
  font-size: 14px;
}

.contact .info-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.contact .info-item span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px dotted #ffd565;
  border-radius: 50%;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.contact .info-item span:hover::before {
  animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 20px 0 5px 0;
}

.contact .info-item a {
  color: #6c757d;
}

.contact .info-item a:hover {
  color: #ef4444;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  max-width: 400px;
  text-align: center;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: left;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
}

.alert-dismissible .btn-close {
  padding: 4px;
  margin: 10px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contactFloatForm {
    z-index: 9;
    margin-top: 15px;
    padding: 0 16px;
    position: relative;
  }

  .contactUsMain {
    display: block !important;
    padding: 100px 0;
  }
}

.listedBrands img {
  max-height: 100px;
  border: 1px solid #e9e9e9;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  max-width: 300px;
  width: 100%;
  margin-bottom: 15px;
}

.listedBrands .row {
  row-gap: 10px;
  justify-content: center;
}

@media (max-width: 768px) {
  .brandImageBox {
    display: block !important;
    text-align: center;
  }

  .listedBrands img {
    max-height: auto;
    width: 100%;
    margin-right: 4%;
    margin-bottom: 12px;
  }
}

.instagram-media {
  margin: 0 auto !important;
  border-radius: 8px !important;
  overflow: hidden;
  min-width: 100% !important;
}

.explore-villaa .post-item {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.explore-villaa.guides-post h3 {
  margin-bottom: 12px !important;
}

.explore-villaa.guides-post p {
  font-size: 14px;
}

.spaceBetween {
  justify-content: space-between;
}

.explore-villaa .post-item .post-img img {
  transition: 0.5s;
}

.explore-villaa .post-item .post-date {
  position: absolute;
  background-color: #fff;
  color: #242222;
  text-transform: uppercase;
  font-size: 16px;
  padding: 4px 10px;
  font-weight: 500;
  top: 20px;
  left: 0;
  width: auto;
  z-index: 1;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  display: none;
}

.explore-villaa .post-item .post-rating {
  position: absolute;
  background-color: #00aa6c;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 10px;
  font-weight: 500;
  top: 27px;
  left: -3px;
  width: auto;
  z-index: 1;
  font-weight: 600;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.explore-villaa .post-item .post-rating img {
  max-width: 20px;
  margin-right: 5px;
}

.explore-villaa .post-item .post-content {
  padding: 10px 12px 16px;
}

.explore-villaa .post-item .post-title {
  font-size: 16px;
  color: #222;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 6px;
}

.explore-villaa .post-item .post-location {
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
}

.explore-villaa .post-item .post-location i {
  font-size: 14px;
}

.portfolio-item {
  margin-bottom: 16px;
}

.explore-villaa .post-item .meta i {
  font-size: 16px;
  color: var(--color-white);
}

.explore-villaa .post-item .meta span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.explore-villaa .post-item .meta .priceBox span {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.explore-villaa .post-item hr {
  color: #888;
  margin: 20px 0;
}

.explore-villaa .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
  padding: 6px;
  border-radius: 6px;
  position: relative;
}

.mt--8 {
  margin-top: -8px;
}

.explore-villaa .post-item .meta .readmore span {
  color: var(--color-white);
  white-space: nowrap;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.explore-villaa .post-item .meta .readmore span em {
  display: block;
  font-weight: normal;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  padding-top: 4px;
}

.explore-villaa .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.explore-villaa .post-item:hover .readmore {
  color: #fff !important;
}

.explore-villaa .post-item:hover .readmore span {
  color: var(--color-white) !important;
}

.explore-villaa .slides-5 {
  overflow: inherit;
}

.explore-villaa .slides-5 .swiper-button-next-slider-5 {
  right: -40px;
}

.explore-villaa .slides-5 .swiper-button-prev-slider-5 {
  left: -40px;
}

.explore-villaa .slides-5 .swiper-button-next-slider-5:after,
.explore-villaa .slides-5 .swiper-button-prev-slider-5:after {
  color: #333;
}

.amenitiesCard {
  width: 100%;
}

.amenitiesBox {
  padding: 1px 0;
}

.amenitiesBox img {
  max-width: 18px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .explore-villaa .post-item .post-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .amenitiesCardMain {
    display: block !important;
  }

  .amenitiesCardMain .mt--8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0;
  }

  .explore-villaa .post-item .amenitiesCardMain .readmore {
    padding: 12px 6px;
  }

  .explore-villaa .post-item .meta .readmore span {
    font-size: 12px;
  }

  .explore-villaa .post-item .amenitiesCardMain .readmore span em {
    display: inline !important;
    font-size: 12px;
  }

  .testimonials .testimonial-item .testimonial-img {
    height: 90px;
  }
}

@media (min-width: 320px) and (max-width: 600px) {
  .projects .section-header h2:before,
  .projects .section-header h2:after {
    width: 12px;
  }

  .slides-8 {
    padding: 0;
  }

  .slides-8 .swiper-slide {
    max-width: 100%;
  }
}

.hero {
  overflow-x: hidden;
  padding: 0;
}

.portfolio-content {
  border-radius: 15px;
  overflow: hidden;
}

.hero .carousel {
  width: 100%;
  min-height: 98vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 90%;
  left: 5%;
}

.primary {
  color: var(--color-primary) !important;
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 50px;
  font-weight: 750;
  position: relative;
}

.exploreVills {
  display: flex;
  margin: 0 auto;
  align-items: center;
  font-size: 21px;
  padding: 4px 20px;
  max-width: 221px;
  margin-top: 50px;
}

.exploreVills i {
  font-size: 28px;
}

.searchForm {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 32px;
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 10px;
}

.hero .whoDropBox {
  min-width: 400px;
  right: -40px !important;
  left: inherit !important;
  border-radius: 16px;
  bottom: 0;
  top: 5px !important;
}

.hero .info .whoDropBox p {
  font-size: 18px;
  color: #000;
  margin: 0;
}

.hero .whoDropBox .dropdown-item {
  padding: 12px 16px;
}

.hero .info .whoDropBox p span {
  font-size: 14px;
  color: #6c757d;
  display: block;
}

.hero .whoDropBox button.btn.btn-link {
  font-size: 23px;
  color: #000;
}

.hero input {
  margin: 0 auto;
  width: 100%;
  padding: 4px 10px;
  border: none;
  outline: none;
  border-right: 1px solid #eaeaea;
  border-radius: 0;
  font-size: 17px;
}

.hero .searchForm input:last-child {
  border-right: none !important;
}

.searchForm .form-control-lg:last-child {
  border-right: none;
}

.searchButton {
  background: url(../img/search.png) right 16px center no-repeat;
  background-color: #ef4444;
  background-size: 20px;
  height: 45px;
  width: 45px;
  min-width: 45px;
  border-radius: 50%;
  border: none;
  background-position: center;
}

.seach_checkin,
.seach_checkout,
.seach_who {
  min-width: 140px;
  max-width: 140px;
}

.viewMore button[type="submit"] {
  background: var(--color-default);
  border: 0;
  padding: 12px 55px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  font-size: 20px;
  margin: 0;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 34px;
  }

  .seach_checkin,
  .seach_checkout,
  .seach_who {
    min-width: inherit;
    max-width: 140px;
  }

  .hero input {
    margin: 0 auto;
    min-width: 63px !important;
    width: 94px !important;
  }

  .hero .info {
    padding: 0 !important;
  }
}

@media (max-width: 600px) {
  .hero .info h2 {
    font-size: 30px;
  }

  .exploreVills {
    font-size: 19px;
    padding: 2px 16px;
    max-width: 199px;
    margin-top: 50px;
    white-space: nowrap;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px;
    margin: 10px 0 0;
    color: #000;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 320px) and (max-width: 600px) {
  .hero {
    position: relative;
  }

  .hero .carousel {
    min-height: 60vh;
  }
}

.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

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

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

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

.blog .posts-list .post-item {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

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

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-white);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

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

.blog .blog-details .post-img {
  margin: -30px -30px 20px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

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

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li + li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

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

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li + li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

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

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

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

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type="text"]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

.footer {
  color: #fff;
  background-color: #151515;
  font-size: 14px;
  padding: 40px 0 0;
  position: relative;
}

.footer-info {
  padding-top: 8px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 img {
  max-width: 150px;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.social-links {
  float: right;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .footer-links {
    margin-top: 10px;
  }

  .social-links {
    align-items: center;
    justify-content: center;
    float: inherit;
  }

  .footer .footer-content .footer-info {
    text-align: center;
  }
}

.swiper-button-next-slides-8.swiper-button-next,
.swiper-button-prev-slides-8.swiper-button-prev {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.3);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.swiper-button-next-slides-8.swiper-button-next:after,
.swiper-button-prev-slides-8.swiper-button-prev:after {
  font-size: 18px;
  color: #fff;
  max-width: inherit;
  max-height: inherit;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
}

.Embed .Footer {
  display: none;
}

.EmbedVideo {
  max-height: 200px;
}

.slides-8 {
  position: relative;
  overflow: hidden;
}

.slides-8 img {
  transition: 0.3s;
}

.slides-8 .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
}

.slides-8 .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.slides-8 .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.slides-8 .portfolio-info .preview-link,
.slides-8 .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 13px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.slides-8 .portfolio-info .preview-link:hover,
.slides-8 .portfolio-info .details-link:hover {
  color: #fff;
}

.slides-8 .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.slides-8 .swiper-slide:hover .portfolio-info {
  opacity: 1;
}

section.detailGalleryMain {
  padding: 0;
}

section.detailGalleryMain .headergredient {
  position: absolute;
  top: 0;
  z-index: 9;
  height: 100px;
  width: 100%;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7343531162464986) 100%
  );
}

.detailGallery {
  display: flex;
  margin: 0 0 30px;
  height: 65vh;
  max-height: 1024px;
  min-height: 187px;
  width: 100%;
  max-width: 1600px;
  position: relative;
}

.detailGalleryLeft {
  display: flex;
  max-width: 880px;
  position: relative;
  width: 50vw;
  margin-right: 6px;
  cursor: pointer;
}

.detailGalleryLeft span,
.detailGalleryRight span {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  width: initial;
  height: initial;
  background: none;
  opacity: 1;
  border: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
}

.detailGalleryLeft span img,
.detailGalleryRight span img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding: 0;
  border: none;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  border-radius: 10px;
  -o-object-fit: fill;
  object-fit: fill;
  height: 100% !important;
  width: 100% !important;
}

.detailGalleryRight {
  display: flex;
  position: relative;
  flex: 1 1;
  flex-direction: column;
  margin-left: 6px;
  cursor: pointer;
}

.detailGalleryRightUp {
  display: flex;
  flex: 1 1;
  position: relative;
  margin-bottom: 6px;
}

.detailGalleryRightDw {
  display: flex;
  flex: 1 1;
  position: relative;
  margin-top: 6px;
}

@media only screen and (min-device-width: 480px) and (max-device-width: 900px) and (orientation: landscape) {
  .hero .info h2 {
    font-size: 27px;
    padding-bottom: 10px;
  }

  .section-header h2 {
    font-size: 25px;
  }

  .container,
  .container-md,
  .container-sm {
    max-width: 90%;
  }
}
