/*
 Theme Name: Archiox 
 Theme URI: https://themewar.com/wp/archiox/
 Author: ThemeWar
 Author URI: https://themeforest.net/user/themewar/portfolio
 Description: Archiox Architecture & interior Wordpress Theme
 Version: 1.0
 License:
 License URI: 
*/

/*==================================
    [Table of contents]
===================================
    01. Root Variables
    02. Basic Typography
    03. Custom Helper Class
    04. Links & Buttons
    05. Section Settings
*/

/*-----------------------------------------
/  01. Root Variables
/-----------------------------------------*/
:root{
    --primary-font: 'Inter', sans-serif;
    --secondary-font: 'Lora', serif;
    
    --tw-primary-color: #C8A067;
    --tw-secondary-color: #212121;
    --tw-white-color: #ffffff;

    --tw-body-color: #777777;
    --body-font-size: 16px;
    --body-line-height: 26px;
    --body-font-weight: 400;
    --body-letter-spacing: 0;

    --dark-color01: #666666;
    --dark-color02: #999999;

    --heading-color: #000000;
    --heading-font-weight: 400;
    --heading-line-height: 1.1;
}
.primaryFont{
    font-family: var(--primary-font);
}
.secondaryFont{
    font-family: var(--secondary-font);
}

/*-----------------------------------------
/  02. Basic Typography
/-----------------------------------------*/
body, html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    font-family: var(--primary-font);
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    color: var(--tw-body-color);
    letter-spacing: var(--body-letter-spacing);
}
h1, h2, h3, h4, h5, h6{
    color: var(--heading-color);
    font-family: var(--secondary-font);
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    margin: 0 0 15px;
}
a{
    text-decoration: none;
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:hover{
    color: var(--tw-primary-color);
    text-decoration: none;
}
button, input[type="submit"]{
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:focus, button:focus, input[type="submit"]:focus{
    outline: 0;
    text-decoration: none;
}

@media (min-width: 1366px) {
    .container{
        max-width: 1314px;
        width: 100%;
    }
}
.mb-40{
    margin-bottom: 40px;
}
.mt-40{
    margin-top: 40px;
}

/*-----------------------------------------
/  03. Custom Helper Class
/-----------------------------------------*/
.subTitle{
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--tw-primary-color);
    font-family: var(--primary-font);
    margin: 0;
    position: relative;
    text-transform: uppercase;
}
.subTitle i{
    margin: 0 6px;
    font-size: 11px;
}
.subTitle svg{
    margin: 0 7px;
}
.secTitle{
    font-size: 60px;
    line-height: 70px;
    color: var(--heading-color);
    margin: 0;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-left: 0;
}
.noPadding{
    padding: 0;
}
.container-left{
    margin-left: 0;
    margin-right: auto;
}

/* -- 04. Links & Buttons -- */
.btnLink{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    color: var(--dark-color01);
    position: relative;
    max-width: 46px;
    width: 100%;
    text-align: center;
}
.btnLink::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 25px;
    background: #D4D4D4;
    width: 100%;
    height: 1px;
    transition: all 350ms ease;
}
.btnLink:hover{
    color: var(--heading-color);
}
.btnLink::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 25px;
    width: 0;
    height: 1px;
    background: var(--heading-color);
    transition: all 350ms ease;
    z-index: 1;
}
.btnLink:hover::before{
    width: 100%;
}

/*-----------------------------------------
/  05. Animation Settings
/-----------------------------------------*/
.archioxBtn{
    position: relative;
    display: inline-block;
    font-family: var(--primary-font);
    background: var(--tw-white-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--heading-color);
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 16px 30.29px;
}
.archioxBtn span{
    font-size: 14px;
    display: inline-block;
}
.archiox_btn_align .archioxBtn .in_right i,
.archiox_btn_align .archioxBtn02 .in_right i{
    margin-right: 0;
    margin-left: 3px;
}
.archiox_btn_align .archioxBtn .in_left i,
.archiox_btn_align .archioxBtn02 .in_left i{
    margin-right: 3px;
    margin-left: 0;
}
.archioxBtn:hover span{
    animation: arrowAnim 400ms linear;
}
@keyframes arrowAnim {
    0%{
        opacity: 0;
        transform: translateX(-10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

/* -- Button Two -- */
.archioxBtn02{
    position: relative;
    display: inline-block;
    font-family: var(--primary-font);
    background: var(--tw-primary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--tw-white-color);
    padding: 16px 30.29px;
}
.archioxBtn02:hover{
    background: var(--heading-color);
    color: var(--tw-white-color);
}
.archioxBtn02 span{
    font-size: 14px;
    display: inline-block;
    position: relative;
}
.archioxBtn02:hover span {
    animation: arrowAnim02 400ms linear;
}
rs-layer .archioxBtn02{
    width: 100%;
    height: 100%;
}
rs-layer .archioxBtn02 span {
    font-size: inherit;
    line-height: inherit;
}

/* -- Button Row Animation -- */
@keyframes arrowAnim02 {
    0%{
        opacity: 0;
        transform: translateX(-10px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
