

/* =========================================
   IMPORT FONT
========================================= */


/* =========================================
   GLOBAL
========================================= */

body{
    margin:0;
    background:#070707;
    font-family:'Inter',sans-serif;
}

/* =========================================
   HERO WRAPPER
========================================= */

/* .tihero-slider-wrap{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,#3d2a0d 0%,transparent 30%),
    radial-gradient(circle at bottom left,#1f1f1f 0%,transparent 35%),
    linear-gradient(135deg,#060606,#111111);
} */
/* =========================================
   COMPACT LUXURY SLIDER HEIGHT
========================================= */

.tihero-slider-wrap{
    position:relative;
    width:100%;
    height:780px;
    overflow:hidden;
    border-radius:0 0 60px 60px;
}

/* MAIN SLIDER */

.tihero-slider{
    position:relative;
    width:100%;
    height:100%;
}

/* EACH SLIDE */

.tihero-slide{
    min-height:780px;
}

/* =========================================
   LARGE LAPTOPS
========================================= */

@media(max-width:1600px){

    .tihero-slider-wrap{
        height:720px;
    }

    .tihero-slide{
        min-height:720px;
    }

}

/* =========================================
   LAPTOP
========================================= */

@media(max-width:1366px){

    .tihero-slider-wrap{
        height:500px;
    }

    .tihero-slide{
        min-height:650px;
        padding:0 6%;
    }

    .tihero-content h1{
        font-size:58px;
    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .tihero-slider-wrap{
        height:auto;
        border-radius:0 0 40px 40px;
    }

    .tihero-slide{
        min-height:auto;
        padding:130px 30px 80px;
    }

    .tihero-content h1{
        font-size:42px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .tihero-slider-wrap{
        border-radius:0 0 28px 28px;
    }

    .tihero-slide{
        padding:120px 20px 70px;
    }

    .tihero-content h1{
        font-size:32px;
        line-height:1.2;
    }

    .tihero-content p{
        font-size:14px;
        line-height:1.7;
    }

    .tihero-nav{
        bottom:20px;
    }

}
/* =========================================
   MOVING WAVES
========================================= */
/* =========================================
   FULL BACKGROUND IMAGE
========================================= */

.tihero-bg-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:1;
    overflow:hidden;
}

.tihero-bg-image img{
    width:100%;
    /*height:100%;*/
    /*object-fit:contain;*/
    animation:zoomBg 12s ease-in-out infinite alternate;
    /*opacity:0.42;*/
}

/* DARK OVERLAY */

.tihero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    /* background:
    linear-gradient(to right,
    rgba(0,0,0,0.88) 15%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.78) 100%); */
    z-index:2;
}

/* CONTENT ABOVE IMAGE */

.tihero-content{
    position:relative;
    z-index:5;
    width:55%;
}

/* SMOOTH BG ZOOM */

@keyframes zoomBg{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.08);
    }

}
.tihero-wave{
    position:absolute;
    width:200%;
    height:220px;
    background:rgba(255,215,120,0.04);
    border-radius:43%;
    animation:waveMove 18s linear infinite;
    filter:blur(10px);
}

.tiwave1{
    bottom:-130px;
    left:-20%;
}

.tiwave2{
    bottom:-150px;
    left:-10%;
    animation-duration:25s;
    background:rgba(255,255,255,0.03);
}

.tiwave3{
    top:-140px;
    right:-30%;
    animation-duration:30s;
}

@keyframes waveMove{
    0%{
        transform:translateX(0) rotate(0deg);
    }
    100%{
        transform:translateX(-20%) rotate(360deg);
    }
}

/* =========================================
   FLOATING ORBS
========================================= */

.tiorb{
    position:absolute;
    border-radius:50%;
    filter:blur(1px);
    animation:floatOrb 7s ease-in-out infinite;
}

.orb1{
    width:140px;
    height:140px;
    background:rgba(255,215,120,0.12);
    top:12%;
    left:7%;
}

