/**
 * @Author: Bhavana Rathod
 * @Email:  rathodbhavana13[at]gmail.com
 * @Project: RoboHomes Automation
 * @Filename: style.css
 * @Copyright: robohomes
 */

/* ===================
fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');


/* ===================
general css
====================== */

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}
/* Box Size Hack */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #5f636c;
    line-height: 1.8;
}

a {
    color: #222222;
    display: inline-block;
}

    a,
    a:active,
    a:focus,
    a:hover {
        outline: none;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }

        a:hover {
            color: #0049D0;
        }

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    margin: 0px;
    font-weight: 600;
    font-family: 'Montserrat Alternates', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #555;
    color: #fff;
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}
button {
    outline: none !important;
    border: none;
    background: transparent;
}
/* ===================
preloader
====================== */

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 9999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader-dot {
    position: relative;
    background: #31c4f2;
    border-radius: 50%;
    float: left;
    height: 18px;
    width: 18px;
    left: 0;
    top: 0;
    margin: 0 7px;
    opacity: 0.15;
    transform: scale(1);
}

    .loader-dot:nth-child(1) {
        animation: loader 1s 0.2s ease-in-out infinite;
    }

    .loader-dot:nth-child(2) {
        animation: loader 1s 0.4s ease-in-out infinite;
    }

    .loader-dot:nth-child(3) {
        animation: loader 1s 0.6s ease-in-out infinite;
    }

@keyframes loader {
    0%, 70%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }

    35% {
        opacity: 1;
        transform: scale(1);
    }
}




/* ===================
theme default css
====================== */

.ovrflow-hidden {
    overflow: hidden;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background-color: #F4F4F4;
}

.theme-bg-dark {
    background-color: #222222;
}


/* ===================
site title css
====================== */

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
    font-weight: 700;
    color: #31c4f2;
    position: relative;
    font-family: 'Montserrat Alternates', sans-serif;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 36px;
    color: #222222;
    margin-top: 8px;
    margin-bottom: 0;
}

    .site-title span {
        color: #31c4f2;
    }

.site-heading p {
    margin-top: 15px;
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #31c4f2;
    width: 90px;
    overflow: hidden;
}

    .heading-divider:after {
        content: '';
        position: absolute;
        left: 0;
        top: -1.1px;
        height: 7px;
        width: 8px;
        background-color: #ffffff;
        -webkit-animation: heading-move 5s infinite linear;
        animation: heading-move 5s infinite linear;
    }

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(85px);
    }

    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }

    50% {
        transform: translateX(85px);
    }

    100% {
        transform: translateX(-1px);
    }
}


@media all and (max-width: 992px) {
    .shadow-title {
        font-size: 100px;
    }
}



/* ===================
margin & padding
====================== */

.pb-140 {
    padding-bottom: 140px;
}

.pd-50 {
    padding: 50px 0;
}

.py-120 {
    padding: 120px 0;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mr-300 {
    margin-right: 300px;
}

.ml-300 {
    margin-left: 300px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
    font-size: 16px;
    color: #ffffff;
    padding: 12px 28px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #31c4f2;
    box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
    z-index: 1;
}

    .theme-btn:before {
        transition-duration: 800ms;
        position: absolute;
        width: 130%;
        height: 130%;
        content: "";
        bottom: 110%;
        left: 50%;
        background: #091125;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .theme-btn:hover:before {
        bottom: -15%;
    }

    .theme-btn:hover {
        color: #31c4f2;
    }

    .theme-btn i {
        margin-left: 5px;
    }

.theme-btn2 {
    background: #222222;
    color: #31c4f2;
}

    .theme-btn2::before {
        background: #31c4f2;
    }

    .theme-btn2:hover {
        color: #fff;
    }



/* ===================
container
====================== */

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1185px;
    }
}


/* ===================
scroll-top css
====================== */

#scroll-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    background: #31c4f2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all .5s ease-in-out;
    z-index: 1;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top {
        bottom: 100px;
    }
}



/* ===================
header top css
====================== */

/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}

.wrap-contact100 {
    width: 1120px;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

/*==================================================================
[ Contact more ]*/
.contact100-more {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 30px 15px 0px 15px;
}

    .contact100-more::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.7);
    }


    .contact100-more a {
        color: #fff
    }

        .contact100-more a:hover {
            color: #2fc4f2
        }
/*==================================================================
[ Form ]*/
.contact100-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 56px 55px 63px 55px;
}

.contact100-form-title {
    width: 100%;
    display: block;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    padding-bottom: 33px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6;
}

.rs1-wrap-input100,
.rs2-wrap-input100 {
    width: 50%;
}

.rs2-wrap-input100 {
    border-left: none;
}

.label-input100 {
    font-size: 12px;
    color: #555555;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 55px;
    border: 1px solid #e6e6e6;
    border-bottom: none;
    padding: 10px 25px;
    margin-top: 15px;
    margin-bottom: 0;
}

.input100 {
    display: block;
    width: 100%;
    background: transparent;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 0 25px;
}

input.input100 {
    height: 55px;
}


textarea.input100 {
    min-height: 139px;
    padding-top: 19px;
    padding-bottom: 15px;
}

/*---------------------------------------------*/

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #31c4f2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 23px;
}

.contact100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 200px;
    height: 50px;
    border-radius: 2px;
    background: #fe9d01;
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .contact100-form-btn:hover {
        background: #333333;
    }



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
    .contact100-form {
        width: 60%;
        padding: 56px 30px 63px 30px;
    }

    .contact100-more {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .contact100-form {
        width: 100%;
    }

    .contact100-more {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact100-form {
        padding: 56px 15px 63px 15px;
    }

    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 100%;
    }

    .rs2-wrap-input100 {
        border-left: 1px solid #e6e6e6;
        border-top: none;
    }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}


.lnr-map-marker:before {
    content: "\f279";
}

address {
    font-size: 15px;
    font-weight: 500;
}


.custom-msg {
    padding: 80px 50px;
    background-color: #0098ef;
    background: url('../images/air-about (2).jpg');
    background-attachment: fixed;
    color: #FFF;
}


nav {
    position: relative;
    margin: 0 auto;
}




.page-title {
    position: relative;
    background-position: center right;
    background-repeat: no-repeat;
    background-color: #0a0f18e6;
}

.img-banner {
    padding: 50px 0;
}

.page-title:before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    background: -webkit-linear-gradient(5deg, #00000057 0%, rgb(0 0 0 / 50%) 100%);
}

.page-title .title-text h1 {
    position: relative;
    font-size: 38px;
    color: #ffffff;
    line-height: 100px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: "Source Sans Pro", sans-serif;
    text-shadow: 3px 3px 3px #333;
    text-align: left;
}



.grid-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    grid-auto-flow: dense;
}

    .grid-container .item {
        background: #8FF;
        display: flex;
    }

        .grid-container .item a {
            display: flex;
            width: 100%;
        }

        .grid-container .item.portrait {
            grid-row: auto / span 2;
        }

        .grid-container .item img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }


/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.txt2 {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.txt3 {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

    .txt3 a {
        color: #fff
    }


.client li {
    line-height: 1.5;
    padding: 8px 0 8px 10px;
}

    .client li:before {
        float: left;
        display: block;
        content: url('../images/clients.png');
        color: #ffd900;
        margin: 3px 10px 0 0;
        width: 16px;
        height: 16px;
    }

.field-validation-error {
    color: red;
    font-size: 0.90rem;
}


.testimonial {
    border-bottom: 1px solid #ddd;
    padding: 0px 0;
}

    .testimonial:last-child {border-bottom:0}

    .testimonial img {
        display: inline-block;
        padding-right: 20px;
        vertical-align: bottom
    }
.testimonial h6 {
    padding-bottom: 20px; padding-left:20px;
}

    .testimonial p {
        padding-bottom: 10PX;
    }






/*==================================================================
[ Size ]*/
.size1 {
    width: 355px;
    max-width: 100%;
}

.size2 {
    width: calc(100% - 43px);
}
input {
    outline: none;
    border: none;
}
textarea {
    outline: none;
    border: none;
}

a:hover, a:focus, input, textarea {
    text-decoration: none;
    outline: none;
}
.header-top {
    background: #31c4f2;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .header-top-contact ul li {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.header-top-contact-icon {
    width: 45px;
    height: 45px;
    line-height: 41px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
}

    .header-top-contact-icon img {
        width: 24px;
    }

.header-top-contact-info h6 {
    color: #fff;
    font-size: 18px;
}

.header-top-contact ul li a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    -moz-transition: color .2s ease-in;
    -o-transition: color .2s ease-in;
    -webkit-transition: color .2s ease-in;
}
.header-top-contact ul li:hover a, .header-top-contact ul li:hover i {
    color: #000;
}


.header-top-contact ul li a i {
    color: #fff;
    margin-right: 5px;
    -moz-transition: color .2s ease-in;
    -o-transition: color .2s ease-in;
    -webkit-transition: color .2s ease-in;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-social span {
    color: #fff;
    margin-right: 10px;
}


.header-phone {
    display: flex;
    align-items: center;
    gap: 15px
}

.header-phone-content span {
    display: block;
    margin-bottom: 13px;
    line-height: .6;
    color: #222222;
    font-weight: 500
}

.header-phone-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #31c4f2;
    border-radius: 50px;
    text-align: center
}

    .header-phone-icon img {
        width: 27px
    }

.header-phone-number {
    font-size: 20px;
    line-height: 1
}

    .header-phone-number a {
        color: #31c4f2;
    }


@media all and (max-width: 1199px) {
    .header-top-account {
        display: none;
    }

    .header-top::before {
        width: 320px;
    }

    .header-top-contact ul {
        gap: 10px;
    }

    .header-top-social a {
      
        margin-left: 0;
    }

    .header-top-left {
        margin-right: 5px;
    }
}

@media all and (max-width: 992px) {
    .header-top {
        display: none;
    }
}




/* ===================
nav menu css
====================== */

.main {
    margin-top: 0rem;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 30px 0 30px 0;
        font-size: 17px;
        font-weight: 600;
        color: #222222;
        text-transform: capitalize;
        font-family: 'Montserrat Alternates', sans-serif;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        padding: 8px;
        border: none;
        left: -15px;
        border-radius: 7px;
        background: #fff;
        width: 220px;
        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    }

        .navbar .nav-item .dropdown-menu li {
            border-bottom: 1px solid #eee;
        }

            .navbar .nav-item .dropdown-menu li:last-child {
                margin-bottom: 0;
                border-bottom: none;
            }

        .navbar .nav-item .dropdown-menu .dropdown-item {
            font-family: 'Montserrat Alternates', sans-serif;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 0px 10px 20px;
            color: #222222;
            position: relative;
            text-transform: capitalize;
            transition: all .5s ease-in-out;
            z-index: 1;
        }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover {
                background: transparent;
                color: #31c4f2;
                padding-left: 30px;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item::before {
                content: "";
                position: absolute;
                left: 8px;
                top: 23px;
                width: 0;
                height: 4px;
                border-radius: 10px;
                background: #31c4f2;
                transition: all .5s ease-in-out;
                z-index: -1;
            }

            .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
                width: 15px;
            }

    .navbar .nav-item .nav-link {
        position: relative;
    }

        .navbar .nav-item .nav-link.active,
        .navbar .nav-item:hover .nav-link {
            color: #31c4f2;
        }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .header-nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-left: 30px;
    }

    .header-nav-link {
        position: relative;
        width: 45px;
        height: 45px;
        line-height: 45px;
        color: #222222;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .header-nav-link:hover {
            color: #31c4f2;
        }

        .header-nav-link.search-box-outer {
            font-size: 18px;
        }

    #main_nav {
        justify-content: flex-end;
    }
}


/*bootstrap nav*/
.navbar {
    background: #ebebeb;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 999;
}

    .navbar.fixed-top {
        background: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
        animation: slide-down 0.7s;
    }

        .navbar.fixed-top .nav-item .nav-link {
            color: #222222;
        }

        .navbar.fixed-top .header-nav-link {
            color: #222222;
        }

            .navbar.fixed-top .header-nav-link:hover {
                color: #31c4f2;
            }

        .navbar.fixed-top .nav-item .nav-link.active,
        .navbar.fixed-top .nav-item:hover .nav-link {
            color: #31c4f2;
        }




@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-btn-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 0;
}

    .navbar-brand img {
        width: 250px;
    }

/* dropdown toggler */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Pro';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}


@media all and (max-width: 1199px) {
    .header-nav-right {
        gap: 5px;
        margin-left: 15px;
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px;
    }

    .navbar .header-btn {
        display: none;
    }
}


