/* Common */

.digi-logo {
    height: 45px;
    margin: 25px 0;
}

#enter-br {
    display: none;
}

#mobile-title-nav {
    display: none;
}

#mobile-titl-nav-wrapper {
    display: none;
}

#logo-anchor {
    display: inline-block;
}

#top-bar-line {
    height: 2px;
    width: 100%;
    /* background-image: linear-gradient(to right, rgba(255,0,0,0), #00adb5, rgba(255,0,0,0)); */
}

#social-icons-top {
    float: right;
    margin-top: 32px;
}

#main-title-nav {
    display: inline-block;
    transform: translate(0%, 35%);
    font-size: 20px;
    margin-left: 30px;
}

.top-bar {
    box-shadow: 0 1px 10px rgb(163, 163, 163);
    margin-bottom: 100px;
}

.top-bar-edited {
    margin-bottom: 0;
    /* box-shadow: 0 1px 10px #272727; */
}

.top-bar-ecommerce {
    box-shadow: 0 1px 10px rgb(163, 163, 163);
    background-color: white;
}




.service-top {
    padding: 50px 0 100px 0;
}


.service-description {
    font-size: 20px;
    line-height: 30px;
}

.service-head {
    font-size: 35px;
    background-color: #00adb5;
    padding: 12px;
    width: fit-content;
    color: white;
}


.box-3 {
    height: fit-content;
    text-align: center;
    padding: 5%;
}

.box-3 p {
    font-size: 20px;
}

.contact-us-head {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-us-desc {
    font-size: 25px;
}

/* Header Button CSS */

#contact-button {
    width: 250px;
    margin: 0 auto;
    display: block;
    height: 55px;
    background: #272727;
    padding: 15px;
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 21px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}


#contact-button:hover {
    color: #fff;
    background-color: #00adb5;
    /* background-color: transparent; */
    text-shadow: nthree;
}

#contact-button:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

#contact-button:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: #fff !important;
    background: #00adb5;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

/* Header Button CSS - END */

/* Common End */


/* Social Start */

.social-sub-head {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.social-sub-desc {
    text-align: center;
    font-size: 20px;

}

.social-sub {
    background-color: #db476c;
    width: 100%;
    /* border-radius: 30px; */
    margin: 0 auto;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    color: white;
    padding: 10px;
    height: 200px;
    margin-top: 40px;
}

.social-sub:hover {
    /* box-shadow: 0 1px 10px rgb(163, 163, 163);  */
    border-left: 15px solid #ad002b;
    transition: 0.2s;
}

.social-contact:hover {
    background-color: #db476c !important;
}

/* .social-sub:hover>.social-sub-head{
    font-size: 30px;

} */


/* Social End */




/* eCommerce */

*,
*:before,
*:after {
    box-sizing: border-box;
}


.hide {
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    width: 1px;
}

.accordion {
    background: #fff;
    width: 100%;
    border: 1px solid #a7a7a7;
    list-style: none;
    padding-left: 0px;
}

.accordion-item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #a7a7a7;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-label {
    padding: 20px 0 20px 30px;
    width: 100%;
    display: block;
    font-size: 22px;
    color: #272727;
}

.accordion-label:hover {
    cursor: pointer;
}

.accordion-label:before {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    top: 22px;
    left: 12px;
    display: inline-block;
    border-left: 5px solid #272727;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

input[type=checkbox]:checked~.accordion-label:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-child {
    font-size: 20px;
    color: #272727;
    margin: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    height: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
}

input[type=checkbox]:checked~.accordion-child {
    color: #272727;
    margin: 0 -20px 15px -20px;
    background: lavender;
    padding: 30px;
    height: auto;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.ecommerce-contact:hover {
    background-color: lavender !important;
    color: black !important;
}



/* eCommerce End */





/* SEO Start */


/* Services Card */

.services-section {
    text-align: center;
    padding: 20px 0;
}

.service-card {
    height: 310px;
    width: 100%;
    border: rgba(163, 163, 163, 0.562) 1px solid;
    /* box-shadow: 0 1px 2px rgb(163, 163, 163); */

    margin: 10px auto;
    padding: 20px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}


.service-card h3 {
    font-weight: 100;
}

.service-card h2 {
    font-weight: 600;
}

#service-icon {
    font-size: 50px;
    color: #714091;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.service-card:hover {
    /* border-width:  5px ; */
    box-shadow: 0 1px 10px rgb(163, 163, 163);
    margin: 10px auto;
    padding: 20px;
    /* color:white; */
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.service-card:hover>#service-icon {
    font-size: 60px;
}

#service-middle-bar {
    width: 20px;
    margin: 0 auto;
    height: 2px;
    background: #714091;
    transition: width 0.3s;
    -webkit-transition: width 0.3s;
    /* Safari 3.1 to 6.0 */
}

.service-card:hover>#service-middle-bar {
    width: 100px;
    height: 5px;
}


.seo-contact:hover {
    background-color: #714091 !important;
}


/* Services Card End */









/* SEO End */




/* Web Develop Start */


#web-item-title {
    font-weight: 700;
    font-size: 20px;
    color: gold;
    background-color: #272727;
    padding: 7px;
    width: fit-content
}




.web-contact:hover {
    background-color: gold !important;
    color: black !important;
}

/* Web Develop End */




/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {


    .digi-logo {
        height: 45px;
        margin-bottom: 0;
    }

    #logo-anchor {
        display: block;
        float: none;
        text-align: center;

    }

    #main-title-nav {
        display: none;
    }

    #mobile-title-nav {
        display: block;
        margin: 10px 0 5px 0;
        text-align: center;
        font-size: 20px;
    }

    #social-icons-top {
        text-align: center;
        margin-top: 15px;
        float: none;
    }

    #mobile-titl-nav-wrapper {
        display: block;
        background-color: #00adb5;
        color: white;
        font-weight: bold;
        text-align: center;
    }

    .top-bar-edited i{
        margin: 0 10px !important; 
    }

}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}