.orb2{
    width:90px;
    height:90px;
    background:rgba(255,255,255,0.05);
    bottom:18%;
    right:10%;
    animation-delay:2s;
}

.orb3{
    width:60px;
    height:60px;
    background:rgba(255,215,120,0.09);
    top:40%;
    right:20%;
    animation-delay:4s;
}

@keyframes floatOrb{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================
   SLIDER
========================================= */

.tihero-slider{
    position:relative;
    width:100%;
    height:100vh;
}

/* =========================================
   EACH SLIDE
========================================= */

.tihero-slide{
    position:absolute;
    width:100%;
    height:100%;
    /* display:flex; */
    /* align-items:center; */
    justify-content:space-between;
    /* padding:0 8%; */
    opacity:0;
    visibility:hidden;
    transform:scale(1.05);
    transition:1s ease;
}

.tihero-slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

/* =========================================
   CONTENT
========================================= */

.tihero-content{
    width:50%;
    z-index:5;
}

.tihero-mini{
    color:#d8b36a;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    display:block;
    margin-bottom:25px;
}

.tihero-content h1{
  font-size: 53px;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 25px;
    /* font-family: 'Playfair Display', serif; */
    font-weight: 500;
}

.tihero-content p{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    max-width:580px;
    margin-bottom:40px;
}

/* =========================================
   BUTTONS
========================================= */

.tihero-buttons{
    display:flex;
    gap:18px;
    margin-top:15px;
}

.tibtn-primary,
.tibtn-outline{
        background: #495057;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:15px;
    letter-spacing:1px;
    transition:0.4s ease;
}

.tibtn-primary{
    background:linear-gradient(135deg,#f5d08c,#c89a47);
    color:#000;
    font-weight:600;
}

.tibtn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,215,120,0.25);
}

.tibtn-outline{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
}

.tibtn-outline:hover{
    background:#fff;
    color:#000;
}

/* =========================================
   IMAGE
========================================= */

.tihero-image{
    width:42%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.tihero-image img{
    width:100%;
    max-width:520px;
    animation:productFloat 5s ease-in-out infinite;
    filter:
    drop-shadow(0 25px 60px rgba(0,0,0,0.6))
    drop-shadow(0 0 40px rgba(255,215,120,0.18));
}

@keyframes productFloat{
    0%{
        transform:translateY(0px) rotate(-2deg);
    }
    50%{
        transform:translateY(-18px) rotate(2deg);
    }
    100%{
        transform:translateY(0px) rotate(-2deg);
    }
}

/* =========================================
   NAV DOTS
========================================= */

.tihero-nav{
    position:absolute;
    bottom:45px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.tihero-nav span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,0.25);
    cursor:pointer;
    transition:0.4s;
}

.tihero-nav span.active{
    width:38px;
    border-radius:30px;
    background:#d8b36a;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .tihero-slide{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:120px 30px 60px;
    }

    .tihero-content{
        width:100%;
    }

    .tihero-image{
        width:100%;
        margin-top:40px;
    }

    .tihero-content h1{
        font-size:46px;
    }

    .tihero-content p{
        margin:auto auto 35px;
    }

    .tihero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .tihero-content h1{
        font-size:34px;
    }

    .tihero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .tibtn-primary,
    .tibtn-outline{
        padding:14px 24px;
        font-size:13px;
    }

}

.tihero-slider{
    position: relative;
    width: 100%;
    height: 27vh;
    overflow: hidden;
}

/* Mobile Landscape & Small Tablets */
@media (min-width: 576px){
    .tihero-slider{
        height: 45vh;
    }
}

/* iPad Air / iPad Pro */
@media (min-width: 768px) and (max-width: 1024px){
    .tihero-slider{
        height: 70vh;
    }
}

/* Desktop */
@media (min-width: 1025px){
    .tihero-slider{
        height: 100vh;
    }
}

.tihero-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* =========================================
   SECTION
========================================= */

