/* #region REQUIRED */

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
html {
    margin: 0;
    background: #262b14;
}

body,
button,
input,
select,
optgroup,
textarea {
    color: #e3e3e3;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 300;
    word-break: break-word;
    box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Belleza", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #ffffff;
    text-transform: uppercase;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

strong,
b {
    color: #e8d4ad;
}

.section-title span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0;
    font-family: "Meddon", cursive;
    color: #e8d4ad;
    margin-bottom: 0px;
    line-height: 1em;
    text-transform: lowercase;
}

.section-title h2 {
    font-size: 2.5em;
    font-weight: 400;
    line-height: 1.05em;
}

.btn-inline,
.btn-outline {
    background-color: transparent;
    color: #ffffff;
    box-shadow: none;
    outline: none;
    position: relative;
    display: inline-block;
    line-height: 23px;
    border: 1px solid #e8d4ad;
    border-radius: 0;
    padding: 12px 26px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: .1em;
    font-family: "Belleza", cursive;
    font-weight: 400;
    font-size: 16px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.btn-inline {
    background-color: #e8d4ad;
    color: #262b14;
    font-weight: bold;
}

.btn-inline:hover,
.btn-outline:hover {
    border-radius: 0 30px;
}

/* #endregion */


/* #region HEADER */

header.sticky-header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #2d331b;
    border-bottom: 1px solid #e8d4ad;
}

.header-desktop .header-flex {
    display: flex;
    flex-direction: column;
    width: calc((1 - 0) * 100%);
    height: initial;
    flex-grow: 0;
    align-self: initial;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: min(100%, 100%);
}

.header-desktop .header-flex .header-column .main-menu {
    display: flex;
    flex-direction: row;
    width: initial;
    height: 100%;
    flex-grow: 1;
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 60px;
    row-gap: 60px;
    column-gap: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.header-desktop .header-flex .header-column .menu-left {
    width: 340px;
    max-width: 340px;
    flex-grow: 0;
    text-align: right;
    position: relative;
    margin: 0;
}

.header-desktop .header-flex .header-column .container-menu,
.header-mobile .header-flex .header-column .main-menu .menu-left .container-menu {
    height: 100%;
}

.header-desktop .header-flex .header-column .menu-center .container-menu {
    margin: 30px 0px 30px 0px;
}

.header-desktop .header-flex .header-column nav {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: auto;
}

.header-desktop .header-flex .header-column nav>ul {
    position: relative;
    display: flex;
    width: 100%;
    vertical-align: middle;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    list-style: none;
    margin: 0px 0px;
    padding: 0px 0px;
}

.header-desktop .header-flex .header-column nav>ul>li:first-child {
    margin-left: 0;
}

.header-desktop .header-flex .header-column nav>ul>li {
    margin: 0px 20PX;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.header-desktop .header-flex .header-column nav>ul>li>a {
    padding-right: 0;
    position: relative;
    display: inline-block;
    padding: 0 0px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    letter-spacing: .1em;
    outline: none;
    color: inherit;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.header-desktop .header-flex .header-column nav>ul>li>a:hover,
.header-desktop .header-flex .header-column nav>ul>li>a.active {
    color: #e8d4ad;
    border-radius: 0 30px;
}

.header-desktop .header-flex .header-column nav>ul>li>a.link-other,
.header-mobile .header-flex .header-column .main-menu .menu-center nav>ul>li>a {
    border: 1px solid #e8d4ad;
    padding: 5px 15px;
}

.header-desktop .menu-center .container-menu .logo-header img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    width: 100%;
    max-width: 140px;
}

.header-mobile {
    display: none;
}

.header-mobile .header-flex {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    align-self: stretch;
    padding: 10px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 100%);
    align-items: normal;
    flex-wrap: nowrap;
    justify-content: normal;
}

.header-mobile .header-flex .header-column {
    display: flex;
    align-items: center;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-wrap: initial;
    justify-content: initial;
    flex-direction: initial;
    gap: 20px;
    height: 100%;
    padding: 10px 0;
    margin: 0 auto;
    max-width: min(100%, 1030px);
    padding-inline-end: 0;
    padding-inline-start: 0;
    padding-block-end: 10px;
    padding-block-start: 10px;
    width: 100%;
}

.header-mobile .header-flex .header-column .main-menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    align-self: stretch;
    flex-wrap: nowrap;
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 1;
    flex: 0 1 auto;
    max-width: 1024px;
    padding: 0 20px;
    margin: 0 auto;
}