/* mobile menu */
.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    
        .navbar-bg::before {
            transform: translateY(0px) skew(-15deg);
            left: -8px;
        }

    .navbar-brand {
        padding-left: 10px;
    }

        .navbar-brand img {
            width: 80%;
        }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: #fff;
    }

    .dropdown-toggle::after {
        float: right;
    }

    .navbar .nav-item .nav-link {
        color: #222222;
        font-weight: 700;
        transition: all .5s ease-in-out;
    }

        .navbar .nav-item .nav-link:hover {
            color: #31c4f2 !important;
        }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
    }

    .mobile-menu-link {
        font-size: 20px;
        color: #222222;
        font-weight: 500;
        padding-right: 20px;
        margin-bottom: 0px;
        position: relative;
    }

        .mobile-menu-link:hover {
            color: #31c4f2;
        }

    .navbar-toggler-btn-icon {
        font-size: 25px;
        color: #222222;
        font-weight: 500;
    }

    .navbar.fixed-top .mobile-menu-link {
        color: #222222;
    }

    .navbar.fixed-top .navbar-toggler-btn-icon {
        color: #222222;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .header-nav-right {
        display: none;
    }
}



/* ======================
multi level dropdown menu
========================= */

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

    .navbar .nav-item .dropdown-submenu .dropdown-menu::before {
        display: none;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 15px;
        top: 12px;
        font-weight: 600;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        background: transparent;
        color: #fff;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        top: 120%;
        left: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 4px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: #31c4f2;
    }
}


/* ======================
search popup
====================== */

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, .8);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    border: none;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50px;
    text-align: center;
    background: #31c4f2;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

    .search-popup .form-group input[type="text"],
    .search-popup .form-group input[type="search"] {
        position: relative;
        width: 100%;
        height: 60px;
        outline: none;
        border-radius: 50px;
        border: none;
        padding: 0 100px 0 35px;
        transition: all 500ms ease;
        text-transform: capitalize;
    }

    .search-popup .form-group input[type="submit"],
    .search-popup .form-group button {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 50px;
        background: #31c4f2;
        text-align: center;
        font-size: 20px;
        color: #fff !important;
        height: 50px;
        width: 50px;
        border: none;
        cursor: pointer;
        transition: all 500ms ease;
    }

        .search-popup .form-group input[type="submit"]:hover,
        .search-popup .form-group button:hover {
            background: #31c4f2;
        }

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #222222;
}



/* ===================
hero css 
====================== */

.hero-section {
    position: relative;
}

.hero-single {
    padding-top: 150px;
    padding-bottom: 150px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .hero-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: -0.5px;
        top: 0;
        background: linear-gradient(to bottom right, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .1) 100%);
        z-index: -1;
    }

    .hero-single .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

        .hero-single .hero-content .hero-title {
            color: #fff;
            font-size: 70px;
            font-weight: 700;
            margin: 20px 0;
            text-transform: capitalize;
        }

            .hero-single .hero-content .hero-title span {
                color: #31c4f2;
            }

        .hero-single .hero-content .hero-sub-title {
            color: #31c4f2;
            font-size: 22px;
            letter-spacing: 5px;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
        }

        .hero-single .hero-content p {
            color: #fff;
            line-height: 30px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .hero-single .hero-content .hero-btn {
            gap: 1rem;
            display: flex;
            margin-top: 1rem;
            justify-content: start;
        }

.hero-slider.owl-theme .owl-nav {
    margin-top: 0px;
}

    .hero-slider.owl-theme .owl-nav [class*=owl-] {
        color: #31c4f2;
        font-size: 25px;
        margin: 0;
        padding: 0;
        background: #fff;
        display: inline-block;
        cursor: pointer;
        height: 55px;
        width: 55px;
        border-radius: 50px;
        line-height: 55px;
        text-align: center;
        transition: all .5s ease-in-out;
    }

        .hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
            background: #31c4f2;
            color: #fff;
        }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: 40px;
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }

