

/* === blog-05 === */

.blog-05 {
    padding: 40px 0px;
}

    .blog-05 .row {
        --bs-gutter-x: 38px;
        --bs-gutter-y: 38px;
    }

    .blog-05 h1 {
        text-align: center;
        margin-bottom: 45px;
    }

    .blog-05 .blog-item {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: 100%;
    }

.blog-item.top-item {
    display: flex;
    align-items: flex-end;
    min-height: 300px;
    padding: 25px;
    color: #fff;
}


    .blog-item.top-item:before {
        content: "";
        z-index: 2;
        background: rgba(0, 0, 0, 0.7);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        transition: 0.3s all;
    }

    .blog-item.top-item:hover:before {
        opacity: 1;
    }

    .blog-item.top-item > a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 4;
    }

.blog-05 img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.blog-05 .content {
    position: relative;
    z-index: 3;
}

    .blog-05 .content h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .blog-05 .content .date {
        font-size: 14px;
    }

.blog-05 .image-wrapper {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.blog-item:not(.top-item) {
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
}

    .blog-item:not(.top-item) .content {
        padding: 25px;
    }

    .blog-item:not(.top-item) .title {
        margin-top: 15px;
        margin-bottom: 15px;
    }


.blog-05 .brief {
    font-size: 16px;
}

.blog-05 .content > a {
    font-size: 18px;
    color: var(--color-red);
    margin-top: 10px;
    display: flex;
    align-items: center;
}

    .blog-05 .content > a svg {
        width: 15px;
        height: 15px;
        margin-right: 10px;
    }

.blog-05 .show_more {
    height: 50px;
    width: 100%;
    display: block;
}

/* === blog-05 === */



/* === instagram-feed01 === */

.gallery-section {
    --gallery-section-bg: #fff;
    --gallery-grid-bg: #f1f1f1;
    --overlay-color: var(--button-background);
    --transition-duration: 0.3s;
    background: var(--gallery-section-bg);
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-carousel+.gallery-section {
    padding-top: 0;
}

.gallery-section .slick-slide {
    margin: 0 calc(var(--gallery-gap) * 0.5);
}

.gallery-section .slick-list {
    margin: 0 calc(var(--gallery-gap) * -0.5);
    overflow: visible !important;
}

.gallery-section .slick-track {
    padding: 0;
}

.gallery-slider {
    width: 100%;
    margin: 0 auto;
    --gallery-gap: var(--bs-gutter-x);
}

.gallery-slider:not(.slick-initialized) {
    display: flex;
    flex-flow: row nowrap;
    gap: var(--gallery-gap);
    justify-content: center;
}

.gallery-slider:not(.slick-initialized)>* {
    display: none;
}

.gallery-slider:not(.slick-initialized)>*:nth-child(1),
.gallery-slider:not(.slick-initialized)>*:nth-child(2) {
    display: flex;
    width: 50%;
}

.gallery-slider:not(.slick-initialized) .gallery-grid-1 .gallery-grid-item {
    width: 100%;
    height: 100%;
}

.gallery-slide {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gallery-gap);
    justify-content: center;
    align-items: stretch;
    margin-bottom: 0;
}

.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gallery-gap);
    gap: var(--gallery-gap);
    display: flex !important;
    flex-flow: row wrap;
}

.gallery-grid-4>* {
    width: calc(50% - var(--gallery-gap) * 0.5);
    height: calc((100% - var(--gallery-gap)) * 0.5);
    aspect-ratio: 1/1;
}

.gallery-grid-4 .gallery-grid-item.video-item .video-play-overlay {
    width: 60px;
    height: 60px;
}

.gallery-grid-4 .gallery-grid-item.video-item .video-play-overlay i {
    font-size: 22px;
    margin-left: 3px;
}

.gallery-grid-4 .gallery-grid-item.video-item:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gallery-gap);
}

