.mobile-animation {
    display: none;
}

.mobile-animation span {
    color: #ffffff;
    position: relative;
    display: block;
}

.mobile-animation .item {
    text-align: center;
    display: flex;
    justify-content: space-around;
    min-height: 60px;
}

.mobile-animation .item span:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    bottom: 17px;
    right: 0;
    left: 0;
    margin: 0 auto;
    /* outline-offset: 6px;
	outline: 1px solid #fff; */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    animation-name: bounce-zoom;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    /* transform: scale(0); */
}

.mobile-animation .item span:before {
    content: "";
    width: 24px;
    height: 24px;
    background: black;
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;

    animation-name: bounce-zoom;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    /* transform: scale(0); */
}

/* ------------------------------------------------------------------- */
.curve-section {
    position: relative;
    padding: 0;
    margin-bottom: 60px;
}

.curve-section h4 {
    text-align: left;
    margin-bottom: 100px;
    margin-top: 20px;
}

.curve-section svg {
    margin-top: 15px;
}

.curve-list {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    list-style: none;
    align-items: flex-end;
    /* justify-content: space-around; */
}

.curve-list li {
    font-size: 17px;
    position: relative;
    width: calc(100% / 7);
    text-align: center;
    padding: 0 5px;
}

.curve-list li span {
    display: block;
    color: #434343;
    line-height: 20px;
}

.curve-list li span {
    animation-name: bounce-2;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.curve-list li:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    bottom: -31px;
    right: 0;
    left: 0;
    margin: 0 auto;
    /* outline-offset: 6px;
		outline: 1px solid #fff; */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    animation-name: bounce-zoom;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    transform: scale(0);
}

.curve-list li:first-child:before,
.curve-list li:first-child:after {
    animation-delay: 1s;
}

.curve-list li:nth-child(2):before,
.curve-list li:nth-child(2):after {
    animation-delay: 1.5s;
}

.curve-list li:nth-child(3):before,
.curve-list li:nth-child(3):after {
    animation-delay: 2s;
}

.curve-list li:nth-child(4):before,
.curve-list li:nth-child(4):after {
    animation-delay: 2.5s;
}

.curve-list li:nth-child(5):before,
.curve-list li:nth-child(5):after {
    animation-delay: 3s;
}

.curve-list li:nth-child(6):before,
.curve-list li:nth-child(6):after {
    animation-delay: 3.5s;
}

.curve-list li:nth-child(7):before,
.curve-list li:nth-child(7):after {
    animation-delay: 4s;
}

.abt-sc-1 .container {
    padding: 0 16px;
}

.curve-list li:before {
    content: "";
    width: 24px;
    height: 24px;
    background: black;
    position: absolute;
    bottom: -38px;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    animation-name: bounce-zoom;
    animation-timing-function: ease;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    transform: scale(0);
    border: 1px solid #ffffff;
}

@keyframes bounce-2 {
    from {
        color: #434343;
    }

    to {
        color: #ffffff;
    }

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce-zoom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(.7);
    }

    100% {
        transform: scale(1);
    }
}

.arrow-service .serv-dt a {
    color: #ffffff;
}

.arrow-service .serv-dt a:hover {
    color: #ff0000;
}

.curve-list li:first-child {
    bottom: -38px;
    left: -13px;
}

.curve-list li:first-child span {
    animation-delay: 1s;
}

.curve-list li:nth-child(2) {
    bottom: -6px;
    left: 16px;
}

.curve-list li:nth-child(2) span {
    animation-delay: 1.5s;
}

.curve-list li:nth-child(3) {
    bottom: -14px;
    left: 27px;
}

.curve-list li:nth-child(3) span {
    animation-delay: 2s;
}

.curve-list li:nth-child(4) {
    bottom: -55px;
    left: 36px;
}

.curve-list li:nth-child(4) span {
    animation-delay: 2.5s;
}

.curve-list li:nth-child(5) {
    bottom: -77px;
    left: 28px;
}

.curve-list li:nth-child(5) span {
    animation-delay: 3s;
}

.curve-list li:nth-child(6) {
    bottom: -71px;
    left: 30px;
}

.curve-list li:nth-child(6) span {
    animation-delay: 3.5s;
}

.curve-list li:nth-child(7) {
    bottom: -39px;
    left: 6px;
}

.curve-list li:nth-child(7) span {
    animation-delay: 4s;
}

.cls-1 {

    fill: none;
    stroke-miterlimit: 10;
}

