@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
:root {
    --estal-font: "Plus Jakarta Sans", sans-serif;
    --estal-heading-font: "Cormorant", serif;
    --estal-special-font: "Dancing Script", cursive;
    --estal-text: #838184;
    --estal-text-rgb: 131, 129, 132;
    --estal-text-dark: #6e6b70;
    --estal-text-dark-rgb: 110, 107, 112;
    --estal-text-gray: #89868d;
    --estal-text-gray-rgb: 137, 134, 141;
    --estal-base: #3d7459;
    --estal-base-rgb: 194, 167, 78;
    --estal-gray: #f9f6f1;
    --estal-gray-rgb: 249, 246, 241;
    --estal-white: #fff;
    --estal-white-rgb: 255, 255, 255;
    --estal-black: #1c1a1d;
    --estal-black-rgb: 28, 26, 29;
    --estal-black2: #141215;
    --estal-black2-rgb: 20, 18, 21;
    --estal-black3: #000;
    --estal-black3-rgb: 0, 0, 0;
    --estal-border-color: #e8e3da;
    --estal-border-color-rgb: 232, 227, 218;
    --estal-letter-space: 0.1em;
    --estal-letter-space-xl: 0.2em;
    --primary-color: #004aad;
    --primary-bg-color: linear-gradient(45deg, var(--primary-color) 0%, rgba(16, 4, 87, 0.856) 100%);
    --primary-bg-color2: linear-gradient(45deg, #412b23 0%, #3d7459 100%);
}



body {
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    /* color: var(--estal-text, #838184);
    font-size: 16px;
    line-height: 2.125;
    font-weight: 500; */
}

a {
    color: var(--estal-base, #412b23);
    transition: all 400ms ease;
}

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

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--estal-heading-font, "Cormorant", serif);
    color: var(--estal-black, #1c1a1d);
}


::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 30px;
}


.estal-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background: var(--primary-bg-color2);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    padding: 12px 32px;
    transition: 500ms;
    letter-spacing: var(--estal-letter-space-xl, 0.2em);
    text-transform: uppercase;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(255, 255, 255, 0.952) 0px -3px 0px inset;
    border-radius: 30px 65px;
}


/* .estal-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: var(--estal-black, #1c1a1d);
    transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
} */

/* .estal-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background-color: var(--estal-white, #fff);
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
} */


.estal-btn span {
    position: relative;
    color: inherit;
    z-index: 2;
}


/* .estal-btn--base::after {
    background-color: var(--estal-black, #1c1a1d);
}

.estal-btn--base::before {
    background-color: var(--estal-base, #412b23);
} */