@media all and (max-width: 1199px) {

    .hero-single .hero-content .hero-title {
        font-size: 37px;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev,
    .hero-slider.owl-theme .owl-nav .owl-next {
        top: unset;
        bottom: 5px !important;
    }

    .hero-slider.owl-theme .owl-nav .owl-prev {
        left: unset;
        right: 120px;
    }

    .hero-slider.owl-theme .owl-nav .owl-next {
        right: 40px;
    }
}

@media all and (max-width: 991px) {

    .hero-single .hero-content .hero-title {
        font-size: 35px;
    }

    .hero-single .hero-content .hero-btn {
        gap: .5rem;
    }
}

@media all and (max-width: 767px) {

    .hero-single .hero-content .hero-sub-title {
        font-size: 18px;
    }

    .hero-single .hero-content .theme-btn {
        padding-left: 20px;
    }

    .hero-img {
        display: none;
    }
}



/* =====================
play btn
===================== */

.play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 20px;
    text-align: center;
    background: #31c4f2;
    color: #fff !important;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

    .play-btn i::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: #31c4f2;
        border-radius: 50px;
        animation: ripple-wave 1s linear infinite;
        -webkit-transform: scale(1);
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

@keyframes ripple-wave {
    0% {
        opacity: 0.8;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}



/* ===================
category css
====================== */

.category-area {
    padding: 20px 0;
    background: #31c4f2;
}

.category-item {
    text-align: center;
}

.category-icon {
    transition: all .5s ease-in-out;
}

.category-item:hover .category-icon {
    transform: translateY(-5px);
}

.category-icon img {
    width: 50px;
}

.category-title {
    margin-top: 10px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1.5px;
}


@media all and (max-width: 991px) {
    .category-item {
        margin-bottom: 25px;
    }
}


/* ===================
banner css 
====================== */

.banner-item {
    width: 100%;
    height: Auto;
    border-radius: 10px;
    position: relative;
}

    .banner-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background: rgba(0, 0, 0, .3);
    }

    .banner-item img {
        border-radius: 10px;
        width: 100%;
    }

.banner-item-content {
    position: absolute;
    top: 20px;
    right: 20px;
}

    .banner-item-content h2 {
        color: #fff;
    }

    .banner-item-content p {
        color: #fff;
    }

    .banner-item-content a {
        padding: 6px 20px;
        color: #fff;
        background: #31c4f2;
        margin-top: 20px;
        border-radius: 50px;
        font-weight: 500;
        transition: all .5s ease-in-out;
    }

        .banner-item-content a:hover {
            background: #31c4f2;
        }

.banner-item2 .banner-item-content {
    top: unset;
    right: unset;
    left: 20px;
    bottom: 20px;
}

.banner-item3 .banner-item-content {
    top: unset;
    bottom: 20px;
}

@media all and (max-width: 991px) {
    .banner-item {
        margin-bottom: 25px;
    }
}




/* ===================
about css 
====================== */

.about-area {
    position: relative;
    display: block;
}

.about-left {
    position: relative;
    margin-right: 40px;
}

.about-img img {
    border-radius: 12px;
}

.about-shape {
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: -1;
}

.about-experience {
    border: 8px solid #ffff;
    background: #31c4f2;
    position: absolute;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    left: -20px;
    bottom: -20px;
    text-align: center;
    padding: 20px;
}

    .about-experience h1 {
        font-weight: 700;
        font-size: 40px;
        color: #fff;
    }

    .about-experience .about-experience-text {
        color: #fff;
        font-weight: 500;
        line-height: 1.2 !important;
    }

.about-right {
    position: relative;
    display: block;
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 35px;
}

.about-list {
    position: relative;
    display: block;
}

    .about-list li {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 5px;
    }

        .about-list li .about-icon {
            position: relative;
            display: flex;
            align-items: center;
        }

            .about-list li .about-icon span {
                font-size: 20px;
                color: #31c4f2;
            }

.about-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-call-icon {
    width: 55px;
    height: 55px;
    font-size: 25px;
    border-radius: 50px;
    border: 3px solid #31c4f2;
    color: #31c4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.about-call-content span {
    font-weight: 500;
}

.about-call-number {
    font-size: 22px;
}

    .about-call-number a {
        color: #31c4f2;
    }


@media all and (max-width: 991px) {
    .about-left {
        margin-bottom: 60px;
    }

    .about-experience {
        bottom: -20px;
    }
}

@media all and (max-width: 768px) {
    .about-bottom {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
}



/* ===================
solution css 
====================== */

.solution-area {
    position: relative;
    margin-top: -180px;
    z-index: 1;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #31c4f2;
    color: #fff;
    font-size: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-content {
    flex: 1;
}

    .solution-content a {
        font-weight: 500;
        margin-top: 5px;
        color: #31c4f2;
    }

        .solution-content a:hover {
            color: #31c4f2;
        }



/* ===================
service css 
====================== */

.service-area {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f5f4f4;
}

.service-item {
    position: relative;
    padding: 30px 30px 30px 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #fff;
    transition: all .5s ease-in-out;
    z-index: 1;
    margin:0 10px;
}

    .service-item:hover {
        transform: translateY(-7px);
    }

.service-count {
    position: absolute;
    right: 30px;
    top: 0;
    color: transparent;
    font-size: 80px;
    font-weight: 700;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(49, 196, 242, .5);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: #31c4f2;
    margin-bottom: 20px;
    border-radius: 50px;
    position: relative;
    transition: all .5s ease-in-out;
}

    .service-icon i {
        color: #fff;
        font-size: 48px;
        line-height: 1;
    }

.service-content {
    position: relative;
}

.service-title a {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222222;
    text-align:left; display:block;
    height:50px;
}

    .service-title a:hover {
        color: #31c4f2;
    }

.service-arrow {
    margin-top: 15px;
}

    .service-arrow a {
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .service-arrow a i {
            width: 25px;
            height: 25px;
            line-height: 25px;
            background: #31c4f2;
            color: #fff;
            border-radius: 50px;
        }

        .service-arrow a:hover {
            color: #31c4f2;
        }


/* service-area 2 */
.service-area2 {
    position: relative;
}

    .service-area2 .service-item {
        padding: 28px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 15px;
    }

        .service-area2 .service-item::before {
            content: '';
            position: absolute;
            background: rgba(9, 17, 37, .8);
            width: 100%;
            height: 100%;
            border-radius: 15px;
            left: 0px;
            top: 0px;
            right: 0px;
        }

        .service-area2 .service-item .service-count {
            -webkit-text-stroke-color: rgba(255, 255, 255, .20);
        }

        .service-area2 .service-item .service-icon {
            margin-bottom: 35px;
            border-radius: 15px;
        }

        .service-area2 .service-item p,
        .service-area2 .service-item .service-title a {
            color: #fff;
        }

        .service-area2 .service-item .service-arrow {
            margin-top: 35px;
        }

            .service-area2 .service-item .service-arrow a {
                color: #fff;
            }

                .service-area2 .service-item .service-arrow a:hover {
                    color: #31c4f2;
                }




/* ====================
service single
==================== */

.service-single-wrapper .widget-title {
    font-weight: 700;
}

.service-single-list i {
    color: #31c4f2;
    margin-right: 10px;
}

.service-download a {
    border: 2px solid #31c4f2;
    padding: 10px 20px;
    color: #222222;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .5s ease-in-out;
}

    .service-download a i {
        margin-right: 10px;
    }

    .service-download a:hover {
        background-color: #31c4f2;
        color: #fff;
    }

.service-details h3 {
    color: #222222;
    font-weight: 700;
}

.service-details img {
    border-radius: 12px;
}




/* ===================
skill css 
====================== */

.skills-section {
    margin-top: 40px;
}

.skill-left {
    position: relative;
}

    .skill-left img {
        border-radius: 7px;
    }

.skill-shape {
    position: absolute;
    z-index: -1;
    left: -22px;
    top: -1px;
    width: 100%;
    height: 100%;
}

.skill-img {
    position: relative;
    display: block;
    -webkit-mask-image: url(../img/shape/03.png);
    mask-image: url(../img/shape/03.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: 100% 100%;
    -webkit-mask-position: center center;
    mask-position: center center;
    overflow: hidden;
}

.progress-box {
    margin-bottom: 30px;
    position: relative;
}

    .progress-box:last-child {
        margin-bottom: 0;
    }

    .progress-box h5 {
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .progress-box .progress {
        box-shadow: 0px 10px 31px rgb(169 177 193 / 17%);
        border: 1px solid #D5E0F5;
        height: 16px;
        padding: 4px;
        border-radius: 50px;
        background-color: #fff;
    }

        .progress-box .progress .progress-bar {
            background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
            border-radius: 50px;
        }

@media all and (max-width: 991px) {
    .skill-right .site-heading {
        font-size: 30px;
    }

    .skill-img img {
        width: 100%;
    }
}




/* ===================
feature css 
====================== */

.feature-area {
    position: relative;
}

.feature-item {
    padding: 35px 20px;
    position: relative;
    background: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
    transition: all .5s ease-in-out;
}

    .feature-item:hover {
        transform: translateY(-7px);
    }
    .feature-item p { min-height:90px;}
    .feature-icon {
        width: 90px;
        height: 90px;
        background: #31c4f2;
        font-size: 45px;
        color: #fff;
        margin: 0 auto 20px auto;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.feature-title {
    margin-bottom: 10px;
}




/* ===================
video css 
====================== */

.video-content {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 0px;
}

    .video-content::before {
        content: "";
        position: absolute;
        background: rgba(9, 17, 37, .8);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 0px;
    }

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 450px;
    z-index: 100;
}

.video-area .play-btn {
    display: inline-block;
    padding: 0;
    height: 75px;
    width: 75px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media all and (max-width: 767px) {
    .video-wrapper {
        height: 250px;
    }

        .video-wrapper h1 {
            font-size: 28px;
            margin-top: 25px;
        }
}



/* ===================
step/process css 
====================== */

.process-single {
    position: relative;
}

    .process-single .icon {
        height: 100px;
        width: 100px;
        line-height: 90px;
        display: inline-block;
        position: relative;
        border-radius: 50px;
        font-size: 55px;
        color: #fff;
        background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
        padding: 5px;
        margin-bottom: 30px;
        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    }

        .process-single .icon::before {
            content: "";
            position: absolute;
            left: -10px;
            right: -10px;
            top: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px dashed #31c4f2;
        }

        .process-single .icon img {
            border-radius: 50%;
        }

    .process-single span {
        position: absolute;
        height: 35px;
        width: 35px;
        font-size: 14px;
        background: linear-gradient(to right, #fe6d1c 0%, #fd3d10 100%);
        line-height: 35px;
        color: #ffffff;
        left: -8px;
        top: -13px;
        font-weight: 600;
        border-radius: 50px;
    }

    .process-single h4 {
        margin-bottom: 10px;
        font-weight: 700;
    }

    .process-single::before {
        content: "";
        position: absolute;
        background: url(../img/icon/arrow.png);
        background-repeat: no-repeat;
        width: 110px;
        height: 110px;
        right: -65px;
        top: 0px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .process-single::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-single::before {
        display: none;
    }
}

.process-area .col-lg-3:last-child .process-single::before {
    display: none;
}



/* ===================
choose css 
====================== */

.choose-area {
    position: relative;
    background: #222222;
    z-index: 1;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 35px;
}

.choose-icon {
    height: 80px;
    width: 80px;
    line-height: 70px;
    text-align: center;
    border: 3px solid #31c4f2;
    border-radius: 50px;
    color: #fff;
    transition: 0.4s;
    margin-top: 2px;
    font-size: 35px;
}

.choose-content {
    color: #fff;
}

.choose-item-content {
    flex: 1;
}

    .choose-item-content h4 {
        margin-bottom: 5px;
        color: #fff;
    }

.choose-img {
    margin-left: 80px;
    position: relative;
    z-index: 1;
}

    .choose-img img {
        border-radius: 15px;
    }

.choose-banner {
    position: absolute;
    max-width: 260px;
    border-radius: 15px;
    padding: 35px 30px;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
    background: #31c4f2;
    z-index: 1;
}

    .choose-banner h4 {
        color: #fff;
        margin-bottom: 20px;
    }

    .choose-banner ul li {
        color: #fff;
        margin: 5px 0;
    }

        .choose-banner ul li i {
            margin-right: 3px;
        }


@media all and (max-width: 991px) {
    .choose-img {
        margin-top: 60px;
    }
}




/* ===================
testimonial css 
====================== */

.testimonial-area {
    position: relative;
    z-index: 1;
}

.testimonial-single {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.testimonial-quote p {
    color: #222222;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.testimonial-author-img {
    width: 60px;
    border-radius: 50%;
}

    .testimonial-author-img img {
        border-radius: 50%;
    }

.testimonial-author-info h4 {
    font-size: 22px;
    color: #222222;
    min-height:60px;
}

.testimonial-author-info p {
    color: #31c4f2;
    font-weight: 500;
}

.testimonial-quote-icon i {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 80px;
    color: #31c4f2;
    opacity: .5;
}

.testimonial-rate {
    color: #31c4f2;
    margin-top: 15px;
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 30px;
}

    .testimonial-area .owl-dots .owl-dot span {
        background: #31c4f2;
      
        border-radius: 50px;
        width: 8px;
        height: 8px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

    .testimonial-area .owl-dots .owl-dot.active span {
        background-color: #31c4f2;
        width: 18px;
    }



/* ===================
counter css 
====================== */

.counter-area {
    position: relative;
    background-image: url(../img/counter/01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

    .counter-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(9, 17, 37, .8);
        z-index: -1;
    }

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 35px;
    position: relative;
    z-index: 1;
}

    .counter-box .icon {
        position: relative;
        font-size: 55px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        text-align: center;
        color: #fff;
        z-index: 1;
    }

        .counter-box .icon::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: #31c4f2;
            transform: rotate(45deg);
            width: 100%;
            height: 100%;
            border-radius: 25px;
            z-index: -1;
        }

        .counter-box .icon img {
            width: 65px;
        }

    .counter-box .counter {
        display: block;
        line-height: 1;
        color: #fff;
        font-size: 50px;
        font-weight: 600;
    }

    .counter-box .title {
        color: #fff;
        margin-top: 10px;
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
    }

@media all and (max-width: 991px) {
    .counter-area .counter-box {
        margin: 40px 0;
    }
}



/* ===================
cta-area css 
====================== */

.cta-area {
    background: #31c4f2;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-shape img {
    position: absolute;
}

.cta-shape-1 {
    left: 0;
    top: -40px;
}

.cta-shape-2 {
    right: 0;
    bottom: -40px;
}

.cta-text h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.cta-text span {
    color: #31c4f2;
}

.cta-text p {
    color: #fff;
}




/* ========================
portfolio css 
=========================== */

.portfolio-item {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.portfolio-img {
    height: 100%;
}

    .portfolio-img img {
        width: 100%;
        border-radius: 12px;
    }

.portfolio-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .portfolio-content::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        right: 10px;
        bottom: 10px;
        background: #31c4f2;
        border-radius: 12px;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .portfolio-content:hover::before {
        opacity: 0.9;
        visibility: visible
    }

.portfolio-link {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 30px;
    top: 0px;
    transition: 0.5s;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    font-size: 25px;
    color: #31c4f2;
}

    .portfolio-link:hover {
        color: #31c4f2;
    }

.portfolio-content:hover .portfolio-link {
    opacity: 1;
    visibility: visible;
    top: 30px;
}

.portfolio-info {
    position: absolute;
    bottom: 20px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.portfolio-content:hover .portfolio-info {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.portfolio-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .portfolio-subtitle span {
        color: #fff;
    }

.portfolio-title {
    color: #fff;
    font-size: 25px;
}

.filter-btns {
    text-align: center;
}

    .filter-btns li {
        display: inline-block;
        text-transform: capitalize;
        margin: 4px;
        font-weight: 500;
        font-size: 16px;
        color: #222222;
        border-radius: 50px;
        padding: 3px 20px 4px 20px;
        border: 2px solid #31c4f2;
        cursor: pointer;
        transition: all .5s ease-in-out;
    }

        .filter-btns li:hover,
        .filter-btns li.active {
            color: #fff;
            background: #31c4f2;
        }

.portfolio-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

    .portfolio-slider .owl-dots .owl-dot span {
        background: #31c4f2;
        margin: 5px;
        width: 8px;
        height: 8px;
        border-radius: 50px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

    .portfolio-slider .owl-dots .owl-dot.active span {
        background: #31c4f2;
        width: 18px;
    }


@media all and (max-width: 991px) {
    .filter-controls {
        margin-top: 30px;
    }

    .filter-btns {
        margin-top: 30px;
        text-align: left;
    }
}



/* ======================
portfolio single
====================== */

.portfolio-details img {
    border-radius: 12px;
}

.portfolio-sidebar .portfolio-sidebar-content ul li {
    border-bottom: 1px solid #e7e7e7;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
}

    .portfolio-sidebar .portfolio-sidebar-content ul li:last-child {
        border-bottom: none;
    }

.portfolio-sidebar-title {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 700;
}

.portfolio-sidebar .portfolio-sidebar-content ul li span {
    display: block;
    font-weight: normal;
    margin: 0;
}

.portfolio-sidebar .portfolio-sidebar-content .rating a {
    color: #31c4f2;
}

.new-portfolio {
    background: #31c4f2 !important;
}

    .new-portfolio h4 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 28px;
    }

.new-portfolio-btn {
    background: #fff;
    color: #222222;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all .5s ease-in-out;
}

    .new-portfolio-btn:hover {
        background: #222222;
        color: #fff;
    }

    .new-portfolio-btn i {
        margin-left: 8px;
    }

.portfolio-single-list i {
    color: #31c4f2;
    margin-right: 10px;
}

.portfolio-details h3 {
    font-weight: 700;
}



/* ===================
blog css 
====================== */

.blog-item {
    margin-bottom: 25px;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}

.blog-item-img {
    overflow: hidden;
    border-radius: 12px;
}

    .blog-item-img img {
        border-radius: 12px;
    }

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-info {
    padding: 15px;
}

.blog-item-meta ul {
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    border-bottom: 1px solid #e6e8eb;
    padding-bottom: 18px;
}

    .blog-item-meta ul li {
        display: inline-block;
        margin-right: 15px;
        font-weight: 500;
        position: relative;
        color: #222222;
    }

        .blog-item-meta ul li i {
            margin-right: 5px;
            color: #31c4f2;
        }

.blog-item-meta a:hover {
    color: #31c4f2;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.blog-item-info p {
    margin-bottom: 16px;
}

.blog-btn {
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid #31c4f2;
    background: #31c4f2;
    color: #fff;
}

    .blog-btn i {
        margin-left: 5px;
    }

    .blog-btn:hover {
        background: transparent;
        color: #31c4f2;
    }

.blog-item-info h4 a {
    color: #222222;
}

    .blog-item-info h4 a:hover {
        color: #31c4f2;
    }

@media all and (max-width: 991px) {
    .blog-item-info {
        padding: 23px 15px 30px 15px;
    }
}




/* ===========================
blog single css
=========================== */

.blog-thumb-img {
    margin-bottom: 20px;
}

.blog-single-content img {
    border-radius: 12px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .blog-meta .blog-meta-left ul {
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .blog-meta .blog-meta-left ul li {
            font-weight: 500;
        }

    .blog-meta i {
        margin-right: 5px;
        color: #31c4f2;
    }

    .blog-meta a {
        color: #66788a;
        font-weight: 500;
    }

        .blog-meta a:hover {
            color: #31c4f2;
        }

.blog-details-title {
    font-size: 34px;
    color: #222222;
}

.blockqoute {
    background: #F4F4F4;
    border-left: 5px solid #31c4f2;
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 0px;
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: #222222;
}

    .blockqoute-author::before {
        content: "";
        position: absolute;
        height: 2px;
        width: 40px;
        background: #31c4f2;
        left: 0;
        top: 10px;
    }

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .blog-details-tags h5 {
        color: #222222;
        font-weight: 700;
    }

    .blog-details-tags ul {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .blog-details-tags ul a {
            background: #F4F4F4;
            color: #222222;
            padding: 6px 18px;
            border-radius: 8px;
            transition: all .5s ease-in-out;
        }

            .blog-details-tags ul a:hover {
                background: #31c4f2;
                color: #fff;
            }

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: #F4F4F4;
    border-radius: 15px;
    margin: 50px 0;
    padding: 20px;
}

.blog-author-img {
    width: 320px;
    position: relative;
}

    .blog-author-img::before {
        content: "";
        position: absolute;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
        border-radius: 50%;
    }

    .blog-author-img img {
        border-radius: 15px;
    }

.author-name {
    font-size: 22px;
    color: #31c4f2;
    margin: 8px 0;
}

.author-info {
    padding: 0 20px 0 30px;
}

.author-social {
    margin-top: 10px;
}

    .author-social a {
        width: 35px;
        height: 35px;
        line-height: 31px;
        text-align: center;
        border: 2px solid #31c4f2;
        border-radius: 50px;
        margin-right: 5px;
        color: #31c4f2;
        transition: all .5s ease-in-out;
    }

        .author-social a:hover {
            color: #fff;
            background: #31c4f2;
        }

.blog-comments {
    margin-bottom: 50px;
}

    .blog-comments h3 {
        color: #222222;
        font-weight: 700;
    }

.blog-comments-wrapper {
    margin: 30px 0;
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-top: 50px;
}

.blog-comments-img {
    margin-top: 3px;
}

.blog-comments-single img {
    border-radius: 50%;
    width: 120px;
}

.blog-comments-content {
    padding: 0 0 0 20px;
}

    .blog-comments-content span {
        font-size: 14px;
        color: #31c4f2;
        font-weight: 500;
    }

    .blog-comments-content a {
        font-weight: 500;
        margin-top: 5px;
        color: #31c4f2;
    }

        .blog-comments-content a:hover {
            color: #31c4f2;
        }

    .blog-comments-content h5 {
        color: #222222;
        font-weight: 700;
    }

.blog-comments-reply {
    margin-left: 50px;
}

.blog-comments-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 12px;
    background: #F4F4F4;
}

    .blog-comments-form h3 {
        margin-bottom: 20px;
    }

    .blog-comments-form .form-group {
        margin-bottom: 20px;
    }

    .blog-comments-form .form-control {
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: none;
        transition: all .5s ease-in-out;
    }

        .blog-comments-form .form-control:focus {
            border-color: #31c4f2;
        }



@media all and (max-width: 767px) {
    .blog-meta {
        flex-direction: column;
        font-size: 15px;
    }

        .blog-meta .blog-meta-left ul {
            gap: 10px;
        }

    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px 0 0 0;
    }

    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .blog-comments-reply {
        margin-left: 0px;
    }
}


/* =========================
sidebar css
========================= */

.widget {
    background: #F4F4F4;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
}

    .widget .widget-title {
        padding-bottom: 10px;
        margin-bottom: 30px;
        position: relative;
        font-size: 25px;
        color: #222222;
    }

        .widget .widget-title::before {
            position: absolute;
            content: '';
            width: 15px;
            border-bottom: 3px solid #31c4f2;
            bottom: 0;
            left: 0;
        }

        .widget .widget-title::after {
            position: absolute;
            content: '';
            width: 30px;
            border-bottom: 3px solid #31c4f2;
            bottom: 0;
            left: 22px;
        }

    .widget .search-form .form-control {
        padding: 12px 15px 12px 15px;
        border-radius: 10px;
        box-shadow: none;
    }

    .widget .search-form {
        position: relative;
    }

        .widget .search-form .form-control:focus {
            border-color: #31c4f2;
        }

        .widget .search-form button {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 18px;
            padding: 8px 18px 6px 18px;
            background: transparent;
            border: none;
            color: #31c4f2;
        }

    .widget .category-list a {
        display: block;
        padding: 10px 0;
        font-weight: 500;
        border-bottom: 1px solid #ced4da;
        transition: all .5s ease-in-out;
    }

        .widget .category-list a:last-child {
            margin-bottom: 0px;
            border-bottom: none;
        }

        .widget .category-list a:hover {
            padding-left: 10px;
            color: #31c4f2;
        }

        .widget .category-list a i {
            margin-right: 5px;
            color: #31c4f2;
        }

        .widget .category-list a span {
            float: right;
        }

    .widget .recent-post-single {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 20px;
    }

    .widget .recent-post-img {
        margin-right: 20px;
    }

        .widget .recent-post-img img {
            width: 120px;
            border-radius: 10px;
        }

    .widget .recent-post-bio h6 {
        font-size: 18px;
    }

    .widget .recent-post-bio span {
        font-size: 14px;
        color: #31c4f2;
        font-weight: 500;
    }

        .widget .recent-post-bio span i {
            margin-right: 5px;
        }

    .widget .recent-post-bio h6 a:hover {
        color: #31c4f2;
    }

    .widget .social-share-link a {
        width: 35px;
        height: 35px;
        line-height: 32px;
        border: 2px solid #31c4f2;
        color: #31c4f2;
        text-align: center;
        margin-right: 5px;
        border-radius: 50px;
        transition: all .5s ease-in-out;
    }

        .widget .social-share-link a:hover {
            background: #31c4f2;
            color: #fff;
        }

    .widget .tag-list a {
        background: #fff;
        color: #222222;
        padding: 5px 15px;
        margin-bottom: 10px;
        margin-right: 10px;
        border-radius: 8px;
        display: inline-block;
        transition: all .5s ease-in-out;
    }

        .widget .tag-list a:hover {
            background-color: #31c4f2;
            color: #fff;
        }


/* =========================
partner css
========================= */

.partner-item {
    background: #fff;
    margin-bottom: 25px;
    border-radius: 7px;
    padding: 30px 25px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}



/* ===================
contact us css 
====================== */

.contact-wrapper {
    position: relative;
}

.contact-form {
    background: #fff;
    border-radius: 8px;
    padding: 30px 30px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
    margin-bottom: 30px;
}

    .contact-form-header h2 {
        font-size: 30px;
        margin-bottom: 10px;
        font-weight: 700;
        color: #222222;
    }

.contact-form .form-group {
    margin-bottom: 25px;
}

    .contact-form .form-group .form-control {
        padding: 15px 18px;
        border-radius: 10px;
        box-shadow: none;
        transition: all .5s ease-in-out;
    }

        .contact-form .form-group .form-control:focus {
            border-color: #31c4f2;
        }

.contact-map {
    margin-bottom: -9px;
}

    .contact-map iframe {
        width: 100%;
        height: 450px;
    }

.contact-content {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .contact-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: 30px;
        bottom: 30px;
        width: 3px;
        background: #31c4f2;
        border-radius: 50px;
    }

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.contact-info-icon i {
    font-size: 25px;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px;
    background: #31c4f2;
}

.contact-info h5 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #222222;
}

.contact-info p {
    font-weight: 500;
}


@media all and (max-width: 768px) {
    .contact-content {
        margin-bottom: 50px;
    }
}




/* ===================
quote css
====================== */

.quote-area {
    position: relative;
    background-image: url('../images/smart-home-user-interface.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.quote-content {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
}

    .quote-content .quote-header h6 {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: #31c4f2;
        font-size: 18px;
        letter-spacing: 2px;
    }

    .quote-content .quote-header h2 {
        color: #222222;
        font-size: 35px;
        margin-bottom: 30px;
        margin-top: 10px;
        font-weight: 700;
    }

    .quote-content .form-group {
        margin-bottom: 20px
    }

        .quote-content .form-group .form-control {
            padding: 15px 22px;
            font-size: 16px;
            background: 0 0;
            border-radius: 8px;
            background-color: #F3F7FA;
            border: none;
            box-shadow: none
        }

        .quote-content .form-group .form-select {
            padding: 15px 22px;
            background-color: #F3F7FA;
            border: none;
            box-shadow: none;
            border-radius: 8px;
        }

    .quote-content .theme-btn:hover {
        color: #fff;
    }
.form-control:focus {
    background-color: #FFF;
    border-color: #CCC;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #31c4f2 !important;
}
@media all and (max-width:1199px) {
    .quote-content .quote-header h2 {
        font-size: 25px
    }
}

@media all and (max-width:991px) {
    .quote-thum {
        margin-top: 40px;
    }
}



/* ===================
team css 
====================== */

.team-area {
    position: relative;
}

.team-item {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.team-img {
    border-radius: 10px;
}

    .team-img img {
        border-radius: 10px;
    }

.team-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -45px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
}

.team-bio h5 {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

    .team-bio h5 a {
        color: #222222;
    }

.team-bio span {
    color: #31c4f2;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.team-bio h5 a:hover {
    color: #31c4f2;
}

.team-social-btn {
    position: absolute;
    right: 60px;
    top: 62px;
}

    .team-social-btn li {
        display: inline-block;
        position: absolute;
        bottom: 0;
        transition: .6s;
        list-style-type: none;
    }

        .team-social-btn li i {
            display: inline-block;
            width: 45px;
            height: 45px;
            line-height: 45px;
            background: #31c4f2;
            border-radius: 50px;
            color: #fff;
            text-align: center;
            font-size: 20px;
            transition: .6s;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        }

            .team-social-btn li i:hover {
                background: #222222;
                color: #fff;
            }

.team-item li span i {
    opacity: 1;
    visibility: visible;
}

.team-item:hover li span i {
    background: #222222;
    cursor: pointer;
}

.team-item:hover .team-social-btn li i {
    opacity: 1;
    visibility: visible;
}

.team-social-btn li:nth-child(1) {
    z-index: 1;
}

.team-social-btn li:nth-child(2) {
    bottom: 0;
}

.team-social-btn li:nth-child(3) {
    bottom: 0;
}

.team-social-btn li:nth-child(4) {
    bottom: 0;
}

.team-social-btn li:nth-child(5) {
    bottom: 0;
}

.team-item:hover li:nth-child(1) {
    z-index: 1;
}

.team-item:hover li:nth-child(2) {
    bottom: 48px;
}

.team-item:hover li:nth-child(3) {
    bottom: 96px;
}

.team-item:hover li:nth-child(4) {
    bottom: 144px;
}

.team-item:hover li:nth-child(5) {
    bottom: 192px;
}

.team-item:hover li:nth-child(6) {
    bottom: 240px;
}



/* ===================
pricing css 
====================== */

.pricing-area {
    position: relative;
}

.pricing-item {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
    transition: all .9s ease-in-out;
    z-index: 1;
}

    .pricing-item::before {
        content: "";
        position: absolute;
        background: #31c4f2;
        top: -10px;
        left: 0;
        right: 15px;
        height: 220px;
        border-radius: 0 0 100% 0px;
        z-index: -1;
    }

    .pricing-item:hover {
        transform: translateY(-10px);
    }

.pricing-header {
    position: relative;
    z-index: 1;
}

.pricing-icon {
    width: 90px;
    height: 90px;
    line-height: 105px;
    text-align: center;
    border-radius: 50px;
    font-size: 50px;
    color: #31c4f2;
    background: #fff;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .pricing-icon::before {
        content: "";
        position: absolute;
        left: -8px;
        right: -8px;
        top: -8px;
        bottom: -8px;
        border: 3px solid #fff;
        border-radius: 50%;
    }

.pricing-content {
    background: #F4F4F4;
    padding: 20px 30px;
    border-radius: 20px;
    margin: 30px 0 20px 0;
}

    .pricing-content h4 {
        margin-bottom: 10px;
        color: #31c4f2;
    }

.pricing-amount {
    color: #222222;
    font-weight: 700;
}

.pricing-feature {
    margin-top: 20px;
}

    .pricing-feature ul {
        margin-top: 35px;
        margin-bottom: 35px;
    }

        .pricing-feature ul li {
            position: relative;
            margin: 10px 0;
            padding-left: 25px;
        }

            .pricing-feature ul li::before {
                content: "";
                position: absolute;
                width: 13px;
                height: 13px;
                border: 3px solid #31c4f2;
                border-radius: 50px;
                left: 0;
                top: 8px;
            }



/* ===================
faq css 
====================== */

.faq-area .faq-left {
    position: relative;
}

.faq-area .faq-shape {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100%;
    height: 100%;
}

.faq-img {
    position: relative;
    margin-right: 15px;
    z-index: 1;
}

    .faq-img::before {
        content: "";
        position: absolute;
        background: #31c4f2;
        left: -15px;
        top: -15px;
        width: 100%;
        height: 100%;
        border-radius: 50% 50% 50% 20px;
        z-index: -1;
    }

    .faq-img img {
        border-radius: 50% 50% 50% 20px;
    }

.faq-area .accordion-item {
    border: none;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 8px !important;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .faq-area .accordion-item span {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .faq-area .accordion-item i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 50px;
        background: #31c4f2;
        text-align: center;
        color: #fff;
    }

.faq-area .accordion-button:not(.collapsed) {
    color: #31c4f2;
    background: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
    border-radius: 0px !important;
    background: transparent;
    font-weight: 700;
    font-size: 19px;
    color: #222222;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        border-bottom: 1px dashed #31c4f2;
    }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

@media all and (max-width: 991px) {
    .faq-right {
        margin-top: 50px;
    }

    .accordion-button {
        font-size: 16px;
    }
}



/* ===================
breadcrumb css
====================== */

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    z-index: 1;
}

    .site-breadcrumb::before {
        content: "";
        position: absolute;
        background: rgba(0, 0, 0, .7);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .site-breadcrumb .breadcrumb-title {
        font-size: 45px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: capitalize;
    }

    .site-breadcrumb .breadcrumb-menu {
        position: relative;
        z-index: 1;
    }

        .site-breadcrumb .breadcrumb-menu li {
            position: relative;
            display: inline-block;
            margin-left: 25px;
            color: #fff;
            font-weight: 500;
            text-transform: capitalize;
        }

            .site-breadcrumb .breadcrumb-menu li a {
                color: #fff;
                transition: all 0.5s ease-in-out;
            }

            .site-breadcrumb .breadcrumb-menu li::before {
                position: absolute;
                content: '\f101';
                font-family: 'Font Awesome 6 Pro';
                right: -21px;
                top: 1px;
                text-align: center;
                font-size: 16px;
                color: #fff;
            }

            .site-breadcrumb .breadcrumb-menu li:first-child {
                margin-left: 0;
            }

            .site-breadcrumb .breadcrumb-menu li:last-child:before {
                display: none;
            }

            .site-breadcrumb .breadcrumb-menu li a:hover {
                color: #31c4f2;
            }

            .site-breadcrumb .breadcrumb-menu li.active {
                color: #31c4f2;
            }

@media (max-width: 991px) {
    .site-breadcrumb {
        padding-top: 200px;
    }
}




/* ===================
pagination css 
====================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

    .pagination .page-link {
        border: none;
        background: #222222;
        color: #fff;
        margin: 0 10px;
        border-radius: 8px !important;
        width: 40px;
        height: 40px;
        line-height: 27px;
        text-align: center;
        transition: all .5s ease-in-out;
    }

        .pagination .page-link:hover,
        .pagination .page-item.active .page-link {
            background: #31c4f2;
            color: #fff;
        }


/* ===================
RTL css
====================== */

body.rtl-mode {
    direction: rtl;
}

    body.rtl-mode .item-area {
        direction: ltr;
    }

    body.rtl-mode .price-wrapper {
        direction: rtl;
    }

@media (min-width: 992px) {
    body.rtl-mode .navbar-brand {
        margin-left: 3rem;
    }

    body.rtl-mode .navbar .nav-item .nav-link {
        margin-left: 3rem;
        margin-right: 0;
    }
}




/* ===================
auth css 
====================== */

.login-form {
    padding: 40px;
    background: #fff;
    border-radius: 7px;
    position: relative;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

    .login-form::before {
        content: "";
        position: absolute;
        top: 40px;
        bottom: 40px;
        left: 0;
        width: 3px;
        background: #31c4f2;
        border-radius: 10px;
    }

    .login-form .login-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .login-form .login-header img {
            width: 200px;
            margin-bottom: 10px;
        }

        .login-form .login-header h3 {
            color: #31c4f2;
            margin-bottom: 5px;
            font-weight: 800;
        }

        .login-form .login-header p {
            font-size: 20px;
        }

    .login-form .login-footer {
        margin-top: 25px;
    }

        .login-form .login-footer p {
            text-align: center;
        }

        .login-form .login-footer a {
            color: #31c4f2;
            transition: .5s;
        }

            .login-form .login-footer a:hover {
                color: #222222;
            }

    .login-form .form-group {
        margin-bottom: 20px;
    }

    .login-form label {
        color: #222222;
        margin-bottom: 5px;
    }

    .login-form .form-group .form-control {
        border: 1px solid #e8e8e8;
        border-radius: 10px;
        padding: 15px 18px;
        box-shadow: none;
        transition: .5s;
    }

        .login-form .form-group .form-control:focus {
            border-color: #31c4f2;
        }

    .login-form .form-check-input {
        box-shadow: none;
    }

    .login-form .forgot-pass {
        color: #31c4f2;
        transition: .5s;
    }

        .login-form .forgot-pass:hover {
            color: #222222;
        }

    .login-form .theme-btn {
        width: 100%;
    }

        .login-form .theme-btn::before {
            width: 420px;
            height: 420px;
        }

        .login-form .theme-btn i {
            margin-right: 5px;
        }

    .login-form .form-check-input {
        margin-top: 6.3px;
    }

    .login-form .form-check-label a {
        color: #31c4f2;
        transition: .5s;
    }

        .login-form .form-check-label a:hover {
            color: #31c4f2;
        }

.form-check-input:checked {
    background-color: #31c4f2;
    border-color: #31c4f2;
}

.social-login {
    border-top: 1px solid #F1F1F1;
    margin-top: 15px;
}

    .social-login p {
        margin: 10px 0;
    }

.social-login-list {
    text-align: center;
}

    .social-login-list a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #31c4f2;
        border-radius: 50px;
        margin: 5px;
    }

        .social-login-list a i {
            color: #fff;
        }

        .social-login-list a:hover {
            background: #222222;
        }


@media only screen and (max-width: 991px) {
    .login-form {
        padding: 40px 20px;
    }
}




/* ===================
coming soon css 
====================== */

.coming-soon {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: relative;
}

    .coming-soon .container {
        position: relative;
    }

    .coming-soon:before {
        position: absolute;
        content: '';
        background: rgba(0, 0, 0, .7);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .coming-soon .newsletter-form {
        position: relative;
        margin-top: 30px;
    }

        .coming-soon .newsletter-form .input-newsletter {
            height: 55px;
            display: block;
            width: 100%;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            padding-top: 0;
            padding-right: 0;
            padding-bottom: 0;
            padding-left: 25px;
            box-shadow: none;
        }

        .coming-soon .newsletter-form button {
            position: absolute;
            right: 4px;
            top: 4px;
            bottom: 4px;
            height: auto;
            border: none;
            border-radius: 50px;
            background: #31c4f2;
            display: inline-block;
            color: #fff;
            padding-left: 30px;
            padding-right: 30px;
            font-weight: 500;
            transition: .5s;
        }

            .coming-soon .newsletter-form button:hover {
                background-color: #31c4f2;
                color: #fff;
            }

.coming-social {
    margin-top: 30px;
    text-align: center;
}

    .coming-social a {
        color: #fff;
        margin: 5px;
        width: 40px;
        height: 40px;
        line-height: 36px;
        text-align: center;
        border-radius: 50px;
        border: 2px solid #fff;
        display: inline-block;
        transition: .5s;
    }

        .coming-social a:hover {
            background: #31c4f2;
            border-color: #31c4f2;
        }

.countdown-wrap {
    margin-top: 30px;
}

.countdown-single {
    background: #31c4f2;
    padding: 20px;
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

    .countdown-single h2 {
        color: #fff;
    }

    .countdown-single h5 {
        color: #fff;
    }




/* ===================
error css 
====================== */

.error-wrapper {
    text-align: center;
}

    .error-wrapper h1 {
        font-size: 250px;
        letter-spacing: 5px;
        font-weight: bold;
        color: #31c4f2;
        line-height: 1;
    }

        .error-wrapper h1 span {
            color: #222222;
        }

    .error-wrapper h2 {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .error-wrapper img {
        width: 100%;
    }

    .error-wrapper .theme-btn {
        margin-top: 30px;
    }


@media all and (max-width: 767px) {
    .error-wrapper h1 {
        font-size: 160px;
    }
}



/* ===================
terms/privacy css 
====================== */

.terms-content:not(:last-child) {
    margin-bottom: 54px;
}

.terms-content:first-child {
    margin-top: -3px;
}

.terms-content .terms-list {
    margin-top: 37px;
}

.terms-content h3 {
    margin-bottom: 23px;
    position: relative;
    font-weight: 700;
}

.terms-content p:not(:last-child) {
    margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
    margin-bottom: 16px;
}



/* ===================
shop css 
====================== */

/* shop sidebar */
.shop-sidebar {
    margin-bottom: 30px;
}

.shop-widget {
    padding: 30px;
    border-radius: 15px;
    background: #F4F4F4;
    margin-bottom: 30px;
}

.shop-widget-title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    color: #222222;
}

    .shop-widget-title::before {
        position: absolute;
        content: '';
        width: 30px;
        border-bottom: 3px solid #31c4f2;
        bottom: 0;
        left: 0;
    }

    .shop-widget-title::after {
        position: absolute;
        content: '';
        width: 5px;
        border-bottom: 3px solid #31c4f2;
        bottom: 0;
        left: 35px;
    }

.shop-search-form .form-group {
    position: relative;
}

.shop-search-form .form-control {
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    box-shadow: none;
}

    .shop-search-form .form-control:focus {
        border-color: #31c4f2;
    }

.shop-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 18px 6px 18px;
    background: transparent;
    border: none;
    color: #31c4f2;
}

.shop-widget ul li {
    margin-bottom: 10px;
}

.shop-widget .form-check-input {
    box-shadow: none;
    margin-top: 7px;
}

    .shop-widget .form-check-input:checked {
        background-color: #31c4f2;
        border-color: #31c4f2;
    }

.shop-widget .form-check-label {
    color: #7a8a9e;
}

.shop-tags a {
    margin: 10px 6px 0 0;
    padding: 6px 15px;
    border-radius: 12px;
    background: #31c4f2;
    color: #fff;
}

    .shop-tags a:hover {
        background: #222222;
        color: #fff;
    }

.widget-banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 0;
    border-radius: 15px;
    z-index: 1;
}

    .widget-banner::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        border-radius: 15px;
        opacity: .5;
        z-index: -1;
    }

.banner-content {
    padding: 120px 20px 100px 20px;
}

    .banner-content h3 {
        color: #fff;
        font-size: 35px;
        font-weight: 800;
    }

        .banner-content h3 span {
            color: #FAB319;
        }

    .banner-content .theme-btn {
        margin-left: 10px;
        margin-top: 30px;
    }


/* shop sort */

.shop-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .shop-sort h5 {
        color: #222222;
    }

.shop-sort-box .form-select {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    box-shadow: none;
}

    .shop-sort-box .form-select:focus {
        border-color: #31c4f2;
    }


/* shop item */

.shop-item {
    margin-bottom: 25px;
    background: #F4F4F4;
    border-radius: 15px;
}

.shop-item-info {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
}

.shop-item-title {
    font-size: 19px;
    color: #222222;
    transition: all .5s ease-in-out;
}

    .shop-item-title:hover {
        color: #31c4f2;
    }

.shop-item-price {
    font-size: 18px;
    color: #31c4f2;
    font-weight: 700;
    margin-top: 5px;
}

    .shop-item-price del {
        color: #7a8a9e;
        margin-right: 10px;
        font-weight: 500;
    }

.shop-item-img {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .shop-item-img img {
        border-radius: 10px;
        width: 200px;
    }

    .shop-item-img::before {
        content: "";
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        position: absolute;
        border-radius: 10px;
        background: rgba(125, 188, 38, .8);
        z-index: 2;
        transform: scale(0.9);
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s linear 0s;
    }

.shop-item:hover .shop-item-img::before {
    transform: scale(1);
    visibility: visible;
    opacity: 0.8;
}

.shop-item-sale {
    position: absolute;
    padding: 2px 14px;
    border-radius: 10px;
    text-align: center;
    right: 10px;
    top: 10px;
    font-size: 16px;
    color: #fff;
    background: #31c4f2;
}

.shop-item-meta {
    position: absolute;
    top: 40px;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    transition: all .5s ease-in-out;
}

    .shop-item-meta a {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 43px;
        border-radius: 10px;
        text-align: center;
        background: #fff;
        color: #31c4f2;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .shop-item-meta a:hover {
            background: #31c4f2;
            color: #fff;
        }

.shop-item:hover .shop-item-meta {
    left: 20px;
    visibility: visible;
    opacity: 1;
}

.shop-cart-btn {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear 0s;
}

.shop-item-btn {
    background: #222222;
    color: #fff;
    padding: 10px 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
}

    .shop-item-btn:hover {
        background: #fff;
        color: #31c4f2;
    }

    .shop-item-btn i {
        margin-right: 5px;
    }

.shop-item:hover .shop-cart-btn {
    bottom: 60px;
    visibility: visible;
    opacity: 1;
}

.shop-item-rate {
    color: #FAB319;
    margin-bottom: 5px;
}


/* shop cart */

.shop-cart thead tr {
    background: #31c4f2;
    color: #fff;
}

    .shop-cart thead tr th {
        text-transform: uppercase;
        font-weight: 500;
    }

    .shop-cart thead tr th,
    .shop-cart thead tr td {
        white-space: nowrap;
    }

.cart-img {
    width: 80px;
}

    .cart-img img {
        width: 100%;
        border-radius: 5px;
    }

.shop-cart tr td {
    color: #383838;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
    border-top: none;
    position: relative;
    padding: 20px 10px;
    font-size: 16px;
}

.cart-qty {
    width: 150px;
}

    .cart-qty button {
        color: #383838;
        border: 0;
        border-radius: 8px;
        padding: 4px 13px;
    }

    .cart-qty input {
        width: 50px;
        padding: 4px 13px;
        border-radius: 8px;
        border: none;
        background: #EFEFEF;
        text-align: center;
    }

.cart-remove:hover {
    color: #da1d25;
}

.cart-footer {
    margin-top: 40px;
}

.cart-coupon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

    .cart-coupon .form-control {
        box-shadow: none;
        padding: 10px 14px;
        border-radius: 10px;
    }

        .cart-coupon .form-control:focus {
            border-color: #31c4f2;
        }

.coupon-btn {
    padding: 8px 14px;
    color: #fff;
    border: none;
    background: #31c4f2;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

    .coupon-btn:hover {
        background: #222222;
    }

.cart-summary {
    float: right;
}

    .cart-summary li {
        margin-bottom: 10px;
        width: 200px;
    }

        .cart-summary li span {
            float: right;
        }

        .cart-summary li strong {
            color: #222222;
        }

.cart-total {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

    .cart-total span {
        font-weight: bold;
        color: #31c4f2;
    }



/* shop checkout */

.checkout-widget {
    background: #F4F4F4;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
}

.checkout-widget-title {
    margin-bottom: 20px;
    font-size: 25px;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

    .checkout-form .form-group label {
        margin-bottom: 5px;
        color: #222222;
    }

    .checkout-form .form-group .form-control {
        padding: 15px 18px;
        border-radius: 12px;
        box-shadow: none;
    }

        .checkout-form .form-group .form-control:focus {
            border-color: #31c4f2;
        }

.checkout.cart-summary {
    float: none;
    background: #F4F4F4;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

    .checkout.cart-summary h4 {
        font-size: 25px;
    }

    .checkout.cart-summary li {
        width: 100%;
    }


/* shop single */

.shop-item-single .flexslider-thumbnails img {
    width: 100%;
    border-radius: 10px;
    background: #F4F4F4;
}

.shop-item-single .flex-control-thumbs {
    margin-top: 10px;
}

    .shop-item-single .flex-control-thumbs img {
        padding: 0;
        border: none;
    }

.single-item-title {
    font-size: 28px;
}

.single-item-rating {
    margin: 10px 0;
}

    .single-item-rating i {
        color: #31c4f2;
    }

.rating-count {
    margin-left: 10px;
    display: inline-block;
}

.single-item-price {
    margin-top: 15px;
    margin-bottom: 15px;
}

    .single-item-price del {
        margin-right: 10px;
    }

    .single-item-price span {
        color: #31c4f2;
    }

.single-item-content h5 {
    margin-bottom: 15px;
}

.single-item-content span {
    font-weight: normal;
    margin-left: 20px;
}

.single-item-action {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-bottom: 20px;
}

    .single-item-action .theme-btn {
        padding: 10px 15px;
        margin-right: 20px;
    }

        .single-item-action .theme-btn span {
            margin-right: 5px;
        }

.single-item-btn {
    padding: 6px 14px;
    margin-right: 5px;
    font-size: 18px;
    border-radius: 12px;
    border: 2px solid #31c4f2;
    color: #31c4f2;
    transition: all .5s ease-in-out;
}

    .single-item-btn:hover {
        background: #31c4f2;
        color: #fff;
    }

.single-item-share {
    margin-top: 30px;
}

    .single-item-share span {
        font-weight: bold;
        text-transform: uppercase;
        color: #222222;
        display: inline-block;
    }

    .single-item-share a {
        width: 38px;
        height: 38px;
        line-height: 35px;
        text-align: center;
        border-radius: 50px;
        border: 2px solid #31c4f2;
        color: #31c4f2;
        margin-left: 5px;
    }

        .single-item-share a:hover {
            background: #31c4f2;
            color: #fff;
        }

.single-item-details {
    margin-top: 30px;
}

.single-item-desc {
    padding-top: 40px;
}

.single-additional-info {
    padding-top: 40px;
}

.single-item-review {
    padding-top: 40px;
}

.review-rating i {
    color: #31c4f2;
}

.single-item-details .nav-tabs {
    border-width: 2px;
}

    .single-item-details .nav-tabs .nav-link {
        color: #222222;
        font-size: 20px;
        padding: 15px 25px;
        font-weight: 500;
        border: none;
        background: transparent;
        border-bottom: 2px solid transparent;
    }

        .single-item-details .nav-tabs .nav-link:hover,
        .single-item-details .nav-tabs .nav-link.active {
            border-bottom: 2px solid #31c4f2;
            color: #31c4f2;
        }

.related-item {
    margin-top: 100px;
}

    .related-item .site-title {
        font-size: 30px;
    }

@media all and (max-width: 767px) {
    .single-item-action {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

        .single-item-action .theme-btn {
            margin-left: 8px;
        }
}


/* ===================
price range css 
====================== */

.price-range.ui-widget-content {
    border: none;
    background: #E9E9E9;
    height: 5px;
    border-radius: 3px;
}

    .price-range .ui-state-default,
    .price-range .ui-widget-content .ui-state-default {
        top: -7px;
        width: 18px;
        height: 18px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        margin-left: 0px;
        background: #31c4f2;
    }

.price-range .ui-state-focus {
    outline: none;
}

.price-range .ui-widget-header {
    background: #31c4f2;
    border-radius: 0 !important;
}

.price-range-input input {
    border: none;
    margin-bottom: 20px;
    color: #31c4f2;
    background: #F4F4F4;
    font-weight: 700;
    outline: none;
}



/* ===================
footer css 
====================== */

.footer-area {
    background: #091125;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .footer-area::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: #31c4f2;
        top: -100px;
        left: 0;
        z-index: -1;
    }

    .footer-area::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border: 20px solid #31c4f2;
        bottom: -100px;
        right: -100px;
        z-index: -1;
    }

.footer-widget-box {
    margin-bottom: 20px;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 30px;
}

.copyright {
    padding: 10px 0;
    background: #121A2E;
}

    .copyright .footer-menu {
        margin: 0;
        padding: 0;
        text-align: right;
    }

        .copyright .footer-menu li {
            display: inline-block;
            margin-left: 25px;
            font-size: 16px;
        }

            .copyright .footer-menu li a {
                color: #f5faff;
                transition: all .5s ease-in-out;
            }

                .copyright .footer-menu li a:hover {
                    color: #31c4f2;
                }

    .copyright .copyright-text {
        color: #f5faff;
        margin-bottom: 0px;
        font-size: 14px;
    }

        .copyright .copyright-text a {
            color: #31c4f2;
            font-weight: 500;
        }

.footer-widget-title {
    color: #fff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 24px;
    z-index: 1;
}

    .footer-widget-title::before {
        position: absolute;
        content: '';
        z-index: -1;
        width: 30px;
        height: 3px;
        background-color: #31c4f2;
        bottom: 0;
        left: 0;
    }

    .footer-widget-title::after {
        position: absolute;
        content: '';
        z-index: -1;
        width: 10px;
        height: 3px;
        background-color: #31c4f2;
        bottom: 0;
        left: 35px;
    }

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

    .footer-list .fa-angles-right:before {
        position: absolute;
        left: 0;
        top: 3px;
    }
    .footer-list li {
        transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: .all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        position: relative;
        padding-left: 25px;
        line-height: 20px;
        display:block;
    }
        .footer-list li a i {
            margin-right: 5px;
            color: #31c4f2;
            font-weight: 400;
            font-size: 14px;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: .all .5s ease-in-out;
            -o-transition: all .5s ease-in-out;
        }
        .footer-list li a {
            color: #fff;
            transition: all .5s ease-in-out;
            -webkit-transition: all .5s ease-in-out;
            -moz-transition: .all .5s ease-in-out;
            -o-transition: all .5s ease-in-out;
            font-size: 14px;
        }



        .footer-list li:hover a, .footer-list li:hover i{
            color: #31c4f2;
        }

.footer-widget-box p {
    color: #fff;
    padding-right: 18px;
    margin-bottom: 20px;
    font-size:14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

    .footer-social li a i {
        height: 30px;
        width: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 50px;
        background: #fff;
        color: #31c4f2;
        transition: all .5s ease-in-out;
    }

        .footer-social li a i:hover {
            background: #31c4f2;
            color: #fff;
        }

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #f5faff;
    font-size: 16px;
    margin-bottom: 15px;
}

    .footer-contact li a {
        color: #f5faff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        font-size:14px;
    }
        .footer-contact li a:hover {
            color: #31c4f2
        }
        .footer-contact li i {
            width: 32px;
            height: 32px;
            line-height: 32px;
            font-size: 16px;
            margin-right: 15px;
            border-radius: 50px;
            background: #31c4f2;
            text-align: center;
            -webkit-transition: 0.3s;
            transition: 0.3s;
            color: #fff;
        }

.subscribe-form .form-control {
    padding: 16px 20px;
    border-radius: 7px;
    box-shadow: none;
    border: none;
}

.subscribe-form .theme-btn {
    margin-top: 20px;
}

    .subscribe-form .theme-btn::before {
        background: #fff;
        overflow:hidden;
    }


#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}


    @media all and (max-width: 1199px) {
        .footer-widget-box {
        margin-bottom: 50px;
    }
}

@media all and (max-width: 991px) {

    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .copyright .footer-menu {
        float: left;
        margin-top: 20px;
        text-align: left;
    }

        .copyright .footer-menu li {
            margin-left: 0;
            margin-right: 15px;
        }
}

@media all and (max-width: 767px) {
    .footer-widget-wrapper {
        padding-bottom: 0px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}



/* ======================
home 2
====================== */

.home-2 .hero-single::before {
    background: rgba(9,17,37,0.9);
}

.home-2 .solution-area {
    margin-top: -60px;
}



/* ======================
home 3
====================== */

.home-3 .main {
    margin-top: -6rem;
}

.home-3 .navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

    .home-3 .navbar.fixed-top {
        background: #fff;
    }

.home-3 .hero-single {
    padding-top: 230px;
    padding-bottom: 180px;
}

    .home-3 .hero-single::before {
        background: rgba(0, 0, 0, .75);
    }

.home-3 .feature-area {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}


@media all and (min-width: 992px) {
    .home-3 .navbar .nav-item .nav-link {
        color: #fff;
    }

    .home-3 .navbar.fixed-top .nav-item .nav-link {
        color: #222222;
    }

    .home-3 .header-nav-link {
        color: #fff;
    }

    .home-3 .navbar .nav-item .nav-link.active,
    .home-3 .navbar .nav-item:hover .nav-link {
        color: #31c4f2;
    }
}

@media all and (max-width: 991px) {
    .home-3 .mobile-menu-link {
        color: #fff;
    }

    .home-3 .navbar-toggler-btn-icon {
        color: #fff;
    }

    .home-3 .hero-slider.owl-theme .owl-nav .owl-prev,
    .home-3 .hero-slider.owl-theme .owl-nav .owl-next {
        bottom: 70px !important;
    }
}

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #000;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px
}

    #scroll span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -12px;
        height: 0;
        width: 0;
        border: 8px solid transparent;
        border-bottom-color: #ffffff;
    }

    #scroll:hover {
        background-color: #31c4f2;
        opacity: 1;
        filter: "alpha(opacity=100)";
        -ms-filter: "alpha(opacity=100)";
    }



.owl-carousel .owl-nav [class*=owl-] {
    transition: all 0.3s ease;
}

    .owl-carousel .owl-nav [class*=owl-].disabled:hover {
        background-color: #d6d6d6;
    }

.owl-carousel {
    position: relative;
}

   
    .owl-carousel .owl-prev {
        left: -70px;
    }

    .owl-carousel .owl-next {
        right: -70px;
    }






.demo-btn {
    font-size: 14px;
    color: #ffffff;
    padding: 8px 28px;
    transition: all 0.5s;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: #091125;
    box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
    z-index: 1;
}

    .demo-btn:before {
        transition-duration: 800ms;
        position: absolute;
        width: 130%;
        height: 130%;
        content: "";
        bottom: 110%;
        left: 50%;
        background: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .demo-btn:hover:before {
        bottom: -15%;
    }

    .demo-btn:hover {
        color: #31c4f2;
    }

    .demo-btn i {
        margin-left: 5px;
    }


#gallery {
    padding-top: 40px;

    @media screen and (min-width: 991px) {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
    img

{
    width: 100%;
}

}

.img-overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    i

{
    color: #fff;
    font-size: 3em;
}

}

#overlay {
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    // Removes blue highlight -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    img

{
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;

    @media screen and (min-width:768px) {
        width: 60%;
    }

    @media screen and (min-width:1200px) {
        width: 50%;
    }
}

}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    &:hover

{
    opacity: 0.7;
}

@media screen and (min-width:768px) {
    font-size: 3em;
}

}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    &:hover

{
    opacity: 0.7;
}

@media screen and (min-width:768px) {
    font-size: 3em;
}

}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
    &:hover

{
    opacity: 0.7;
}

@media screen and (min-width:768px) {
    font-size: 3em;
}
}




.aos-animate {
    opacity: 1;
    transform: translateZ(0);
}



.about {
    background: url('../images/smart-home-automation.jpg') no-repeat 0 0;
    padding:250px 0;
    
   
  
   
}
    .about .content {
        background: rgb(8 8 8 / 50%);
        border-radius: 6px;
        color: #fbfbfb;
        padding: 20px;
    }
.service-text {text-align:left;}



.section-header {
    text-align: center;
    margin: 60px auto 20px auto;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
}

.section-header-underline {
    border: 1px solid #222;
    width: 3rem;
    margin: 0 auto;
    margin-bottom: 30px;
}

.video-gallery {
    position: relative;
    text-align: center;
    padding:0 50px;
}

    .video-gallery .gallery-item {
        position: relative;
      
        overflow: hidden;
       
       
        max-height: 360px;
       
        background: #000;
        cursor: pointer;
    }

        .video-gallery .gallery-item img {
            position: relative;
            display: block;
            opacity: .45;
            width: 105%;
            height: 300px;
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
        }

        .video-gallery .gallery-item .gallery-item-caption {
            padding: 2em;
            color: #fff;
            text-transform: uppercase;
            font-size: 1.25em;
        }

            .video-gallery .gallery-item .gallery-item-caption,
            .video-gallery .gallery-item .gallery-item-caption > a {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index:10;
            }

        .video-gallery .gallery-item h6 {
            font-weight: 300;
            overflow: hidden;
            padding: 0.5em 0;
            color: #fff;
            font-size: 20px;
            text-transform: capitalize;
            line-height: 28px;
            font-family: "Source Sans Pro", sans-serif;
        }


        .video-gallery .gallery-item h6,
        .video-gallery .gallery-item p {
            position: relative;
            margin: 0;
            z-index: 10;
        }

        .video-gallery .gallery-item p {
            letter-spacing: 1px;
            font-size: 68%;
            padding: 1em 0;
            opacity: 0;
            transition: opacity 0.35s, transform 0.35s;
            transform: translate3d(10%, 0, 0);
        }

        .video-gallery .gallery-item:hover img {
            opacity: .3;
            -webkit-transform: scale(1.3);
            transform: scale(1.3);
        }

        .video-gallery .gallery-item .gallery-item-caption {
            text-align: left;
        }

        .video-gallery .gallery-item h6::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 15%;
            height: 1px;
            background: #fff;
            transition: transform 0.3s;
            transform: translate3d(-100%, 0, 0);
        }

        .video-gallery .gallery-item:hover h6::after {
            transform: translate3d(0, 0, 0);
        }

        .video-gallery .gallery-item:hover p {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

@media screen and (max-width: 50em) {
    .video-gallery .gallery-item {
        display: inline-block;
        float: none;
        margin: 10px auto;
        width: 100%;
    }
}





.fa-star:before {font-size:12px;}


/* ===================================== Custom Message Style  ================================== */
.custom-msg {
    padding: 80px 50px;
    background-color: #0098ef;
    color: #FFF;
}

@media screen and (max-width: 767px) {
    .custom-msg {
        padding: 30px;
    }
}

.custom-msg .cust-msg {
    text-align: center;
}

    .custom-msg .cust-msg h2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .custom-msg .cust-msg p {
        margin-bottom: 30px;
    }

    .custom-msg .cust-msg .btn {
        font-family: "mouse-300", Arial, Helvetica, sans-serif;
        border-radius: 8px;
    }


.testimonial-slider .owl-nav .owl-prev, #customers-service .owl-nav .owl-prev {
    position: absolute;
    left: 0;
    top: 50%;
}

.testimonial-slider .owl-prev, #customers-service .owl-prev {
    background: url(../images/previous.png) no-repeat left 0;
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    left: -45px !important;
    top: 40% !important;
}

.testimonial-slider .owl-next, #customers-service .owl-next {
    background: url(../images/next.png) no-repeat right 0;
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    right: -45px !important;
    top: 40% !important;
}

#owl-demo .owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    display: block !important;
    border: 0px solid ##31c4f2;
    background: #fff !important;
    -moz-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    font-size: 40px !important;
    padding: 0px 10px 5px 10px !important;
    color: #000 !important;
    line-height: 30px;
}

#owl-demo .owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    display: block !important;
    border: 0px solid ##31c4f2;
    background: #fff !important;
    -moz-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    font-size: 40px !important;
    padding: 0px 10px 5px 10px !important;
    color: #000 !important;
    line-height: 30px;
}
    
#owl-demo .owl-prev:hover {
    background: #000 !important;
    color:#fff !important;
}
#owl-demo .owl-next:hover {
    background: #000 !important;
    color: #fff !important;
}



#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

    #cssmenu:after, #cssmenu > ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0
    }

    #cssmenu #head-mobile {
        display: none
    }

#cssmenu {
    font-family: sans-serif;
}

    #cssmenu > ul > li {
        float: left
    }

        #cssmenu > ul > li > a {
            padding: 17px 15PX;
            font-size: 14px;
            letter-spacing: 1px;
            text-decoration: none;
            color: #000;
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Montserrat Alternates', sans-serif;
        }


