/*Features Section*/

.selector {
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding-top: 3rem;
    text-align: center;
}

.mobile-sel {
    display: none;
}

.sel-item {
    width: fit-content;
    padding: 0 1rem;
    margin: 0 1rem;
    font-size: 1rem;
    color: rgb(34, 34, 34);
    text-align: center;
}

.selected {
    border-bottom: 1px solid rgb(34, 34, 34);
    font-weight: 600;
}

.sel-item:hover {
    cursor: pointer;
    color: rgb(102, 102, 102);
    border-bottom: 1px solid  rgb(102, 102, 102);
}

.featurecard {
    width: 90%;
    overflow: hidden;
    margin-bottom: 100px;
}

.featurecard.right {
    float: right;
}

.img-container {
    overflow: hidden;
    text-align: right;
}

.featureimg {
    width: 100%;
    transition: transform 1s;
    filter: saturate(50%);
}

.featureimg:hover {
    cursor: pointer;
    filter: saturate(100%);
    transform: scale(1.1);
    transition: transform 1s;
}

.img-container {
    overflow: hidden;
    text-align: right;
}

.featurehead {
    text-align: left;
    line-height: 30px;
    font-size: 30px;
    margin-top: 1rem;
    margin-bottom: .5rem;
}

.featurehead a {
    text-decoration: none;
    color: #727376;
}

.featurehead:hover {
    text-decoration: underline;
    cursor: pointer;
}

.featuredescr {
    text-align: left;
    margin-top: 1rem;
    line-height: 30px;
    font-size: 30px;
    margin-bottom: 4rem;
}

.col.right {
    padding-top: 8rem;
}

.features {
    padding: 5rem 0 0 0;
    justify-content: space-between;
}

.fadein { 
	opacity: 0;
    transition: opacity 250ms ease-in;
}

.fadein.appear {
    opacity: 1;
}

@media screen and (max-width: 1100px) {
    .section {
        padding: 80px 1rem;
    }

}

@media screen and (max-width: 800px) {
    .mobile-sel {
        display: block;
        padding: .5rem;
        color: gray;
        border-radius: 5px;
    }

    .mob-sel-cont {
        text-align: center;
        width: 80%;
        margin: 0 auto;
    }

    .selector {
        display: none;
    }

    .form-sec .section-title {
        font-size: 40px;
    }

    .csection-text {
        font-size: 30px;
    }

    .section {
        padding: 3rem 0;
    }

    .feature-title {
        font-size: 60px;
    }

    .featurecard {
        width: 100%;
        margin-bottom: 0;
    }

    .featurehead {
        font-size: 30px;
    }

    .featuredescr {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1.1rem;
    }

    .col.right {
        padding-top: 0;
    }

}