*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html{
    scroll-behavior: smooth
}

body.passive{
    overflow: hidden;
}

a{
    color: black;
    text-decoration: none;
    display: block;
}


button{
    outline: none;
    border: none;
    color: transparent;
}

img{
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}
.container{
    max-width: 1860px;
    padding: 0 30px;
    margin: 0 auto;
}

h1{
    font-size: var(--font-52);
    line-height: var(--line-62);
    color: var(--white);
    font-weight: 600;
}

h2{
    font-size: var(--font-48);
    line-height: var(--line-58);
    font-weight: 600;
}

.font-14{
    font-size: var(--font-14);
    line-height: var(--line-18);
}
.font-16{
    font-size: var(--font-16);
    line-height: var(--line-20);
}
.font-18{
    font-size: var(--font-18);
    line-height: var(--line-25);
}
.font-20{
    font-size: var(--font-20);
    line-height: var(--line-28);
    font-weight: 500;
    color: var(--dgray);
}

.font-24{
    font-size: var(--font-24);
    line-height: var(--line-34);
    font-weight: 600;
}

.font-32{
    font-size: var(--font-32);
    line-height: var(--line-38);
    font-weight: 600;
}

.font-48{
    font-size: var(--font-48);
    line-height: var(--line-58);
    font-weight: 700;
}
.font-54{
    font-size: var(--font-54);
    line-height: var(--font-54);
    font-weight: 700;
}

.btn{
    padding: 16px 32px;
    border-radius: 8px;
    transition: all ease-in-out .3s;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn svg{
    transform: rotate(0deg);
    transition: all ease-in-out .5s;
}
.btn:hover svg{
    transform: rotate(-90deg);
    transition: all ease-in-out .5s;
}
.btn:hover{
    background-color: var(--lgreen);
    transition: all ease-in-out .3s;
    color: var(--white)
}

.btn-empty{
    border: 1px solid var(--green);
    transition: all ease-in-out .3s;
}
.btn-empty:hover{
    border: 1px solid var(--lgreen);
    transition: all ease-in-out .3s;
}
.mt-100{
    margin-top: 100px;
}

.mt-30{
    margin-top: 30px;
}
.mt-10{
    margin-top: 10px;
}


.card{
    border-radius: 32px;
    padding: 60px;
    background-color: var(--gray);
}


.tags{
    display: flex;
    gap: 8px;
}
.tag{
    padding: 4px 12px;
    border: 1px solid var(--green);
    border-radius: 123px;
    display: grid;
    place-items: center;
}

.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.green-back{
    background-color: var(--green);
    color: var(--white);
}

.dgray-back{
    background-color: var(--grad-black);
}
.gray-back{
    background-color: var(--gray);
}

input[type="tel"],
input[type="text"]{
    border: 1px solid #D8D8D8;
    border-radius: 8px;
    padding: 16px;
    font-size: var(--font-18);
    line-height: var(--line-24);
    background-color: var(--white);
}
input[type="submit"]{
    outline: none;
    border: none;
}

.text-green{
    color: var(--green);
}

@media (max-width: 600px) {
    h1{
        font-size: var(--font-30);
        line-height: var(--line-36);
    }
    h2{
        font-size: var(--font-28);
        line-height: var(--line-34);
    }

    .card
    {
        padding: 15px;
    }
    .container{
        padding: 0 15px;
    }
    .font-18{
          font-size: var(--font-16);
        line-height: var(--line-20);
    }
    .font-20{
        font-size: var(--font-16);
        line-height: var(--line-20);
    }
    .font-24{
        font-size: var(--font-18);
        line-height: var(--line-25);
    }

    .font-32{
        font-size: var(--font-24);
        line-height: var(--line-30);
    }

    .font-48{
        font-size: var(--font-32);
        line-height: var(--line-38);
    }

    .mt-100{
        margin-top: 60px;
    }

    
    
}