:root{
    --main: #C56A14;
    --title: #1E1839;
    --text: #9398A8;
    --white: #fff;
    --black: #000;
    --orange: #DB8330;
    --line: #DDDFE2;
    --bg: #F4F4F4;
    --footer-design: #1E1839;
    --roboto: "Roboto", sans-serif;
    --robotof: "Roboto Flex", sans-serif;
    --dm: "DM Sans", sans-serif;
    --ibm: "IBM Plex Serif", sans-serif;
}

body{
    font-family: var(--roboto);
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
}

.tupp{
    text-transform: uppercase;
}

.tlc{
    text-transform: lowercase;
}

html::-webkit-scrollbar{
    width: 10px;
}

html::-webkit-scrollbar-track{
    background: #F2F2F2;
}

html::-webkit-scrollbar-thumb{
    background: var(--main);
    border-radius: 15px;
}

a{
    text-decoration: none;
    color: #000;
}

.uptitle{
    text-transform: uppercase;
    color: var(--main);
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
}

.sectitle{
    color: var(--title);
    font-family: var(--ibm);
    font-size: 52px;
    font-weight: 400;
    line-height: 68px;
}

.sectitle strong{
    color: var(--main);
    font-weight: inherit;
}

.text{
    color: var(--text);
}

.text strong{
    color: var(--title);
}

.telp,
.mailp{
    display: block;
}

.dbtn{
    position: relative;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    width: fit-content;
    color: var(--white);
    font-family: var(--robotof);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    border: 1px solid transparent;
    background-color: var(--main);
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    padding: 15px 20px;
}

.dbtn.t{
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
}

.dbtn::before{
    content: '';
    position: absolute;
    inset: auto auto 10px 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right,var(--main) 0%,var(--main) 50%,var(--white) 50%,var(--white) 100%);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.dbtn.t::before{
    background: linear-gradient(to right,var(--white) 0%,var(--white) 50%,var(--main) 50%,var(--main) 100%);
}

.dbtn::after{
    content: url(../../assets/img/btarrow.svg);
    width: 11px;
    height: 16px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%,8px 9px);
    -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%,8px 9px);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.dbtn:hover{
    color: var(--main);
    background-color: transparent;
}

.dbtn.t:hover{
    color: var(--white);
    background-color: var(--orange);
}

.dbtn:hover::before{
    width: 200%;
}

.dbtn:hover::after{
    filter: none;
    -webkit-filter: none;
    -ms-filter: none;
    clip-path: none;
    -webkit-clip-path: none;
}

.dbtn.t:hover::after{
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
}

.wpcf7-not-valid-tip{
    position: absolute;
    bottom: -20px;
    font-size: 14px;
}

h1.entry-title{
    text-align: center;
    margin: 30px 0;
}