.icon_25 {
    max-width: 25px;
    max-height: 25px;
}

header .contact-information-section p,
header .contact-information-section a {
    color: white;
    text-decoration: none;
}


/*
Whastsapp and call Animation
*/

.pulse-animation {
    position: fixed;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.pulse-animation:first-child {
    bottom: 20px;
    right: 20px;
}

.pulse-animation:last-child {
    bottom: 110px;
    right: 20px;
}

.pulse-animation img {
    width: 70px;
    height: 70px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

#intro ul {
    list-style: none;
}

#intro ul img {
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

#intro .description {
    line-height: 30px;
}

#available-cars .chose-car {
    border: 1px solid black;
    border-radius: 50px;
    padding: 30px;

}

#footer {
    color: white;
}

#footer li {
    list-style: none;
}

#footer li a {
    text-decoration: none;
    color: white;
}

/*
Responsive
*/
@media screen and (max-width: 424px) {
    .contact-information-section p {
        font-size: 13px;
    }
}