.drop-toggle:after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: 'Font Awesome 6 Free';
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 14px;
}



#cssmenu > ul > li:hover, #cssmenu ul li.active:hover, #cssmenu ul li.active, #cssmenu ul li.has-sub.active:hover {
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


/* #cssmenu > ul > li.has-sub > a:after {
            position: absolute;
            top: 22px;
            right: 11px;
            width: 8px;
            height: 2px;
            display: block;
            background: #ddd;
            content: ''
        }*/

/*#cssmenu > ul > li.has-sub > a:before {
            position: absolute;
            top: 19px;
            right: 14px;
            display: block;
            width: 2px;
            height: 8px;
            background: #ddd;
            content: '';
            -webkit-transition: all .25s ease;
            -ms-transition: all .25s ease;
            transition: all .25s ease
        }*/

#cssmenu > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0
}

#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    z-index: 1000;
    background: #000;
    width: 100%;
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
    display: block;
    transition: .3s;
    margin-top: 0px;
    padding: 8px;
    border: none;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    width: 220px;
}

    #cssmenu ul ul li {
        height: 0;
        -webkit-transition: all .25s ease;
        -ms-transition: all .25s ease;
        transition: all .25s ease
    }



#cssmenu li:hover > ul {
    left: auto;
}

    #cssmenu li:hover > ul > li {
        height: auto;
        border-bottom: 1px solid #eee;
    }

        #cssmenu li:hover > ul > li:last-child {
            border-bottom: none;
        }