.tio-cat-section{
    padding:20px 0;
    background:
   linear-gradient(180deg, #ede2cb, #a0a0a0);
    position:relative;
    overflow:hidden;
}

/* =========================================
   HEADING
========================================= */

.tio-cat-heading{
    text-align:center;
}

/* =========================================
   PREMIUM MINI TITLE
========================================= */

.tio-cat-mini{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:14px;

    padding:14px 30px;
    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(248,243,235,0.95));

    border:1px solid rgba(212,170,78,0.22);

    color:#444;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.05),
    inset 0 1px 1px rgba(255,255,255,0.9);

    overflow:hidden;

    backdrop-filter:blur(10px);

    animation:miniFloat 4s ease-in-out infinite;
}

/* SHIMMER */

.tio-cat-mini::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;

    width:80%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent);

    transform:skewX(-25deg);

    animation:miniShine 4.5s linear infinite;
}

/* GOLD DOT */

.tio-cat-mini::after{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;

    background:
    radial-gradient(circle,
    #f8d48a,
    #c89a47);

    box-shadow:
    0 0 12px rgba(212,170,78,0.7);
}

/* FLOAT */

@keyframes miniFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* SHIMMER MOVE */

@keyframes miniShine{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }

}

/* =========================================
   HEADING TEXT
========================================= */

.tio-cat-heading h2{
    font-size:52px;
    color:#c69b48;
    margin-top:2px;
    margin-bottom:6px;
    font-weight:700;
}

.tio-cat-heading p{
    color:#666;
    font-size:16px;
    max-width:650px;
    margin:auto;
    line-height:1.9;
}

/* =========================================
   GRID
========================================= */

.tio-cat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

/* =========================================
   CARD
========================================= */

.tio-cat-card{
    position:relative;
    height:340px;

    border-radius:28px;
    overflow:hidden;

    text-decoration:none;

    transition:0.5s ease;

    background:#eee;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);
}

/* IMAGE */

.tio-cat-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s ease;
}

/* =========================================
   OVERLAY
========================================= */

.tio-cat-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.82),
    rgba(0,0,0,0.14),
    transparent);

    transition:0.5s ease;
}

/* =========================================
   CONTENT
========================================= */

.tio-cat-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:22px;
    z-index:5;
}

/* GOLD LINE */
/* =========================================
   LINE BELOW TITLE
========================================= */

.tio-hover-line{
    width:0;
    height:2px;

    background:
    linear-gradient(to right,#c69b48,#fff1c8);

    margin-top:14px;
    margin-bottom:18px;

    border-radius:20px;

    transition:0.6s ease;
}
/* =========================================
   TITLE EFFECT
========================================= */

.tio-cat-content h3{
    position:relative;

    font-size:30px;
    margin-bottom:0;

    font-family:'Playfair Display',serif;
    font-weight:600;
    letter-spacing:0.5px;

    background:
    linear-gradient(
    90deg,
    #ffffff,
    #ffe7b0,
    #ffffff);

    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:shineText 5s linear infinite;

    transform:translateY(25px);

    opacity:0;

    transition:0.6s ease;
}

/* TEXT SHIMMER */

@keyframes shineText{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:200% center;
    }

}

/* =========================================
   BUTTON
========================================= */

.tio-hover-btn{
    margin-top:18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:12px 16px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.14);

    transform:translateY(25px);

    opacity:0;

    transition:0.7s ease;
}

/* BUTTON TEXT */

.tio-hover-btn span{
    color:#fff;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* =========================================
   ARROW
========================================= */

.ti-arrow{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(135deg,#f6d38b,#c69b48);

    color:#000;
    font-style:normal;
    font-size:18px;
    font-weight:600;

    transition:0.4s ease;
}

/* =========================================
   HOVER EFFECTS
========================================= */

.tio-cat-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE EFFECT */

.tio-cat-card:hover img{
    transform:scale(1.08);
    filter:brightness(0.72);
}

/* OVERLAY EFFECT */

.tio-cat-card:hover .tio-cat-overlay{
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.28),
    rgba(0,0,0,0.05));
}

