.travel-package__title {
    color: #062431;
    text-align: center;
    font-family: Barlow;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 800 !important;
    line-height: normal !important;
    text-transform: uppercase;
    margin: 80px 0px 20px !important;
}
.travel-package__subtitle {
    color: var(--Dark, #052330);
    text-align: center;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
}
.travel-package__ai-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.travel-package__tool-wrapper {
    display: flex;
    gap: 13px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.travel-package__tool {
    display: flex;
    width: 180px;
    height: 220px;
    padding: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 0.5px solid #BAC8CE;
    background: #FFF;
    cursor: pointer;
    &:hover {
        text-decoration: none;
    }
}
.travel-package__tool-title {
    color: #062431;
    text-align: center;
    font-family: Barlow;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
}
.travel-package__img-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.travel-package__img-container img:nth-child(2) {
    display: none;
}

.travel-package__tool:hover .travel-package__img-container img:nth-child(2) {
    display: block;
}
.travel-package__tool:hover .travel-package__img-container img:nth-child(1) {
    display: none;
}

.travel-package__tool-desc {
    color: #7A8E96;
    text-align: center;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}
