.information-wrapper {
    margin-top: 60px;
    margin-left: 96px !important;
    margin-right: 96px !important;
}

.information-items {
    .item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;

        .item-img {
            width: calc((100% - 32px) / 2);
            display: flex;
            align-items: center; 
        }

        .item-data {
            padding-left: 64px;
            padding-right: 64px;
            width: calc((100% - 32px) / 2);
            display: flex;
            flex-direction: column;
            justify-content: center;

            .item-title {
                font-size: 40px;
                margin-bottom: 16px;
            }

            .item-description {
                font-size: 20px;
                margin-bottom: 16px;
            }
        }

        .item-link {
            a {
                text-decoration: none !important;
                color: #000 !important;
    
                &:after {
                    content: "";
                    display: inline-block; 
                    width: 16px;
                    height: 12px; 
                    background-image: url(../icons/link-arrow.svg);
                    background-size: cover;
                    background-repeat: no-repeat;
                    margin-left: 10px; 
                    transition: transform 0.3s ease;
                }
    
                &:hover:after {
                    transform: translateX(5px);
                }
            }
        }
    }

    .item:first-child {
        margin-bottom: 140px;
    }
}

@media (max-width: 1024px) {
    .information-items {
        .item {
            .item-data {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
    }
}

@media (max-width: 950px) {
    .information-items {
        .item {
            .item-data {
                .item-title {
                    font-size: 24px;
                    margin-bottom: 16px;
                }
    
                .item-description {
                    font-size: 14px;
                    margin-bottom: 16px;
                }
            }

            .item-link {
                a {
                    font-size: 12px;
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .information-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;

        .item:first-child {
            margin-bottom: 100px;
        }
    }
}

@media (max-width: 600px) {
    .information-wrapper {
        .information-items {
            .item {
                display: block;

                .item-img {
                    width: calc((100%) / 1);
                }
        
                .item-data {
                    width: calc((100%) / 1);
                }
            }

            .item:nth-child(2) {
                display: flex;
                flex-direction: column;
            }

            .item:nth-child(2) .item-data {
                order: 2;
            }
            
            .item:nth-child(2) .item-img {
                order: 1;
            }

            & .item {
                .item-data {
                    margin-top: 16px;
                    padding: 0;
                }
            }
        }
    }
}
