@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}


body {
    font-family: 'Poppins', sans-serif;
    background: rgb(12, 13, 20);
    width: 100%;
}


.coneiner {
    background: url(/img/back.jpg) no-repeat center / cover lightgray;
    padding: 0 40px;
    min-height: 100dvh;
    height: auto;
    padding-bottom: 60px;
    animation: fadeIn 1s ease-in-out forwards; /* Додаємо анімацію */
}
/* Визначаємо ключові кадри для анімації */
@keyframes fadeIn {
    0% {
        opacity: 0; /* Початкова прозорість */
    }
    100% {
        opacity: 1; /* Кінцева прозорість */
    }
}
.header {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 59px;
    padding-bottom: 49px;
}
.header h1 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.header h1 span{
    color: #A5FF55;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;

}


.info-conteiner {
    display: flex;
    width: 80%;
    padding: 34px 47px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(13, 14, 19, 0.10);
    margin: auto;
}
.info-conteiner h2 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.info-conteiner p {
    color: #E5E5E5;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%; /* 25.6px */
}






.container-grid {
    text-align: center;
}

.container-grid h2 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 44.8px */
    margin-bottom: 30px;
    margin-top: 39px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
    gap: 10px;
    margin: 0 auto;
}

.card {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(12, 13, 20, 0.70);
    padding: 16px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 188px;
}


.card h3 {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
}

.card p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 160%; /* 22.4px */

}




.conteiner-dp h2 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-top: 48px;
    padding-bottom: 20px;
}
.conteiner-dp p {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.conteiner-dp span {
    color: #A5FF55;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.conteiner-dp span:nth-child(2) {
    font-style: italic;
}






.conteiner-contact {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(13, 14, 19, 0.10);
    width: 80%;
    margin: auto;
    margin-top: 47px;
    padding: 43px;
}

.top-contact {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 23px;
}
.top-contact h2{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.contact {
    display: flex;
    justify-content: space-between;
    padding: 35px 0px;
}

.left {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    gap: 26px;
}

.right {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    gap: 26px;
}
.right a{
    color: #FFF;
    text-decoration: none;
}




@media (max-width: 768px) {
    .coneiner {
        padding: 0 14px;
        padding-bottom: 40px;
    }
    .top-contact {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    .contact {
        flex-direction: column;
        gap: 20px;
    }
    .conteiner-contact {
        width: 100%;
        padding: 15px;
    }
    .right {
        gap: 10px;
        font-size: 16px;
        flex-direction: column;
    }
    .left {
        gap: 10px;
        font-size: 16px;
        flex-direction: column;
    }
    .contact img {
        width: 60px;
    }
    .top-contact h2 {
        font-size: 22px;
    }
    .conteiner-dp h2 {
        font-size: 24px;
    }
    .conteiner-dp p {
        font-size: 24px;
    }
    .conteiner-dp span {
        font-size: 24px;
    }
    .container-grid h2 {
        font-size: 24px;
    }
    .info-conteiner {
        width: 100%;
        padding: 15px;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .header h1 span {
        font-size: 28px;
    }
    .header h1 {
        font-size: 28px;
    }
}