/* Core CSS */

/*- rgb( 216, 198, 186) -*/

:root {
    --colour1: rgb(216, 198, 186);
    --colour2: rgb(181, 135, 57);
}

body {
    font-family: "Montserrat", Helvetica, Arial, "sans-serif";
    display: grid;
    margin: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--colour1);
    margin: 0;
    font-family: "gravita-hum-variable", sans-serif;
    font-variation-settings: "wght"400;
    text-transform: uppercase;
}

.script {
    font-family: "samantha-upright-bold", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: capitalize;
    /*    font-size: 25px;*/
}

p,
li {
    font-weight: 400;
    font-size: 17px;
    line-height: 32px;
    margin: 0;
    color: #444;
}

b,
strong {
    color: var(--colour1);
}

a {
    margin: 0;

    text-decoration: none;

    color: var(--colour1);
    transition: ease color .5s;
}

a:hover {
    curor: pointer;
    color: var(--colour1);
}

a:visited {
    color: var(--colour1);
}

.secondColour {
    color: var(--colour2);
}

/* - - - - - - - - - - */

#page-content {
    padding: 64px 0;
    display: grid;
    grid-gap: 32px;
}


.workspace {
    grid-gap: 32px;
}

/* - - - - - - - - - */

.desktop-img {
    display: none;
}

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

    .mobile-img {
        display: none;
    }
}

/* - */

.feature-1 {
    /*  background-color: #222; */
    padding: 24px;
    z-index: 3;
    /* border: solid 4px aliceblue; */
    margin-top: -96px;
    width: 80%;
}

@media(min-width: 768px) {
    .feature-1 {
        margin-top: -32px;
    }
}

@media(min-width: 1200px) {
    .feature-1 {
        margin-top: -64px;
    }
}

@media(min-width: 1600px) {
    .feature-1 {
        width: 100%;
        margin-top: -128px;
    }
}

.feature-img-border {
    border: 1px solid #fff;
    padding: 8px;
    width: calc(100% - 16px);
}

.feature-container {
    display: grid;
    align-content: start;

    padding: 15px;
    background-color: #222;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.feature-content {
    display: grid;

    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;

    margin: 24px 0px 16px;
}

.feature-title {
    display: grid;

    grid-template-columns: 5% max-content auto;
    grid-gap: 16px;
}

.feature-title h3 {
    margin-top: -11px;
    letter-spacing: 1px;
    color: #fff;
}