.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}
.preloader {
    position: fixed;
    background-color: var(--estal-black, #1c1a1d);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */

.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-right: 8px;
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--estal-base, #412b23);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--estal-black, #1c1a1d);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}


.estal-owl__carousel--with-shadow .owl-stage-outer {
    /* overflow: visible; */
    height: 645px;
    padding: 10px 12px;
}

.estal-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.estal-owl__carousel--with-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border: none;
    outline: none;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    background-color: var(--estal-gray, #f9f6f1);
    display: flex;
    justify-content: center;
    opacity: 1;
    align-items: center;
    color: var(--estal-black, #1c1a1d);
    border-radius: 50%;
    font-size: 14px;
    transition: all 500ms ease;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
    background-color: var(--estal-base, #412b23);
    color: var(--estal-white, #fff);
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}


.estal-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
    display: none;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.estal-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

.sec-title {
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .sec-title {
        padding-bottom: 46px;
    }
}

.sec-title__img {
    display: inline-flex;
    margin-bottom: 15px;
}

.sec-title__tagline {
    margin: 0;
    font-family: var(--estal-special-font, "Alex Brush", cursive);
    color: var(--estal-base, #412b23);
    font-size: 30px;
    line-height: 1.2em;
}

@media (min-width: 768px) {
    .sec-title__tagline {
        font-size: 40px;
    }
}

.sec-title__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 35px;
    color: var(--estal-black, #1c1a1d);
    font-weight: bold;
    line-height: 1.2em;
    margin-top: 5px;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 50px;
        margin-top: -2px;
    }
}


.video-two {
    position: relative;
    background-color: var(--estal-black, #1c1a1d);
    padding: 143px 0 320px;
}

@media (max-width: 767px) {
    .video-two {
        padding: 100px 0 270px;
    }
    .video-two .text-end {
        text-align: left !important;
    }
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--estal-black, #1c1a1d);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.video-two__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 1199px) {
    .video-two__shape {
        display: none;
    }
}

.video-two .container {
    position: relative;
}

.video-two__btn {
    width: 145px;
    height: 145px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    margin-top: 42px;
}

.video-two__btn .video-popup {
    font-size: 24px;
    color: var(--estal-white, #fff);
    transition: all 500ms ease;
    position: relative;
    z-index: 10;
}

.video-two__btn .video-popup:hover {
    color: var(--estal-base, #412b23);
}

.video-two__btn .curved-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
    height: 145px;
    transform-origin: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.video-two__btn .curved-circle--item {
    width: 145px !important;
    height: 145px !important;
}

.video-two__btn .curved-circle--item span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--estal-white, #fff);
    letter-spacing: 0.4em;
}

.video-two__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--estal-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .video-two__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-two__title {
        font-size: 60px;
        margin-bottom: 35px;
    }
}
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--estal-base, #412b23);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--estal-base, #412b23);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--estal-base, #412b23);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.main-footer {
    position: relative;

}
.main-footer::before {
    background: transparent url(../images/backgrounds/slider-1-1.jpg) no-repeat center center;
    background-size: contain;
    opacity: .2;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    z-index: -1;
}
.main-footer {
    background-color: #000;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: stretch;
    flex-wrap: nowrap;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    /* padding: 210px 50px; */
    z-index: 4;
    /* margin-top: 70px; */
    width: 100%;
    height: 100%;
}
.main-footer__top {
    padding-top: 60px;
    padding-bottom: 30px;
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    mix-blend-mode: luminosity;
    background-size: cover;
    background-position: center center;
}

.main-footer .container {
    position: relative;
}

.main-footer__bottom {
    text-align: center;
}

.main-footer__bottom__inner {
    padding: 33px 0;
    border-top: 1px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.1);
}

.main-footer__copyright {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--estal-gray, #6e6b70);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 30px;
    background: #fefefe;
    border-radius: 25px 85px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.footer-widget__newsletter {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.footer-widget__newsletter input[type=text] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 58px;
    background-color: var(--estal-black2, #141215);
    color: var(--estal-text-dark, #6e6b70);
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.footer-widget__newsletter input[type=text]:focus {
    color: var(--estal-white, #fff);
}

.footer-widget__newsletter button[type=submit] {
    background-color: transparent;
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: var(--estal-base, #412b23);
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
    color: var(--estal-white, #fff);
}

.footer-widget__title {
    font-size: 18px;
    font-weight: bold;
    color: var(--estal-white, #fff);
    text-transform: uppercase;
    margin: 0;
    margin-top: -5px;
    margin-bottom: 24px;
}

.footer-widget__info,
.footer-widget__links {
    margin-top: -10px;
    margin-bottom: -13px;
}

.footer-widget__links li {
    font-size: 14px;
    color: var(--estal-gray, #6e6b70);
    font-weight: 500;
    line-height: 30px;
}

.footer-widget__links li a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}
.footer-widget__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-widget__info li a {
    font-size: 14px;
    color: var(--estal-gray, #6e6b70);
    font-weight: 500;
    line-height: 30px;
    text-transform: capitalize;
        /* margin-top: 35px; */
        position: relative;
        padding-left: 50px;
        /* padding-top: 10px; */
        text-decoration: none;
        line-height: 1.9;
        display: flex;
        gap: 15px;
        /* margin-top: -10px;
    margin-bottom: -13px; */
}
.footer-widget__info li a svg {
    width: 35px;
    height: 35px;
    line-height: 37px;
    text-align: center;
    background: #fff;
    padding: 5px;
    color: #cb6de6;
    border-radius: 10px;
    font-size: 16px;
    transition: all linear .5s;
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: all linear .5s;
    -webkit-border-radius: 10px;
}
.footer-widget__text {
    font-size: 14px;
    color: var(--estal-gray, #6e6b70);
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    margin-top: -10px;
    margin-bottom: 21px;
    max-width: 305px;
    text-align: justify; 
}

.footer-widget__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--estal-black2, #141215);
    font-size: 14px;
    color: var(--estal-white, #fff);
    transition: all 500ms ease;
    border-radius: 50%;
}

.contact-one {
    position: relative;
    background-color: var(--estal-white, #fff);
  }
  .contact-one--home-two {
    position: relative;
    padding: 0;
    background-color: var(--estal-white, #fff);
  }
  .contact-one--home-two .contact-one__form {
    margin-top: -60px;
    margin-bottom: 0;
  }
  @media (max-width: 1199px) {
    .contact-one--home-two .contact-one__form {
      margin: 50px 0 0;
    }
  }
  .contact-one--home-two .contact-one__text {
    margin-bottom: 36px;
  }
  .contact-one__content {
    position: relative;
    padding: 50px 20px 40px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-color: var(--estal-white, #fff);
  }
  @media (min-width: 768px) {
    .contact-one__content {
      padding: 70px;
      padding-bottom: 60px;
    }
  }
  .contact-one__content__shape-1 {
    position: absolute;
    top: 0;
    right: 0;
  }
  .contact-one__content__shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .contact-one__inner {
    position: relative;
    z-index: 2;
  }
  .contact-one__inner-shape {
    position: absolute;
    right: -285px;
    bottom: -83px;
    z-index: -1;
  }
  .contact-one__inner-shape img {
    width: 100%;
    height: auto;
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  .contact-one .sec-title {
    position: relative;
  }
  .contact-one__text {
    margin: 0;
    margin-top: -30px;
    font-size: 15px;
    line-height: 2em;
    max-width: 490px;
    margin-bottom: 40px;
    position: relative;
  }
  .contact-one__info {
    margin-bottom: 0;
    position: relative;
  }
  .contact-one__info__item {
    display: flex;
    align-items: center;
  }
  .contact-one__info__icon {
    width: 50px;
    height: 50px;
    background-color: var(--estal-gray, #f9f6f1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 500ms ease;
    color: var(--estal-base, #c2a74e);
    margin-right: 20px;
    flex-shrink: 0;
  }
  .contact-one__info__icon:hover {
    background-color: var(--estal-base, #c2a74e);
    color: var(--estal-white, #fff);
  }
  .contact-one__info__text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
  }
  .contact-one__info__title {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    color: var(--estal-black, #1c1a1d);
    line-height: 30px;
  }
  .contact-one__info__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .contact-one__info__title a:hover {
    background-size: 100% 1px;
  }
  .contact-one__form {
    padding: 50px;
    position: relative;
    margin-bottom: -60px;
    z-index: 10;
    background-color: var(--estal-base, #c2a74e);
    background-image: url(../images/shapes/contact-1-f-s-1.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
  }
  @media (min-width: 768px) {
    .contact-one__form {
      padding: 60px 80px;
    }
  }
  @media (min-width: 992px) {
    .contact-one__form {
      margin-left: -30px;
    }
  }
  .contact-one__form .sec-title {
    padding-bottom: 30px;
  }
  .contact-one__form .sec-title__tagline {
    color: var(--estal-white, #fff);
    font-size: 30px;
  }
  .contact-one__form .sec-title__title {
    color: var(--estal-white, #fff);
    margin-top: 5px;
  }
  @media (min-width: 768px) {
    .contact-one__form .sec-title__title {
      font-size: 40px;
    }
  }
  .contact-one__form .form-one__group {
    grid-gap: 12px;
    margin-top: -19px;
    position: relative;
  }
  .contact-one__form .form-one__control__icon {
    right: 0;
    color: var(--estal-white, #fff);
  }
  /* .contact-one__form .bootstrap-select > .dropdown-toggle,
  .contact-one__form input[type=text],
  .contact-one__form input[type=email],
  .contact-one__form textarea {
    padding: 0;
    height: 58px;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 2px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.15);
    color: var(--estal-white, #fff);
  }
  .contact-one__form .bootstrap-select > .dropdown-toggle#datepicker,
  .contact-one__form input[type=text]#datepicker,
  .contact-one__form input[type=email]#datepicker,
  .contact-one__form textarea#datepicker {
    cursor: pointer;
  } */
  .contact-one__form textarea {
    height: 102px;
    margin-top: 19px;
  }
  .contact-one__form .estal-btn {
    margin-top: 10px;
  }
.contact {
    position: relative;
    background-color: var(--estal-black, #1c1a1d);
    padding: 120px 0;
}

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

.contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--estal-black, #1c1a1d);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 767px) {
    .contact__shape {
        background-size: cover;
    }
}

.contact .sec-title__title {
    color: var(--estal-white, #fff);
}

.contact .sec-title {
    padding-bottom: 34px;
}

.contact__form-box {
    position: relative;
    display: block;
    padding: 0;
}

.contact__form {
    position: relative;
    display: block;
}

.contact__form .row {
    --bs-gutter-x: 20px;
}

.contact__input-box {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.contact__input-box i {
    position: absolute;
    right: 0;
    color: var(--estal-white, #fff);
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    z-index: -1;
}

.contact__input-box input[type=date],
.contact__input-box input[type=text],
.contact__input-box input[type=email] {
    height: 62px;
    width: 100%;
    border: none;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    outline: none;
    border-bottom: 2px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.15);
    font-size: 14px;
    color: var(--estal-white, #fff);
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    display: block;
    font-weight: 500;
}

.contact__input-box input[type=date]#datepicker,
.contact__input-box input[type=text]#datepicker,
.contact__input-box input[type=email]#datepicker {
    cursor: pointer;
}

.contact__input-box .bootstrap-select .dropdown-menu {
    border: none;
}

.contact__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
}

.contact__input-box .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.contact__input-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 62px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    color: var(--estal-white, #fff) !important;
    font-size: 14px;
    line-height: 60px;
    font-weight: 500;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
    border-bottom: 2px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.15);
}

.contact__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 600;
    font-size: 14px;
    color: var(--estal-white, #fff);
}


.contact__input-box textarea {
    font-size: 14px;
    font-weight: 500;
    color: var(--estal-white, #fff);
    height: 112px;
    width: 100%;
    background-color: transparent;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    padding: 0;
    border: none;
    outline: none;
    margin-bottom: 0px;
    border-bottom: 2px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.15);
}

.contact__input-box.text-message-box {
    height: 112px;
    margin-top: 21px;
    margin-bottom: 18px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar-one {
    display: none;
    background-color: var(--estal-gray, #f9f6f1);
}

@media (min-width: 768px) {
    .topbar-one {
        display: block;
    }
}

.topbar-one .container-fluid {
    max-width: 1684px;
}

.topbar-one__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--estal-border-color, #e8e3da);
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    .topbar-one__inner {
        flex-direction: row;
    }
}

.topbar-one__info {
    display: flex;
    align-items: center;
    margin: 0;
}

.topbar-one__info__item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2em;
}

.topbar-one__info__item a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__info__item a:hover {
    background-size: 100% 1px;
}

.topbar-one__info__item+.topbar-one__info__item {
    margin-left: 20px;
}

.topbar-one__info__icon {
    font-size: 14px;
    color: var(--estal-base, #412b23);
    position: relative;
    top: 2px;
    margin-right: 9px;
}

.topbar-one__right {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .topbar-one__right {
        margin-top: 0;
        margin-left: auto;
    }
}

.topbar-one__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--estal-border-color, #e8e3da);
    padding: 3.5px 0;
    padding-left: 30px;
    margin-left: 30px;
    line-height: 1em;
}

.topbar-one__social a {
    font-size: 14px;
    color: var(--estal-black, #1c1a1d);
    transition: all 500ms ease;
}

.topbar-one__social a:hover {
    color: var(--estal-base, #412b23);
}

.topbar-one__social a+a {
    margin-left: 20px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

.main-header {
    background-color: var(--estal-gray, #f9f6f1);
}

.main-header .container-fluid {
    max-width: 1684px;
}

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: var(--estal-white, #fff);
    padding: 30px 0;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

@media (min-width: 992px) {
    .main-header__inner {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (min-width: 1200px) {
    .main-header__inner {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1320px) {
    .main-header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .main-header__inner {
        padding: 20px 0;
    }
}

.main-header__logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .main-header__logo {
        width: auto;
    }
}

@media (min-width: 768px) {
    .main-header__logo .mobile-nav__btn {
        margin-left: 30px;
    }
}

/* .main-header__btn {
    display: none;
    margin-left: 30px;
    font-size: 19px;
    padding: 5px 29px;
    background: var(--estal-base);
   
    color: #fff;
} */
.main-header__btn {
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: rgba(197, 230, 240, 0.856);
    /* --btn-bg-2: hsla(217 100% 56% / 1); */
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 0.4em 1.4em;
    text-align: center;
    min-width: 120px;
    min-height: 30px;
    font-size: var(--size, 1rem);
    font-weight: 700;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(
      325deg,
      var(--estal-base) 0%,
      var(--btn-bg-1) 40%,
      var(--estal-base) 90%
    );
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow:
      0px 0px 20px rgba(71, 184, 255, 0.5),
      0px 5px 5px -1px rgba(58, 125, 233, 0.25),
      inset 4px 4px 8px rgba(175, 230, 255, 0.5),
      inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  }
  
  .main-header__btn:hover {
    background-position: right top;
  }
  
  .main-header__btn:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow:
      0 0 0 3px var(--btn-bg-color),
      0 0 0 6px var(--btn-bg-2);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .main-header__btn {
      transition: linear;
    }
  }

.main-header__right {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--estal-border-color, #e8e3da);
    margin-left: 10px;
    padding: 9.5px 0;
}

@media (min-width: 768px) {
    .main-header__right {
        margin-left: auto;
        padding: 0;
        padding-left: 10px;
    }
}

@media (min-width: 1200px) {
    .main-header__right {
        margin-left: 0;
    }
}

.main-header__nav {
    margin-left: auto;
    margin-right: auto;
}


.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--estal-white, #fff);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--estal-black-rgb, 28, 26, 29), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
    transform: translateY(0%);
    visibility: visible;
}

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 1199px) {
    .mobile-nav__btn {
        margin-left: -50px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .mobile-nav__btn {
        margin-left: -40px;
        margin-right: 10px;
    }
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--estal-black, #1c1a1d);
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}


.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 16.25px;
    padding-bottom: 16.25px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li+li {
    margin-left: 51px;
}

@media (max-width: 1400px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

.main-menu .main-menu__list>li>a {
    font-size: 18px;
    display: flex;
    align-items: center;
    color: #412b23;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    position: relative;
    padding: 6px 8px;
    font-size: 14px;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: #fefefe;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, #fefefe 0px -3px 0px inset;
    text-shadow: 0 0 0.5px currentColor;
    background: var(--estal-base);
    padding: 6px 8px;
    border-radius: 15px 35px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

.video__buttons {
    display: flex;
    justify-content: center;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: linear-gradient(30deg, rgb(255, 255, 255) 20%, #412b23 80%);
    border: 2px solid #fff;
    transition: all 0.3s ease-in-out 0s;
    box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
    animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
    align-items: center;
    border: 0;
    position: relative;
    top: -21px;
  }
  
  .video__buttons:is(:hover, :focus) {
    transform: scale(1.2);
  }
  
  @keyframes pulse {
    100% {
      box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
    }
  }
  
  .why__choose__img img {
    border-radius: 20px;
  }
  
  .why__choose__img span {
    position: relative;
    top: -270px;
    left: 65px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  
  .why__choose__img span::after {
    position: absolute;
    content: "";
    width: 165px;
    height: 55px;
    background: var(--estal-base);
    top: 0px;
    left: -110px;
    z-index: -1;
    border-radius: 0px 30px 30px 0px;
    -webkit-border-radius: 0px 30px 30px 0px;
  }
  
  .why__choose__img span::before {
    position: relative;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 45px solid var(--estal-base);
    border-left: 45px solid transparent;
    top: -62px;
    left: -110px;
    transform: rotate(-270deg);
    z-index: -2;
  }
  
  .why__bottom__img {
    position: relative;
    top: -41px;
    border-radius: 20px;
    gap: 20px;
    padding-top: 10px;
    /* width: 200px;
      height: 200px; */
  }
  
  .why__bottom__img img {
    border-radius: 20px;
    /* width: 100%;
      height: 100%;
      object-fit: cover; */
  }
  
.why-choose-one {
    position: relative;
}

.why-choose-one__shape-1 {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    animation: shapeMove 4s linear 0s infinite;
    z-index: -1;
}

@media (min-width: 992px) {
    .why-choose-one__shape-1 {
        display: block;
    }
}

@keyframes shapeMove {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
}

.why-choose-one__inner {
    background-color: var(--estal-gray, #f9f6f1);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.why-choose-one__inner::before {
    content: "";
    width: 10000px;
    height: 100%;
    background-color: var(--estal-gray, #f9f6f1);
    position: absolute;
    top: 0;
    right: 100%;
}

.why-choose-one .container {
    position: relative;
}

.why-choose-one__content {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 1200px) {
    .why-choose-one__content {
        padding-left: 0;
        padding-right: 0;
    }
}

.why-choose-one__image {
    text-align: right;
    margin-top: 35px;
}

@media (min-width: 1200px) {
    .why-choose-one__image {
        margin-top: 0;
    }
}

.why-choose-one__image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* @media (min-width: 1200px) {
    .why-choose-one__image img {
        max-width: none;
    }
} */

.why-choose-one__highlighted {
    margin: 0;
    color: var(--estal-base, #412b23);
    font-size: 18px;
    line-height: 30px;
    margin-top: -20px;
}

@media (min-width: 768px) {
    .why-choose-one__highlighted {
        font-size: 20px;
    }
}

.why-choose-one__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-top: 15px;
}

@media (min-width: 1200px) {
    .why-choose-one__text {
        margin-top: 20px;
    }
}

.why-choose-one__list {
    margin-top: 15px;
}

.why-choose-one__list li b {
    color: var(--estal-base);
    font-size: 17px;
    font-family: var(--estal-special-font);
    font-weight: 700;
}
.why-choose-one__list li {
    font-size: 17px;
    font-family: roboto;
}
.why-choose-one__list__item {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .why-choose-one__list__item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.why-choose-one__list__item+.why-choose-one__list__item {
    margin-top: 20px;
}

.why-choose-one__list__icon {
    width: 57px;
    height: 57px;
    background-color: var(--estal-base, #412b23);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--estal-white, #fff);
    font-size: 21px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.why-choose-one__list__icon i {
    transform: scale(1);
    transition: 500ms ease;
}

.why-choose-one__list__icon:hover {
    background-color: var(--estal-black, #1c1a1d);
    color: var(--estal-white, #fff);
}

.why-choose-one__list__icon:hover i {
    transform: scale(0.9);
}

@media (min-width: 1200px) {
    .why-choose-one__list__icon {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.why-choose-one__list__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--estal-black, #1c1a1d);
    font-weight: bold;
}

@media (min-width: 1200px) {
    .why-choose-one__list__title {
        min-width: 130px;
    }
}

.why-choose-one__list__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.why-choose-one__list__title a:hover {
    background-size: 100% 1px;
}

.why-choose-one__list__text {
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    position: relative;
}

.why-choose-one__list__text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 57px;
    background-color: var(--estal-border-color, #e8e3da);
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 1200px) {
    .why-choose-one__list__text::before {
        display: block;
    }
}

@media (min-width: 1200px) {
    .why-choose-one__list__text {
        padding-left: 30px;
    }
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
    background-color: var(--estal-base, #412b23);
    /* background-image: url(../images/shapes/funfact-bg-1-1.jpg); */
    background-size: cover;
    background-position: center center;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 1200px) {
    .funfact-one {
        padding-top: 73.5px;
        padding-bottom: 73.5px;
    }
}

.funfact-one__list {
    margin: 0;
}

@media (min-width: 768px) {
    .funfact-one__list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

@media (min-width: 1200px) {
    .funfact-one__list {
        justify-content: space-between;
        gap: 0;
    }
}

.funfact-one__item {
    display: flex;
    align-items: center;
    margin-top: -6px;
    position: relative;
}

.funfact-one__item:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 67px;
    background-color: var(--estal-white, #fff);
    position: absolute;
    top: 50%;
    left: -57px;
    transform: translateY(-50%);
    opacity: 0.3;
    display: none;
}

@media (min-width: 1200px) {
    .funfact-one__item:not(:first-of-type)::before {
        display: block;
    }
}

@media (min-width: 768px) {
    .funfact-one__item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .funfact-one__item {
        flex: 0 0 auto;
        max-width: none;
    }
}

.funfact-one__item:hover .funfact-one__icon {
    transform: rotateY(360deg);
}

.funfact-one__item+.funfact-one__item {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .funfact-one__item+.funfact-one__item {
        margin-top: 0;
    }
}

.funfact-one__icon {
    font-size: 60px;
    color: var(--estal-white, #fff);
    margin-right: 20px;
    flex-shrink: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.funfact-one__count {
    margin: 0;
    color: var(--estal-white, #fff);
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
}

@media (min-width: 768px) {
    .funfact-one__count {
        font-size: 40px;
    }
}

.funfact-one__text {
    margin: 0;
    color: var(--estal-white, #fff);
    font-size: 16px;
    line-height: 36px;
    margin-top: 7px;
    margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .testimonials-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.testimonials-one .sec-title {
    text-align: center;
}

.testimonials-one .row {
    --bs-gutter-x: 15px;
}

.testimonials-one--page {
    padding-top: 100px;
}

@media (min-width: 992px) {
    .testimonials-one__carousel .owl-nav {
        display: none;
    }
}

.testimonials-one--home .sec-title {
    text-align: left;
}

.testimonials-one--home__text {
    font-size: 15px;
    line-height: 30px;
    margin: 105px 0 0;
}

@media (min-width: 1200px) {
    .testimonials-one--home__text {
        margin-left: 105px;
    }
}

@media (max-width: 991px) {
    .testimonials-one--home__text {
        margin: -30px 0 45px;
    }
}

.testimonials-card {
    transition: all 500ms ease;
}

.testimonials-card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-card__inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border: 1px solid var(--estal-border-color, #e8e3da);
    padding: 45px 40px;
}

@media (min-width: 1200px) {
    .testimonials-card__top {
        display: flex;
        align-items: center;
    }
}

.testimonials-card__image {
    flex-shrink: 0;
    margin-right: 20px;
    border: 5px solid var(--estal-white, #fff);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--estal-base, #412b23);
    transition: all 500ms ease;
    max-width: 102px;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .testimonials-card__image {
        margin-bottom: 0;
    }
}

.testimonials-card__image img {
    max-width: 100%;
    border-radius: 50%;
}

.testimonials-card__rating {
    display: flex;
    align-items: center;
}

.testimonials-card__rating i {
    color: var(--estal-base, #412b23);
    font-size: 12px;
    letter-spacing: var(--estal-letter-space-xl, 0.2em);
}

.testimonials-card__name {
    margin: 0;
    text-transform: uppercase;
    color: var(--estal-black, #1c1a1d);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-top: 13px;
    margin-bottom: 7px;
}

.testimonials-card__designation {
    margin: 0;
    line-height: 1;
    font-size: 16px;
}

.testimonials-card__content {
    font-size: 15px;
    line-height: 30px;
    border-top: 1px solid var(--estal-border-color, #e8e3da);
    margin-top: 30px;
    margin-bottom: -5px;
    padding-top: 20px;
    padding-right: 1px;
}

.cta-two {
    position: relative;
    background-color: var(--estal-base, #412b23);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-two__shape {
    position: absolute;
    left: -10px;
    top: 0;
}

.cta-two__shape img {
    animation: shapeMove 3s linear 0s infinite;
}

.cta-two__content {
    position: relative;
    padding: 85px 0 90px;
}

.cta-two__sub-title {
    font-family: var(--estal-special-font, "Alex Brush", cursive);
    color: var(--estal-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin: 0 0 2px;
}

.cta-two__title {
    color: var(--estal-white, #fff);
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 37px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cta-two__title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .cta-two__title {
        font-size: 35px;
    }
}

.cta-two__thumb {
    position: relative;
}

.cta-two__thumb__one {
    position: relative;
    right: 35px;
    margin-top: -28px;
}

@media (max-width: 991px) {
    .cta-two__thumb__one {
        right: 0;
    }
}

.cta-two__thumb__one__shape {
    position: absolute;
    left: -40px;
    top: -40px;
    width: 545px;
    height: 408px;
}

.cta-two__thumb__one__thumb {
    width: 482px;
    height: auto;
    border: 20px solid var(--estal-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(5deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb {
        width: 100%;
    }
}

.cta-two__thumb__one__thumb img {
    width: 100%;
    height: 282px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb img {
        height: auto;
    }
}

.cta-two__thumb__two {
    position: absolute;
    right: -48px;
    top: 195px;
    z-index: 3;
}

@media (max-width: 991px) {
    .cta-two__thumb__two {
        top: 45px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .cta-two__thumb__two {
        position: relative;
        top: 0;
        right: 0;
    }
}

.cta-two__thumb__two__flower {
    position: absolute;
    right: -10px;
    top: -121px;
    z-index: 4;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__flower {
        display: none;
    }
}

.cta-two__thumb__two__flower img {
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cta-two__thumb__two__shape {
    position: absolute;
    left: -45px;
    top: -60px;
    width: 446px;
    height: 421px;
}

.cta-two__thumb__two__thumb {
    width: 360px;
    height: auto;
    border: 20px solid var(--estal-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(-17.2deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb {
        width: 100%;
    }
}

.cta-two__thumb__two__thumb img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb img {
        height: auto;
    }
}
/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }
    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {
    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }
    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {
    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }
    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }
    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }
    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes leafMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        transform: rotate(-2deg) translateX(5px);
    }
    50% {
        transform: rotate(-4deg) translateX(10px);
    }
}

@keyframes messageMove {
    0%,
    100% {
        transform: translateX(0);
    }
    25%,
    75% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes flowerRotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25%,
    75% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
    position: fixed;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
    margin-bottom: -1px;
    margin-top: 0;
    border-bottom: 1px solid RGBA(var(--estal-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--estal-white, #fff);
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--estal-black, #1c1a1d);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--estal-black2, #141215);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
    display: block;
    padding: 0;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--estal-white, #fff);
    cursor: pointer;
}

.mobile-nav__close:hover {
    color: var(--estal-base, #412b23);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid RGBA(var(--estal-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
    padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid RGBA(var(--estal-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: var(--estal-white, #fff);
    font-size: 12px;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--estal-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--estal-base, #412b23);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--estal-base, #412b23);
    border: none;
    outline: none;
    color: var(--estal-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: var(--estal-white, #fff);
    color: var(--estal-black, #1c1a1d);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--estal-white, #fff);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--estal-base, #412b23);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--estal-white, #fff);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: inherit;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--estal-base, #412b23);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--estal-base, #412b23);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--estal-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--estal-white, #fff);
    font-size: 15px;
    color: var(--estal-text, #838184);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .estal-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
}

.search-popup__form .estal-btn i {
    margin: 0;
}

.search-popup__form .estal-btn::after {
    background-color: var(--estal-black, #1c1a1d);
}
/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

.google-map {
    position: relative;
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 440px;
    width: 100%;
    /* mix-blend-mode: luminosity; */
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--estal-gray, #f9f6f1);
}

.contact-map {
    position: relative;
    /* padding-bottom: 120px; */
    z-index: -1;
}

@media (max-width: 767px) {
    .contact-map {
        padding-bottom: 80px;
    }
}

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel {
    background-color: var(--estal-base, #412b23);
    background-image: url(../images/shapes/client-carousel-bg-1-1.jpg);
    background-size: cover;
    padding: 80px 0;
}

@media (min-width: 992px) {
    .client-carousel {
        padding: 102px 0;
    }
}

.client-carousel__one__item img {
    opacity: 0.2;
    transition: all 500ms ease;
    max-width: 100%;
    width: auto !important;
}

.client-carousel__one__item:hover img {
    opacity: 0.6;
}

.client-carousel-one {
    position: relative;
    background: var(--estal-white, #fff);
    padding: 0 0 60px;
}

.client-carousel-one .client-carousel__one {
    padding: 74px 0 0;
}

.client-carousel-one .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 2;
    line-height: 0.8;
}

.client-carousel-one .owl-theme .owl-nav button {
    width: 26px;
    height: 27px;
    background-color: var(--estal-gray, #f9f6f1);
    margin: 0 2.5px;
    padding: 0;
    transition: all 500ms ease;
    font-size: 12px;
    color: var(--estal-black, #1c1a1d);
    text-align: center;
    font-size: 12px;
    line-height: 27px;
    border-radius: 0;
}

.client-carousel-one .owl-theme .owl-nav button:hover {
    background-color: var(--estal-base, #412b23);
    color: var(--estal-white, #fff);
}

.client-carousel-one .owl-theme .owl-nav::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    content: "";
    height: 1px;
    background-color: var(--estal-border-color, #e8e3da);
    z-index: -1;
}

.client-carousel-one .owl-theme .owl-nav::after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    width: 110px;
    content: "";
    height: 1px;
    background-color: var(--estal-white, #fff);
}

.client-carousel-one .client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 103px;
    transition: all 500ms ease;
}

.client-carousel-one .client-carousel__one__item img {
    transition: all 500ms ease;
    opacity: 0.2;
    max-width: 100%;
    width: auto;
}

.client-carousel-one .client-carousel__one__item:hover {
    background-color: #f8f5f0;
}

.client-carousel-one .client-carousel__one__item:hover img {
    opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.main-slider-one {
    position: relative;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

.main-slider-one__carousel.owl-carousel .owl-nav {
    left: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
}

@media (max-width: 1400px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        left: 50px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        display: none;
    }
}

.main-slider-one__carousel.owl-carousel .owl-nav button {
    transition: all 400ms ease;
    width: 52px;
    height: 52px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: RGBA(var(--estal-white-rgb, 255, 255, 255), 0.1);
    border-radius: 50%;
    display: block;
    color: var(--estal-white, #fff);
    line-height: 53px;
    font-size: 16px;
    margin: 9px 0;
    text-align: center;
}

.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
    background-color: var(--estal-base, #412b23);
}

.main-slider-one__carousel .owl-dots {
    right: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
}

@media (max-width: 1400px) {
    .main-slider-one__carousel .owl-dots {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin: auto;
        left: 0;
        top: 68%;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots .owl-dot {
        margin: 0 6px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--estal-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background-color: var(--estal-white, #fff);
}

.main-slider-one__item {
    background-color: var(--estal-gray, #f9f6f1);
    position: relative;
    z-index: 3;
    padding-top: 223px;
    padding-bottom: 201px;
    height: 582px;
}

@media (max-width: 767px) {
    .main-slider-one__item {
        padding-top: 120px;
        height: 600px;
    }
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.main-slider-one__bg::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--estal-black-rgb, 28, 26, 29), 0.5);
}

.main-slider-one__bg::after {
    position: absolute;
    left: 0;
    bottom: -165px;
    width: 100%;
    height: 492px;
    z-index: 1;
    content: "";
    background-image: url(../images/shapes/hero-slider-1-1.png);
    background-position: bottom center;
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite;
}

@keyframes cloudMove {
    0% {
        background-position: -1920px 100%;
    }
    100% {
        background-position: 0 100%;
    }
}

.main-slider-one__content {
    position: relative;
    display: inline-block;
    z-index: 3;
    overflow: hidden;
}

.main-slider-one__sub-title {
    text-align: left;
    color: var(--estal-white, #fff);
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    font-family: var(--estal-special-font, "Alex Brush", cursive);
    margin: 0 0 -7px;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-200px);
}

.main-slider-one__sub-title img {
    width: 134px !important;
    height: 30px;
    top: -9px;
    position: relative;
    margin-left: 4px;
    display: inline-block !important;
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@media (max-width: 991px) {
    .main-slider-one__sub-title {
        font-size: 45px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__sub-title {
        font-size: 32px;
        margin-bottom: 5px;
    }
}

.main-slider-one__title {
    color: var(--estal-white, #fff);
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    display: inline-block;
    overflow: hidden;
    margin: 0 0 17px;
    opacity: 0;
    padding-top: 20px;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

@media (max-width: 1199px) {
    .main-slider-one__title {
        font-size: 110px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title {
        font-size: 85px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title {
        font-size: 50px;
    }
}

.main-slider-one__title::after {
    content: "";
    width: 101%;
    height: 70%;
    position: absolute;
    top: 22px;
    left: 100%;
    background: currentColor;
    transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    z-index: 3;
    transform: translateX(-100%);
    transition-delay: 1s;
}

@media (max-width: 1199px) {
    .main-slider-one__title::after {
        top: 19px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__title::after {
        top: 15px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__title::after {
        top: 8px;
    }
}

.main-slider-one__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-one svg {
    width: 100%;
    height: 770px;
    position: absolute;
    top: 0;
}

.main-slider-one circle {
    stroke: var(--estal-black, #1c1a1d);
    fill: none;
    transition: 0.5s;
}

.main-slider-one .steap {
    stroke-width: 0;
}

.main-slider-one #svg2 circle {
    transition-timing-function: linear;
}

.main-slider-one .circle1 {
    transition-delay: 0.05s;
}

.main-slider-one .circle2 {
    transition-delay: 0.1s;
}

.main-slider-one .circle3 {
    transition-delay: 0.15s;
}

.main-slider-one .circle4 {
    transition-delay: 0.2s;
}

.main-slider-one .circle5 {
    transition-delay: 0.25s;
}

.main-slider-one .circle6 {
    transition-delay: 0.3s;
}

.main-slider-one .circle7 {
    transition-delay: 0.35s;
}

.main-slider-one .circle8 {
    transition-delay: 0.4s;
}

.main-slider-one .circle9 {
    transition-delay: 0.45s;
}

.main-slider-one .active .steap {
    animation: dash 0.5s linear;
}

@keyframes dash {
    0% {
        stroke-width: 0;
    }
    100% {
        stroke-width: 200px;
    }
}

.main-slider-one .active .main-slider-one__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slider-one .active .main-slider-one__title::after {
    transform: translateX(1%);
    transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-one {
    position: relative;
    z-index: 2;
    background-color: var(--estal-gray, #f9f6f1);
    padding: 30px 0 65px;
}

.feature-one__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 497px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    mix-blend-mode: luminosity;
}

.feature-one__item {
    position: relative;
    margin-bottom: 30px;
}

.feature-one__item::after {
    position: absolute;
    right: -28px;
    top: 0;
    width: 1px;
    height: 95%;
    content: "";
    background-color: var(--estal-border-color, #e8e3da);
}

@media (max-width: 767px) {
    .feature-one__item::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .feature-one__item--no-border-md::after {
        display: none;
    }
}

.feature-one__item--no-border::after {
    display: none;
}

.feature-one__item:hover .feature-one__item__img::after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s;
}

.feature-one__item:hover .feature-one__item__icon span {
    transform: scale(0.9);
}

.feature-one__item:hover .feature-one__item__hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.feature-one__item__hover-img {
    position: absolute;
    left: -125px;
    top: -25px;
    right: 0;
    margin: auto;
    width: 164px;
    height: 157px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease;
}

.feature-one__item__hover-img img {
    width: 100%;
}

@keyframes float-bob-y-2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.feature-one__item__img {
    width: 171px;
    height: 171px;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 30px;
}

.feature-one__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-one__item__img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(var(--estal-white-rgb, 255, 255, 255), 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

.feature-one__item__icon {
    width: 66px;
    height: 66px;
    background-color: var(--estal-base, #412b23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--estal-white, #fff);
    position: absolute;
    right: 0;
    bottom: 0;
}

.feature-one__item__icon span {
    transform: scale(1);
    transition: 500ms ease;
}

.feature-one__item__sub-title {
    font-size: 34px;
    color: var(--estal-base, #412b23);
    font-weight: 400;
    line-height: 1;
    font-family: var(--estal-special-font, "Alex Brush", cursive);
    margin: 0 0 -2px;
}

.feature-one__item__title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 -5px;
}

.feature-one__item svg {
    width: 31px;
    height: 4px;
    fill: var(--estal-base, #412b23);
}

.feature-one__item__text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    max-width: 280px;
    margin: 9px auto 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0;
    }
}

.about-one__image {
    position: relative;
    z-index: 2;
}

.about-one__image__info {
    position: absolute;
    right: 42px;
    top: 225px;
    width: 278px;
    background-color: var(--estal-white, #fff);
    padding: 38px 30px 41px 100px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.about-one__image__info::after {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    content: "";
    border-width: 2px;
    border-style: solid;
    border-image: linear-gradient(-45deg, rgba(var(--estal-base-rgb, 194, 167, 78), 1) 0%, rgba(var(--estal-black-rgb, 28, 26, 29), 1) 100%) 1;
    z-index: -1;
}

@media (max-width: 767px) {
    .about-one__image__info {
        position: relative;
        right: 0;
        left: 0;
        bottom: 35px;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-one__image__info {
        bottom: -45px;
        right: 0;
        left: 0;
        margin: auto;
    }
}

.about-one__image__info:hover .about-one__image__info__icon span {
    transform: rotateY(180deg);
}

.about-one__image__info__icon {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background-color: var(--estal-base, #412b23);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--estal-white, #fff);
}

.about-one__image__info__icon span {
    display: block;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.about-one__image__info__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--estal-text, #838184);
    margin: 0 0 8px;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
}

.about-one__image__info__text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--estal-black, #1c1a1d);
    margin: 0;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
}

.about-one__image__info__text a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.about-one__image__info__text a:hover {
    color: var(--estal-base, #412b23);
    background-size: 100% 1px;
}

.about-one__image__arrow {
    position: absolute;
    right: -14px;
    bottom: -60px;
    z-index: -1;
}

@media (max-width: 991px) {
    .about-one__image__arrow {
        display: none;
    }
}

.about-one__image__arrow img {
    max-width: 100%;
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.about-one__double-image {
    display: grid;
    grid-template-columns: repeat(2, auto);
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-one__double-image {
        padding-left: 90px;
    }
}

.about-one__double-image img {
    max-width: 100%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    border-radius: 40px 20px 55px 70px;
}

.about-one__double-image img:last-child {
    margin-left: 10px;
}

.about-one__flower {
    position: absolute;
    left: -80px;
    bottom: -80px;
    background-color: var(--estal-gray, #f9f6f1);
    overflow: hidden;
    width: 87.8%;
    height: 88.3%;
    z-index: -1;
    background-position: -42px 123%;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 991px) {
    .about-one__flower {
        left: 0;
    }
}

@media (max-width: 767px) {
    .about-one__flower {
        display: none;
    }
}

.about-one .sec-title {
    padding-bottom: 36px;
}

.about-one__content {
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .about-one__content {
        padding-top: 120px;
    }
}

@media (min-width: 1200px) {
    .about-one__content {
        padding-left: 70px;
    }
}

.about-one__content__list {
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 767px) {
    .about-one__content__list {
        display: block;
    }
}

.about-one__content__list li {
    list-style: none;
    display: flex;
    align-items: center;
    background-color: var(--estal-white, #fff);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--estal-black, #1c1a1d);
    font-family: var(--estal-heading-font, "Cormorant", serif);
    padding: 11px 10px 11px 31px;
}

@media (max-width: 767px) {
    .about-one__content__list li {
        max-width: 240px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-one__content__list li {
        padding: 11px 30px 11px 25px;
    }
}

.about-one__content__list li span {
    display: inline-block;
    font-size: 24px;
    margin-right: 7px;
    color: var(--estal-base, #412b23);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.about-one__content__list li:hover span {
    transform: rotateY(180deg);
}

.about-one__content__text-one {
    font-size: 20px;
    line-height: 34px;
    color: var(--estal-base, #412b23);
    margin: 0 0 34px;
}

.about-one__content__text-two {
    line-height: 30px;
    margin: 0 0 42px;
}

.about-one__content__author-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .about-one__content__author-wrapper {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-one__content__author-wrapper .estal-btn {
        padding: 16.25px 27px;
    }
}

.about-one__content__author {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    margin: 0 0 0 20px;
}

@media (max-width: 767px) {
    .about-one__content__author {
        margin: 20px 0 0;
    }
}

.about-one__content__author__thumb {
    width: 58px;
    height: 58px;
    background-color: var(--estal-base, #412b23);
    border-radius: 50%;
    padding: 4px;
    overflow: hidden;
}

.about-one__content__author__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-one__content__author__meta {
    display: block;
    position: relative;
    margin: 0;
    padding-left: 15px;
    font-size: 14px;
}

.about-one__content__author__meta img {
    display: block;
}

/* Services */

.service-one {
    position: relative;
    background-color: var(--estal-white, #fff);
    padding: 120px 0;
}

.service-one__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 160px);
    margin-top: -160px;
    z-index: 2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--estal-gray, #f9f6f1);
}

@media (min-width: 1400px) {
    .service-one__bg {
        width: calc(100% - 240px);
        left: 120px;
    }
}

@media (max-width: 767px) {
    .service-one {
        padding: 80px 0;
    }
}

.service-one .container {
    position: relative;
    z-index: 3;
    margin-top: -160px;
}


.service-one .sec-title {
    text-align: center;
}

.service-one .col-lg-3 {
    width: 20%;
}

@media (max-width: 1199px) {
    .service-one .col-lg-3 {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .service-one .col-lg-3 {
        width: 100%;
    }
}

.service-one__item {
    position: relative;
    background-color: var(--estal-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--estal-black3-rgb, 0, 0, 0), 0.07);
    margin-bottom: 30px;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    transition: all 500ms ease;
}

.service-one__item__wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 39px 30px 36px;
    transition: all 500ms ease;
}

.service-one__item__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: 500ms ease;
    transform: scale(1.2);
    z-index: -1;
}

.service-one__item__hover::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(var(--estal-black2-rgb, 20, 18, 21), 0.7);
}

.service-one__item:hover .service-one__item__hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.service-one__item:hover .service-one__item__title {
    color: var(--estal-white, #fff);
}

.service-one__item__icon {
    font-size: 60px;
    line-height: 1;
    position: relative;
    z-index: 3;
    color: var(--estal-base, #412b23);
    display: inline-block;
    margin: 0 0 23px;
    transition: 500ms ease;
}

.service-one__item__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}

.service-one__item:hover .service-one__item__icon {
    color: var(--estal-base, #412b23);
}

.service-one__item:hover .service-one__item__icon span {
    transform: scale(0.9);
}

.service-one__item__title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 125px;
    transition: all 300ms ease;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

.service-one__item__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}

.service-one__item__title a:hover {
    color: var(--estal-base, #412b23);
    background-size: 100% 1px;
}

.service-one__info {
    position: relative;
    max-width: 830px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--estal-border-color, #e8e3da);
    padding: 17px 18px 16px 28px;
}

@media (max-width: 767px) {
    .service-one__info {
        display: block;
        text-align: center;
    }
}

.service-one__info__text {
    margin: 0;
}

.service-one__info .estal-btn {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 11px 29px;
}

@media (max-width: 767px) {
    .service-one__info .estal-btn {
        margin: 15px 0 10px;
    }
}
/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/

.instagram-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .instagram-one {
        padding: 80px 0;
    }
}

@media (min-width: 1400px) {
    .instagram-one .container {
        max-width: 1380px;
    }
}

.instagram-one__title {
    display: block;
    text-align: center;
    position: relative;
    font-size: 14px;
    color: var(--estal-text, #838184);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--estal-font, "Plus Jakarta Sans", sans-serif);
    letter-spacing: 2.8px;
    margin: 0 auto 39px;
}

.instagram-one__title span {
    display: inline-block;
    background-color: var(--estal-white, #fff);
    position: relative;
    z-index: 2;
    padding: 0 28px;
}

@media (max-width: 550px) {
    .instagram-one__title span {
        padding: 0 18px;
    }
}

.instagram-one__title::after {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 9px;
    width: 518px;
    height: 1px;
    content: "";
    background-color: var(--estal-border-color, #e8e3da);
}

@media (max-width: 550px) {
    .instagram-one__title::after {
        width: 100%;
    }
}

.instagram-one a {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.instagram-one a::before {
    position: absolute;
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 55%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--estal-white, #fff);
    font-size: 30px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    transition-delay: 0s;
}

.instagram-one a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    opacity: 0;
    background: rgba(var(--estal-black-rgb, 28, 26, 29), 0.5);
    visibility: hidden;
    transition: all ease 0.4s;
}

.instagram-one a img {
    width: 100%;
    height: auto;
    transition: all ease 0.3s;
}

/*--------------------------------------------------------------
# Opening Time
--------------------------------------------------------------*/

.opening {
    position: relative;
    margin-bottom: -85px;
}

@media (max-width: 1199px) {
    .opening {
        margin-bottom: 0;
    }
}

.opening--home-three {
    margin-bottom: 0;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .opening--home-three {
        padding-bottom: 80px;
    }
}
.background-black {
    background-color: var(--estal-black, #412b23);
  }
.opening__wrapper {
    background-color: var(--estal-base, #412b23);
    position: relative;
    z-index: 2;
    padding: 39px 0;
    border-radius: 25px 85px;
    border: 1px solid #fefefe;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

@media (max-width: 767px) {
    .opening__wrapper {
        padding: 30px 20px;
        text-align: center;
    }
}

.opening__wrapper::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 100%;
    content: "";
    opacity: 0.102;
    background-image: linear-gradient(90deg, rgba(var(--estal-black-rgb, 28, 26, 29), 0) 0%, rgba(var(--estal-black-rgb, 28, 26, 29), 1) 100%);
}

@media (max-width: 991px) {
    .opening__wrapper::after {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .opening__wrapper::after {
        width: 155px;
    }
}

.opening__icon {
    font-size: 65px;
    color: var(--estal-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0 0;
    margin-right: -10px;
    position: relative;
    z-index: 2;
}

.opening__title {
    color: var(--estal-white, #fff);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    margin: 27px -30px 0 33px;
    position: relative;
}

@media (max-width: 767px) {
    .opening__title {
        margin: 20px 0 0;
    }
}

.opening__info {
    font-size: 12px;
    line-height: 30px;
    color: var(--estal-white, #fff);
    text-transform: uppercase;
    padding: 12px 0 20px;
    margin: 0 0 0 -14px;
}

@media (max-width: 991px) {
    .opening__info {
        margin: 0 0 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .opening__info {
        margin: 0 0 0;
    }
}

.opening__info--last {
    margin-left: -45px;
    padding-left: 60px;
    border-left: 1px solid rgba(var(--estal-white-rgb, 255, 255, 255), 0.2);
}

@media (max-width: 991px) {
    .opening__info--last {
        margin: 0 0 0;
        padding: 0;
        border: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .opening__info--last {
        margin-left: -30px;
        padding-left: 20px;
    }
}

.opening__info__text {
    display: block;
    font-size: 20px;
    text-transform: none;
}
.stone___icon {
    background: var(--estal-base);
    height: 100%;
    width: 45px;
    padding: 8px 2px;
}
.stone___icon img {
    height: 30px;
    width: 30px;
    display: block;
    margin: 0 auto;
}


.service-page {
    padding: 120px 0;
    padding-top: 100px;
    background-color: var(--estal-white, #fff);
}

@media (max-width: 767px) {
    .service-page {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.service-page--home {
    position: relative;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .service-page--home {
        padding: 80px 0;
    }
}

.service-page--home .sec-title {
    text-align: center;
}

.service-card-two {
    height: 610px;
    max-width: 435px;
    background-repeat: no-repeat;
    background-position: top left;
    text-align: center;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(3, 59, 47, 0.932) 0px -4px 0px inset;
    background-color: var(--estal-white, #fff);
    border-radius: 40px 80px;
}

@media (max-width: 1199px) {
    .service-card-two {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .service-card-two__carousel .owl-nav {
        display: none;
    }
}

.service-card-two__image {
    width: 210px;
    height: 210px;
    border: 6px solid var(--estal-white, #fff);
    box-shadow: 0 0 0 1px var(--estal-base, #412b23);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 30px;
    background-color: var(--estal-black, #1c1a1d);
    transition: all 500ms ease;
}

.service-card-two__image img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
}

.service-card-two__image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(var(--estal-white-rgb, 255, 255, 255), 0.2);
    border-radius: 50%;
    transition: all 500ms linear;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

.service-card-two:hover .service-card-two__image {
    border-color: var(--estal-base, #412b23);
}

.service-card-two:hover .service-card-two__image::after {
    animation: zoom-hover 0.95s;
}

.service-card-two__content__shape {
    display: block;
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
}

.service-card-two__icon {
    width: 106px;
    height: 106px;
    background-color: var(--estal-base, #412b23);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--estal-white, #fff);
    font-size: 60px;
    position: absolute;
    left: 0px;
    top: 0;
    line-height: 1;
    transform: translateX(calc(-50% + 30px));
}

.service-card-two__icon i {
    display: block;
    transform: scale(1);
    transition: transform 500ms ease;
}

.service-card-two__icon:hover i {
    transform: scale(0.9);
}

.service-card-two__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--estal-black, #1c1a1d);
    font-size: 22px;
    line-height: 1.2em;
    margin-top: -5px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .service-card-two__title {
        font-size: 24px;
    }
}

.service-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-card-two__title a:hover {
    background-size: 100% 1px;
}

.service-card-two__title a:hover {
    color: var(--estal-base, #412b23);
}

.service-card-two__text {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
    margin-top: 10px;
    padding-bottom: 21px;
    margin-bottom: 5px;
}

.service-card-two__link {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: var(--estal-letter-space, 0.1em);
    color: var(--estal-white, #1c1a1d);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
    text-shadow: 0 0 0.5px currentColor;
    justify-content: center;
    background: var(--estal-base, #f9f6f1);
    padding: 14.5px 0;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(255, 255, 255, 0.952) 0px -3px 0px inset;
    border-radius: 50px 30px 60px 80px;
}

.service-card-two:hover .service-card-two__link {
    background: var(--primary-bg-color);
    color: var(--estal-white, #fff);

}

.service-card-two__link i {
    font-size: 16px;
    margin-left: 9px;
}


.view__mores__button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--estal-base);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    width: 200px;
    margin: 0 auto;
    text-decoration: none;
  }
  
  .icons__symbol {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .view__mores__button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .view__mores__button:hover .icons__symbol {
    transform: translate(4px);
  }
  
  .view__mores__button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .view__mores__button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  
  .page-header {
    background-color: var(--estal-black, #1c1a1d);
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  /* @media (min-width: 992px) {
    .page-header {
      padding-top: 145px;
      padding-bottom: 240.5px;
    }
  } */
  .page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/about/breadcrumb.jpg);
  }
  /* .page-header__bg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    top: 0;
    background-image: url(../images/shapes/hero-slider-1-1.png);
    background-repeat: repeat-x;
    animation: cloudMove 60s linear 0s infinite;
    background-position: bottom center;
  } */
  .page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  .page-header__title {
    margin: 0;
    font-size: 40px;
    color: var(--estal-white, #fff);
    text-transform: uppercase;
  }
  @media (min-width: 768px) {
    .page-header__title {
      font-size: 50px;
    }
  }
  .page-header__shape {
    display: inline-flex;
    margin-bottom: 13px;
  }
  
  .estal-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 13px;
  }
  @media (min-width: 768px) {
    .estal-breadcrumb {
      margin-bottom: 7px;
    }
  }
  .estal-breadcrumb li {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
  }
  .estal-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: -1px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .estal-breadcrumb li span,
  .estal-breadcrumb li a {
    color: inherit;
    display: inline-flex;
    line-height: 1em;
  }
  .estal-breadcrumb li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .estal-breadcrumb li a:hover {
    background-size: 100% 1px;
  }

  /* comman btn */
  .comman-inner-btn .main-comman__btn {
    position: fixed;
    bottom: 250px;
    right: -40px;
    transform: rotate(-90deg);
    z-index: 100;
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: rgba(129, 216, 243, 0.856);
    --btn-bg-2: hsla(217 100% 56% / 1);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 0.4em 1.4em;
    text-align: center;
    min-width: 120px;
    min-height: 30px;
    font-size: var(--size, 1rem);
    font-weight: 700;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(
      325deg,
      var(--btn-bg-2) 0%,
      var(--btn-bg-1) 50%,
      var(--btn-bg-2) 90%
    );
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow:
      0px 0px 20px rgba(71, 184, 255, 0.5),
      0px 5px 5px -1px rgba(58, 125, 233, 0.25),
      inset 4px 4px 8px rgba(175, 230, 255, 0.5),
      inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  }
  
  .comman-inner-btn .main-comman__btn:hover {
    background-position: right top;
  }
  
  .comman-inner-btn .main-comman__btn:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow:
      0 0 0 3px var(--btn-bg-color),
      0 0 0 6px var(--btn-bg-2);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .comman-inner-btn .main-comman__btn {
      transition: linear;
    }
}
.blinks {
    animation: blink 1.2s infinite;
  }
  
  @keyframes blink {
    0% {
      opacity: 0
    }
  
    49% {
      opacity: 0
    }
  
    50% {
      opacity: 1
    }
  }
  .whatsapp__buttons {
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 140px;
    right: 4px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #25D366;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    text-decoration: blink;
    /* -webkit-animation-name: blinkers;
      -webkit-animation-duration: 0.7s;
      -webkit-animation-iteration-count:infinite;
      -webkit-animation-timing-function:ease-in-out;
      -webkit-animation-direction: alternate;
    transition: all ease-in-out .4s; */
  
  }
  .whatsapp__buttons a svg {
    text-align: center;
    display: block;
    margin: 3px auto;
    color: white;
    fill: #fff;
  }
  /* end */

  
  @media (min-width: 320px) and (max-width: 768px) {
  .why__choose__img span::after {
    position: absolute;
    content: "";
    width: 165px;
    height: 55px;
    background: linear-gradient(30deg, rgb(11, 41, 105) 20%, #cb6de6 80%);
    top: 0px;
    left: -109px;
    z-index: -1;
    border-radius: 0px 30px 30px 0px;
    -webkit-border-radius: 0px 30px 30px 0px;
    display: none;
  }
  .estal-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    display: none;
}
.estal-owl__carousel--with-shadow .owl-stage-outer {
    /* overflow: visible; */
    height: 645px;
    padding: 3px 0px !important;
}
  
  .why__choose__img span {
    position: relative;
    top: -103px;
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

  .why__choose__img span::before  {
    position: relative;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 45px solid rgb(11, 41, 105);
    border-left: 45px solid transparent;
    top: -66px;
    left: -109px;
    transform: rotate(-270deg);
    z-index: -2;
    display: none;
  }
    .video__buttons {
        display: flex;
        justify-content: center;
        color: hsl(0, 0%, 100%);
        width: 65px;
        height: 65px;
        border-radius: 100%;
        background: linear-gradient(30deg, rgb(255, 255, 255) 20%, #cb6de6 80%);
        border: 2px solid #fff;
        transition: all 0.3s ease-in-out 0s;
        box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
        animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
        align-items: center;
        border: 0;
        position: relative;
        left: 85px;
        /* top: -21px; */
    }
}