/*row*/

div.service_row_1 {
    height: calc(100% - 98px)!important;
    margin: 0px!important;
    padding: 0px!important;
}


/*header modal*/

div.service_modal-header {
    height: 72px;
    text-align: center;
}


/* media query */

@media screen and (max-width:766px) {
    .navbar-inverse {
        top: 0px!important;
    }
    div.zoom-popup-container {
        overflow-y: scroll;
    }
    div.service_row_1 .col-4 {
        height: auto;
        width: 100%;
        margin-top: 30px;
        flex: 100%;
        max-width: 100%!important;
        float: none;
        overflow-y: hidden;
        overflow-x: auto;
    }
}


/* zoom animation popup style-------------------------------------*/

div.zoom-popup-container {
    position: fixed!important;
    top: 0px;
    left: 0px;
    padding: 0px!important;
    height: 100%;
    margin: 0px!important;
    width: 100%;
    max-width: 100%!important;
}


/* pop up loader animation */

div.loader {
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 1;
    z-index: 99999;
    visibility: hidden;
    animation-duration: 1.8s;
    animation-name: new-animation;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes new-animation {
    0% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
    }
}

div.loader img {
    width: 70px;
    z-index: 999999;
    height: 60px;
    animation-name: logo-animation;
    animation-duration: 1s;
    opacity: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

@keyframes logo-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(2);
    }
}

div.animation-door {
    width: 50%;
    position: fixed;
    animation-duration: 1.8s;
    height: 100%;
    z-index: 999;
    transition-timing-function: linear;
    animation-name: door;
    background-color: rgb(247, 178, 29);
    left: 0%;
}

div.animation-door-2 {
    width: 50%;
    position: fixed;
    left: 50%;
    animation-duration: 1.8s;
    height: 100%;
    z-index: 999;
    transition-timing-function: linear;
    animation-name: door-2;
    background-color: rgb(247, 178, 29);
}

@keyframes door {
    0% {
        visibility: visible;
        left: 0%;
    }
    100% {
        visibility: none;
        left: -50%;
    }
}

@keyframes door-2 {
    0% {
        visibility: visible;
        left: 50%
    }
    100% {
        visibility: none;
        left: 100%;
    }
}


/*loader 2 animation*/

div.loader-2-main {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 1;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background-color: white;
    animation-name: new-animation-2;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation-duration: 3s;
}

@keyframes new-animation-2 {
    0% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
    }
}