.header-mobile .header-flex .header-column .main-menu .menu-left {
    display: flex;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    flex-direction: column;
}

.header-mobile .header-flex .header-column .main-menu .menu-left .logo-header img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    width: 100%;
    max-width: 150px;
    margin: auto;
    margin-bottom: 10px;
}

.header-mobile .header-flex .header-column .main-menu .menu-center {
    display: flex;
    flex-direction: row;
    height: 100%;
    flex-grow: 1;
    flex-wrap: wrap;
    align-self: center;
    justify-content: flex-end;
    padding: 0;
}

.header-mobile .header-flex .header-column .main-menu .menu-center nav>ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header-mobile .header-flex .header-column .main-menu .menu-center nav>ul>li {
    margin: 0px 20PX;
    padding: 0px 0px;
    float: left;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.header-mobile .header-flex .header-column .main-menu .menu-center nav>ul>li>a {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 12px;
    list-style: none;
    position: relative;
    display: inline-block;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    letter-spacing: .1em;
    outline: none;
    color: inherit;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.header-mobile .header-flex .header-column .main-menu .menu-right {
    display: flex;
    flex-direction: row;
    height: 100%;
    flex-grow: 1;
    align-self: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px 15px;
    row-gap: 15px;
    column-gap: 15px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    max-width: max-content;
}

.header-mobile .header-flex .header-column .main-menu .menu-right .menu-toggle button {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    font-size: 2.5rem;
    color: #ffff;
}

.header-mobile .wrapper-menu-toggle {
    background: #262b14;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}

.header-mobile .wrapper-menu-toggle {
    height: 100%;
    width: 100%;
    max-width: 327px;
    padding: 20px 52px 35px 35px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.header-mobile .wrapper-menu-toggle .menu-inner .menu-close>a {
    display: block;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #e8d4ad;
    outline: none;
}

.header-mobile .wrapper-menu-toggle .menu-inner .mobile-nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Belleza", sans-serif;
}

.header-mobile .wrapper-menu-toggle .menu-inner .mobile-nav-menu ul>li {
    position: relative;
    list-style: none;
}

.header-mobile .wrapper-menu-toggle .menu-inner .mobile-nav-menu ul>li>a {
    padding: 10px 30px 10px 0;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-mobile .wrapper-menu-toggle .menu-inner .mobile-nav-menu ul>li>a::after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 15px;
    color: #e8d4ad;
    position: absolute;
    right: 0;
}

@media only screen and (max-width: 1200px) {
    .header-desktop .header-flex .header-column .main-menu {
        column-gap: 25px;
    }
}

@media only screen and (max-width: 1030px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }
}

@media only screen and (max-width: 580px) {
    .header-mobile .main-menu {
        flex-wrap: wrap !important;
        justify-content: space-between;
    }

    .header-mobile .menu-center {
        order: 3;
        width: 100% !important;
        justify-content: center !important;
    }

    .header-mobile .menu-right {
        order: 2;
    }
}


/* #endregion */


/* #region HOME */

.wrapper-slider .item-slider {
    position: relative;
    width: 100%;
    height: clamp(320px, 80vh, 800px);
    background-color: #262b142c;
}

.wrapper-slider .item-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-slider .item-slider .text-animation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #3d3d3d3b;
    display: grid;
    align-content: center;
    grid-auto-flow: row;
    justify-items: center;
    justify-content: center;
}

.wrapper-slider .item-slider .text-animation h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: "Belleza", sans-serif;
    font-size: 50px;
    margin: 0;
    color: #ffffff;
}

