main {
    width: 99vw;
    height: auto;
    background-image: url(/images/background4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

p a {
    color: var(--vermilion);
    font-weight: 900;
}

.hero-area {
    height: 100vh;
    padding-top: 6rem;
    width: 100%;
    border-radius: 50px;
    background-image: url(/images/background-6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50%;
    border-bottom: solid 6px var(--vermilion);
}

.hero-area-links {
    width: 95%;
    margin: 0 auto;
}

.hero-area-links .widget {
    display: flex;
    flex-flow: row nowrap;
    width: fit-content;
    padding: 20px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    -webkit-box-shadow: 2px 4px 6px rgb(227, 31, 24);
    box-shadow: 2px 4px 6px rgb(227, 31, 24);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-area-links .widget a {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 900;
    padding: 4px 8px;
}

.hero-area-links .widget .inactive a {
    color: var(--xiketic);
}

.hero-area-links .widget p {
    font-size: 20px;
    padding: 0 8px;
    color: var(--grey);
}

.hero-area-links .widget .active a {
    color: var(--vermilion);
}

.hero-area .container {
    height: 100%;
    width: 100%;
}

.hero-area .row {
    height: 100%;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.hero-area .col {
    width: 48%;
    margin: auto;
}

.hero-area .col.content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-area .col.content .images {
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin-bottom: 10px;
}

.hero-area .col.content img {
    height: 96px;
    width: fit-content;
    margin: 8px 0;
}

.hero-area .col.content h1 {
    text-align: right;
    font-size: 36px;
    font-weight: 900;
    text-transform: capitalize;
    color: var(--vermilion);
}

.hero-area .col.content h1 {
    color: var(--vermilion);
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 900;
    position: relative;
    margin-bottom: 4rem;
    text-align: left;
}

.hero-area .col.content h1::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 200px;
    height: 0.125rem;
    background: var(--vermilion);
}

.hero-area .col.content p {
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    color: var(--xiketic);
}

.hero-area .col.gif {
    width: 50%;
}

.hero-area .col.gif img {
    object-fit: cover;
    width: 640px;
    height: auto;
    border: solid 0px var(--vermilion);
    border-radius: 31% 69% 67% 33% / 35% 82% 18% 65%;
    border-radius: 40px 80px / 20px 100px;
    -webkit-box-shadow: 0 0 20px rgba(227, 31, 24, 1);
    box-shadow: 0 0 20px rgba(227, 31, 24, 1);
    -webkit-box-shadow: 0 0 20px rgb(187, 181, 181);
    box-shadow: 0 0 20px rgb(187, 181, 181);
}

.hero-area .gif.circle img {
    border-radius: 50%;
}


/****************
*
* 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);
}

.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(--vermilion);
    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(227, 31, 24);
    background: linear-gradient(90deg, rgba(227, 31, 24, 1) 0%, rgba(255, 153, 56, 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(--vermilion);
    -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(227, 31, 24, 1);
    background-color: #fff;
    color: var(--vermilion);
    -webkit-box-shadow: 0 0 20px rgba(227, 31, 24, 1);
    box-shadow: 0 0 20px rgba(227, 31, 24, 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(227, 31, 24, 0.8);
    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;
}


/****************
*
*   sub
*  pages 
*
*****************/

.sub-pages {
    width: 95%;
    margin: 96px auto;
}

.sub-pages .container .row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    justify-content: center;
    -webkit-box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    box-shadow: 0 0 20px rgba(187, 181, 181, 1);
    border-radius: 50px;
    border-left: solid 6px var(--vermilion);
    border-right: solid 6px var(--vermilion);
}

.sub-pages .container .row .col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    height: 480px;
    background-image: url(/images/blob7.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

.sub-pages .sub-page {
    width: 40%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sub-pages .sub-page .icon {
    margin: 8px 0;
}

.sub-pages .sub-page .icon img {
    height: 128px;
    width: 128px;
}

.sub-pages .sub-page .page-heading {
    margin-top: 20px;
}

.sub-pages .sub-page .page-heading h5 {
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 900;
    color: #000;
}

.sub-pages .sub-page .page-link {
    margin-top: 20px;
    -webkit-box-shadow: -3px 2px 1px rgba(0, 0, 0, 0.8);
    box-shadow: -3px 2px 1px rgba(0, 0, 0, 0.8);
    border-radius: 0px 25px 25px;
    border: 1px solid #fff;
    padding: 10px;
}

.sub-pages .sub-page .page-link a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}


/****************
*
*    electronic
*        &
* security systems 
*
*****************/

.line-dec {
    width: 100px;
    height: 2px;
    background-color: rgba(227, 31, 24, 0.8);
    margin: 30px auto;
    transition: all 0.5s;
}

.col.content .info .links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    width: 100%;
}

.col.content .info .links .link {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 12px;
    justify-content: center;
    align-items: center;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: -4px 3px 2px rgba(227, 31, 24, 1);
    box-shadow: -4px 3px 2px rgba(227, 31, 24, 1);
    border: solid 1px var(--vermilion);
}

.col.content .info .links .link .icon {
    height: 150px;
    width: 150px;
    margin-bottom: 16px;
}

.col.content .info .links .link .icon img {
    height: 128px;
    width: 128px;
}

.col.content .info .links .link h4 {
    text-align: center;
    line-height: 2;
    font-size: 18px;
    color: var(--xiketic);
}

.col.content .info .links .link .link-btn {
    -webkit-box-shadow: -8px 4px 1px rgba(0, 0, 0, 0.5);
    box-shadow: -8px 4px 1px rgba(0, 0, 0, 0.5);
    border-radius: 0px 25px 25px;
    background-color: var(--vermilion);
    padding: 10px;
}

.col.content .info .links .link .link-btn a {
    color: #fff;
    font-weight: 600;
}

.content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

.learn-more .content .widgets {
    width: 100%;
    margin: auto;
}

.learn-more .widgets {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.learn-more .widgets .widget {
    display: flex;
    border-left: var(--vermilion) 4px solid;
    border-right: var(--vermilion) 4px solid;
    border-radius: 16px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12.7px);
    -webkit-backdrop-filter: blur(12.7px);
    margin: 10px auto;
    margin-left: 10%;
    margin-right: 10%;
    padding: 24px;
}

.learn-more .widgets .widget.left {
    margin-right: 40%;
}

.learn-more .widgets .widget.right {
    margin-left: 40%;
}

.learn-more .widgets .widget.mid {
    margin-left: 25%;
    margin-right: 25%;
}

.learn-more .widgets .widget img {
    height: 128px;
    width: 128px;
    margin: auto 10px;
}

.learn-more .widgets .widget h4 {
    font-size: 20px;
    font-weight: 900;
    padding: 5px;
    color: var(--vermilion);
    margin-bottom: 16px;
}

.learn-more .widgets .widget p {
    font-size: 16px;
    font-weight: 400;
    padding: 5px;
    line-height: 2;
    margin-bottom: 6px;
}


/****************
*
* financial
*        
* services
*
*****************/


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


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

@media only screen and (min-width:1200px) {
    /******************
    * features 
    *******************/
}


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

@media only screen and (min-width:1025px) and (max-width:1200px) {
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: auto;
    }
    .hero-area .col.gif {
        display: none;
    }
    /******************
    * 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/background-6.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(227, 31, 24, 1);
        box-shadow: 0 -4px 4px rgba(227, 31, 24, 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(227, 31, 24, 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;
    }
    /*******************************
    * electronic & security systems
    *******************************/
    .learn-more .widgets .widget.left {
        margin-right: 20%;
    }
    .learn-more .widgets .widget.right {
        margin-left: 20%;
    }
    .learn-more .widgets .widget.mid {
        margin-left: 15%;
        margin-right: 15%;
    }
    .learn-more .widgets .widget p {
        line-height: 1.5;
        margin-bottom: 4px;
    }
}


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

@media only screen and (min-width:769px) and (max-width:1024px) {
    .hero-area .row {
        flex-flow: column-reverse nowrap;
    }
    .hero-area .col {
        width: 100%;
        margin: auto;
    }
    .hero-area .col.gif {
        display: none;
    }
    /******************
    * 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/background-6.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(227, 31, 24, 1);
        box-shadow: 0 -4px 4px rgba(227, 31, 24, 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(227, 31, 24, 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;
    }
    /*************
    * sub-pages 
    **************/
    .sub-pages .container .row {
        flex-flow: column nowrap;
    }
    .sub-pages .container .row .col {
        width: 60%;
        margin: auto;
    }
    /*******************************
    * electronic & security systems
    *******************************/
    .learn-more .widgets .widget.mid,
    .learn-more .widgets .widget.right,
    .learn-more .widgets .widget.left {
        margin-left: 5%;
        margin-right: 5%;
    }
    .learn-more .widgets .widget p {
        line-height: 1.5;
        margin-bottom: 4px;
    }
}


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

@media only screen and (min-width:481px) and (max-width:768px) {
    .hero-area {
        height: fit-content;
    }
    .hero-area .row {
        flex-flow: column-reverse nowrap;
        width: 100%;
    }
    .hero-area .col {
        width: 100%;
        margin: 1rem auto;
        margin-top: 4rem;
    }
    .hero-area .col.content {
        padding: 20px;
    }
    .hero-area .col.content img {
        height: 36px;
    }
    .hero-area .col.content h1 {
        margin-top: 0rem;
        font-size: 20px;
    }
    .hero-area .col.content h1::before {
        bottom: -0.5rem;
        width: 100px;
    }
    .hero-area .col.content p {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: normal;
    }
    .hero-area .col.gif {
        display: none;
    }
    .col.content .info .links .link {
        width: 32%;
        padding: 6px;
    }
    /******************
    * 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/background-6.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(227, 31, 24, 1);
        box-shadow: 0 -4px 4px rgba(227, 31, 24, 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(227, 31, 24, 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;
    }
    /*************
    * sub-pages 
    **************/
    .sub-pages .container .row {
        flex-flow: column nowrap;
    }
    .sub-pages .container .row .col {
        width: 80%;
        margin: auto;
    }
    /*******************************
    * electronic & security systems
    *******************************/
    .learn-more .widgets .widget.mid,
    .learn-more .widgets .widget.right,
    .learn-more .widgets .widget.left {
        margin-left: 5%;
        margin-right: 5%;
    }
    .learn-more .widgets .widget p {
        line-height: 1.5;
        margin-bottom: 4px;
    }
    .learn-more .widgets .widget {
        flex-flow: column nowrap;
    }
    .learn-more .widgets .widget img {
        margin: 12px 0;
    }
}


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

@media only screen and (min-width:320px) and (max-width:480px) {
    .hero-area {
        height: fit-content;
    }
    .hero-area .row {
        flex-flow: column-reverse nowrap;
        width: 100%;
    }
    .hero-area .col {
        width: 100%;
        margin: 1rem auto;
        margin-top: 4rem;
    }
    .hero-area .col.content {
        padding: 20px;
    }
    .hero-area .col.content img {
        height: 36px;
    }
    .hero-area .col.content h1 {
        margin-top: 0rem;
        font-size: 20px;
    }
    .hero-area .col.content h1::before {
        bottom: -0.5rem;
        width: 100px;
    }
    .hero-area .col.content p {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: normal;
    }
    .hero-area .col.gif {
        display: none;
    }
    .col.content .info .links .link {
        width: 32%;
        padding: 2px;
    }
    /******************
    * 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/background-6.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
        -webkit-box-shadow: 0 -4px 4px rgba(227, 31, 24, 1);
        box-shadow: 0 -4px 4px rgba(227, 31, 24, 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(227, 31, 24, 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;
    }
    /*************
    * sub-pages 
    **************/
    .sub-pages .container .row {
        flex-flow: column nowrap;
    }
    .sub-pages .container .row .col {
        width: 100%;
        margin: auto;
    }
    /*******************************
    * electronic & security systems
    *******************************/
    .learn-more .widgets .widget.mid,
    .learn-more .widgets .widget.right,
    .learn-more .widgets .widget.left {
        margin-left: 5%;
        margin-right: 5%;
    }
    .learn-more .widgets .widget p {
        line-height: 1.5;
        margin-bottom: 4px;
    }
    .learn-more .widgets .widget {
        flex-flow: column nowrap;
    }
    .learn-more .widgets .widget img {
        margin: 12px 0;
    }
}