:root {
    --bg: #fdfdfd;
    --highlight1: #ED4264;
    --highlight2: #FFEDBC;
    --color: #1a1e24;
}

h1 {
    font-family: var(--primaryfont-bold);
    margin: 0 0 15px;
    line-height: 1.4;
}


/*  */

.pmp-banner-wrap {
    padding: 80px 0;
    text-align: center;
    background: #E3F7F1;
}

.pmp-banner-wrap p {
    margin: 0;
}

.pmp-banner-wrap p.btn-wrap {
    margin: 30px 0 0;
}

.pmp-banner-wrap .content-wrap p a.act-btn {
    color: #e9152b;
    /* border-bottom: 1px solid #e9152b; */
    font-family: var(--primaryfont-semibold);
    font-size: 19px;
    position: relative;
    padding: 0 20px 0 0;
    background: transparent;
    border: none;
    text-transform: unset;
}

.pmp-banner-wrap .content-wrap p a:after {
    content: '\2794';
    font-size: 17px;
    position: absolute;
    right: 0;
    transition: .5s all;
    top: 1px;
}

.pmp-banner-wrap .content-wrap p a:hover:after {
    transform: translateX(15px);
}


/*  */

.features-section {
    padding: 80px 0;
}

.features-section h2 {
    margin: 0 0 30px;
}

.features-section .content-wrap {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.features-section figure {
    max-width: 600px;
    width: 100%;
}

.features-section figure img {
    border: 1px solid #ececec;
    cursor: pointer;
}


/*  */

.features-content {
    max-width: calc(100% - 650px);
}

.features-content li {
    position: relative;
    padding: 0 0 30px 20px;
}

.features-content li:last-child {
    padding-bottom: 0;
}

.features-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: #000;
    transform: rotate(45deg);
}


/*  */

a.act-btn.btn-border {
    background: transparent;
    color: #000;
    border: 1px solid;
    margin: 0 20px 0 0;
}

.pmp-features-footer-wrap {
    text-align: center;
    padding: 80px 0;
    background: #00140e;
    color: #fff;
}

.pmp-features-footer-wrap .content-wrap {
    max-width: 1020px;
}

.pmp-features-footer-wrap h2 {
    margin: 0 0 15px;
    color: #fff;
}

.pmp-features-footer-wrap a.act-btn.btn-border {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.pmp-features-footer-wrap p:last-child {
    margin: 0
}


/*  */

.related-features {
    padding: 0 0 80px;
}

.related-features h2 {
    font-size: 32px;
    padding: 0 0 15px;
    position: relative;
}

.related-features h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #000;
}

.related-features ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 40px 0 0;
}

.related-features h4 {
    font-size: 19px;
    margin: 0 0 20px;
}

.related-features li {
    font-size: 16px;
    position: relative;
    padding: 25px;
    transition: .25s all;
    border: 1px solid #ebebeb;
    background: #e3edf75e;
    border-radius: 5px;
}

.related-features li:hover {
    box-shadow: 0px 0px 20px 5px #e7e7e7;
}

.related-features li:hover p:last-child {
    color: #ff001a
}

.related-features li:last-child {
    margin: 0;
}

.related-features li p:last-child {
    margin: 0;
    color: #e9152b;
    font-family: var(--primaryfont-medium);
}

.related-features li a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.related-features li span {
    display: none;
    width: 60px;
    height: 60px;
    text-indent: -9999px;
    background-size: auto 60px;
    background-repeat: no-repeat;
    margin: 0 0 15px;
    background-image: url(../images/features-new-sprite.png);
}


/* ICO 1 */

.pam-ico-1 {
    background-position: 0 0;
}

.pam-ico-2 {
    background-position: -60px 0;
}

.pam-ico-3 {
    background-position: -120px 0;
}

.pam-ico-4 {
    background-position: -180px 0;
}

.pam-ico-5 {
    background-position: -240px 0;
}


/* Ico 2 */

#popup-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

#popup-image {
    max-width: 1280px;
    width: 90%;
    max-height: initial;
}

button {
    background: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button#close-gallery {
    position: absolute;
    right: 10px;
    top: 10px;
}

@media screen and (max-width: 1100px) {
    .features-section .content-wrap {
        flex-flow: column;
    }
    .features-content {
        order: 1;
        max-width: 100%;
    }
    .features-section figure {
        order: 2;
        max-width: 850px;
        margin: 80px auto 0;
    }
    .related-features {
        display: none;
    }
    h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 530px) {
    a.act-btn {
        margin: 10px;
    }
    a.act-btn.btn-border {
        margin: 10px
    }
}