/*=========================================
GOOGLE FONTS

Heading : Cormorant Garamond
Body    : Manrope
==========================================*/


/*=========================================
RESET
==========================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Manrope',sans-serif;

    font-size:16px;

    font-weight:400;

    line-height:1.8;

    color:var(--text);

    background:var(--light);

    overflow-x:clip;

    -webkit-font-smoothing:antialiased;

}

::selection{

    background:var(--gold);

    color:#fff;

}

/*=========================================
CONTAINER
==========================================*/

.container{

    max-width:1320px;

}

/*=========================================
TYPOGRAPHY
==========================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cormorant Garamond',serif;

    color:var(--heading);

    font-weight:600;

    line-height:1.1;

    margin-bottom:20px;

}

h1{

    font-size:76px;

}

h2{

    font-size:56px;

}

h3{

    font-size:42px;

}

h4{

    font-size:32px;

}

h5{

    font-size:26px;

}

h6{

    font-size:20px;

}

p{

    margin-bottom:20px;

    color:var(--text);

}

/*=========================================
LINK
==========================================*/

a{

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

/*=========================================
LIST
==========================================*/

ul{

    list-style:none;

    padding:0;

    margin:0;

}

ol{

    padding-left:18px;

}

/*=========================================
IMAGE
==========================================*/

img{

    max-width:100%;

    display:block;

}

/*=========================================
BUTTON RESET
==========================================*/

button{

    border:none;

    outline:none;

    background:none;

}

button:focus{

    box-shadow:none;

}

/*=========================================
INPUTS
==========================================*/

input,
textarea,
select{

    width:100%;

    outline:none;

    box-shadow:none;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    box-shadow:none;

}

/*=========================================
SECTION
==========================================*/

section{

    position:relative;

    padding:120px 0;

}

.section-sm{

    padding:90px 0;

}

.section-lg{

    padding:150px 0;

}

/*=========================================
SECTION TITLE
==========================================*/

.section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:18px;

}

.section-subtitle::before{

    content:"";

    width:55px;

    height:1px;

    background:var(--gold);

}

.section-title{

    max-width:720px;

    margin-bottom:25px;

}

.section-description{

    max-width:700px;

}

/*=========================================
BUTTONS
==========================================*/

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 36px;

    border-radius:60px;

    border:1px solid var(--gold);

    color:var(--gold);

    transition:var(--transition);

    font-weight:600;

}

.btn-outline:hover{

    background:var(--gold);

    color:#fff;

}

/*=========================================
CARD
==========================================*/

.card-shadow{

    background:#fff;

    border-radius:30px;

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:40px;

}

.rounded-lg{

    border-radius:30px;

}

/*=========================================
BACKGROUND
==========================================*/

.bg-light{

    background:var(--light);

}

.bg-cream{

    background:var(--cream);

}

.bg-white{

    background:#fff;

}

/*=========================================
SPACING
==========================================*/

.mt-120{

    margin-top:120px;

}

.mb-120{

    margin-bottom:120px;

}

.py-120{

    padding:120px 0;

}

/*=========================================
SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold-dark);

}