.gallery-grid-item {
    background: var(--gallery-grid-bg);
    border-radius: var(--bs-border-radius, 10px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1/1;
}

.gallery-grid-item img {
    -o-object-fit: cover;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform var(--transition-duration);
    width: 100%;
    height: 100%;
    scale: 1;
    will-change: transform;
}

.gallery-grid-item a.instagram-post {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.gallery-grid-item a.instagram-post:focus-visible img {
    outline: 2px solid var(--button-background);
    outline-offset: -4px;
    border-radius: var(--bs-border-radius, 10px);
}

.gallery-grid-item .instagram-post::before {
    content: "";
    opacity: 0;
    position: absolute;
    left: -25%;
    top: 0;
    width: 140%;
    height: 100%;
    z-index: 1;
    background-image: url("/images/default/background-regular.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 200%;
    transition: var(--transition-duration) ease-in-out;
}

.gallery-grid-item::before {
    content: "";
    background-color: rgba(233, 141, 60, 0.7);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-duration) ease-in-out;
    z-index: 3;
    pointer-events: none;
}

.gallery-grid-item::after {
    content: "";
    position: absolute;
    left: 5%;
    top: 0;
    width: 90%;
    height: 100%;
    opacity: 0;
    transition: var(--transition-duration) ease-in-out;
    background-image: url("/images/default/follow-us.png");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
    pointer-events: none;
}

.gallery-grid-item.video-item::after {
    display: none;
}

.gallery-grid-item.video-item a.instagram-post {
    z-index: 5;
}

.gallery-grid-item.video-item .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid-item.video-item .video-wrapper::after {
    content: "";
    background-color: var(--button-background);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-duration) ease-in-out;
    z-index: 3;
    pointer-events: none;
}

.gallery-grid-item.video-item .video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-duration) ease-in-out;
    pointer-events: none;
}

.gallery-grid-item.video-item .video-play-overlay i {
    font-size: 30px;
    color: var(--button-background);
    margin-left: 3px;
}

