
/*-----------------------------------------
/  01. Theme Fonts
/-----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Elsie+Swash+Caps:wght@400;900&family=Prata&family=Quicksand:wght@300;400;500;600;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&family=Schoolbell&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Elsie+Swash+Caps:wght@400;900&family=Prata&family=Quicksand:wght@300;400;500;600;700&display=swap');

/*-----------------------------------------
/  02. Basic Typography
/-----------------------------------------*/
body, html{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #141414;
    letter-spacing: 0;
    font-weight: 400;
}
p{
    margin: 0 0 15px;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    color: #D7A05A;
    margin: 0 0 15px;
}
a{
    color: #9ebbbd;
    text-decoration: none;

    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:hover, a:focus{
    color: #52586d;
    text-decoration: none;
    outline: 0;
}
button, input[type="submit"]{
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
input:focus, select:focus, textarea:focus, button:focus{
    outline: 0;
}
.jost{
    font-family: 'Jost', sans-serif;
}

/*-----------------------------------------
/  03. Custom Helper Class
/-----------------------------------------*/
.fixOverflow{
    overflow: hidden;
}
.noPaddingLeft{
    padding-left: 0;
}
.noPaddingRight{
    padding-right: 0;
}

/*-----------------------------------------
/  04. Links & Buttons
/-----------------------------------------*/
.tcLink{
    font-family: 'Jost', sans-serif;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: #52586d;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
.tcLink i{
    color: #7b9496;
    font-size: 12px;
    position: relative;
    top: -1px;
    margin: 0 7px 0 0px;
    
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
.tcLink:hover{
    color: #7b9496;
}
.tcLink:hover i{
    margin-right: 10px;
}
.tcBTN{
    font-family: 'Jost', sans-serif;
    display: inline-block;
    position: relative;
    height: 48px;
    min-width: 170px;
    background: transparent;
    border-radius: 48px;
    font-size: 14px;
    line-height: 48px;
    color: var(--tp-common-white);
    text-transform: uppercase;
    text-align: center;
    overflow: hidden;
    border: none;
    padding: 0 25px;
}
.tcBTN span{
    position: relative;
    z-index: 3;
}
.tcBTN:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--tp-grey-9);
    border-radius: inherit;
}
.tcBTN:before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    
    background:  var(--tp-theme-9);
    border-radius: inherit;
    opacity: 1;
    z-index: 2;
    
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
.tcBTN:hover:before{
    width: 100%;
    right: auto;
    left: 0;
}
.tcBTN:hover{
    color: #FFF;
}
.tcBTN2{
    font-family: 'Jost', sans-serif;
    position: relative;
    display: inline-block;
    min-width: 111px;
    height: 42px;
    border: 1px solid #c5d0cf;
    border-radius: 42px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #52586d;
    line-height: 40px;
    text-transform: uppercase;
}
.tcBTN2:hover{
    color: #52586d;
    border-color: #52586d;
}

/*-----------------------------------------
/  05. Section Settings
/-----------------------------------------*/
.secTitle{
    font-size: 36px;
    line-height: 48px;
    margin: 0 0 6px;
         color: #D7A05A;
         font-weight: 700;
}
.secDesc{
    margin: 0;
}
.secSubTitle{
    font-size: 18px;
    line-height: 1;
    color: #141414;
    font-weight: 500;
    margin: 0;
}
.noPaddingRight{
    padding-right: 0;
}