.info-serv_block{
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
	margin: clamp(1.25rem, 0.75rem + 2.5vw, 3.75rem) 0px;
}
.info-serv_top_block{
    display: flex;
    flex-direction: row;
    gap: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);
}
/* Form */

.info-serv_form{
    max-width: clamp(25rem, 21.603rem + 5.43vw, 28.125rem);
    width: 100%;
    padding: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);
    background: #3C3C3B;
    height: fit-content;
}
.form_title{
	color:#FFFFFF;
	font-size:clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    margin-bottom: 15px;
}
.form_desc{
/* 	margin-bottom: 30px; */
}
.form_desc *{
	color:#FFFFFF;
}
.form_desc .phone{
	color:#CCB29A;
}
.form_desc .phone:hover{
	color:#B9A25C;
}
.btn.cons {
	font-family: "Federo", sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    height: fit-content;
    border-radius: 30px;
    outline: none;
    padding: 15px 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
	text-transform:uppercase;
    cursor: pointer;
	letter-spacing:2px;
	background:#CCB29A;
    color:#FFFFF;
    transition: all 0.3s ease-in;
    gap: 15px;
}

.cons {
    width: 100%;
    max-width: none;
    padding: 15px 0px !important;
}
.btn.cons:hover{
	color:#FFFFFF;
	background:#B9A25C;
}
/* symptoms */

.info-serv-block .symptoms_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
    gap: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);
}
.info-serv-block .symptom_block{
    background: #EFEFEF;
    height: fit-content;
}
.info-serv-block .symptom_name {
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    gap:clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
    align-items: center;
    border: 1px solid var(--stroke-2);
    cursor: pointer;
    /* height: 100%; */
}
.info-serv-block .symptom_block .symptom_name .icon{
    background: #CCB29A;
    border-radius: 50%;
    overflow: hidden;
    transition: background 0.3s ease-in-out;
    flex-shrink: 0;
    width:40px;
    height:40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.info-serv-block .symptom_block .symptom_name .icon svg{
    width:13px;
    height:13px;
}
.info-serv-block .symptom_block .symptom_name .icon svg path{
    fill: #FFFFFF;
    transition: all 0.3s ease-in-out;
}
.info-serv-block .symptom_block.active .symptom_name .icon{
    background: #FFFFFF;
    transition: background 0.3s ease-in-out;
}
.info-serv-block .symptom_block.active .symptom_name .icon svg path{
    fill: #CCB29A;
}
.info-serv-block .symptom_block.active{
    transition: all 0.3s ease-in-out;
}
.info-serv-block .symptom_block.active .symptom_name{
    border: 0px;
}
.info-serv-block .symptom_block.active .symptom_name::after{
    content: "";
    position: absolute;
    background: var(--stroke-1);
    width: 80%;
    height: 1px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}
.info-serv-block .symptom_list {
    /* padding: 40px 95px 45px 100px; */
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--main-text-primary);
    display: none;
    margin-left: 0px;
    list-style-type: none;
}
.info-serv-block .symptom_list li{
    display: flex;
}
.info-serv-block .symptom_list li::before{
    content: "•";
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 1em;  */
    color: #CCB29A;
    font-size: 30px;
    margin-right: 10px;
}
.info-serv-block p{
    margin-bottom: 0px;
	font-size:clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
	font-weight:400;
}

@media (max-width:1000px) {
    .info-serv-block .symptoms_list{
        grid-template-columns: repeat(1,1fr);
    }
}

@media (max-width:690px) {
    .info-serv_top_block{
        flex-direction: column;
    }
    .info-serv_form{
        max-width: none;
    }
}
/* servegories */

.info-serv_block .tab-item {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    background: var(--primary);
    cursor: pointer;
    transition: 0.3s;
}
.info-serv_block .tab-item.active,
.info-serv_block .tab-item:hover {
    background: var(--accent);
}
.info-serv_block .info-serv_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
.info-serv_block .service-item {
    display: flex;
    flex-direction: column;
    background: #EFEFEF;
    gap: clamp(1.25rem, 0.912rem + 1.69vw, 2.938rem);
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    align-items: flex-start;
    color: var(--main-text);
	transition: border 0.3s ease-in-out;
}
.info-serv_block .service-item:hover {
    border: 1px solid #CCB29A;
	transition: border 0.3s ease-in-out;
}
.info-serv_block .service-item .icon {
    transform: rotate(320deg);
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #CCB29A;
    transition: 0.3s;
	margin-top:auto;
}
.info-serv_block .service-item .icon svg path{
    fill: #CCB29A;
}
.info-serv_block .service-item:hover .icon {
    background: #CCB29A;
}
.info-serv_block .service-item:hover .icon svg path{
    fill: #FFFFFF;
}
@media (max-width: 1200px) {
    .info-serv_block .info-serv_list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .info-serv_block .tab-item {
        padding: 10px 15px;
    }
}


@media (max-width: 996px) {
    .info-serv_block .service-item {
        padding: 15px;
        font-size: 16px;
    }
    .info-serv_block .tabs-holder {
        margin-bottom: 20px;
        padding: 5px;
    }
    .info-serv_block .tab-item {
        font-size: 14px;
    }
    .info-serv_block {
        padding: 40px 0px;
    }
    .info-serv_block .info-serv_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .info-serv_block .info-serv_list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:450px) {
    .info-serv_block .info-serv_list{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 498px) {
    .info-serv_block .services.active {
        display: flex;
        flex-direction: column;
    }
    .info-serv_block .tab-item {
        padding: 7px 10px;
    }
}