.gallery-grid-item.video-item:hover .video-wrapper .video-play-overlay {
    background: rgb(255, 255, 255);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-grid-item.video-item:hover .video-wrapper::after {
    opacity: 0.8;
}

.gallery-grid-item:hover img {
    transform: scale(1.04);
}

.gallery-grid-item:hover::before {
    opacity: 1;
}

.gallery-grid-item:hover::after {
    opacity: 1;
}

.gallery-grid-item:hover .instagram-post::before {
    opacity: 1;
}


.gallery-section .block-title br {
    display: none;
}

@media screen and (max-width: 575.98px) {
    .gallery-slider {
        --gallery-gap: 12px;
    }

    .gallery-section .block-title {
        margin-top: 15px;
        max-width: 300px;
        margin-inline: auto;
    }
}
/* === instagram-feed01 === */



/* === accredetations-01 === */

.accredetations-01 {
    padding: var(--block-margin) 0;
    overflow: hidden;
    background-color: #fff;
}

.accredetations-01 span.subtitle {
    margin-bottom: 2.5rem;
}

.gallery-section+.accredetations-01 {
    padding-top: calc(var(--block-margin) - 20px);
}

.accreditation-slider {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.accreditation-item {
    flex: 0 0 auto;
    text-align: center;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.accreditation-item:hover {
    filter: grayscale(0);
}

.accreditation-item img {
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.accreditation-slider .slick-slide {
    margin: 0 1.5rem;
}

.accreditation-slider .slick-list {
    margin: 0 -1rem;
}

.accreditation-slider .slick-list {
    overflow-y: hidden;
    overflow-y: clip;
    overflow-x: visible !important;
}
/* === accredetations-01 === */



/* === footer-05-brochure === */

/* Footer 05 Styles */

.footer05 {
  padding: calc(var(--block-padding) - 2rem) 0 var(--block-margin);
  background-color: #1d1d1d;
  color: #fff;
}

.footer05 form .bottom-box {
  margin-bottom: 0;
}

.footer05 .row.first-footer>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

.footer05 .f06_block {
  border-radius: var(--bs-border-radius, 10px);
  padding: 0px 45px 40px 45px;
  /*margin-top: var(--bs-gutter-x);*/
  height: 100%;
}

.footer05 .f06_subtitle {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.025em;
}

.footer05 .f06-mt {
  margin-top: var(--bs-gutter-x);
}

.footer05 .f06_block.grey {
  background-color: #222222;
  padding-top: 40px;
  display: flex;
  flex-flow: column;
}

@media screen and (min-width: 1200px) {
  .footer05 .f06_block.location_block {
    min-height: 578px;
  }
}

.footer05 .f06_block.location_block .f06_content>i {
  margin-bottom: 1.5rem;
}

.footer05 .f06_block i {
  font-size: 30px;
  line-height: 26px;
  margin-bottom: 1rem;
  font-family: "Font Awesome 6 Pro";
}

.footer05 .f06_block i.fa-phone {
  font-size: 26px;
}

.footer05 .f06_block h3 {
  margin-bottom: 1rem;
  font-size: 38px;
}

.footer05 .address {
  font-size: 16px;
  line-height: 22px;
}

.footer05 .address .company-name {
  color: var(--button-background);
}

.footer05 .address p {
  margin-bottom: 0px;
}

.footer05 .address .addr.company {
  font-weight: 600;
}

.footer05 .address :last-child {
  margin-bottom: 0;
}

.footer05 .view_on_map {
  font-size: 15px;
  background: none !important;
  outline: none !important;
  padding: 5px 0px;
  color: inherit;
  font-weight: 600;
  border: none !important;
  margin-top: 10px;
}

.footer05 .view_on_map i {
  font-size: 15px;
  margin-right: 5px;
  margin-bottom: 0px;
}

.footer05 .social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: auto;
}

.footer05 .social a {
  color: #fff;
  fill: #fff;
  stroke: #fff;
  display: flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  background-color: var(--button-background);
  border-radius: var(--bs-border-radius, 10px);
  min-width: 55px;
  min-height: 55px;
  text-decoration: none;
  margin-right: 6px;
  margin-bottom: 6px;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  padding: 0;
}

.footer05 .social a:hover {
  background-color: var(--button-background-hover);
  color: #fff;
  fill: #fff;
  stroke: #fff;
}

.footer05 .social a i {
  color: inherit;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: 'Font Awesome 5 Brands';
}

.footer05 .social a svg,
.footer05 .social a img {
  fill: inherit;
  stroke: inherit;
  width: 20px;
  height: 20px;
}

.footer05 .f06_block a.contact-link {
  font-size: 18px;
  line-height: 24px;
  color: var(--button-background);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease-in-out;
  font-weight: 500;
  width: fit-content;
}

.footer05 .f06_block a.contact-link-email {
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}

.footer05 .f06_block.form {
  padding: 3.5rem 42px 40px;
}

.footer05 .form a {
  color: inherit;
}

.footer05 .form .form-control {
  padding: 17px 20px;
  min-height: 62px;
  height: 62px;
  border: unset !important;
}

.footer05 .form textarea.form-control {
  height: 244px;
}

.footer05 .form .col-form-label {
  font-size: 16px;
  line-height: 22px;
}

.footer05 .form .required {
  display: none;
}

.footer05 .form .required-star,
.footer05 .form .required {
  color: #ff7d7d;
}

.footer05 .reload_captcha {
  width: 60px;
  padding: 0;
  height: 60px;
}

.footer05 .reload_captcha:before {
  display: none;
}

.footer05 .reload_captcha i {
  margin: 0;
  padding: 0;
}

.footer05 .captcha-image img {
  height: 100%;
}

.footer05 .form .error+.error {
  font-size: 14px;
  color: #ff7d7d;
  position: absolute;
  top: 100%;
}

.footer05 .form .error+div.error,
.footer05 .form .form-group.has-error div.error {
  font-size: 14px;
  white-space: nowrap;
  color: #ff7d7d;
}

.footer05 .f06_block.f06_title {
  text-align: center;
  padding: 3rem 2.75rem 40px 2.75rem;
  height: auto;
}

.footer05 .f06_block.f06_title h2 {
  text-align: center;
  padding: 0;
}

.f06-mt-lg {
  margin-top: var(--bs-gutter-x);
}

.footer05 .subtitle::after {
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1200px) and (max-width: 1399.98px) {

  .footer05 .f06_block,
  .footer05 .f06_block.grey {
    padding: 2rem;
  }

  .footer05 .row {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 1199.98px) {
  .footer05 {
    padding: var(--block-padding) 0 var(--block-margin);
  }

  .footer05 .address-lines {
    display: flex;
    flex-flow: row wrap;
  }

  .footer05 .location_block {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }

  .footer05 .address-lines p {
    width: fit-content;
  }

  .footer05 .address-lines p:not(.has-coma, :last-child)::after {
    content: ",";
    margin-right: 4px;
  }

  .footer05 .social {
    max-width: 240px;
    margin-top: 2rem;
  }

  .footer05 .row {
    --bs-gutter-x: 1.5rem;
  }

  .footer05 .f06_block.f06_title {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .footer05 .f06_block.f06_title br {
    display: none;
  }

  .f06-mt-lg {
    margin-top: 0;
  }

  .f06-mt-md {
    margin-top: var(--bs-gutter-x);
  }

  .footer05 .row {
    --bs-gutter-x: 1.5rem;
  }
}

@media screen and (max-width: 991.98px) {
  .footer05 .row {
    --bs-gutter-x: 20px;
  }

  .footer05 .f06_block.form {
    padding: 32px 36px 36px;
  }

  .footer05 .f06_block {
    padding: 36px;
  }
}

@media (max-width: 767.98px) {
  .footer05 {
    padding: var(--block-padding) 0 3rem;
  }

  .footer05 .row {
    --bs-gutter-x: 16px;
  }

  .footer05 .f06_block {
    height: 100%;
    padding: 0px 30px 30px 30px;
  }

  .footer05 .f06_block.grey {
    padding-top: 30px;
  }

  .footer05 .row.first-footer>[class*="col-"] {
    height: auto !important;
  }

  .footer05 .f06_block.form {
    padding: 30px 30px;
  }

  .footer05 .f06_block a.contact-link-email {
    font-size: 16px;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .footer05 form>.row>.col-12.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .footer05 .row {}

  .footer05 .form .row {
    gap: 0px;
  }

  .footer05 .f06_block.form .btn {
    max-width: 280px;
    margin: auto;
  }

  .footer05 .f06_block.f06_title {
    padding-bottom: 0px;
  }

  .footer05 .f06_block.f06_title>.row {
    gap: 0;
  }

  .footer05 .col-12>p:last-child {
    margin-bottom: 0;
  }

  .footer05 .f06_block.form .btn {
    width: 100%;
  }

  .footer05 .first-footer .row .order-1 {
    margin-bottom: var(--bs-gutter-x);
  }
}

/* Footer 05 Styles End */
/* === footer-05-brochure === */



/* === footer-04-ecommerce === */

.footer-04-ecommerce {
    padding: var(--block-margin) 0;
    background-color: #1d1d1d;
    color: #fff;
}

.footer05+.footer-04-ecommerce {
    padding-top: 0;
}

.footer-04-ecommerce a {
    color: #fff;
    text-decoration: none;
}

.footer-04-ecommerce .footer-links {
    display: flex;
    flex-flow: column wrap;
}

.footer-04-ecommerce .links-wrapper {
    display: flex;
    flex-flow: column nowrap;
}

.footer-04-ecommerce .footer-links {
    width: calc((100% - 2rem) * .5);
}

.footer-04-ecommerce .links-wrapper {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
}

.footer-04-ecommerce a.footer-link {
    color: var(--button-background);
    text-decoration: none;
    font-size: 18px;
    line-height: 30px;
    margin: 5px 0;
    width: fit-content;
    transition: color 0.3s ease-in-out;
}

.footer-06-copyright,
.footer-06-design {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    display: block;
    letter-spacing: .025em;
}

@media screen and (max-width: 767.98px) {
    .footer-04-ecommerce .row {
        --bs-gutter-y: 2rem;
    }

    .footer-04-ecommerce {
        padding: 3rem 0;
    }
}
/* === footer-04-ecommerce === */