.cls-1 {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: dash 5s linear forwards;
    stroke: #ffffff;
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

.page-template-page-thankyou .thanks-msg h1 {
    color: #ffffff;
    bottom: 0;
}

.page-template-page-thankyou .thanks-msg {
    background-image: url(../images/blog-bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0;
}

.thanks-msg .btn-outline-2 {
    border-color: #fff;
    text-transform: initial;
}

section.page_not_found {
    background-image: url(../images/blog-bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0;
}


section.page_not_found .site-title {
    color: #fff;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 auto;
}

.thanks-msg {
    padding: 180px 0px !important;
}

.thanks-msg h2 {
    font-size: 50px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-bottom: 50px;
}

section.blog {
    background-image: url(../images/blog-bg-1.jpg);
}

/* 
.page-id-2839 .curve-list li:nth-child(2) {
    top: 9px;
}

.page-id-2839 .curve-list li:nth-child(5) {
    top: 76px;
}

.page-id-2839 .curve-list li:nth-child(6) {
    top: 73px;
}

.page-id-2983 .curve-list li:first-child {
    top: 35px;
}

.page-id-2983 .curve-list li:nth-child(2) {
    top: 7px;
}

.page-id-2983 .curve-list li:nth-child(3) {
    top: 12px;
}

.page-id-2983 .curve-list li:nth-child(4) {
    top: 51px;
}

.page-id-2983 .curve-list li:nth-child(6) {
    top: 52px;
}

.page-id-2981 .curve-list li:first-child {
    top: 41px;
}

.page-id-2981 .curve-list li:nth-child(2) {
    top: 6px;
}

.page-id-2981 .curve-list li:nth-child(3) {
    top: 23px;
}

.page-id-2981 .curve-list li:nth-child(4) {
    top: 72px;
}

.page-id-2981 .curve-list li:nth-child(5) {
    top: 75px;
}

.page-id-2981 .curve-list li:nth-child(6) {
    top: 33px;
}

.page-id-2990 .curve-list li:first-child {
    top: 33px;
}

.page-id-2990 .curve-list li:nth-child(2) {
    top: 4px;
}

.page-id-2990 .curve-list li:nth-child(3) {
    top: 35px;
}

.page-id-2990 .curve-list li:nth-child(4) {
    top: 77px;
}

.page-id-2990 .curve-list li:nth-child(5) {
    top: 53px;
}


.page-id-2985 .curve-list li:first-child {
    top: 41px;
}

.page-id-2985 .curve-list li:nth-child(2) {
    top: 6px;
}

.page-id-2985 .curve-list li:nth-child(3) {
    top: 29px;
}

.page-id-2985 .curve-list li:nth-child(4) {
    top: 73px;
}

.page-id-2985 .curve-list li:nth-child(6) {
    top: 50px;
}

.page-id-3131.curve-list li:first-child {
    top: 40px;
}

.page-id-3131 .curve-list li:first-child {
    top: 41px;
}

.page-id-3131 .curve-list li:nth-child(2) {
    top: 8px;
}

.page-id-3131 .curve-list li:nth-child(3) {
    top: 10px;
}

.page-id-3131 .curve-list li:nth-child(4) {
    top: 48px;
}

.page-id-3131 .curve-list li:nth-child(5) {
    top: 74px;
}

.page-id-3131 .curve-list li:nth-child(7) {
    top: 38px;
} */

.ftr #contact-form .col-md-12.text-right {
    text-align: left;
}

.wedo-text {
    font-family: 'Montserrat-Black' !important;
    color: transparent !important;
    -webkit-text-stroke: 1px #fff !important;
}

.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: -500px !important;
    z-index: 9;
    display: none !important;

}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.bottle-img .btl-1:nth-child(1) {
    -webkit-animation: move_3 4s ease-in-out infinite;
    -moz-animation: move_3 4s ease-in-out infinite;
    -ms-animation: move_3 4s ease-in-out infinite;
    -o-animation: move_3 4s ease-in-out infinite;
    animation: move_3 4s ease-in-out infinite;
}

.bottle-img .btl-1:nth-child(2) {
    -webkit-animation: move_1 4s ease-in-out infinite;
    -moz-animation: move_1 4s ease-in-out infinite;
    -ms-animation: move_1 4s ease-in-out infinite;
    -o-animation: move_1 4s ease-in-out infinite;
    animation: move_1 4s ease-in-out infinite;
}

.bottle-img .btl-1:nth-child(3) {
    -webkit-animation: move_2 4s ease-in-out infinite;
    -moz-animation: move_2 4s ease-in-out infinite;
    -ms-animation: move_2 4s ease-in-out infinite;
    -o-animation: move_2 4s ease-in-out infinite;
    animation: move_2 4s ease-in-out infinite;
}




@-webkit-keyframes move_1 {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(-6deg);
    }

    50% {
        -webkit-transform: translateY(-20px) rotate(8deg);
    }
}

