:root {
    --light: #F1AEE3 ;
    --dark: #E157C3;
    --white: #FFFFFF;
    --green: #AEF1DA;
    --coral: #F1AEAF;
    --green-rgb: 174, 241, 218;
    --pink: #f1d5eb ;
    --tr: 0.2s;
}
/* ШАПКА */
body {
    font-family: "Itim", cursive;
    font-weight: 400;
    font-style: normal;
}
a{
    text-decoration: none;
    transition: var(--tr);
}
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;

}
.page {
    padding-top: 100px;
    padding-bottom: 100px;
}
.header {
    background-color: var(--light);
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;

}
.nav{
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}
/* здесь все про кнопки*/
.btn {
    padding: 16px 40px;
    border-radius: 8px;
}
.btn._icon {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn._icon::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../images/cart.png);
    background-repeat: no-repeat;
    background-size: contain;

}
.btn-light {
    background-color: var(--green);
    color: var(--dark);
}
.btn-light:hover {
    color: var(--light);
}
.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    color: var(--green);
}
.btn._ml{
    margin-left: 16px;
}
.nav_link{
    color: var(--white)
}
.nav_link:hover{
    color: var(--dark);
}
/* ПЕРВЫЙ РАЗДЕЛ*/
.first > header{
    border-bottom: 1px solid;
    color: rgb(var(--green-rgb), 0,3);
}
.first{
    background-color: var(--light);
    background-color: var(--light);
    color: var(--white);
}
.titel-h1 {
    font-size: 72px;
    line-height: normal;
    letter-spacing: -2%;
}
.titel-h2 {
    font-size: 64px;
    line-height: normal;
    letter-spacing: -2%;
}
.text {
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -2%;
}
.main{
    display: flex;
    align-content: center;
    justify-content:space-between;
}
.main_desc {
    max-width: 520px;
    margin-bottom: 60px;
}
.main_title {
    margin-top: 0;
    margin-bottom: 24px;
}
.buy_btn {
    justify-content: center;
    max-width: 100px;
    box-sizing: border-box;
}
.bear {
    margin-top: 20px;
    margin-bottom: 0 auto;
    margin-right: 40px;
}
/* ВТОРОЙ РАЗДЕЛ */
.container {
    box-sizing: border-box;
}
.container_line {
    border: 1px solid var(--dark);
    margin-left: 60px;
    margin-right: 60px;
    height: 700px;
}
.our_works {
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark);
}
.text_2 {
    margin-top: 0px;
    margin-bottom: 24px;
}
.text_2_down {
    margin-bottom: 60px;
}
.btn_contacts {
    justify-content: center;
    max-width: 10px;
    box-sizing: border-box;
}
/*
.animation {
    color: var(--green);
    text-transform: uppercase;
} 
.animation::before {
    content: attr(data-text);
    width: 0;
    height: 100%;
    color: var(--dark);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    animation: animate 5s linear infinite;
    border-right: 2px solid var(--green);
}
@keyframes animate {
    0%, 10%, 100%{
        width: 0;
    }
    70%, 90% {
        width: 100%;
    }
}
*/
.table_container{
    text-align: center;
    align-items: center;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: -2%;
}
.table_btn {
    justify-content: center;
    max-width: 100px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding-bottom: 20px;
    
}
table{
    border-spacing: 0 10px;
    border-color: var(--dark);
    width: 800px;
    border-collapse: collapse;
    border: 1px solid;
    margin: auto;
    background-color: var(--pink);
    
}
.head_table {
    text-align: center;
    font-size: 30px;
    
}
.table_text {
    text-align: center;
    font-size: 35px;
}
td {
    text-align: center;
    font-size: 20px;
}
/* 4-ЫЙ РАЗДЕЛ */

.container_maps {
    margin: 0 auto;
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark) ;
}
.maps {
    float: right;
    padding-right: 10px;
    padding-top: 30px;
}
.links {
    margin: 0 auto;
    padding: 110px 110px;
    display: flex;
    justify-content: space-between;
    float: left;
    
}
img {
    margin-right: 50px;
}