:root {

    --bg1: #f5f8f7;
    --blue: #3498db;
    --green: #2ecc71;
    --purple: #9b59b6;
    --gold: #f1c40f;
    --red: #e74c3c;
    --orange: #e67e22;
    --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
    --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;

    --pinkish-red: #C35A74;
        --medium-blue: #307BAA;
        --greenish-blue: #53BAB5;
        --bright-orange: #FF7445;
        --white-smoke: #F5F5F4;
        --white: #FFF;
        --dark-gray: #7D7C7C;
        --black: #000;
}

main {
    padding: 2vw;
}

ul.infoGraphic {
    list-style: none;
    font-size: var(--font-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    li {
        height: 265px;
        position: relative;
        width: 100%;
        max-width: 25em;
        background: var(--bg1);
        border-radius: 0.5em;
        padding: 0.5em;
        z-index: 1;
        transition: all 0.2s;
        cursor: pointer;

        .numberWrap {
            position: absolute;
        }

        .number {
            font-family: "maven pro", sans-serif;
            font-size: 13em;
            font-weight: 900;
            width: 0.9em;
            text-align: center;

            &.fontColor1 {
                color: var(--blue);
            }

            &.fontColor2 {
                color: var(--green);
            }

            &.fontColor3 {
                color: var(--purple);
            }

            &.fontColor4 {
                color: var(--gold);
            }

            &.fontColor5 {
                color: var(--red);
            }

            &.fontColor6 {
                color: var(--orange);
            }
        }

        .coverWrap {
            transform: rotate(130deg);
            position: absolute;
            width: 18em;
            height: 15em;
            left: 0;
            top: -1em;

            .numberCover {
                position: absolute;
                background: var(--bg1);
                width: 20em;
                height: 7em;
                border-radius: 50% 50% 0 0;
                border-bottom: 3px solid #f5f8f7;
                transition: all 0.4s;

                &::before {
                    position: absolute;
                    content: "";
                    bottom: 5px;
                    left: 4em;
                    right: 4em;
                    top: 2em;
                    box-shadow: 1 0 30px 17px #48668577;
                    border-radius: 100px / 10px;
                    z-index: -1;
                }

                &::after {
                    position: absolute;
                    bottom: 0;
                    content: "";
                    left: -10%;
                    width: 120%;
                    height: 150%;
                    background: radial-gradient(at bottom,
                            #48668533,
                            transparent,
                            transparent);
                    z-index: 1;
                }
            }
        }

        .content {
            margin: 8em 3em 1em 7em;
            position: relative;

            h2 {
                font-size: 1.7em;
                font-weight: 500;
                text-align: center;
                margin-bottom: 10px;
                text-transform: uppercase;
            }

            p {
                line-height: 1.5em;
            }
        }
    }
}

ul.infoGraphic li:hover .coverWrap .numberCover {
    border-radius: 100%;
}


.icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    left: 50%;
    transform: translatex(-50%);

    &:before {
        color: #666;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
    }
}

.iconCodepen {
    &:before {
        content: "\f1cb";
    }
}

.iconSocial {
    &:before {
        content: "\f055";
    }
}

.iconAirplane {
    &:before {
        content: "\f1d9";
    }
}

.iconMap {
    &:before {
        content: "\f03a";
    }
}

.iconBulb {
    &:before {
        content: "\f0eb";
    }
}

.iconPeace {
    &:before {
        content: "\f25b";
    }
}


@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@800&display=swap");





.controls {
    position: fixed;
    z-index: 2;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #d7d7d7a1;
    padding: .5rem 2em;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    border: 1px solid #0000004d;
}

.sliderBox {
    text-align: center;

    .range-value {
        font-weight: 500;
        font-size: 22px;
    }
}

input[type="range"] {
    width: 100%;
    margin: 1em 0;
    -webkit-appearance: none;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #00000066;
    border: 0;
    border-radius: 1.3px;
    width: 100%;
    height: 2px;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background: #eee;
    box-shadow: inset 0px 1px 1px #ffffff66, 0px 1px 3px rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #eee;
}

input[type="range"]::-moz-range-track {
    background: #000;
    border: 0;
    border-radius: 1.3px;
    width: 100%;
    height: 1px;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #151728;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
}

input[type="range"]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 13px 0;
    color: transparent;
    width: 100%;
    height: 1px;
    cursor: pointer;
}

input[type="range"]::-ms-fill-lower {
    background: #151728;
    border: 0;
    border-radius: 2.6px;
}

input[type="range"]::-ms-fill-upper {
    background: #151728;
    border: 0;
    border-radius: 2.6px;
}

input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #151728;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}

input[type="range"]:focus::-ms-fill-lower {
    background: #ffffff;
}

input[type="range"]:focus::-ms-fill-upper {
    background: #ffffff;
}



/* PHOTO EDITING PRICING */



/* 
section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    background: var(--white-smoke);
} */

/* .content {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 100px;
} */

.box {
    display: flex;
    flex-direction: column;
    height: 586px;
    width: 300px;
    border-radius: 20px;
    margin-left: 10px;
    margin-right: 10px;

    background: var(--white);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 20%);
}

.title {
    width: 100%;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: lighter;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

    color: var(--white-smoke);
}

.basic .title {
    background: var(--pinkish-red);
}

.standard .title {
    background: var(--medium-blue);
}

.business .title {
    background: var(--greenish-blue);
}

.view {
    display: block;
    width: 100%;
    padding: 30px 0 20px;

    background: var(--white-smoke);
}

.icon {
    display: flex;
    justify-content: center;
}

.icon img {
    width: 100px;
}

.cost {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.amount {
    font-size: 2.8em;
    font-weight: bolder;
}

.detail {
    margin: auto 0 auto 5px;
    width: 70px;
    font-size: 0.7em;
    font-weight: bold;
    line-height: 15px;
    color: #7D7C7C;
}

.description {
    margin: 30px auto;
    font-size: 0.8em;
    color: #7D7C7C;
}

ul {
    list-style: none;
        padding-right: 10px;
        list-style: outside;
        font-size: 14px;
    color: black;
}

li {
    margin-top: 10px;
}

li::before {
    content: "";
    /* background-image: url("https://i.postimg.cc/ht7g996V/check.png"); */
    background-position: center;
    background-size: cover;
    width: 10px;
    height: 10px;
}

.button {
    margin: 0 auto 30px;
}

button {
    height: 40px;
    width: 250px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: black;
    border: 2px solid var(--dark-gray);
    border-radius: 50px;

    background: transparent;
}

button:hover {
    color: var(--white-smoke);
    transition: 0.5s;
    border: none;

    background: #f2545f;
}

/* Responsiveness:Start */
@media screen and (max-width:970px) {
    .content {
        /* display: flex; */
        align-items: center;
        flex-direction: column;
        margin: 50px auto;
    }

    .standard,
    .business {
        margin-top: 25px;
    }
}

#price i {
    font-size: 50px;
}

#price .button {
        position: absolute;
            left: 49px;
            bottom: 15px;
}
/* Responsiveness:End */