/* TITLE REVEAL */

.tio-cat-card:hover h3{
    transform:translateY(0);
    opacity:1;
}

/* BUTTON REVEAL */

.tio-cat-card:hover .tio-hover-btn{
    transform:translateY(0);
    opacity:1;
}

/* LINE EXPAND */

.tio-cat-card:hover .tio-hover-line{
    width:100%;
}

/* ARROW MOVE */

.tio-cat-card:hover .ti-arrow{
    transform:
    translateX(5px)
    rotate(-8deg);

    box-shadow:
    0 8px 18px rgba(198,155,72,0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .tio-cat-grid{grid-template-columns:repeat(2,1fr);
    }

}

/* TABLET */

@media(max-width:768px){

    .tio-cat-section{
        padding:75px 0;
    }

    .tio-cat-grid{
        grid-template-columns:1fr;
    }

    .tio-cat-heading h2{
        font-size:40px;
    }

    .tio-cat-card{
        height:300px;
    }

}

/* MOBILE */

@media(max-width:576px){

    .tio-cat-heading h2{
        font-size:32px;
    }

    .tio-cat-heading p{
        font-size:14px;
    }

    .tio-cat-mini{
        letter-spacing:2px;
        padding:12px 22px;
    }

    .tio-cat-content h3{
        font-size:24px;
    }

}

/* =========================================
   SECTION
========================================= */

.tio-slide-section{
    padding:20px 0;
    background:
   linear-gradient(180deg, #ede2cb, #a0a0a0);
    overflow:hidden;
}

/* =========================================
   HEADING
========================================= */

.tio-slide-heading{
    text-align:center;
}

/* MINI TITLE */

.tio-slide-mini{
    position:relative;

    display:inline-block;

    padding:12px 26px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8f3eb);

    border:1px solid rgba(198,155,72,0.18);

    color:#444;

    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;

    overflow:hidden;
}

/* SHIMMER */

.tio-slide-mini::before{
    content:"";

    position:absolute;
    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.85),
    transparent);

    transform:skewX(-25deg);

    animation:tioMiniShine 4s linear infinite;
}

@keyframes tioMiniShine{

    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }

}

/* HEADING */

.tio-slide-heading h2{
  font-size: 52px;
    color: #c6a055;
    margin-top: 2px;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.2;

}

.tio-slide-heading p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* =========================================
   GRID
========================================= */

.tio-slide-grid{
    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:12px;

    margin-top:10px;
}

/* =========================================
   CARD
========================================= */

.tio-slide-card{
    position:relative;

    height:135px;

    padding:18px 14px;

    border-radius:22px;

    overflow:hidden;

    background:#e7dbc1;

    border:1px solid #e7dbc1;

    transition:0.45s ease;

    box-shadow:
    0 6px 18px rgba(0,0,0,0.04);
}

/* =========================================
   CONTENT FIRST
========================================= */

.tio-slide-content{
    position:relative;

    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
 text-align: center;
    transition:0.55s ease;
}

/* NUMBER */

.tio-slide-content span{
    color:#c69b48;

    font-size:20px;
    letter-spacing:2px;
    text-transform:uppercase;
   
    margin-bottom:8px;

    font-weight:600;

    transition:0.4s ease;
}

/* TITLE */

.tio-slide-content h3{
    color:#222;

    font-size:14px;
    line-height:1.3;

    /* margin-bottom:8px; */

    font-weight:400;

    transition:0.4s ease;
}

/* TEXT */

.tio-slide-content p{
    color:#666;

    font-size:11px;
    line-height:1.6;

    margin:0;

    transition:0.4s ease;
}
/* =========================================
   SHOW CONTENT BELOW CARD
========================================= */

.tio-slide-card:hover .tio-slide-content{

    opacity:1;
    visibility:visible;

    transform:
    translateX(-100%)
    translateY(0);

}
/* =========================================
   IMAGE COVER LAYER
========================================= */