.wrapper-slider .item-slider .text-animation>h2:last-child {
    color: #e8d4ad;
}

.wrapper-slider .item-slider .text-animation h3 {
    font-size: 40px;
    font-family: "Meddon", cursive;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 1em;
    text-transform: lowercase;
    letter-spacing: 0;
}


.wrapper-services .item-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    border: 1px solid #ffffff4d;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.wrapper-services .item-service:hover {
    border-color: #e8d4ad;
}

.wrapper-services .item-service .img-service {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
    overflow: hidden;
}

.wrapper-services .item-service .img-service>img {
    width: 100%;
    border-radius: 0 0 0 5em;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.wrapper-services .item-service .content-service h4 {
    font-size: 35px;
    line-height: 35px;
    color: #e8d4ad;
}

.wrapper-services .item-service:hover img {
    border-color: #e8d4ad;
}

.wrapper-services .item-service:hover button {
    border-radius: 0 30px;
}



.section-reviews .list-reviews {
    padding-top: 2rem;
    position: relative;
}

.list-reviews .item-review {
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: block;
    text-align: center;
    padding-top: 1rem;
}

.list-reviews .item-review .icon {
    font-size: 3rem;
    color: #e8d4ad;
}

.list-reviews .item-review .content {
    font-style: italic;
}

.list-reviews .item-review .info .star {
    color: #e8d4ad;
}

.list-reviews .item-review .info .name {
    font-family: "Belleza", sans-serif;
    font-size: 25px;
    margin-top: 10px;
    color: #e8d4ad;
}

.list-reviews .slick-arrow {
    background: transparent;
    box-shadow: none;
    outline: none;
    border: none;
    font-size: 25px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    z-index: 5;
}

.list-reviews .slick-arrow::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e8d4ad;
    opacity: 0.5;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.list-reviews .btn-next-slick-review {
    right: 0;
    left: 60%;
}

.list-reviews .btn-pre-slick-review {
    left: 40%;
    right: 0;
}

.list-reviews .slick-arrow:hover {
    color: #e8d4ad;
}

.list-reviews .slick-arrow:hover::after {
    border-radius: 0 20px;
    opacity: 1;
}



.section-gallery .slick-gallery .item-gallery {
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: block;
    margin: auto;
    padding: 10px;
}

.section-gallery .slick-gallery .item-gallery .img {
    padding: 10px;
    border: 1px solid #e8d4ad;
    overflow: hidden;
}

.section-gallery .slick-gallery .item-gallery .img,
.section-gallery .slick-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10rem;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.section-gallery .slick-gallery img:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}


@media only screen and (max-width: 1200px) {
    .wrapper-services .item-service .content-service h4 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    .wrapper-slider .item-slider .text-animation h2 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 540px) {
    .wrapper-services .item-service .content-service h4 {
        font-size: 25px;
    }
}

/* #endregion */


/* #region ABOUT */

.wrapper-about-us .img-about {
    position: relative;
    width: 100%;
    height: 1005;
    max-width: 500px;
    margin: auto;
    object-fit: cover;
    overflow: hidden;
    display: block;
    padding: 1rem;
    border: 1px solid #e8d4ad;
    border-radius: 50em;
}

.wrapper-about-us .img-about>img {
    width: 100%;
    border-radius: 50em;
}

/* #endregion */


/* #region SERVICES */

