@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    width: 1232px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100vw;
    height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative; 
    height: 100vh;
    font-family: "Audiowide", sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/img/fon.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: backgroundGrow 25s infinite ease-in-out;
}

@keyframes backgroundGrow {
    0%, 100%{
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
}

.section__icon {
    text-align: center;
}

.title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 100px;
    color: #fff;
    text-align: center;
}

.section__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 26px;
    padding: 15px;
}

.text {
    text-align: center;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0.07em;
    color: #7a7a7a;
}

.section__item {
    width: 90px;
    height: 90px;
    background-image: url(/img/Ellipse\ 1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    justify-items: center;
    border-radius: 100%;
}

.section__item img {
    width: 100%;
    height: 100%;
}

.section__item a{
    padding: 20px;
    width: 100%;
    height: 100%;
}

.section__item:hover {
    transform: scale(1.06);
}

.section__item:hover:nth-child(1) {
    background: linear-gradient(136deg, #00c8ff 0%, rgba(0, 200, 255, 0) 100%);

}

.section__item:hover:nth-child(2) {
    background: linear-gradient(136deg, #9809f6 0%, rgba(252, 1, 200, 0.7) 27.5%, rgba(254, 72, 25, 0.5) 57%, rgba(255, 195, 0, 0.3) 80%, rgba(255, 195, 0, 0) 100%);
}

.section__item:hover:nth-child(3) {
    background: linear-gradient(136deg, #1769ff 0%, rgba(23, 105, 255, 0) 100%);
}


@media screen and (max-width:1200px) {
    .title {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 80px;
        color: #fff;
        text-align: center;
    }
    .section__list {
        gap: 50px;
    }
}

@media screen and (max-width:768px) {
    .title {
        font-size: 60px;
        width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .section__icon img{
        width: 150px;
    }
    .section__item {
        width: 60px;
        height: 60px;
    }
    .section__item a{
        padding: 15px !important;
    }
    .text{
        font-size: 15px;
    }
}

@media screen and (max-width:500px) {
    .title {
        font-size: 50px;
        width: 350px;
    }
    .section__icon img{
        width: 130px;
    }
    .text{
        font-size: 13px;
    }
}

@media screen and (max-width:375px) {
    .title {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 45px;
        color: #fff;
        text-align: center;
        width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .section__icon img{
        width: 100px;
    }
    .section__list {
        gap: 25px;
    }
    .text {
        font-weight: 400;
        font-size: 14px;
    }
    .section__item {
        width: 50px;
        height: 50px;
    }
    .text{
        font-size: 10px;
    }
}