.tio-slide-image{
    position:absolute;

    inset:0;

    z-index:1;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #c69b48,
    #e8c98e);

    transform:translateY(100%);

    transition:
    transform 0.75s cubic-bezier(.77,0,.18,1);
}

/* ICON */

.tio-slide-image img{
    width:200px;
    height:200px;
    object-fit:contain;

    opacity:0.95;

    transition:0.5s ease;
}

/* =========================================
   HOVER EFFECT
========================================= */

.tio-slide-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 14px 28px rgba(0,0,0,0.08);
}

/* IMAGE COMES UP */

.tio-slide-card:hover .tio-slide-image{
    transform:translateY(0%);
}

/* TEXT TURNS WHITE */

/* =========================================
   HOVER CONTENT COMES UP
========================================= */

.tio-slide-card:hover .tio-slide-content{
    bottom:18px;
}

/* TEXT COLORS */

.tio-slide-card:hover .tio-slide-content span,
.tio-slide-card:hover .tio-slide-content h3,
.tio-slide-card:hover .tio-slide-content p{
    color:#fff;
}

/* ICON EFFECT */

.tio-slide-card:hover .tio-slide-image img{
    transform:
    scale(1.08)
    /* rotate(-5deg); */
}

/* =========================================
   LARGE LAPTOP
========================================= */

@media(max-width:1400px){

    .tio-slide-grid{
        grid-template-columns:repeat(6,1fr);
    }

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .tio-slide-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .tio-slide-heading h2{
        font-size:42px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .tio-slide-section{
        padding:70px 0;
    }

    .tio-slide-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .tio-slide-heading h2{
        font-size:32px;
    }

    .tio-slide-heading p{
        font-size:14px;
    }

    .tio-slide-card{
        height:135px;
    }

    .tio-slide-content h3{
        font-size:22px;
    }

    .tio-slide-content p{
        font-size:13px;
    }

    .tio-slide-image img{
        width:70px;
        height:70px;
    }

}



/* =========================================
   SECTION
========================================= */

.TiOro-about-section{
    position:relative;

    padding:20px 0;

    overflow:hidden;

    background:
    linear-gradient(to bottom,#fff,#dfc89c);
}

/* =========================================
   BLURS
========================================= */

.TiOro-about-blur{
    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:0.22;
}

.TiOro-about-blur.blur1{
    width:280px;
    height:280px;

    background:#e6c47d;

    top:-100px;
    left:-80px;
}

.TiOro-about-blur.blur2{
    width:260px;
    height:260px;

    background:#f3dca8;

    bottom:-120px;
    right:-80px;
}

/* =========================================
   IMAGE WRAP
========================================= */

.TiOro-about-image-wrap{
    position:relative;

    padding:20px;
}

/* FRAME */

.TiOro-about-frame{
    position:absolute;

    inset:0;

    border:1px solid rgba(198,155,72,0.25);

    border-radius:40px;

    transform:rotate(-4deg);
}

/* FLOATING CIRCLE */

.TiOro-floating-circle{
    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,170,78,0.3),
    transparent);

    top:-30px;
    right:-30px;

    animation:TiOroCircleFloat 6s ease-in-out infinite;
}

/* IMAGE */

.TiOro-about-image{
    position:relative;

    width:100%;

    border-radius:34px;

    z-index:2;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);

    animation:TiOroImageFloat 5s ease-in-out infinite;
}

/* FLOATING IMAGE */

@keyframes TiOroImageFloat{

    0%{
        transform:
        translateY(0px)
        rotate(-1deg);
    }

    50%{
        transform:
        translateY(-16px)
        rotate(1deg);
    }

    100%{
        transform:
        translateY(0px)
        rotate(-1deg);
    }

}

/* FLOATING CIRCLE */

@keyframes TiOroCircleFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
   FLOATING TAG
========================================= */

