/* root */
:root{
    --black: #000000;
    --dark: #2B2723;
    --black_60: rgba(0, 0, 0, 0.6);
    --black_45: rgba(0, 0, 0, 0.45);
    --black_20: rgba(0, 0, 0, 0.20);
    --black_10: rgba(0, 0, 0, 0.10);
    --primary_1: #C4A679;
    --primary_2: #00006F;
}
/* colors */
._c_bl_60{
    color: var(--black_60);
}
._c_bl_45{
    color: var(--black_45);
}
._c_bl_20{
    color: var(--black_20);
}
._c_bl_10{
    color: var(--black_10);
}

/* headings  */
.pwd_title,
h1, ._h1,
h2, ._h2,
h3, ._h3,
h4, ._h4 {
    margin-bottom: 0.5rem;
    font-weight: initial;
    
}

h1, ._h1{
    font-weight: 400;
    font-size: 42px;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--dark);
    margin-bottom: 10px;
}

@media (min-width: 577px) {
    h1, ._h1{
        font-size: 58px;
    }
}
@media (min-width: 992px) {
    h1, ._h1{
        font-size: 64px;
    }
}
@media (max-width: 375px) {
    h1, ._h1{
        font-size: 37px;
    }
}
.pwd_title,
h1.pwd_title,
h2, ._h2{
    font-weight: 400;
    font-size: 48px;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--dark);
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .pwd_title,
h1.pwd_title,
    h2, ._h2{
        font-size: 36px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .pwd_title,
h1.pwd_title,
    h2, ._h2{
        font-size: 28px;
        line-height: 109.09%;
    }
}
/* custom elements  */
p {
    margin-bottom: 12px;
}
img {
    border-style: none;
    max-width: 100%;
}
svg {
    overflow: hidden;
}

/* paddings top bottom  */
._padding-y{
    padding-top: 45px;
    padding-bottom: 45px;
}
._margin-y{
    margin-top: 45px;
    margin-bottom: 45px;
}
@media (min-width: 992px) {
    ._padding-y{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    ._margin-y{
        margin-top: 80px;
        margin-bottom: 80px;
    }
}
._padding-top{
    padding-top: 45px;
}
._margin-top{
    margin-top: 45px;
}
@media (min-width: 992px) {
    ._padding-top{
        padding-top: 80px;
    }
    ._margin-top{
        margin-top: 80px;
    }
}
.padding-bottom{
    padding-bottom: 45px;
}
.margin-bottom{
    margin-bottom: 45px;
}
@media (min-width: 992px) {
    .padding-bottom{
        padding-bottom: 80px;
    }
    .margin-bottom{
        margin-bottom: 80px;
    }
}
/* <a> tag  */
a{
    text-decoration: none;
    transition: 0.3s ease;
    color: var(--black_60);
    text-underline-position: under;
}
a:hover{
    color: var(--black);
}

/* icons  */
.icon{
    vertical-align: middle;
}
.icon-arrow{
    display: flex;
}
.icon-arrow:before {
    content: "";
    width: 16px;
    height: 11px;
    background-image: url('data:image/svg+xml,<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 7H17M17 7L11.24 12.5M17 7L11.24 1.5" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    transition: transform 0.3s ease;
}
/* ul  */
ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/* secondary btn */
._primaryBtn {
    font-family: 'Rubik';
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.01em;
    border: none;
    padding: 0;
    color: var(--black);
    background: none;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
}
._primaryBtn span{
    display: inline-block;
    position: relative;
}
._primaryBtn span:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0px;
    border-bottom: 1.5px solid var(--black);
    transform: scaleX(1);
    transform-origin: center left;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0, 1);
}
._primaryBtn:hover span:before{
    transform: scaleX(0);
    transform-origin: center right;
}
._primaryBtn._white{
    color: #fff;
}
._primaryBtn._white span:before{
    border-color: #fff;
}

/* data-show-modal  */
[data-show-modal] > * {
    pointer-events: none;
}

/* gradient lines */
._gr_line-tb{
    display: flex;
    opacity: 0.4;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, rgba(67, 53, 41, 0), rgba(67, 53, 41, 0.53), rgba(67, 53, 41, 0.33));
}
._gr_line-bt{
    display: flex;
    opacity: 0.4;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, rgba(67, 53, 41, 0.53),rgba(67, 53, 41, 0.33), rgba(67, 53, 41, 0));
}
._gr_line-lr{
    display: flex;
    opacity: 0.4;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(67, 53, 41, 0.53), rgba(67, 53, 41, 0.33), rgba(67, 53, 41, 0.00));
}
._gr_line-rl{
    display: flex;
    opacity: 0.4;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, rgba(67, 53, 41, 0.53), rgba(67, 53, 41, 0.33), rgba(67, 53, 41, 0));
}
._gr_line-m{
    display: flex;
    opacity: 0.4;
    width: 100%;
    height: 1px;
    background: linear-gradient(to left, rgba(67, 53, 41, 0), rgba(67, 53, 41, 0.165), rgba(67, 53, 41, 0.53), rgba(67, 53, 41, 0.165), rgba(67, 53, 41, 0));
}


/* positions */
._relative{
    position: relative;
}
._absolute{
    position: absolute;
}
._top{top: 0;}
._right{right: 0;}
._left{left: 0;}
._bottom{bottom: 0;}