/****************
*
* features 
* design & specification
* implementation 
* deployment 
*
* ***************/

.features {
    padding-top: 130px;
    width: 95%;
    margin: 0 auto;
}

.features .title {
    margin-bottom: 60px;
    font-size: 28px;
}

.features .features-content {
    z-index: 2;
    position: relative;
    background-color: #fff;
    border-radius: 50px;
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
    background-image: url(/images/background1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.features .features-content .row {
    display: flex;
    flex-flow: row nowrap;
}

.features-item {
    text-align: center;
    padding: 30px;
    border-radius: 50px;
    border-left: solid 6px var(--metallic-gold);
    background: rgb(255, 255, 255);
    background: linear-gradient(105deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -webkit-transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.features-item:hover {
    background: rgb(127, 108, 52);
    background: linear-gradient(90deg, rgba(127, 108, 52, 1) 0%, rgba(227, 192, 117, 1) 100%);
}

.features-item:hover h4 {
    color: #fff;
}

.features-item:hover p {
    color: #fff;
    font-weight: 600;
}

.features-item:hover .line-dec {
    background-color: rgba(255, 255, 255, 1);
}

.features-item .number h6 {
    background-repeat: no-repeat;
    width: 110px;
    height: 115px;
    border-radius: 100% 0% 64% 36% / 65% 0% 100% 35%;
    background-color: var(--spanish-bistre);
    -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 69px;
    margin-top: -65px;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.features-item:hover .number h6 {
    background-color: rgba(169, 141, 64, 1);
    background-color: #fff;
    color: var(--spanish-bistre);
    -webkit-box-shadow: 0 0 20px rgba(169, 141, 64, 1);
    box-shadow: 0 0 20px rgba(169, 141, 64, 1);
}

.features-item h4 {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 30px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900;
    color: var(--xiketic);
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.features-item .line-dec {
    width: 100px;
    height: 2px;
    background-color: rgba(169, 141, 64, 1);
    margin: 30px auto;
    transition: all 0.5s;
}

.features-item p {
    position: relative;
    margin-top: 0px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    transition: all 0.5s;
}

.features-item .icon img {
    height: 128px;
    width: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.features-item:hover .icon img {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    background-color: #fff;
}


/***********************
*
* each product widget 
*
***********************/

main .product {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 1vh auto;
    width: 98vw;
    height: 98vh;
    position: relative;
    background-image: url(/images/background2.png);
    background-attachment: fixed;
}

main .product .image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

main .product .content {
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

main .product .image img {
    min-width: 50%;
    max-width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    /*border-radius: 24% 76% 74% 26% / 30% 61% 39% 70%;*/
    border-radius: 11% 41% 10% 41% / 10% 36% 10% 38%;
    border-radius: 40px 80px / 20px 100px;
    -webkit-box-shadow: -16px 16px 1px rgba(211, 179, 88, 1);
    box-shadow: -16px 16px 1px rgba(211, 179, 88, 1);
    border: 1px solid var(--metallic-gold);
}

main .product .scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 5;
}

main .product .scroll-down img {
    height: 120px;
    cursor: pointer;
}

main .product .content .title img,
main .services .title img {
    width: 200px;
    height: 200px;
}


/*******************
*
*
* Responsive CSS
*
*
********************/


/********************
* 
* extra large screens, tv 
*
*********************/

@media only screen and (min-width:1200px) {
    .features-item {
        background: rgb(255, 255, 255);
        background: linear-gradient(105deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
}


/********************
* 
* desktop, large screens 
*
*********************/

@media only screen and (min-width:1025px) and (max-width:1200px) {
    /******************
    * features 
    *******************/
    .features {
        width: 100%;
    }
    .features .features-content .row {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
    .features .features-content .row .col-lg-3 {
        width: 45%;
        margin: auto;
        margin-top: 48px;
    }
    .features .title {
        font-size: 24px;
    }
    .features-item {
        border: none;
        padding: 15px;
        border-radius: 25px;
        background-image: url(/images/background2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
        box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
    }
    .features-item p {
        font-weight: 600;
    }
    .features-item .line-dec {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .features-item .number h6 {
        background-color: rgba(169, 141, 64, 1);
        color: #fff;
        -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 1);
        box-shadow: 0 0 16px rgba(255, 255, 255, 1);
    }
    .features-item .icon img {
        border-radius: 50%;
        -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        background-color: #fff;
    }
}


/********************
* 
* small screens, laptops 
*
*********************/

@media only screen and (min-width:769px) and (max-width:1024px) {
    .features .col-30 {
        width: 45%;
    }
    .features-item {
        border-width: 3px;
    }
    /***********************
    * each product widget 
    ***********************/
    main .product {
        flex-flow: column nowrap;
        height: auto;
        padding: 5rem 0;
    }
    main .product .image {
        width: 90%;
    }
    main .product .content {
        width: 90%;
    }
    main .product .scroll-down img {
        background-color: #fff;
    }
    /******************
    * features 
    *******************/
    .features {
        width: 100%;
    }
    .features .features-content .row {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
    .features .features-content .row .col-lg-3 {
        width: 45%;
        margin: auto;
        margin-top: 48px;
    }
    .features .title {
        font-size: 24px;
    }
    .features-item {
        border: none;
        padding: 15px;
        border-radius: 25px;
        background-image: url(/images/background2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
        box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
    }
    .features-item p {
        font-weight: 600;
    }
    .features-item .line-dec {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .features-item .number h6 {
        background-color: rgba(169, 141, 64, 1);
        color: #fff;
        -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 1);
        box-shadow: 0 0 16px rgba(255, 255, 255, 1);
    }
    .features-item .icon img {
        border-radius: 50%;
        -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        background-color: #fff;
    }
}


/********************
* 
* Ipads, tablets 
*
*********************/

@media only screen and (min-width:481px) and (max-width:768px) {
    .features .col-30 {
        width: 75%;
    }
    .features-item {
        border-width: 2px;
    }
    /***********************
    * each product widget 
    ***********************/
    main .product {
        flex-flow: column nowrap;
        height: auto;
        padding: 5rem 0;
    }
    main .product .image {
        width: 90%;
    }
    main .product .content {
        width: 90%;
    }
    main .product .scroll-down img {
        background-color: #fff;
    }
    /******************
    * features 
    *******************/
    .features {
        width: 100%;
    }
    .features .features-content .row {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
    .features .features-content .row .col-lg-3 {
        width: 95%;
        margin: auto;
        margin-top: 48px;
    }
    .features .title {
        font-size: 24px;
    }
    .features-item {
        border: none;
        padding: 15px;
        border-radius: 25px;
        background-image: url(/images/background2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
        box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
    }
    .features-item p {
        font-weight: 600;
    }
    .features-item .line-dec {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .features-item .number h6 {
        background-color: rgba(169, 141, 64, 1);
        color: #fff;
        -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 1);
        box-shadow: 0 0 16px rgba(255, 255, 255, 1);
    }
    .features-item .icon img {
        border-radius: 50%;
        -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        background-color: #fff;
    }
}


/********************
* 
* Mobile devices 
*
*********************/

@media only screen and (min-width:320px) and (max-width:480px) {
    .features .col-30 {
        width: 90%;
    }
    .features-item {
        border-width: 2px;
        padding: 30px 15px;
    }
    /***********************
    * each product widget 
    ***********************/
    main .product {
        flex-flow: column nowrap;
        height: auto;
        padding: 5rem 0;
    }
    main .product .image {
        width: 90%;
    }
    main .product .content {
        width: 90%;
    }
    main .product .scroll-down img {
        background-color: #fff;
        height: 64px;
    }
    /******************
    * features 
    *******************/
    .features {
        width: 100%;
    }
    .features .features-content .row {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
    .features .features-content .row .col-lg-3 {
        width: 95%;
        margin: auto;
        margin-top: 48px;
    }
    .features .title {
        font-size: 24px;
    }
    .features-item {
        border: none;
        padding: 15px;
        border-radius: 25px;
        background-image: url(/images/background2.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
        box-shadow: 0 -4px 4px rgba(169, 141, 64, 1);
    }
    .features-item p {
        font-weight: 600;
    }
    .features-item .line-dec {
        background-color: rgba(0, 0, 0, 0.8);
    }
    .features-item .number h6 {
        background-color: rgba(169, 141, 64, 1);
        color: #fff;
        -webkit-box-shadow: 0 0 16px rgba(255, 255, 255, 1);
        box-shadow: 0 0 16px rgba(255, 255, 255, 1);
    }
    .features-item .icon img {
        border-radius: 50%;
        -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        box-shadow: 0 0 20px rgba(187, 181, 181, 1);
        background-color: #fff;
    }
}