.TiOro-about-tag{
    position:absolute;

    right: -7px;
    top: -14px;

    z-index:5;

    padding:20px 24px;

    border-radius:24px;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(14px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);

    animation:TiOroTagFloat 4s ease-in-out infinite;
}

@keyframes TiOroTagFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

.TiOro-about-tag span{
    display:block;

    color:#c69b48;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:6px;
}

.TiOro-about-tag strong{
    color:#626262;

    font-size:18px;

    font-weight:600;
}

/* =========================================
   CONTENT
========================================= */

.TiOro-about-content{
    position:relative;
}

/* MINI TITLE */

.TiOro-about-mini{
    position:relative;

    display:inline-block;

    padding:12px 26px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8f3eb);

    border:1px solid rgba(198,155,72,0.18);

    color:#444;

    font-size:11px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    overflow:hidden;
}

/* SHIMMER */

.TiOro-about-mini::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.85),
    transparent);

    transform:skewX(-25deg);

    animation:TiOroMiniShine 4s linear infinite;
}

@keyframes TiOroMiniShine{

    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }

}

/* TITLE */

.TiOro-about-content h2{
        font-size: 51px;
    line-height: 1.12;
    color: #c7a055;
    /* margin: 28px 0 24px; */
    /* font-family: 'Playfair Display', serif; */
    font-weight: 600;
}

/* TEXT */

.TiOro-about-content p{
    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:1px;
}

/* =========================================
   FEATURE BOXES
========================================= */

.TiOro-about-features{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:5px;

}

.TiOro-feature-box{
    position: relative;
    padding: 12px 6px;
    text-align: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(198, 155, 72, 0.12);
    color: #626262;
    font-size: 14px;
    font-weight: 500;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.TiOro-feature-box:hover{
    transform:translateY(-6px);

    background:
    linear-gradient(
    135deg,
    #f5d08c,
    #c89a47);

    color:#111;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .TiOro-about-section{
        padding:90px 0;
    }

    .TiOro-about-content{
        text-align:center;
    }

    .TiOro-about-content h2{
        font-size:46px;
    }

    .TiOro-about-features{
        grid-template-columns:1fr;
    }

    .TiOro-about-tag{
        right:10px;
        bottom:20px;
    }

}

@media(max-width:576px){

    .TiOro-about-content h2{
        font-size:34px;
    }

    .TiOro-about-content p{
        font-size:15px;
    }

    .TiOro-about-tag{
        position:relative;

        right:auto;
        bottom:auto;

        margin-top:20px;
    }

}



/* =========================================
   SECTION
========================================= */

.TiOro-brand-section{
    position:relative;
    padding:10px 0 10px;
    background:linear-gradient(to bottom,#fff,#c3b192);
    overflow:hidden;
}

/* BLURS */

.TiOro-brand-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:0.16;
}

.TiOro-brand-blur.blur1{
    width:240px;
    height:240px;
    background:#e2bf74;
    top:-100px;
    left:-60px;
}

.TiOro-brand-blur.blur2{
    width:220px;
    height:220px;
    background:#f1d79e;
    bottom:-120px;
    right:-70px;
}

/* HEADING */

.TiOro-brand-heading{
    text-align:center;
    margin-bottom:45px;
}

.TiOro-brand-mini{
    position:relative;
    display:inline-block;
    padding:11px 24px;
    border-radius:50px;
    background:linear-gradient(135deg,#fff,#f8f3eb);
    border:1px solid rgba(198,155,72,0.16);
    color:#444;
    font-size:10px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    overflow:hidden;
}

.TiOro-brand-mini::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );
    transform:skewX(-25deg);
    animation:TiOroBrandShine 4s linear infinite;
}

@keyframes TiOroBrandShine{

    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }

}

.TiOro-brand-heading h2{
    font-size:44px;
    color:#c79c4d;
    font-weight:600;
    line-height:1.2;
}

.TiOro-brand-front h3{
    color: #495057;
    font-size: 18px;
    text-align: center;
    line-height: 1.3;
    /* margin-bottom: 8px; */
    font-weight: 400;
    font-family: 'Prompt', sans-serif;
    transition: 0.4s ease;
}
/* MARQUEE */

