:root {
    --DARK-BROWN: #3D2416;
    --BROWN: #7A431E;
    --BROWN-SOFT: #563727;
    --WHITE: #fff;
    --WHITE-SOFT: #F5EEE5;
    --BEIGE: #FFFBF8;
    --BEIGE-SOFT: #EEE2D2;
    --SKIN: #E0CAAD;
    --SKIN-SOFT: #F4EDE3;
    --HONEY :#B58148;






    --MAX-CONTENT: 80rem;
    --SIDE-MARGIN: auto;
    --Z-BOTTOM: -10000;
    --Z-TOP: 10000;

}
@font-face {
    font-family: 'ClassicoRegular';
    src: url('../assets/fonts/Classico-URW-T-OT_10980.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sava Pro Regular';
    src: url('../assets/fonts/Sava_Pro_Regular.otf');
}
@font-face {
    font-family: 'Sava Pro Medium';
    src: url('../assets/fonts/SavaPro-Medium.otf');
}
@font-face {
    font-family: 'Sava Pro Bold';
    src: url('../assets/fonts/Sava_Pro_Bold.otf');
}

/* html {
  overflow: hidden;
} */


.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 100px;
}
html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--BEIGE);
	 font-family: 'ClassicoRegular';
    font-size: 16px;
    line-height: 25px;
    letter-spacing: -0.16px;
}
a, ins{
    text-decoration: unset;
}

.main-btn.outline.skin{
    color: var(--SKIN);
}
.main-btn.outline.brown{
    color: var(--BROWN-SOFT);
}
.main-btn {
    font-size: 17px;
    font-family: 'Sava Pro Regular';
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}
.main-btn.outline.white {
    color: var(--WHITE);
}
.main-btn.white .arrow-icon {
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 20px;
    width: 100%;
}
.main-btn.brown .arrow-icon {
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 20px;
    width: 100%;
}
.main-btn.skin .arrow-icon { 
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 20px;
    width: 100%;
    
}
/* Looping animation on hover */

.arrow-svg {
    width: 100%;
    height: 100%;
}

.arrow-line {
    transform-origin: left center;
    transform: scaleX(1); /* trumpas pradžioje */
    transition: transform 0.5s ease;
}

.arrow-head {
    transition: transform 0.5s ease;
}

.main-btn:hover .arrow-line {
    transform: scaleX(4); /* pailgina 4 kartus (pvz. nuo 20 iki 80) */
}

.main-btn:hover .arrow-head {
    transform: translateX(60px); /* pastumia antgalį */
}

.page-header .page-title{
    color: var(--DARK-BROWN);
    font-family: 'Sava Pro Regular';
    font-size: 50px;
    line-height: 1;
    letter-spacing: -0.5px;
}
.page-header.center{
    text-align: center;
}
.page-header{
    padding: 60px 0;
}

/* Animation */
.slice-title {
    /*overflow: hidden;*/
}
.title-line {
    overflow: hidden;
}
.title-line span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
.slice-title.is-active .title-line:nth-child(1) span {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}
.slice-title.is-active .title-line:nth-child(2) span {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}
.slice-title.is-active .title-line:nth-child(3) span {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.typewriter {
    width: 100%;
    display: table-cell;
}
.typewriter h2 {
    position: relative;
    display: flex;
    white-space: nowrap;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid var(--HONEY); /* The typwriter cursor */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    /*letter-spacing: .05em; !* Adjust as needed *!*/
    animation:
            typing 2.5s steps(40, end),
            blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--HONEY); }
}