@font-face {
    font-family: "Darkline";
    src: url(../../assets/fonts/Darkline.ttf);
    font-weight: 400;
    font-display: swap;
}

:root{
    --main: #E31C79;
    --title: linear-gradient(to right,#E31E78 0%,#E95C66 32%,#ED8859 65%,#F2C147 100%);
    --text: #1D2939;
    --white: #fff;
    --black: #000;
    --gradient: linear-gradient(to bottom right,#E31E78 0%,#E95C66 32%,#ED8859 65%,#F2C147 100%);
    --line: #E9E9E9;
    --footer: #241160;
    --roboto: "Roboto", sans-serif;
    --int: "Inter", sans-serif;
    --dark: "Darkline", sans-serif;
}

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

.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(--gradient);
    border-radius: 15px;
}

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

.sectitle{
    width: fit-content;
    font-family: var(--dark);
    font-size: 90px;
    font-weight: 400;
    line-height: normal;
    line-height: 100px;
    background: var(--title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.text p:not(:last-child){
    margin-bottom: 1rem;
}

.text strong{
    background: var(--title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.telp,
.mailp{
    display: block;
}

.dbtn,
.dbtn.c:hover{
    position: relative;
    z-index: 1;
    width: clamp(10px,100%,263px);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 10px;
    justify-content: center;
    -webkit-justify-content: center;
    color: var(--white);
    font-weight: 600;
    line-height: 24px;
    letter-spacing: .15px;
    border-radius: 6px;
    background: var(--gradient), var(--gradient);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    padding: 10px;
    overflow: hidden;
}

.dbtn::before{
    content: '';
    display: none;
    display: -webkit-none;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-radius: 6px;
}

.dbtn:hover,
.dbtn.c:not(:hover){
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dbtn:hover::before,
.dbtn.c:not(:hover)::before{
    display: block;
    display: -webkit-block;
    border-image-source: var(--gradient);
}

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

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

.breadcrumb_fix{
	height:48px;
}

.breadcrumb{
	position: fixed;
	inset: 96px auto auto 0;
	z-index: 1050;
	width: 100%;
    border-top: 1px solid var(--line);
    box-shadow: 0px 15px 20px 0px #02083d14;
	background-color: var(--white);
    margin: 0;
    padding: 10px 0;
}

.breadcrumb .path,
.breadcrumb .path>*:not(:last-child){
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 7px;
}

.breadcrumb .path::before{
    content: url(../../assets/img/homesvg.svg);
    margin-right: 9px;
}

.breadcrumb .path>*{
    color: #344054;
    font-weight: 500;
}

.breadcrumb .path>*:not(:last-child)::after{
    content: url(../../assets/img/breadarrow.svg);
}

@media(max-width:992px){
    .sectitle{
        line-height: 100px;
    }
    .sectitle::after{
        display: none !important;
        display: -webkit-none !important;
    }
}

@media(max-width:768px){
	.dbtn{
		width: 100%;
	}
}

@media(max-width:425px){
	.sectitle{
		font-size: clamp(20px,25vw,90px) !important;
    	line-height: clamp(30px,26vw,100px) !important;
		padding-left: 6px;
	}
}