.wrapper-our-services {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.wrapper-our-services .services-group {
    padding: 1rem 0;
}

.wrapper-our-services .img-service img {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: block;
    border-radius: 0 0 0 10rem;
    padding: 1rem;
    border: 1px solid #e8d4ad;
    border-top: 0;
    border-right: 0;
}

.wrapper-our-services .category-name {
    font-family: "Belleza", sans-serif;
    font-size: 40px;
    color: #e8d4ad;
    line-height: 40px;
    text-align: center;
}

.wrapper-our-services .category-description {
    text-align: center;
    font-size: 18px;
    color: #e8d4ad;
}

.wrapper-our-services .list-service-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrapper-our-services .list-service-details .item {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.wrapper-our-services .list-service-details .item>.name {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.wrapper-our-services .list-service-details .item>.dots {
    border-top-style: dashed;
    border-top-width: 1px;
    border-top-color: #b5a380;
    flex-grow: 1;
    margin: 0 10px;
}

.wrapper-our-services .list-service-details .item>.price {
    color: #e8d4ad;
    font-weight: bold;
    white-space: nowrap;
}

.wrapper-our-services .list-service-details .description {
    color: #cfcfcf;
}

.wrapper-our-services .list-service-details .subcategory-name {
    font-family: "Belleza", sans-serif;
    color: #e8d4ad;
    text-transform: uppercase;
}

.wrapper-our-services .list-service-details .item-subcategory {
    padding-left: 2rem;
    line-height: 40px;
}

/* #endregion */


/* #region GALLERY */

.wrapper-gallery .name-cate-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wrapper-gallery .name-cate-img li {
    font-family: "Belleza", sans-serif;
    font-size: 20px;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e8d4ad;
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
}

.wrapper-gallery .name-cate-img li.active {
    background-color: #e8d4ad;
    color: #2d331b;
}

.wrapper-gallery .item-gallery-box .item-img {
    position: relative;
    overflow: hidden;
    border: 1px solid #e8d4ad;
}

.wrapper-gallery .item-gallery-box .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1rem;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.wrapper-gallery .item-gallery-box .item-img img:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* #endregion */


/* #region CONTACT */

.wrapper-contact-form .img-contact {
    padding: 1rem 0;
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: block;
    object-fit: cover;
}

.wrapper-contact-form .img-contact img {
    width: 100%;
    height: 100%;
    border-radius: 15rem 0 0;
}

.wrapper-contact-form .order-0 .img-contact img {
    border-radius: 0 0 15rem 0;
}

.wrapper-contact-form input,
.wrapper-contact-form textarea {
    width: 100%;
    background-color: transparent;
    padding: 15px 10px 15px 36px;
    border-width: 0 0 1px 0;
    border: 1px solid #ffffff14;
    border-color: transparent;
    border-radius: 0;
    vertical-align: middle;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    line-height: 1.625;
    font-weight: 300;
    word-break: break-word;
    font-family: "Inter", sans-serif;
}

.wrapper-contact-form input::placeholder,
.wrapper-contact-form textarea::placeholder {
    opacity: 1;
    color: #ffffff;
}

.wrapper-contact-form .bottom-line {
    display: block;
    height: 1px;
    width: 100%;
    position: relative;
    background-color: rgb(255, 255, 255, .15);
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
    margin-top: -1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.wrapper-contact-form .bottom-line::before {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: #ffffff;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.wrapper-contact-form .item-contact:focus-within .bottom-line::before {
    width: 100%;
}

.wrapper-contact-form .icon {
    font-size: 16px;
    position: absolute;
    top: 15px;
    left: 5px;
}

/* #endregion */


/* #region FOOTER */

.footer-top {
    border: 1px solid #e8d4ad;
    border-left: 0;
    border-right: 0;
    padding: 3rem 1rem;
}

.footer-top .phone,
.footer-top a:hover {
    color: #e8d4ad;
}

.footer-top .infor-footer {
    padding: 1rem;
}

.footer-top ul.business-hours {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.footer-top ul,
.footer-top ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-top ul li {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.footer-top ul li .dots {
    border-top-style: dashed;
    border-top-width: 1px;
    border-top-color: #FFFFFF52;
    flex-grow: 1;
    margin: 0 10px;
}

.footer-top .logo-footer img {
    width: 100%;
    max-width: 200px;
    margin: auto;
    display: block;
}

.footer-top .social {
    margin-top: 10px;
    text-align: center;
}

.footer-top .social a {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: transparent;
    color: #e8d4ad;
    border: 1px solid #e8d4ad;
    text-align: center;
    align-content: center;
    font-size: 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.footer-top .social a:hover {
    background-color: #e8d4ad;
    color: #262b14;
    border-radius: 0 20px;
}

.footer-bottom p {
    font-size: 10px;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #262b14;
    color: #e8d4ad;
    border: 1px solid #e8d4ad;
    position: fixed;
    bottom: 60px;
    right: 15px;
    transition: all 0.3s ease;
    border-radius: 0;
    display: none;
}

.scroll-to-top:hover {
    background-color: #e8d4ad;
    color: #262b14;
    border-radius: 20px 0;
}

/* #endregion */


/* #region RELOADER */

#royal_preloader {
    position: fixed;
    inset: 0;
    background-color: #2d331b;
    z-index: 999999;
}

.royal-preloader-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 69px;
    margin-left: -90px;
    margin-top: -34.5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
}

.royal-preloader-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-color: #262b14;
    opacity: 0.7;
}

.royal-preloader-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -90px;
    margin-top: 40px;
    width: 180px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffffff;
}

/* #endregion */


/* #region CALL BUTTON*/
.btn-phone {
    transition: .3s all;
}

.phone-group.phone-show {
    visibility: visible;
}

.phone-group {
    position: fixed;
    visibility: hidden;
    cursor: pointer;
    z-index: 99;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-transition: visibility .5s;
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    transition: visibility .5s;
    left: 0;
    bottom: 25px;
}

.phone-ph-circle,
.phone-group {
    width: 100px;
    height: 100px;
    background-color: transparent;
}

.phone-group.phone-green .phone-ph-circle {
    border-color: #e8d4ad;
    opacity: .5;
}

.phone-ph-circle {
    top: 0;
    left: 0;
    position: absolute;
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
    border: 2px solid #e8d4ad;
    opacity: .1;
    -webkit-animation: phone-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: phone-circle-anim 1.2s infinite ease-in-out;
    -ms-animation: phone-circle-anim 1.2s infinite ease-in-out;
    -o-animation: phone-circle-anim 1.2s infinite ease-in-out;
    animation: phone-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    transform-origin: 50% 50%;
}

.phone-ph-circle,
.phone-ph-img-circle {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-circle-fill {
    background-color: #e8d4ad;
    opacity: 1 !important;
}

.phone-ph-circle-fill {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phone-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.phone-group.phone-green .phone-ph-img-circle {
    background-color: #e8d4ad;
    box-shadow: 0 0 20px 6px #e8d4ad;
}

.phone-ph-img-circle {
    width: 30px;
    height: 30px;
    top: 35px;
    left: 35px;
    position: absolute;
    background: url(../images/phone-ico.png) center center no-repeat rgba(30, 30, 30, .1);
    background-size: contain;
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: phone-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: phone-circle-img-anim 1s infinite ease-in-out;
    -ms-animation: phone-circle-img-anim 1s infinite ease-in-out;
    -o-animation: phone-circle-img-anim 1s infinite ease-in-out;
    animation: phone-circle-img-anim 1s infinite ease-in-out;
    transform-origin: 50% 50%;
}

@-moz-keyframes phone-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-webkit-keyframes phone-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-o-keyframes phone-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@keyframes phone-circle-anim {
    0% {
        transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1
    }

    30% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@-moz-keyframes phone-circle-fill-anim {

    0%,
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@-webkit-keyframes phone-circle-fill-anim {

    0%,
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@-o-keyframes phone-circle-fill-anim {

    0%,
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@keyframes phone-circle-fill-anim {

    0%,
    100% {
        transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }
}

@-moz-keyframes phone-circle-img-anim {

    0%,
    100%,
    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }
}

@-webkit-keyframes phone-circle-img-anim {

    0%,
    100%,
    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }
}

@-o-keyframes phone-circle-img-anim {

    0%,
    100%,
    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }
}

@keyframes phone-circle-img-anim {

    0%,
    100%,
    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%,
    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%,
    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }
}

/* #endregion */