#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0
}

#cssmenu ul ul li a {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0px 10px 20px;
    color: #222222;
    position: relative;
    text-transform: capitalize;
    transition: all .5s ease-in-out;
    z-index: 1;
    line-height: 22px;
}

#cssmenu ul ul li:last-child > a, #cssmenu ul ul li.last-item > a {
    border-bottom: 0
}

#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
    color: #31c4f2
}

#cssmenu ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: ''
}

#cssmenu ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: '';
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease
}

#cssmenu ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0
}

#cssmenu ul ul li.has-sub:hover, #cssmenu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636;
}

#cssmenu ul ul ul li.active a {
    border-left: 1px solid #333
}

#cssmenu > ul > li.has-sub > ul > li.active > a, #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: 1px solid #333
}

@media screen and (max-width:1000px) {
    .mobile-img img {text-align:center; display:block; margin:0 auto;}
    .page-title .title-text h1 {
        font-size: 28px;
        line-height:40px;
    }
    .site-title {font-size:26px;}
    .site-title-tagline {font-size:16px;}
    .about-left {
        margin-right: 0px;
    }
    .about-text { margin-bottom:20px;}
    .feature-item {
        margin-bottom: 30px;
    }

    #cssmenu {
        width: 100%;
        position: absolute;
        width: 100%;
        z-index: 10000;
        left: 0;
        background: #ebebeb;
        margin-top: 10px;
    }
    .logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 46px;
        text-align: center;
        padding: 10px 0 0 0;
        float: none
    }

    .logo2 {
        display: none
    }

    nav {
        width: 100%;
    }

    #cssmenu {
        width: 100%;
        
    }

    .navigation {
        width: 100%;
        position: relative;
    }

    #cssmenu ul {
        width: 100%;
        display: none
    }

    #cssmenu > ul > li > a {
        padding: 17px 20PX !important;
    }

    #cssmenu ul li {
        width: 100%;
        border-bottom: 1px solid #d7d4d4
    }

        #cssmenu ul li:hover {
            background: none;
        }

    #cssmenu ul ul li, #cssmenu li:hover > ul > li {
        height: auto
    }

        #cssmenu ul li a, #cssmenu ul ul li a {
            width: 100%;
            border-bottom: 0
        }

    #cssmenu > ul > li {
        float: none
    }

    #cssmenu ul ul li a {
        padding-left: 25px
    }

    #cssmenu ul ul li {
        background: #fff !important;
       
    }
    #cssmenu ul ul li:last-child {
       
        border-bottom: none !important
    }

        #cssmenu ul ul li:hover {
            background: #32c4f2 !important;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }

    #cssmenu ul ul ul li a {
        padding-left: 35px
    }

    #cssmenu ul ul li a {
        color: #31c4f2;
        background: none
    }

    #cssmenu ul ul li:hover > a, #cssmenu ul ul li.active > a {
        color: #fff
    }

    #cssmenu ul ul, #cssmenu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left
    }

        #cssmenu > ul > li.has-sub > a:after, #cssmenu > ul > li.has-sub > a:before, #cssmenu ul ul > li.has-sub > a:after, #cssmenu ul ul > li.has-sub > a:before {
            display: none
        }

    #cssmenu #head-mobile {
        display: block;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }


    .button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: -60px;
        cursor: pointer;
        z-index: 12399994;
    }

        .button:after {
            position: absolute;
            top: 22px;
            right: 20px;
            display: block;
            height: 8px;
            width: 20px;
            border-top: 2px solid #31c4f2;
            border-bottom: 2px solid #31c4f2;
            content: ''
        }

        .button:before {
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
            position: absolute;
            top: 16px;
            right: 20px;
            display: block;
            height: 2px;
            width: 20px;
            background: #31c4f2;
            content: ''
        }

        .button.menu-opened:after {
            -webkit-transition: all .3s ease;
            -ms-transition: all .3s ease;
            transition: all .3s ease;
            top: 23px;
            border: 0;
            height: 2px;
            width: 19px;
            background: #31c4f2;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg)
        }

        .button.menu-opened:before {
            top: 23px;
            background: #31c4f2;
            width: 19px;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg)
        }

    #cssmenu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid #30c4f2;
        height: 46px;
        width: 46px;
        cursor: pointer
    }

        #cssmenu .submenu-button.submenu-opened {
            background: #32c4f2
        }

    #cssmenu ul ul .submenu-button {
        height: 34px;
        width: 34px
    }

    #cssmenu .submenu-button:after {
        position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #30c4f2;
        content: ''
    }

    #cssmenu ul ul .submenu-button:after {
        top: 15px;
        right: 13px
    }

    #cssmenu .submenu-button.submenu-opened:after {
        background: #fff
    }

    #cssmenu .submenu-button:before {
        position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #30c4f2;
        content: ''
    }

    #cssmenu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #cssmenu .submenu-button.submenu-opened:before {
        display: none
    }

    #cssmenu ul ul ul li.active a {
        border-left: none
    }

    #cssmenu > ul > li.has-sub > ul > li.active > a, #cssmenu > ul ul > li.has-sub > ul > li.active > a {
        border-top: none
    }
}