@-moz-keyframes move_1 {

    0%,
    100% {
        -moz-transform: translateY(0) rotate(-6deg);
    }

    50% {
        -moz-transform: translateY(-20px) rotate(8deg);
    }
}

@-o-keyframes move_1 {

    0%,
    100% {
        -o-transform: translateY(0) rotate(-6deg);
    }

    50% {
        -o-transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes move_1 {

    0%,
    100% {
        transform: translateY(0) rotate(-6deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}



/* cloud 2 5*/
@-webkit-keyframes move_2 {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(6deg);
    }

    50% {
        -webkit-transform: translateY(-20px) rotate(-8deg);
    }
}

@-moz-keyframes move_2 {

    0%,
    100% {
        -moz-transform: translateY(0) rotate(6deg);
    }

    50% {
        -moz-transform: translateY(-20px) rotate(-8deg);
    }
}

@-o-keyframes move_2 {

    0%,
    100% {
        -o-transform: translateY(0) rotate(6deg);
    }

    50% {
        -o-transform: translateY(-20px) rotate(-8deg);
    }
}

@keyframes move_2 {

    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(-20px) rotate(-8deg);
    }
}


@-webkit-keyframes move_3 {

    0%,
    100% {
        -webkit-transform: translate(0, -10px) rotate(6deg);
    }

    50% {
        -webkit-transform: translate(-20px, 25px) rotate(-8deg);
    }
}

@-moz-keyframes move_3 {

    0%,
    100% {
        -moz-transform: translate(0, -10px) rotate(6deg);
    }

    50% {
        -moz-transform: translate(-20px, 25px) rotate(-8deg);
    }
}

@-o-keyframes move_3 {

    0%,
    100% {
        -o-transform: translate(0, -10px) rotate(6deg);
    }

    50% {
        -o-transform: translate(-20px, 25px) rotate(-8deg);
    }
}

@keyframes move_3 {

    0%,
    100% {
        transform: translate(0, -10px) rotate(6deg);
    }

    50% {
        transform: translate(-20px, 25px) rotate(-8deg);
    }
}


.page-template-page-made .portfolio {
    padding-top: 100px;
}

.page-template-page-made #navbar {
    display: none !important;
}

.page-template-mbdesign .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    background-image: url(../images/work-left-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #242424;
    position: absolute;
    border-radius: 50%;
    background-size: 30px;
    left: 15px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

.testimonial_slider .owl-nav {
    display: none !important;
}

.page-template-mbdesign .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background-image: url(../images/work-right-arrow-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #242424;
    position: absolute;
    border-radius: 50%;
    background-size: 30px;
    right: 15px;
    top: 45%;
    z-index: 99;
    font-size: 0px;
}

.page-template-mbdesign .owl-rtl .owl-nav button.owl-next {
    right: auto;
    left: 15px;
    background-image: url(../images/work-left-arrow-1.png);
}

.page-template-mbdesign .owl-rtl .owl-nav button.owl-prev {
    left: auto;
    right: 15px;
    background-image: url(../images/work-right-arrow-1.png);
}

.error-404 {
    color: #fff;
    padding-top: 60px;
        padding-bottom: 60px;
}

.error-404 .btn-outline-2{
        margin-top: 30px;
            display: inline-block;
}

@media (min-width: 1441px) {
    .arrow-service {
        padding-top: 90px;
    }

    .page_not_found {
        min-height: 350px;
    }
}

@media (min-width: 1200px) {
    .page-template-page-brand-strategy .cnt-abt .fs-120 {
        font-size: 70px;
    }

    .page-template-page-brand-strategy .cnt-abt p {
        font-size: 20px;
    }
}

@media (max-width: 1440px) {
    .curve-section svg {
        margin-top: 20px;
    }

    .page_not_found {
        min-height: 500px;
    }

    .curve-list li:nth-child(3) {
        bottom: -18px;
    }

    .curve-list li:nth-child(5) {
        bottom: -83px;
    }

    .curve-list li:nth-child(6) {
        bottom: -76px;
    }

    .curve-list li:nth-child(2) {
        bottom: -12px;
    }

    .curve-list li:nth-child(7) {
        bottom: -43px;
    }

    .curve-list li:nth-child(4) {
        bottom: -61px;
    }

    .curve-list li:first-child {
        bottom: -43px;
    }


}

@media (max-width: 1366px) {
    .curve-list li {
        font-size: 14px;
    }

    .curve-list li:nth-child(4) {
        bottom: -55px;
    }

    .curve-list li:nth-child(6) {
        bottom: -67px;
    }

    .curve-list li:nth-child(7) {
        bottom: -40px;
    }

    .curve-list li:nth-child(5) {
        bottom: -74px;
    }

    .curve-list li:first-child {
        bottom: -38px;
    }
}

@media (max-width: 1200px) {
    .curve-list li:nth-child(7) {
        bottom: -40px;
    }

    .curve-list li:nth-child(6) {
        bottom: -68px;
    }

    .curve-list li {
        font-size: 12px;
    }

    .curve-list li:nth-child(5) {
        bottom: -73px;
        left: 30px;
    }

    .abt-sc-1 .container,
    .arrow-service .container {
        padding: 0 16px;
    }
}

.mobile-animation .owl-carousel .owl-item:last-child {
    background: red;
}

@media (max-width: 900px) {
    .curve-list li {
        font-size: 11px;
    }

    .curve-section h4 {
        text-align: center;
        margin-bottom: 16px;
        font-size: 22px;
    }

    .page-template-page-thankyou .thanks-msg h1 {
        font-size: 50px;
    }

    .thanks-msg h2 {
        font-size: 26px;
        letter-spacing: 0;
    }

    .thanks-msg {
        padding: 114px 0px !important;
    }

    .error404 .page_not_found h1 {
        font-size: 110px;
        bottom: 0;
    }
}

@media (max-width: 1024px) {
    .curve-section svg {
        margin-bottom: 40px;
        margin-top: 15px;
    }

    .curve-list li:first-child {
        bottom: -27px;
    }

    .curve-list li:nth-child(4) {
        bottom: -44px;
    }

    .curve-list li:nth-child(2) {
        bottom: -6px;
    }

    .curve-list li:nth-child(3) {
        bottom: -14px;
    }

    .curve-list li:nth-child(5) {
        bottom: -58px;
    }

    .curve-list li:nth-child(6) {
        bottom: -51px;
    }

    .curve-list li:nth-child(7) {
        bottom: -30px;
    }

    section.mobile-animation {
        padding: 0;
    }

    .mobile-animation span:empty {
        display: none;
    }

    .curve-list li span {
        line-height: 15px;
    }
}

@media (max-width: 820px) {
    .curve-list li:first-child {
        bottom: -20px;
    }

    .curve-list li:nth-child(6) {
        bottom: -40px;
    }

    .curve-list li:nth-child(7) {
        bottom: -24px;
    }

    .curve-list li:nth-child(5) {
        bottom: -45px;
    }

    .error404 .page_not_found h1 {
        line-height: 1;
        bottom: 0;
    }

    .grecaptcha-badge {
        left: auto !important;
        right: 15px !important;
        bottom: 90px !important;
    }

    .grecaptcha-badge:hover {
        width: 240px !important;
    }

    .page-template-page-made .portfolio {
        padding-top: 50px;
    }

}

@media (max-width: 767px) {
    .mobile-animation {
        display: block;
    }

    .curve-section {
        display: none;
    }

    .mobile-animation svg {
        margin-top: -51px;
        width: 161%;
    }

    .mobile-animation span:not(+span) {
        margin-top: -30px;
    }

    .page-template-page-thankyou .thanks-msg h1 {
        font-size: 30px;
    }

    .thanks-msg h2 {
        font-size: 16px !important;
        margin-bottom: 20px;
    }

    .thanks-msg .btn-outline-2 {
        display: block;
        max-width: 200px;
        margin: 0 auto;
    }

    @-webkit-keyframes move_3 {

        0%,
        100% {
            -webkit-transform: translate(0, -10px) rotate(6eg);
        }

        50% {
            -webkit-transform: translate(-20px, 10px) rotate(-8deg);
        }
    }

    @-moz-keyframes move_3 {

        0%,
        100% {
            -moz-transform: translate(0, -10px) rotate(6eg);
        }

        50% {
            -moz-transform: translate(-20px, 10px) rotate(-8deg);
        }
    }

    @-o-keyframes move_3 {

        0%,
        100% {
            -o-transform: translate(0, -10px) rotate(6eg);
        }

        50% {
            -o-transform: translate(-20px, 10px) rotate(-8deg);
        }
    }

    @--keyframes move_3 {

        0%,
        100% {
            transform: translate(0, -10px) rotate(6eg);
        }

        50% {
            transform: translate(-20px, 10px) rotate(-8deg);
        }
    }
}



/* updation by sijith */
.description-box p > a{
    color: #ababab;
}