.feature-title-bar {
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.feature-content p {
    color: #fff;
    padding: 16px;
    font-size: 15px;
    line-height: 24px;
}

.feature-read-more {
    display: grid;
    justify-self: center;
    border: 1px solid #fff;
    padding: 8px 16px;
    transition: ease opacity .5s;
}

.feature-read-more:hover {
    opacity: 0.5;
}

.feature-read-more h4 {
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-1 .btn {
    color: #fff;
    padding: 8px;
    text-align: center;
    background-color: var(--colour1);
    border: none !important;
    width: -webkit-fill-available;
}

.feature-1 .btn:hover {
    background-color: var(--colour1);
}

/* - */

.centered {
    display: grid;
    justify-self: center;
    justify-content: center;
}

.centered h1,
.centered h2,
.centered h3,
.centered h4,
.centered p,
.centered a {
    justify-self: center;
}

/* - */

.stack {
    align-self: start;
}

/* - */

.sec {
    padding: 16px 0;
}

.heading {
    grid-gap: 8px;
}

.heading h1 {
    color: var(--colour1);
    font-size: 32px;
}

.heading h3 {
    color: #7c5126;
    border-top: solid 2px var(--colour1);
    padding-top: 8px;
}


/* - */


.dark {
    background-color: #222;
}


/* - */


.btn {
    display: grid;
    border: solid #222 2px;
    justify-self: start;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    transition: ease background .5s;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.btn h4 {
    text-transform: capitalize;
    color: #222;
    letter-spacing: 1px;
}

.btn:hover h4 {
    color: #fff;
}


/* - */



/* - Testimonials - */

.testimonial-container {
    display: grid;
    width: 100%;
    background-image: url('../img/testimonial-bg.jpg');

    background-position: center center;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 400px;
}

@media(min-width: 992px) {
    .testimonial-container {
        background-attachment: fixed;
    }
}

.testimonial {
    display: grid;
    align-self: center;
    justify-self: center;

    grid-row: 1;
    grid-column: 1;

    grid-gap: 16px;

    width: 512px;
    max-width: 80vw;

    opacity: 1;

    transition: opacity ease .5s;

    z-index: 3;
}

.opacity-0 {
    opacity: 0 !important;
}

.testimonial h3 {
    color: #fff;
    justify-self: center;
    font-size: 32px;
}

.testimonial p {
    color: #fff;
    justify-self: center;
    text-align: center;
}

.star-container {
    display: grid;
    align-content: center;
    justify-content: center;
}

.star {
    color: var(--colour2);
    grid-row: 1;
}


.testimonial-controls {
    display: grid;
    z-index: 1;
    grid-row: 2;
    grid-column: 1;
    align-content: center;
    padding: 0 32px;
}

@media(min-width: 992px) {
    .testimonial-controls {
        grid-row: 1;
        grid-column: 1;
    }
}


.testimonial-arrow {
    color: #fff;
    font-size: 32px;
    grid-row: 1;
    grid-column: 1;

    transition: opacity .5s ease;
}

.testimonial-arrow:hover {
    cursor: pointer;
    opacity: 0.5;
}

.testimonial-left {
    justify-self: start;
}

.testimonial-right {
    justify-self: end;
}

.testimonial-dots {
    display: grid;
    grid-gap: 8px;
    justify-content: center;
    justify-self: center;
    align-self: center;
    z-index: 3;

    grid-row: 2;
    grid-column: 1;
}

.testimonial-dot {
    grid-row: 1;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    border: #fff solid 1px;
    align-self: center;
}

.testimonial-dot:hover {
    cursor: pointer;
    border-color: rgb(216, 198, 186);
}

.active-testimonial-dot {
    background-color: var(--colour2);
    border-color: var(--colour2);
    /*border: none;*/
}

/* - */

.contact-page-details {
    display: none !important;
}

.contact-page-details p,
.contact-page-details a {
    overflow-wrap: anywhere;
}

@media(min-width: 768px) {
    .contact-page-details {
        display: grid !important;
    }
}


/* - */

hr {
    width: 80%;
    height: 1px;
    background-color: var(--colour1);
    border: none;
}

@media(min-width: 768px) {
    hr {
        width: 750px;
    }
}

@media(min-width: 992px) {
    hr {
        width: 950px;
    }
}

@media(min-width: 1200px) {
    hr {
        width: 1200px;
    }
}

/* Catch-all Centering Class */
.cent {
    justify-self: center;
    text-align: center;
}


/* - Table - */

.w100 {
    width: 100%;
}

.elem-table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

thead {
    background-color: var(--colour1);
    border-bottom: 2px solid #fff;
}

th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    border-left: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: solid 1px;

    height: 20px;
}

th h1 {
    font-size: 14px;
}

tr:nth-child(2n) {
    background: rgba(222, 222, 222, 0.30);
}


/*** TABLE STYLING ***/

table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table td,
table th {
    border: 1px solid #fff;
    padding: 10px 10px;
}

table tbody td {
    font-size: 13px;
}

table thead th:first-child {
    border-left: none;
}

table tfoot td {
    font-size: 14px;
}

table tfoot .links {
    text-align: right;
}


/* - */

.contact-box {
    border: solid 1px;
    border-top: none;
    color: #6f6f6f;
}

.contact-box-top {
    display: grid;
    grid-template-columns: 32px max-content auto;
    grid-gap: 16px;
}

.contact-box-line {
    border-top: 1px solid;
}

.contact-box-top h2 {
    margin-top: -16px;
}

.contact-box-content {
    padding: 0px 32px 24px;
}

.anti-overflow {
    overflow-wrap: anywhere;
}

.gatehouse {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h3,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}

.mobishow {
    display: none !important;
}

.mobihide {
    display: grid !important;
}

@media (max-width: 768px) {
    .mobishow {
        display: grid !important
    }

    .mobihide {
        display: none !important;
    }
}

.card {
    padding: 32px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all ease .25s;
    cursor: pointer;
}

.card:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cntr {
    text-align: center;
}

:root {
    --line-width: 95%;
    --line-colour: var(--colour2);
}

.line {
    width: 100%;
    display: grid;
    grid-gap: 32px;
    grid-template-columns: auto max-content auto;
    opacity: 0.5;
}

.line i,
.line svg {
    align-self: center;
    font-size: 24px;
    color: #444;
}

.line::before {
    content: "";
    height: 1px;
    align-self: center;
    justify-self: end;
    width: var(--line-width);
    background-color: var(--line-colour);
}

.line::after {
    content: "";
    height: 1px;
    align-self: center;
    justify-self: start;
    width: var(--line-width);
    background-color: var(--line-colour);
}

.alt .line i,
.alt .line svg {
    color: #fff;
}

.alt .line::before {
    background-color: #fff;
}

.alt .line::after {
    background-color: #fff;
}


@media(min-width: 992px) {
    .page-img {
        grid-row: 1;
        grid-column: 2;
    }

    .img-left {
        grid-column: 1;
    }

    .page-content {
        grid-row: 1;
    }
}

.center {
    text-align: center;
}

.list {
    display: grid;
    align-content: center;
}

.list p {
    align-content: center;
    display: grid;
    grid-template-columns: max-content auto;
    margin-left: 32px;
}

.list p:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: var(--colour1);
    align-self: start;
    content: "\f054";
    margin-right: 8px;
    font-size: 16px;
    padding-right: 8px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.alt {
    background-color: var(--colour3);
    padding: 64px 0 !important;
}

.alt p {
    color: var(--colour4);
}

.alt b {
    color: #fff;
}

.alt :is(h1, h2, h3, h4, .header-block) {
    color: #fff;
}

.alt .list p:before {
    color: #fff;
}

.sub-heading {
    font-size: 28px;
}

.sub-heading {
    font-size: 28px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-fancy {
    background-color: transparent;
    border: 2px solid var(--colour2);
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
    margin-top: 16px;

    justify-self: start;

}

.btn-fancy::before {
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: var(--colour2);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.btn-fancy .text {
    font-size: 1.125em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--colour2);
}

.btn-fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.btn-fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.btn-fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #e8e8e8;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-fancy {
    border: 2px solid var(--colour4);
}

.alt .btn-fancy::before {
    background: var(--colour4);
}

.alt .btn-fancy .text {
    color: var(--colour4);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-fancy .top-key {
    background: var(--colour3);
}

.alt .btn-fancy .bottom-key-1 {
    background: var(--colour3);
}

.alt .btn-fancy .bottom-key-2 {
    background: var(--colour3);
}



.btn-fancy:hover {
    color: white;
    background: var(--colour2);
}


.alt .btn-fancy:hover {
    color: white;
    background: var(--colour2);
}

.alt .btn-fancy:hover {
    color: var(--colour4);
    background: var(--colour4);
}





.btn-fancy:hover::before {
    width: 0.9375rem;
    background: white;
}

.btn-fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}



.alt .btn-fancy:hover::before {
    background: var(--colour3);
}

.alt .btn-fancy:hover .text {
    color: var(--colour3);
}



.btn-fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.btn-fancy:hover .bottom-key-1,
.btn-fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-chameleon {

    background-color: var(--colour2);
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    transition: 0.3s;

    justify-self: start;

    border-radius: 5px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05),
        0 2px 2px rgba(0, 0, 0, 0.05),
        0 4px 4px rgba(0, 0, 0, 0.05),
        0 8px 8px rgba(0, 0, 0, 0.05),
        0 16px 16px rgba(0, 0, 0, 0.05);

}

.btn-chameleon:hover {

    background-color: var(--colour1);
    color: var(--colour2);
    cursor: pointer;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.alt .btn-chameleon {
    background-color: var(--colour4);
    color: var(--colour3);
}

.alt .btn-chameleon:hover {
    background-color: var(--colour2);
    color: #fff;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.btn-thai {
    padding: 20px 60px;
    border: none;
    outline: none;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: linear-gradient(to right, var(--colour1), var(--colour2));
    cursor: pointer;
    text-align: center;
    color: #fff;
    justify-self: start;
}

.btn-thai::before {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 4px;
    background-color: #111;
    z-index: -1;
    transition: 200ms
}

.btn-thai::after {
    content: attr(data);
    font-size: 16px;
    background: linear-gradient(to left, var(--colour1), var(--colour2));
    -webkit-background-clip: text;
    color: transparent;
    transition: 200ms
}

.btn-thai:hover::before {
    opacity: 50%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.btn-thai:hover::after {
    color: white;
}

.btn-speech {
    justify-self: start;
    padding: 12px 16px;
    border: 1px solid #ffffff;
    border-radius: 16px 16px 16px 0;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    transition: all ease .2s;
    z-index: 1;
    color: var(--colour1);

    border: solid 2px var(--colour1);

    background-color: #fff;
}

.alt .btn-speech {
    border: solid 2px var(--colour4);
    background-color: #fff0;
}

.btn-speech::before {
    content: '';
    width: 0;
    height: 350%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--colour1);
    transition: .2s ease;
    display: block;
    z-index: -1;
}

.alt .btn-speech::before {
    background: var(--colour4);
}

.btn-speech:hover::before {
    width: 110%;
}

.btn-speech:hover {
    transform: translate(0px, 2px) scale(0.99);
    border: solid 2px #fff;
}

.alt .btn-speech:hover {
    border: solid 2px var(--colour3);
}

.btn-speech h3 {
    color: var(--colour1);
    transition: all ease .2s;
}

.alt .btn-speech h3 {
    color: var(--colour4);
}

.btn-speech:hover h3 {
    color: var(--colour4);
}

.alt .btn-speech:hover h3 {
    color: var(--colour3);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - */

.minus-32 {
    margin-bottom: -32px;
}

.minus-64 {
    margin-bottom: -64px;
}


/* From Uiverse.io by Madflows */
.button2 {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #000421;
    background-size: 400%;
    color: #fff;
    font-family: "ofelia-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.button2:hover::before {
    transform: scaleX(1);
}

.button2-content {
    position: relative;
    z-index: 1;
}

.button2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(82.3deg,
            rgba(85, 84, 188, 1) 10.8%,
            rgba(73, 202, 252, 1) 94.3%);
    transition: all 0.475s;
}

/* From Uiverse.io by Yaya12085 */
.card2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 20px 1px;
    margin: 10px 0;
    text-align: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px #191f46a5, 0 4px 6px -4px #191f46a5;
    border-radius: 10px;
    background: #FF63B4;
    background: linear-gradient(130deg, rgba(255, 84, 183, 1)0%, rgba(249, 170, 209, 1) 57%, rgba(255, 203, 0, 1) 100%);
    /*    background: linear-gradient(45deg, #04051dea 0%, #2b566e 100%);*/
}

.content {
    padding: 20px;
}

.content .price {
    color: white;
    font-weight: 800;
    font-size: 50px;
    text-shadow: 0px 0px 10px #000421a5;
}

.content .description {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
}

.content .title {
    font-family: "ofelia-display", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    color: #191f46;
    margin-top: 10px;
    font-size: 25px;
    letter-spacing: 1px;
}

button4 {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-size: .75rem;
    font-family: "ofelia-display", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 16px;
    padding: 0.75rem 1.5rem;
    background-color: #191f46;
    border-radius: 0.5rem;
    width: 100%;
    /*    text-shadow: 0px 4px 18px #e3c09c;*/
}


/* From Uiverse.io by kamehame-ha */
.cards {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.cards .red {
    background-color: #000421;
}

.cards .blue {
    background-color: #5554bc;
}

.cards .green {
    background-color: #587cd6;
}


.cards .pink {
    background-color: #49cafc;
}

.cards .yellow {
    background-color: #e2cfb3;
}

.cards .card {
    max-width: 394px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    /*
    height: 100px;
    width: 250px;
*/
    padding: 40px 10px 40px 10px;
    border-radius: 15px;
    /*    color: white;*/
    cursor: pointer;
    transition: 400ms;
    /*    padding: 10px*/
}

.cards .card p.tip {
    /*
    font-size: 1em;
    font-weight: 700;
*/
    margin-bottom: 8px;
    font-size: 21px;
    justify-self: left;
    text-align: left;
    font-family: "ofelia-display", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    color: #fff;
}

.cards .card p.second-text,
.card li {
    justify-self: center;
    text-align: center;
    /*    font-size: .7em;*/
    color: #fff;
}

.cards .card:hover {
    transform: scale(1.1, 1.1);
}

.cards:hover > .card:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
}

@media(max-width: 768px) {

    /* From Uiverse.io by kamehame-ha */
    .cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cards .red {
        background-color: #000421;
    }

    .cards .blue {
        background-color: #5554bc;
    }

    .cards .green {
        background-color: #587cd6;
    }


    .cards .pink {
        background-color: #49cafc;
    }

    .cards .yellow {
        background-color: #e2cfb3;
    }



    .cards .card {
        /*    width: 100%;*/
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        /*
    height: 100px;
    width: 250px;
*/
        padding: 40px 10px 40px 10px;
        border-radius: 15px;
        /*    color: white;*/
        cursor: pointer;
        transition: 400ms;
        /*    padding: 10px*/
    }

    .cards .card p.tip,
        {
        justify-self: left;

        /*
    font-size: 1em;
    font-weight: 700;
*/
        font-size: 21px;

        font-family: "dystopian", sans-serif;
        font-weight: 900;
        font-style: normal;
        text-transform: uppercase;
        color: #fff;
    }

    .cards .card p.second-text,
    .card li {
        text-align: left;
        justify-self: left;
        /*    font-size: .7em;*/
        color: #fff;
    }

    .cards .card:hover {
        transform: scale(1.1, 1.1);
    }

    .cards:hover > .card:not(:hover) {
        filter: blur(10px);
        transform: scale(0.9, 0.9);
    }
}

/* From Uiverse.io by gharsh11032000 */
.button {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    color: #FFCD43;
    border: 2px solid #FFCD43;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #FFCD43;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
    scale: 3;
}

.button:hover {
    color: #212121;
    scale: 1.1;
    box-shadow: 0 0px 20px #FFCD43a4;
}

.button:active {
    scale: 1;
}

.quote-wrapper {
    position: relative;
}

.quote-img {
    position: absolute;
    top: -49px;
    left: -52px;
    width: 120px;
    /* Increased from 50px to 120px â€” adjust as you like */
    opacity: 0.4;
    /* Less transparent (was 0.2) */
    z-index: 1;
}

.quote-wrapper h3 {
    position: relative;
    z-index: 2;
}

/* From Uiverse.io by cssbuttons-io */
.btn {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: 2PX SOLID #fff;
    font-family: inherit;
    font-weight: 500;
    color: white;
    background: #7C5126;
    background: linear-gradient(90deg, rgba(124, 81, 38, 1) 0%, rgba(203, 182, 137, 1) 53%, rgba(247, 243, 205, 1) 100%);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #cbb689a4;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px #cbb689a4;
}

.btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.btn::after {
    background: #7C5126;
    background: linear-gradient(90deg, rgba(124, 81, 38, 1) 0%, rgba(203, 182, 137, 1) 53%, rgba(247, 243, 205, 1) 100%);
}

.btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

/* From Uiverse.io by alexmaracinaru */
buttony {
    cursor: pointer;
    font-family: "rubik", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    transition: all 0.2s;
    padding: 10px 20px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    font-size: 19px;
    color: #0131ff;
}

buttony:hover {
    background: transparent;
}

buttony > svg {
    width: 34px;
    color: #0131ff;

    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

buttony:hover svg {
    color: #0131ff;

    transform: translateX(5px);
}

buttony:active {
    color: #0131ff;

    transform: scale(0.95);
}