@media (max-width: 1105px) {
    #cssmenu > ul > li > a {
        padding: 17px 20PX;
    }


    .owl-carousel .owl-nav .owl-prev {
        position: absolute;
        left: 0;
        top: 50%;
    }

    .owl-prev {
        background: url(../images/previous.png) no-repeat left 0;
        width: 32px;
        height: 32px;
        display: block;
        position: absolute;
        left: -45px !important;
        top: 40% !important;
    }

    .owl-next {
        background: url(../images/next.png) no-repeat right 0;
        width: 32px;
        height: 32px;
        display: block;
        position: absolute;
        right: -45px !important;
        top: 40% !important;
    }


    .img-overlay .fa-plus-circle {
        font-size: 40px;
    }


    .listing-style {
        list-style: circle !important;
        color: #31c4f2;
        display: block;
    }

        .listing-style li {
            content: "+ ";
        }

    .client li {
        line-height: 1.5;
        padding: 8px 0 8px 10px;
    }

        .client li:before {
            float: left;
            display: block;
            content: url('../images/clients.png');
            color: #ffd900;
            margin: 3px 10px 0 0;
            width: 16px;
            height: 16px;
        }

    .field-validation-error {
        color: red;
        font-size: 0.90rem;
    }


    .testimonial {
        border-bottom: 1px solid #ddd;
        padding: 20px 0;
    }

        .testimonial h6 {
            padding-bottom: 20px;
        }

        .testimonial p {
            padding-bottom: 10PX;
        }



    button {
        outline: none !important;
        border: none;
        background: transparent;
    }

        button:hover {
            cursor: pointer;
        }

    iframe {
        border: none !important;
    }

    .txt1 {
        font-size: 18px;
        line-height: 1.2;
        color: #fff;
    }

    .txt2 {
        font-size: 15px;
        line-height: 1.6;
        color: #fff;
    }

    .txt3 {
        font-size: 15px;
        line-height: 1.6;
        color: #2fc4f2;
    }

        .txt3 a {
            color: #2fc4f2
        }
    /*==================================================================
[ Size ]*/
    .size1 {
        width: 355px;
        max-width: 100%;
    }

    .size2 {
        width: calc(100% - 43px);
    }


    /*//////////////////////////////////////////////////////////////////
[ Contact ]*/

    .container-contact100 {
        width: 100%;
        min-height: 100vh;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background: #f2f2f2;
    }

    .wrap-contact100 {
        width: 1120px;
        background: #fff;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        flex-direction: row-reverse;
    }

    /*==================================================================
[ Contact more ]*/
    .contact100-more {
        width: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
        padding: 30px 15px 0px 15px;
    }

        .contact100-more::before {
            content: "";
            display: block;
            position: absolute;
            z-index: -1;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0,0,0,0.7);
        }


        .contact100-more a {
            color: #fff
        }

            .contact100-more a:hover {
                color: #2fc4f2
            }
    /*==================================================================
[ Form ]*/
    .contact100-form {
        width: 50%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        padding: 56px 55px 63px 55px;
    }

    .contact100-form-title {
        width: 100%;
        display: block;
        font-size: 30px;
        color: #333333;
        line-height: 1.2;
        text-align: center;
        padding-bottom: 33px;
    }



    /*------------------------------------------------------------------
[ Input ]*/

    .wrap-input100 {
        width: 100%;
        position: relative;
        border: 1px solid #e6e6e6;
    }

    .rs1-wrap-input100,
    .rs2-wrap-input100 {
        width: 50%;
    }

    .rs2-wrap-input100 {
        border-left: none;
    }

    .label-input100 {
        font-size: 12px;
        color: #555555;
        line-height: 1.5;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 55px;
        border: 1px solid #e6e6e6;
        border-bottom: none;
        padding: 10px 25px;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .input100 {
        display: block;
        width: 100%;
        background: transparent;
        font-size: 18px;
        color: #666666;
        line-height: 1.2;
        padding: 0 25px;
    }

    input.input100 {
        height: 55px;
    }


    textarea.input100 {
        min-height: 139px;
        padding-top: 19px;
        padding-bottom: 15px;
    }

    /*---------------------------------------------*/

    .focus-input100 {
        position: absolute;
        display: block;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        top: -1px;
        left: -1px;
        pointer-events: none;
        border: 1px solid #31c4f2;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        -webkit-transform: scaleX(1.1) scaleY(1.3);
        -moz-transform: scaleX(1.1) scaleY(1.3);
        -ms-transform: scaleX(1.1) scaleY(1.3);
        -o-transform: scaleX(1.1) scaleY(1.3);
        transform: scaleX(1.1) scaleY(1.3);
    }

    .input100:focus + .focus-input100 {
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }



    /*------------------------------------------------------------------
[ Button ]*/
    .container-contact100-form-btn {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 23px;
    }

    .contact100-form-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        min-width: 200px;
        height: 50px;
        border-radius: 2px;
        background: #fe9d01;
        font-size: 13px;
        color: #fff;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 1px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

        .contact100-form-btn:hover {
            background: #333333;
        }



    /*------------------------------------------------------------------
[ Responsive ]*/

    @media (max-width: 992px) {
        .contact100-form {
            width: 60%;
            padding: 56px 30px 63px 30px;
        }

        .contact100-more {
            width: 40%;
        }
    }

    @media (max-width: 768px) {
        .contact100-form {
            width: 100%;
        }

        .contact100-more {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .contact100-form {
            padding: 56px 15px 63px 15px;
        }

        .rs1-wrap-input100,
        .rs2-wrap-input100 {
            width: 100%;
        }

        .rs2-wrap-input100 {
            border-left: 1px solid #e6e6e6;
            border-top: none;
        }
    }


    /*------------------------------------------------------------------
[ Alert validate ]*/

    .validate-input {
        position: relative;
    }

    .alert-validate::before {
        content: attr(data-validate);
        position: absolute;
        max-width: 70%;
        background-color: #fff;
        border: 1px solid #c80000;
        border-radius: 2px;
        padding: 4px 25px 4px 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 2px;
        pointer-events: none;
        color: #c80000;
        font-size: 13px;
        line-height: 1.4;
        text-align: left;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.4s;
        -o-transition: opacity 0.4s;
        -moz-transition: opacity 0.4s;
        transition: opacity 0.4s;
    }

    .alert-validate::after {
        content: "\f12a";
        font-family: FontAwesome;
        display: block;
        position: absolute;
        color: #c80000;
        font-size: 16px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 8px;
    }

    .alert-validate:hover:before {
        visibility: visible;
        opacity: 1;
    }

    @media (max-width: 992px) {
        .alert-validate::before {
            visibility: visible;
            opacity: 1;
        }
    }


    .lnr-map-marker:before {
        content: "\f279";
    }






    .overlay::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        background-color: rgba(0, 0, 0, .3);
    }

    .header-area {
        position: relative;
        height: 100vh;
        background: #5bc0de;
        background-attachment: fixed;
        background-position: center center;
        background-repeat: no-repear;
        background-size: cover;
    }

    .banner {
        display: flex;
        align-items: center;
        position: relative;
        height: 100%;
        color: #fff;
        text-align: center;
        z-index: 1;
    }

        .banner h1 {
            font-weight: 800;
        }

        .banner p {
            font-weight: 700;
        }

    .navbar {
        width: 100%;
        transition: background 0.6s ease-in;
        z-index: 99999;
    }



        .navbar .navbar-toggler {
            position: relative;
            height: 50px;
            width: 50px;
            border: none;
            cursor: pointer;
            outline: none;
        }

            .navbar .navbar-toggler .menu-icon-bar {
                position: absolute;
                left: 15px;
                right: 15px;
                height: 2px;
                background-color: #fff;
                opacity: 0;
                -webkit-transform: translateY(-1px);
                -ms-transform: translateY(-1px);
                transform: translateY(-1px);
                transition: all 0.3s ease-in;
            }

                .navbar .navbar-toggler .menu-icon-bar:first-child {
                    opacity: 1;
                    -webkit-transform: translateY(-1px) rotate(45deg);
                    -ms-sform: translateY(-1px) rotate(45deg);
                    transform: translateY(-1px) rotate(45deg);
                }

                .navbar .navbar-toggler .menu-icon-bar:last-child {
                    opacity: 1;
                    -webkit-transform: translateY(-1px) rotate(135deg);
                    -ms-sform: translateY(-1px) rotate(135deg);
                    transform: translateY(-1px) rotate(135deg);
                }

            .navbar .navbar-toggler.collapsed .menu-icon-bar {
                opacity: 1;
            }

                .navbar .navbar-toggler.collapsed .menu-icon-bar:first-child {
                    -webkit-transform: translateY(-7px) rotate(0);
                    -ms-sform: translateY(-7px) rotate(0);
                    transform: translateY(-7px) rotate(0);
                }

                .navbar .navbar-toggler.collapsed .menu-icon-bar:last-child {
                    -webkit-transform: translateY(5px) rotate(0);
                    -ms-sform: translateY(5px) rotate(0);
                    transform: translateY(5px) rotate(0);
                }

    .navbar-dark .navbar-nav .nav-link {
        position: relative;
        color: #fff;
        font-size: 1.6rem;
    }

        .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
            color: #fff;
        }

    .navbar .dropdown-menu {
        padding: 0;
        background-color: rgba(0, 0, 0, .9);
    }

        .navbar .dropdown-menu .dropdown-item {
            position: relative;
            padding: 10px 20px;
            color: #fff;
            font-size: 1.4rem;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            transition: color 0.2s ease-in;
        }

            .navbar .dropdown-menu .dropdown-item:last-child {
                border-bottom: none;
            }

            .navbar .dropdown-menu .dropdown-item:hover {
                background: transparent;
                color: #c0ca33;
            }

            .navbar .dropdown-menu .dropdown-item::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                top: 0;
                width: 5px;
                background-color: #c0ca33;
                opacity: 0;
                transition: opacity 0.2s ease-in;
            }

            .navbar .dropdown-menu .dropdown-item:hover::before {
                opacity: 1;
            }

    .navbar.fixed-top {
        position: fixed;
        -webkit-animation: navbar-animation 0.6s;
        animation: navbar-animation 0.6s;
        background-color: rgba(0, 0, 0, .9);
    }

        .navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
            color: #c0ca33;
        }

        .navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
            background-color: #c0ca33;
        }

    .content {
        padding: 120px 0;
    }

    @media screen and (max-width: 768px) {
        .navbar-brand {
            margin-left: 20px;
        }

        .navbar-nav {
            padding: 0 20px;
            background-color: rgba(0, 0, 0, .9);
        }

        .navbar.fixed-top .navbar-nav {
            background: transparent;
        }
    }

    @media screen and (min-width: 767px) {
        .banner {
            padding: 0 150px;
        }

            .banner h1 {
                font-size: 5rem;
            }

            .banner p {
                font-size: 2rem;
            }

        .navbar-dark .navbar-nav .nav-link {
            padding: 23px 15px;
        }

            .navbar-dark .navbar-nav .nav-link::after {
                content: '';
                position: absolute;
                bottom: 15px;
                left: 30%;
                right: 30%;
                height: 1px;
                background-color: #fff;
                -webkit-transform: scaleX(0);
                -ms-transform: scaleX(0);
                transform: scaleX(0);
                transition: transform 0.1s ease-in;
            }

            .navbar-dark .navbar-nav .nav-link:hover::after {
                -webkit-transform: scaleX(1);
                -ms-transform: scaleX(1);
                transform: scaleX(1);
            }

        .dropdown-menu {
            min-width: 200px;
            -webkit-animation: dropdown-animation 0.3s;
            animation: dropdown-animation 0.3s;
            -webkit-transform-origin: top;
            -ms-transform-origin: top;
            transform-origin: top;
        }
    }

    @-webkit-keyframes navbar-animation {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
            transform: translateY(-100%);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @keyframes navbar-animation {
        0% {
            opacity: 0;
            -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
            transform: translateY(-100%);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    @-webkit-keyframes dropdown-animation {
        0% {
            -webkit-transform: scaleY(0);
            -ms-transform: scaleY(0);
            transform: scaleY(0);
        }

        75% {
            -webkit-transform: scaleY(1.1);
            -ms-transform: scaleY(1.1);
            transform: scaleY(1.1);
        }

        100% {
            -webkit-transform: scaleY(1);
            -ms-transform: scaleY(1);
            transform: scaleY(1);
        }
    }

    @keyframes dropdown-animation {
        0% {
            -webkit-transform: scaleY(0);
            -ms-transform: scaleY(0);
            transform: scaleY(0);
        }

        75% {
            -webkit-transform: scaleY(1.1);
            -ms-transform: scaleY(1.1);
            transform: scaleY(1.1);
        }

        100% {
            -webkit-transform: scaleY(1);
            -ms-transform: scaleY(1);
            transform: scaleY(1);
        }
    }

