/*
-------------------------------------------------------------------------------
FEATURES SECTION
-------------------------------------------------------------------------------
*/

.features-container {
    display: flex;
    justify-content: center;
    background-image: url("../images/features-page/features-section.png");
    height: auto;
    background-size: cover;
    background-position: bottom;
}

.features-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1500px;
    padding-bottom: 50px;
}

.features-section .features {
    padding-top: 70px;
    padding-right: 50px;
    max-width: 1000px;
}

.features-section .features h1 {
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 68.64px;
    color: #fff;
    margin-bottom: 30px;
}

.features-section .buttons {
    margin-top: 46px;
    display: flex;
    gap: 40px;
}

.features-section .buttons a {
    padding: 14px 24px;
    border-radius: 10px;
    background: #00A2DB;
    border-style: none;
    color: #fff;
    cursor: pointer;
    transition-duration: 0.5s;
    text-decoration: none;
    text-align: center;
}

.features-section .buttons a:hover {
    background-color: #00a1dbad;
    cursor: pointer;
}

.features-section .features .background {
    background-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(2px);
    border-radius: 7px;
    padding: 10px 16px;
}

.features-section .features p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.24px;
    padding: 10px 16px;
}

.features-section .features p span {
    float: right;
}

.features-section .features .double {
    height: 100px;
}

.features-section .features .double ul li {
    list-style: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.22);
    padding: 5px;
    margin: 15px;
    border-radius: 10px;
}

.features-section .features .double ul li:hover {
    background-color: rgba(195, 195, 195, 0.22);
}

.features-section .features .double ul {
    float: right;
    margin-top: -45px;
}

.features-section .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-section .image img {
    width: 80%;
    max-width: 1000px;
}