.TiOro-brand-marquee{
    position:relative;
    width:100%;
    overflow:hidden;
}

.TiOro-brand-track{
    display:flex;
    align-items:center;
    gap:26px;
    width:max-content;
    animation:TiOroBrandMove 28s linear infinite;
}

@keyframes TiOroBrandMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =========================================
   FLIP CARD
========================================= */

.TiOro-brand-item{
    position:relative;
    min-width:220px;
    height:120px;
    perspective:1200px;
}

/* INNER */

.TiOro-brand-flip{
    position:relative;
    width:100%;
    height:100%;
    transition:transform 0.9s cubic-bezier(.4,.2,.2,1);
    transform-style:preserve-3d;
}

/* FLIP */

.TiOro-brand-item:hover .TiOro-brand-flip{
    transform:rotateY(180deg);
}

/* FRONT + BACK */

.TiOro-brand-front,
.TiOro-brand-back{
    position:absolute;
    inset:0;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    backface-visibility:hidden;
    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

/* FRONT */

.TiOro-brand-front{
    background:rgb(229 210 174 / 72%);
    backdrop-filter:blur(10px);
    border:1px solid rgba(198,155,72,0.08);
}

.TiOro-brand-front img{
    max-height:54px;
    object-fit:contain;
}

/* BACK */
.TiOro-brand-back h3{
    color:#686868;
}
.TiOro-brand-back{
    transform:rotateY(180deg);

    background:
    linear-gradient(135deg, #d4d4d4, #e3d2ac);

    color:#fff;

    flex-direction:column;

    text-align:center;

    padding:15px;
}

.TiOro-brand-back span{
    font-size:10px;
    letter-spacing:3px;
    margin-bottom:8px;
    opacity:0.8;
}

.TiOro-brand-back h4{
    font-size:18px;
    font-weight:500;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .TiOro-brand-heading h2{
        font-size:36px;
    }

    .TiOro-brand-item{
        min-width:180px;
        height:100px;
    }

}

@media(max-width:576px){

    .TiOro-brand-section{
        padding:10px 0 10px;
    }

    .TiOro-brand-heading h2{
        font-size:28px;
    }

    .TiOro-brand-track{
        gap:16px;
        animation-duration:18s;
    }

    .TiOro-brand-item{
        min-width:150px;
        height:85px;
    }

    .TiOro-brand-front img{
        max-height:40px;
    }

    .TiOro-brand-back h4{
        font-size:14px;
    }

}



/* =========================================
   SECTION
========================================= */

.TiOro-newsletter-section{
    position:relative;

    padding:12px 0;

     background:
   linear-gradient(180deg, #ede2cb, #a0a0a0);
    overflow:hidden;
}

/* =========================================
   BLUR EFFECTS
========================================= */

.TiOro-news-blur{
    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:0.18;
}

.TiOro-news-blur.blur1{
    width:220px;
    height:220px;

    background:#d8b36a;

    top:-80px;
    left:-60px;
}

.TiOro-news-blur.blur2{
    width:180px;
    height:180px;

    background:#f3dca8;

    bottom:-80px;
    right:-50px;
}

/* =========================================
   MAIN BOX
========================================= */

.TiOro-newsletter-box{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;

    padding:25px 25px;

    border-radius:34px;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(12px);

    border:1px solid rgba(198,155,72,0.12);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.05);

    overflow:hidden;
}

/* SHIMMER */

.TiOro-newsletter-box::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:45%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent);

    transform:skewX(-25deg);

    animation:TiOroNewsShine 5s linear infinite;
}

@keyframes TiOroNewsShine{

    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }

}

/* =========================================
   LEFT CONTENT
========================================= */

.TiOro-news-content{
    max-width:480px;
}

/* MINI TITLE */

.TiOro-news-mini{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #fff,
    #f8f3eb);

    border:1px solid rgba(198,155,72,0.15);

    color:#444;

    font-size:10px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:20px;
}

