* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px 0;
}

.items {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 15px;
}

.items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 1260px) {
    .container {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .items {
        grid-template-columns: 1fr;
        gap:20px;
    }
}


.items .item {
    display: flex;
    width: 100%;
    flex-direction: column;
    cursor: pointer;
}

.items .item .image  {
    display: inline-block;
    width: 100%;
}

.items .item img {
    width: 100%;
    display: block;
    min-height: 150px;
    object-fit: cover;
}

.text {
    display: flex;
    flex-direction: column;
    background-color: #ededed;
    padding: 12px;
    gap: 2px;
    width: 100%;
}
.text h2 {
    font-size: 16px;
    line-height: 20px;
}
.text p {
    font-size: 12px;
}

.title {
    text-align: center;
    width: 100%;
    margin: 10px 0 0 0;
} 
.title h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
    color: #555;
} 

.logo {
    width: 100%;
    text-align: center;
}
.logo svg {
    width: 120px;
    height: auto;
}
.logo svg path {
    fill: #666cff;
}

.top {
}

.top_menu {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 25px 0 35px 0;
    white-space: pre;
}
.top_menu li {
    list-style: none;
}

.top_menu li a:hover {
    background-color: #666cff;
    color: #fff;
    border-color: #666cff;
}

.top_menu li a {
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 23px;
    font-size: 13px;
    color: #555;
    border: 1px solid #b7b7b7;
    padding: 5px 8px;
    transition: all 0.4s;
}

.top_menu li a.active {
    background-color: #666cff;
    color: #fff;
    border-color: #666cff;
}

.support {
    position: fixed;
    right: 25px;
    bottom: 0;
    cursor: pointer;
    width: 150px;
}
.support_area {
    background-color: #3e45e4;
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: all 0.4s ease;
    width: 100%;
}

.support_area:hover {
    background-color: #164eb0;
}

.support_area h2{
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: -0.2px;
    line-height: 20px;
    padding: 15px 0px 12px 20px;
}

.support_area h2 a {
    color: #fff;
    text-decoration: none;
}

.support_area h2:before{
    content: '';
    position: relative;
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 7px;
    top: -1px;
}