.loader-child-1 {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.loader-child-1 img {
    width: 130px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    animation: new-animation-3 2s 1 linear;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

@keyframes new-animation-3 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loader-child-2 {
    margin-top: 10px;
    text-align: center;
    -webkit-perspective: 700px;
    perspective: 700px;
}

.loader-child-2>span {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    font-family: "franklin gothic medium", sans-serif;
    display: inline-block;
    animation: flip 1.5s infinite linear;
    transform-origin: 0 70%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

@keyframes flip {
    35% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotatex(360deg);
    }
}

.loader-child-2>span:nth-child(even) {
    color: rgb(0, 0, 0);
}

.loader-child-2>span:nth-child(2) {
    animation-delay: 0.3s;
}

.loader-child-2>span:nth-child(3) {
    animation-delay: 0.6s;
}

.loader-child-2>span:nth-child(4) {
    animation-delay: 0.9s;
}

.loader-child-2>span:nth-child(5) {
    animation-delay: 1.2s;
}

.loader-child-2>span:nth-child(6) {
    animation-delay: 1.5s
}

.loader-child-2>span:nth-child(7) {
    animation-delay: 1.8s
}

div.loader-child-3 img {
    width: 110px;
    height: auto;
}

div.loader-child-3 img:nth-child(1) {
    position: fixed;
    top: -60%;
    left: 18%;
    animation: loader-icon-1 1s 1 ease-in-out;
}

@keyframes loader-icon-1 {
    0% {
        top: -100%;
        left: -10%;
    }
    100% {
        top: -60%;
        left: 18%;
    }
}

div.loader-child-3 img:nth-child(2) {
    position: fixed;
    top: 17%;
    left: 18%;
    animation: loader-icon-2 1s 1 ease-in-out;
}

@keyframes loader-icon-2 {
    0% {
        top: -40%;
        left: -10%;
    }
    100% {
        top: 16%;
        left: 18%;
    }
}

div.loader-child-3 img:nth-child(3) {
    position: fixed;
    top: 70%;
    left: 18%;
    animation: loader-icon-3 1s 1 ease-in-out;
}

@keyframes loader-icon-3 {
    0% {
        top: -20%;
        left: -10%;
    }
    100% {
        top: 70%;
        left: 18%;
    }
}

div.loader-child-3 img:nth-child(4) {
    position: fixed;
    top: 135%;
    left: 18%;
    animation: loader-icon-4 1s 1 ease-in-out;
}

@keyframes loader-icon-4 {
    0% {
        top: 0%;
        left: -10%;
    }
    100% {
        top: 135%;
        left: 18%;
    }
}

div.loader-child-3 img:nth-child(5) {
    position: fixed;
    top: 135%;
    left: 35%;
    animation: loader-icon-5 1s 1 ease-in-out;
}

@keyframes loader-icon-5 {
    0% {
        bottom: 0%;
        left: -10%;
    }
    100% {
        top: 135%;
        left: 35%;
    }
}

div.loader-child-3 img:nth-child(6) {
    position: fixed;
    bottom: -90%;
    left: 48%;
    animation: loader-icon-6 1s 1 ease-in-out;
}

@keyframes loader-icon-6 {
    0% {
        bottom: -150%;
        left: 50%;
    }
    100% {
        bottom: -90%;
        left: 48%;
    }
}

div.loader-child-3 img:nth-child(7) {
    position: fixed;
    width: 90px;
    top: 135%;
    left: 60%;
    animation: loader-icon-7 1s 1 ease-in-out;
}

@keyframes loader-icon-7 {
    0% {
        top: 0%;
        left: -10%;
    }
    100% {
        top: 135%;
        left: 60%;
    }
}

div.loader-child-3 img:nth-child(8) {
    position: fixed;
    top: -60%;
    right: 18%;
    animation: loader-icon-8 1s 1 ease-in-out;
}

@keyframes loader-icon-8 {
    0% {
        top: -100%;
        right: -10%;
    }
    100% {
        top: -60%;
        right: 18%;
    }
}

div.loader-child-3 img:nth-child(9) {
    position: fixed;
    top: 17%;
    right: 18%;
    animation: loader-icon-9 1s 1 ease-in-out;
}

@keyframes loader-icon-9 {
    0% {
        top: -40%;
        right: -10%;
    }
    100% {
        top: 16%;
        right: 18%;
    }
}

div.loader-child-3 img:nth-child(10) {
    width: 95px;
    position: fixed;
    top: 80%;
    right: 18%;
    animation: loader-icon-10 1s 1 ease-in-out;
}

@keyframes loader-icon-10 {
    0% {
        top: -20%;
        right: -10%;
    }
    100% {
        top: 80%;
        right: 18%;
    }
}

div.loader-child-3 img:nth-child(11) {
    position: fixed;
    top: 135%;
    right: 18%;
    animation: loader-icon-11 1s 1 ease-in-out;
}

@keyframes loader-icon-11 {
    0% {
        top: 0%;
        right: -10%;
    }
    100% {
        top: 135%;
        right: 18%;
    }
}

@media all and (max-width:991px) and (min-width:768px) {
    div.loader-child-3 img:nth-child(1) {
        position: fixed;
        top: -60%;
        left: 3%;
        animation: loader-icon-1 1s 1 ease-in-out;
    }
    @keyframes loader-icon-1 {
        0% {
            top: -100%;
            left: -10%;
        }
        100% {
            top: -60%;
            left: 3%;
        }
    }
    div.loader-child-3 img:nth-child(2) {
        position: fixed;
        top: 17%;
        left: 3%;
        animation: loader-icon-2 1s 1 ease-in-out;
    }
    @keyframes loader-icon-2 {
        0% {
            top: -40%;
            left: -10%;
        }
        100% {
            top: 16%;
            left: 3%;
        }
    }
    div.loader-child-3 img:nth-child(3) {
        position: fixed;
        top: 70%;
        left: 3%;
        animation: loader-icon-3 1s 1 ease-in-out;
    }
    @keyframes loader-icon-3 {
        0% {
            top: -20%;
            left: -10%;
        }
        100% {
            top: 70%;
            left: 3%;
        }
    }
    div.loader-child-3 img:nth-child(4) {
        position: fixed;
        top: 135%;
        left: 3%;
        animation: loader-icon-4 1s 1 ease-in-out;
    }
    @keyframes loader-icon-4 {
        0% {
            top: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 3%;
        }
    }
    div.loader-child-3 img:nth-child(5) {
        position: fixed;
        top: 135%;
        left: 26%;
        animation: loader-icon-5 1s 1 ease-in-out;
    }
    @keyframes loader-icon-5 {
        0% {
            bottom: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 26%;
        }
    }
    div.loader-child-3 img:nth-child(6) {
        position: fixed;
        bottom: -90%;
        left: 42%;
        animation: loader-icon-6 1s 1 ease-in-out;
    }
    @keyframes loader-icon-6 {
        0% {
            bottom: -150%;
            left: 50%;
        }
        100% {
            bottom: -90%;
            left: 42%;
        }
    }
    div.loader-child-3 img:nth-child(7) {
        position: fixed;
        width: 90px;
        top: 135%;
        left: 60%;
        animation: loader-icon-7 1s 1 ease-in-out;
    }
    @keyframes loader-icon-7 {
        0% {
            top: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 60%;
        }
    }
    div.loader-child-3 img:nth-child(8) {
        position: fixed;
        top: -60%;
        right: 6%;
        animation: loader-icon-8 1s 1 ease-in-out;
    }
    @keyframes loader-icon-8 {
        0% {
            top: -100%;
            right: -10%;
        }
        100% {
            top: -60%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(9) {
        position: fixed;
        top: 17%;
        right: 6%;
        animation: loader-icon-9 1s 1 ease-in-out;
    }
    @keyframes loader-icon-9 {
        0% {
            top: -40%;
            right: -10%;
        }
        100% {
            top: 16%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(10) {
        width: 95px;
        position: fixed;
        top: 80%;
        right: 6%;
        animation: loader-icon-10 1s 1 ease-in-out;
    }
    @keyframes loader-icon-10 {
        0% {
            top: -20%;
            right: -10%;
        }
        100% {
            top: 80%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(11) {
        position: fixed;
        top: 135%;
        right: 6%;
        animation: loader-icon-11 1s 1 ease-in-out;
    }
    @keyframes loader-icon-11 {
        0% {
            top: 0%;
            right: -10%;
        }
        100% {
            top: 135%;
            right: 6%;
        }
    }
    div.loader-child-3 {
        display: none;
    }
}

@media screen and (max-width:766px) {
    .loader-child-1 img {
        width: 79px;
    }
    .loader-child-2>span {
        font-size: 21px;
    }
    div.loader-child-3 img {
        width: 60px;
    }
    div.loader-child-3 img:nth-child(10) {
        width: 58px!important;
    }
    div.loader-child-3 img:nth-child(7) {
        width: 43px!important;
    }
    div.loader-child-3 img:nth-child(1) {
        position: fixed;
        top: -60%;
        left: 6%;
        animation: loader-icon-1 1s 1 ease-in-out;
    }
    @keyframes loader-icon-1 {
        0% {
            top: -100%;
            left: -10%;
        }
        100% {
            top: -60%;
            left: 6%;
        }
    }
    div.loader-child-3 img:nth-child(2) {
        position: fixed;
        top: 17%;
        left: 6%;
        animation: loader-icon-2 1s 1 ease-in-out;
    }
    @keyframes loader-icon-2 {
        0% {
            top: -40%;
            left: -10%;
        }
        100% {
            top: 16%;
            left: 6%;
        }
    }
    div.loader-child-3 img:nth-child(3) {
        position: fixed;
        top: 70%;
        left: 6%;
        animation: loader-icon-3 1s 1 ease-in-out;
    }
    @keyframes loader-icon-3 {
        0% {
            top: -20%;
            left: -10%;
        }
        100% {
            top: 70%;
            left: 6%;
        }
    }
    div.loader-child-3 img:nth-child(4) {
        position: fixed;
        top: 135%;
        left: 6%;
        animation: loader-icon-4 1s 1 ease-in-out;
    }
    @keyframes loader-icon-4 {
        0% {
            top: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 6%;
        }
    }
    div.loader-child-3 img:nth-child(5) {
        position: fixed;
        top: 135%;
        left: 26%;
        animation: loader-icon-5 1s 1 ease-in-out;
    }
    @keyframes loader-icon-5 {
        0% {
            bottom: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 26%;
        }
    }
    div.loader-child-3 img:nth-child(6) {
        position: fixed;
        bottom: -90%;
        left: 42%;
        animation: loader-icon-6 1s 1 ease-in-out;
    }
    @keyframes loader-icon-6 {
        0% {
            bottom: -150%;
            left: 50%;
        }
        100% {
            bottom: -90%;
            left: 42%;
        }
    }
    div.loader-child-3 img:nth-child(7) {
        position: fixed;
        width: 90px;
        top: 135%;
        left: 60%;
        animation: loader-icon-7 1s 1 ease-in-out;
    }
    @keyframes loader-icon-7 {
        0% {
            top: 0%;
            left: -10%;
        }
        100% {
            top: 135%;
            left: 60%;
        }
    }
    div.loader-child-3 img:nth-child(8) {
        position: fixed;
        top: -60%;
        right: 6%;
        animation: loader-icon-8 1s 1 ease-in-out;
    }
    @keyframes loader-icon-8 {
        0% {
            top: -100%;
            right: -10%;
        }
        100% {
            top: -60%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(9) {
        position: fixed;
        top: 17%;
        right: 6%;
        animation: loader-icon-9 1s 1 ease-in-out;
    }
    @keyframes loader-icon-9 {
        0% {
            top: -40%;
            right: -10%;
        }
        100% {
            top: 16%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(10) {
        width: 95px;
        position: fixed;
        top: 80%;
        right: 6%;
        animation: loader-icon-10 1s 1 ease-in-out;
    }
    @keyframes loader-icon-10 {
        0% {
            top: -20%;
            right: -10%;
        }
        100% {
            top: 80%;
            right: 6%;
        }
    }
    div.loader-child-3 img:nth-child(11) {
        position: fixed;
        top: 135%;
        right: 6%;
        animation: loader-icon-11 1s 1 ease-in-out;
    }
    @keyframes loader-icon-11 {
        0% {
            top: 0%;
            right: -10%;
        }
        100% {
            top: 135%;
            right: 6%;
        }
    }
    div.loader-child-3 {
        display: none;
    }
}


/*loader 2 animation end*/


/*service page tab sticky*/

@media screen and (max-width:991px) {
    nav.navbar.navbar-inverse {
        top: 0px!important;
    }
    div.service_col_1 h1 {
        font-size: 22px;
    }
    .freelancers-container.freelancers-grid-layout.margin-top-35 {
        margin-top: -15px!important;
    }
}

@media all and (max-width:991px) and (min-width:768px) {
    div.service_col_1 {
        padding-top: 25px!important;
        padding-bottom: 25px!important;
    }
    .freelancers-container.freelancers-grid-layout .freelancer {
        width: 45.2%!important;
        margin: 15px 15px 0px 15px!important;
    }
}

@media screen and (max-width:767px) {
    div.service_col_1 {
        padding-top: 25px!important;
        padding-bottom: 0px!important;
    }
    .freelancers-container.freelancers-grid-layout.margin-top-35 {
        margin-top: 15px!important;
    }
}


/*navbar position sticky*/

nav.navbar {
    z-index: 99;
    position: sticky!important;
    top: 80px!important;
}

nav.navbar .container-fluid {
    background-color: #f0a657;
}

nav.navbar .container-fluid .nav {
    display: flex;
    white-space: nowrap;
    overflow: auto;
}


/* service tab row and col*/

h1.service_header {
    text-align: center;
    color: white;
    font-weight: bold;
}

div.service_row_1 {
    box-shadow: 2px 2px 10px rgb(199, 195, 195);
    margin-top: 20px!important;
}

div.service_col_1 {
    padding-top: 50px;
    padding-bottom: 20px;
}

div.service_col_1 h1 {
    text-align: center;
    padding: 9px;
    word-break: break-all;
    border-radius: 15px;
    background-color: #f5cea3;
}

div.bookmark-offer {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 5px 10px 5px 10px;
    background-color: blue;
    color: white;
}

div.avatar_service_div {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 0px;
    padding: 0px;
}

div.avatar_service_div img {
    max-width: 66.7%;
    height: 100px;
    margin-right: 5px;
    margin-left: 5px;
    border: 1px solid rgb(207, 207, 207);
}

ul.service_details_ul {
    margin-left: 20px!important;
}


/*  service new tab */

div.service-row-new {
    box-shadow: 2px 2px 10px rgb(199 195 195);
    margin-top: 20px!important;
    margin: 0px;
    padding: 30px 30px;
}

div.service-col-new-1 h2 {
    margin: 0px;
    padding: 9px;
    background-color: #f5cea3;
    text-align: center;
    word-break: break-all;
    border-radius: 15px;
}

div.service-col-new-1 hr {
    margin-bottom: 0px;
}

div.service-col-new-2 {
    background-color: white;
    box-shadow: 2px 2px 10px #e6e5e5;
    border-radius: 15px;
    padding: 0px;
    margin: 6px;
    margin-top: 20px;
    max-width: 32%!important;
}

div.service-new-detail {
    padding: 10px;
    display: flex;
    align-items: center;
}

div.service-new-detail div:nth-of-type(1) {
    width: 25%;
    float: left;
    padding: 5px;
}

div.service-new-detail div:nth-of-type(2) {
    width: 60%;
    float: left;
    padding: 5px;
}

div.service-new-detail div:nth-of-type(2) h4 {
    padding: 0px;
    margin: 0px;
    font-weight: bold;
    color: black;
}

div.service-new-detail div:nth-of-type(2) p.service-new-price {
    padding: 0px;
    font-weight: bold;
    color: black;
}

div.service-new-detail div:nth-of-type(2) p.service-new-price span:first-child {
    text-decoration: line-through;
}

div.service-new-detail div:nth-of-type(3) {
    width: 25%;
    float: left;
}

div.service-new-detail div:nth-of-type(3) p {
    color: rgb(0, 0, 0);
    background-color: #f0a657;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.5s ease-in-out;
}

div.service-new-detail div:nth-of-type(3) p:hover {
    background-color: #d67f58;
    color: white;
}

div.service-new-detail div:nth-of-type(3) p:hover>span:nth-child(2) {
    display: none;
}

div.service-new-detail div:nth-of-type(3) p:hover>span:nth-child(3) {
    display: inline-block!important;
}

div.service-new-descr {
    width: 100%;
    height: auto;
    border-top: 1px solid lightgrey;
    padding: 6px;
    text-align: center;
}

@media screen and (min-width:768px) {
    div.service-new-detail {
        text-align: center;
        display: block!important;
    }
    div.service-new-detail div {
        width: 100%!important;
        float: none!important;
    }
}

@media all and (max-width:991px) and (min-width:768px) {
    div.service-row-new {
        padding: 30px 20px;
    }
    div.service-col-new-1 h2 {
        font-size: 22px;
    }
    div.service-col-new-2 {
        max-width: 48%!important;
    }
    div.service-col-new-2 {
        margin-top: 20px!important
    }
}

@media screen and (max-width:767px) {
    div.service-row-new {
        padding: 20px 15px;
    }
    div.service-col-new-1 {
        padding: 0px;
    }
    div.service-col-new-1 h2 {
        font-size: 22px;
    }
    div.service-col-new-2 {
        max-width: 100%!important;
        margin-top: 15px;
    }
    div.service-new-detail {
        padding: 5px;
    }
    div.service-new-detail div:nth-of-type(2) h4 {
        font-size: 14px;
    }
    div.service-new-detail div:nth-of-type(2) p {
        font-size: 12px;
    }
    div.service-new-detail div:nth-of-type(2) p.service-new-price {
        font-size: 14px;
        margin: -7px 0px;
    }
    div.service-new-detail div:nth-of-type(3) p {
        font-size: 14px;
    }
    div.service-new-descr {
        padding: 3px;
    }
    div.service-new-descr p {
        font-size: 14px;
    }
}


/*modal popup payment*/

div.modal {
    background-color: #0000007a;
}

div.modal-payment {
    bottom: 0px!important;
    left: 0px;
    right: 0px;
    position: absolute;
    width: 80%;
}

div.modal-body-payment {
    display: flex;
    justify-content: space-between;
}

div.modal-body-payment button {
    background-color: #f0a657;
    color: black;
    padding: 10px 10px 10px 10px;
}

@media screen and (max-width:430px) {
    div.modal-body-payment button:nth-child(1) {
        font-size: 14px;
        font-weight: bold;
        padding: 5px 4px;
    }
    div.modal-body-payment button:nth-child(2) {
        margin-left: 3px;
        font-size: 14px;
        font-weight: bold;
        padding: 5px;
    }
    div.modal-body-payment button:nth-child(2) #carttotal {
        margin-right: 4px!important;
    }
}


/* modal detail popup*/

div.modal-header-detail {
    background-color: #ffb25d;
}

div.modal-body-detail-row {
    padding: 30px;
}

div.modal-body-detail-row h2 {
    margin: 15px 0px 15px 0px;
    border-bottom: 1px solid grey!important;
    padding-bottom: 8px;
}

div.descr-service-modal {
    display: flex;
}

div.descr-service-modal img {
    width: 20%;
    height: auto;
    margin-right: 20px;
}

div.descr-service-modal p {
    margin: auto;
    padding: 0px;
}

div.descr-service-modal-2 {
    display: flex;
    flex-direction: row-reverse;
}

div.descr-service-modal-2 p {
    margin: auto;
    padding: 0px;
}

div.descr-service-modal-2 img {
    width: 20%;
    height: auto;
    margin-left: 20px;
}


/*service media query*/

@media screen and (min-width:992px) {}

@media all and (max-width:991px) and (min-width:768px) {}

@media screen and (max-width:766px) {
    div.descr-service-modal {
        display: table-row;
        text-align: center;
    }
    div.descr-service-modal img {
        width: 50%;
    }
    div.descr-service-modal p {
        margin-top: 10px;
    }
    div.descr-service-modal-2 {
        display: table-row;
        text-align: center;
    }
    div.descr-service-modal-2 img {
        width: 50%;
    }
    div.descr-service-modal-2 p {
        margin-top: 10px;
    }
}


/*service media query end*/


/* service page discount modal popup*/

div.modal-body-discount ul {
    list-style: none;
    padding: 0px!important;
    margin: 0px!important;
    color: black;
}

div.modal-body-discount ul li {
    justify-content: space-between;
    display: flex;
}

div.modal-footer-discount {
    justify-content: center;
    display: flex;
}

div.modal-footer-discount button {
    color: #000000;
    font-size: 18px;
    background-color: #f0a657!important;
}