/* TITLE */

.TiOro-news-content h2{
  font-size: 38px;
    line-height: 1.15;
    color: #c7a157;
    margin-bottom: 0px;
    /* font-family: 'Playfair Display', serif; */
    font-weight: 700;
}

/* TEXT */

.TiOro-news-content p{
    color:#666;

    font-size:15px;

    line-height:1.8;

    margin:0;
}

/* =========================================
   FORM
========================================= */

.TiOro-news-form-wrap{
    min-width:420px;
}

/* FORM */

.TiOro-news-form{
    position:relative;

    display:flex;
    align-items:center;

    padding:8px;

    border-radius:70px;

    background:#fff;

    border:1px solid rgba(0,0,0,0.06);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

/* INPUT */

.TiOro-news-form input{
    width:100%;

    border:none;

    outline:none;

    background:transparent;

    padding:0 20px;

    height:58px;

    color:#222;

    font-size:15px;
}

/* BUTTON */

.TiOro-news-form button{
    border:none;

    height:58px;

    padding:0 34px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #f5d08c,
    #c89a47);

    color:#111;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:0.4s ease;
}

.TiOro-news-form button:hover{
    transform:translateY(-2px);

    box-shadow:
    0 10px 22px rgba(198,155,72,0.28);
}

/* SMALL TEXT */

.TiOro-news-form-wrap small{
    display:block;

    margin-top:14px;

    color:#777;

    font-size:12px;

    padding-left:10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .TiOro-newsletter-box{
        flex-direction:column;

        text-align:center;

        padding:40px 30px;
    }

    .TiOro-news-form-wrap{
        min-width:100%;
    }

    .TiOro-news-content h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .TiOro-newsletter-section{
        padding:40px 0;
    }

    .TiOro-newsletter-box{
        padding:30px 20px;

        border-radius:24px;
    }

    .TiOro-news-content h2{
        font-size:28px;
    }

    .TiOro-news-content p{
        font-size:14px;
    }

    .TiOro-news-form{
        flex-direction:column;

        gap:10px;

        border-radius:24px;

        padding:14px;
    }

    .TiOro-news-form input{
        height:52px;

        text-align:center;
    }

    .TiOro-news-form button{
        width:100%;
    }

}

.TiOro-brand-back{
    position:absolute;
    inset:0;
    border-radius:28px;

    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,0.08),
    transparent 40%),

    linear-gradient(135deg,
    #1a1a1a 0%,
    #252525 35%,
    #111111 100%);

    border:1px solid rgba(212,175,55,0.22);

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    overflow:hidden;

    transform:rotateY(180deg);

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 20px 45px rgba(0,0,0,0.45);

    backdrop-filter:blur(18px);
}

/* GOLD GLOW */
.TiOro-brand-back::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,0.25),
    transparent 70%);

    top:-70px;
    right:-70px;

    opacity:0.9;
}

/* SHINY LINE */
.TiOro-brand-back::after{
    content:'';
    position:absolute;
    width:220%;
    height:1px;

    background:
    linear-gradient(to right,
    transparent,
    rgba(212,175,55,0.45),
    transparent);

    transform:rotate(-28deg);
    opacity:0.5;
}

/* NUMBER */
.TiOro-brand-back h3{
    position:relative;
    z-index:3;

    font-size:58px;
    font-weight:200;
    letter-spacing:4px;

    background:linear-gradient(
    180deg,
    #f8e7b0,
    #c69b48,
    #fff3c9);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 18px rgba(212,175,55,0.25);

    margin:0;
}

/* SMALL LUXURY LABEL */
.TiOro-brand-back h3::after{
    content:'TiOro';
    display:block;

    font-size:12px;
    letter-spacing:6px;
    text-transform:uppercase;

    color:rgba(255,255,255,0.55);

    margin-top:10px;

    -webkit-text-fill-color:rgba(255,255,255,0.55);
}


