/*Color Variables*/
/*@import url("https://fonts.googleapis.com/css?family=Fira+Sans+Condensed:400,500,600,700,700i|Roboto:300,400,500,700,900|Montserrat:400,500");*/
@import url('https://fonts.googleapis.com/css?family=Bree+Serif|Merriweather&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    /*    font-family: 'Poppins', 'sans-serif';
    */
    /*    font-family: 'Merriweather', serif;*/
    font-family: 'Bree Serif', serif;
}

.active {
    border-bottom: 2.5px solid #29b2a3;
}

#after-contact {
    color: white;
    background: #29b2a3;
    padding: 5px;
    margin-top: -10px;
    display: none;
}

#after-contact-err {
    color: white;
    background: red;
    padding: 5px;
    margin-top: -10px;
    display: none;
}

.loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#loading {
    width: 50%;
    height: 50%;
}

section h2 {
    color: #212529;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: .15rem;
}

h3 {
    color: #282d3b;
}

p {
    color: #383d4c;
}

.main-header {
    background-color: white !important;
    padding: .5rem 0px;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    height: 5rem;
}

.main-header .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
}

.main-header .logo img {
    width: 22%;
}

.main-header #logo_web {
    width: 25rem;
    margin-left: -8rem;
}

.main-header #logo_web_anim {
    width: 19rem;
    margin-left: -3.3rem !important;
}

.main-header #logo_web_anim svg {
    width: 81% !important;
}

.main-header .main-header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: 'Bree Serif', serif;
}

.main-header #navbarSupportedContent {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.main-header #navbarSupportedContent ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.main-header #navbarSupportedContent ul button {
    background-color: #29b2a3;
    border: #29b2a3;
}

.main-header #navbarSupportedContent ul li {
    color: #282d3b;
    text-transform: uppercase;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 1px;
    font-weight: bold;
    margin: 2px 1.3rem 0px 1.3rem;
}

.main-header #navbarSupportedContent ul li:after {
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid #282d3b;
    margin-top: 2px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.main-header #navbarSupportedContent ul li a {
    padding: 0px;
    color: #282d3b;
    width: 100%;
}

.main-header #navbarSupportedContent ul li:hover:after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
    pointer-events: auto;
}

.main-header #navbarSupportedContent ul .free-quote {
    background-color: #29b2a3;
    color: white !important;
    border-radius: 5px;
    padding: .25rem 0.75rem;
}

.inner {
    height: 100%;
}

.title h2 {
    color: #29b2a3;
    text-align: center;
}

#banner {
    position: relative;
    background-color: #29b2a3;
}

#banner .banner-wrapper .banner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 25%;
    width: 100%;
}

#banner .banner-wrapper .banner-text h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -5rem;
}

#banner .banner-wrapper .banner-text p {
    font-size: 1.3rem;
    letter-spacing: .09rem;
    font-weight: bold;
    text-transform: uppercase;
}

#banner .banner-wrapper .banner-text a.banner-btn {
    text-decoration: none;
    color: #383d4c;
    border: 2px solid #383d4c;
    text-transform: uppercase;
    padding: .5rem 1rem;
    font-weight: 500;
    -webkit-transition: ease .2s all;
    transition: ease .2s all;
    font-size: .8rem;
}

#banner .banner-wrapper .banner-text a.banner-btn:hover {
    background-color: #383d4c;
    color: #29b2a3;
}

#banner .banner-wrapper #banner-animation {
    position: absolute;
    top: 30%;
    width: 100%;
}

#banner .banner-wrapper img#click-doodle {
    width: 12%;
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 42%;
}

#banner .banner-wrapper .opacity {
    opacity: .5;
    -webkit-transition: ease-in .3s all;
    transition: ease-in .3s all;
}

section {
    font-family: 'Bree Serif', serif;
    padding-top: 7rem;
}

section .side-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section .side-content p {
    line-height: 1.75rem;
    font-size: 1.08em;
    color: #212121;
    font-family: 'Bree Serif', serif;
}

section .read-more {
    background-color: #29b2a3;
    border-radius: 1rem;
    color: black;
    padding: .25rem 1rem;
}

section .title {
    margin-bottom: 1rem;
}

.alternate {
    background-color: #f0ffef;
}

section#how-we-work .box {
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    border-radius: 8px;
}

section#how-we-work .box:hover {
    -webkit-box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 50px 0 rgba(0, 0, 0, 0.1);
}

section#how-we-work .box .box-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

section#how-we-work .box .box-content p {
    font-size: .95rem;
    margin-top: 1rem;
    color: #8b8e94;
}

section#how-we-work .box .box-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
}

section#how-we-work .box .box-image img {
    width: 100%;
}

section#how-we-work .box-wrapper {
    margin-bottom: 1rem;
}

section#how-we-work .box-wrapper .title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#how-we-work .box-wrapper .title-wrapper img {
    width: 25%;
    margin-right: 1rem;
}

section#how-we-work .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section#why-us .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section#why-us .service .text h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

section#why-us .service .text p {
    color: #8b8e94;
    font-size: 0.95rem;
    margin-bottom: 4rem;
}

section#why-us .service .icon {
    margin-bottom: 2rem;
}

section#why-us .service .icon svg {
    font-size: 4rem;
    color: #29b2a3;
}

section#pricing .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

section#pricing .al-pricing {
    font-family: 'Niramit', sans-serif;
    min-height: 100vh;
}

section#pricing .al-pricing .al-price-box {
    border-color: #d0d6da;
    position: relative;
    -webkit-transition: all .2s;
    transition: all .2s;
}

section#pricing .al-pricing .al-price-box:hover {
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

section#pricing .al-pricing .al-pricing-header {
    background: #fff;
    border: none;
}

section#pricing .al-pricing .al-pricing-header .al-pricing-title {
    background: #29b2a3;
    border-left: 3px solid #daeae4;
    border-bottom: 3px solid #daeae4;
    border-radius: 0 4px 0 12px;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    position: absolute;
    right: 0;
    top: 0;
}

section#pricing .al-pricing .al-pricing-header img {
    height: 130px;
    width: 190px;
}

section#pricing .al-pricing .al-pricing-price {
    color: #3c4858;
}

section#pricing .al-pricing-price .text-muted {
    font-size: 22px;
}

section#pricing .al-pricing-features li {
    border-bottom: 1px solid #f6f8f9;
    color: #333;
    padding: 12px 10px;
}

section#pricing .al-pricing-features li .fa-check {
    color: #29b2a3;
}

section#pricing .al-pricing-features li svg {
    margin-right: .5rem;
}

section#pricing .al-pricing .al-price-box .btn {
    background: #f0f2f5;
    border: none;
    color: #454f60;
    font-size: 18px;
    padding: 12px 20px;
}

section#pricing .al-pricing .al-price-box .btn:active,
section#pricing .al-pricing .al-price-box .btn:hover {
    background: #4dc494;
    border: none;
    color: #fff;
}

section#pricing .al-pricing .al-price-box .btn-primary {
    background: #29b2a3;
    color: #fff;
}

section#pricing .not-available {
    color: #adadad !important;
}

section#pricing .not-available .fa-times {
    color: #ec8a8a !important;
}

section#pricing .note {
    color: #adadad !important;
}

section#pricing .card {
    height: 100%;
}

section#contactus .contactus-wrapper {
    padding: 2rem 0px;
}

section#contactus .row.list-item {
    margin-bottom: 1.5rem;
}

section#contactus .form {
    -webkit-box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
    padding: 2rem 2rem;
}

section#contactus .form .sub-fields button {
    width: 100%;
    background-color: #29b2a3;
    border-color: #29b2a3;
    border-radius: 0px;
}

section#contactus .contact-us-list {
    height: 100%;
    background: url("../assests/ContactUs/background.svg") no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-size: contain;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 2rem 2rem;
}

section#contactus .contact-us-list .list-item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#contactus .contact-us-list h2 {
    text-align: center;
}

footer {
    background-color: #191c26;
    color: #8d8d93;
    width: 100%;
}

footer .container.text-center {
    border-bottom: 1px solid;
}

footer a {
    color: #8d8d93;
    text-transform: capitalize;
}

footer a:hover {
    text-decoration: none;
    color: #29b2a3;
}

footer h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: white;
}

footer .wrapper-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

footer .wrapper-logo img {
    width: 70%;
}

footer .input-group button {
    background-color: #2cb2a3;
    color: #191c25;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.sub-footer {
    margin-top: 0.5rem;
    padding: .9rem 0px;
    width: 100%;
}

.sub-footer .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.sub-footer .social-icons a {
    color: white;
    font-size: 1.15rem;
    margin: 0px 1rem;
    -webkit-transition: ease .3s all;
    transition: ease .3s all;
}

.sub-footer .social-icons a:hover {
    color: #29b2a3;
}

.sub-footer .title p {
    color: #8d8d93;
    margin: 0px;
    font-size: .95rem;
}

#toTop {
    position: fixed;
    z-index: 10;
    color: #fffefe;
    background-color: #29a89a;
    right: 1rem;
    bottom: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid white;
}

@media (max-width: 575.98px) {
    section {
        padding: 2rem 0rem 0rem 0rem;
        margin: 0px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem !important;
    }

    section .title {
        margin-bottom: 0.5rem !important;
    }

    #banner {
        margin-top: 2.5rem;
    }

    #banner .fa-redo {
        font-size: .8rem;
        right: 10px;
    }

    #banner .banner-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #banner .banner-wrapper #banner-animation {
        position: relative;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    #banner .banner-wrapper .banner-text {
        position: relative;
        margin-top: 2rem;
    }

    #banner .banner-wrapper .banner-text h1 {
        font-size: 1.7rem;
        margin-top: 0px;
    }

    #banner .banner-wrapper .banner-text p {
        font-size: 1rem;
        font-weight: 500;
    }

    #banner .banner-wrapper .banner-text a.banner-btn {
        padding: .3rem .8rem;
        -webkit-transition: ease .2s all;
        transition: ease .2s all;
        font-size: .7rem;
    }

    .main-header {
        height: auto;
        padding: 1rem 0px;
    }

    .main-header .logo a {
        width: 30%;
    }

    .main-header .logo a #logo_web {
        position: absolute;
        width: 75%;
        left: -18%;
    }

    .main-header #logo_web {
        margin-left: 0rem;
    }

    .main-header #logo_web_anim {
        display: block;
        position: absolute;
        width: 62%;
        left: 7%;
    }

    .main-header #navbarSupportedContent {
        margin-top: 1rem;
    }

    .main-header #navbarSupportedContent ul li {
        margin-bottom: .5rem;
    }

    .main-header button {
        margin-right: 1rem;
    }

    section#how-we-work .box {
        padding: 1.5rem 2rem;
    }

    section#how-we-work .box .box-content h3 {
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0px;
    }

    section#how-we-work .box .box-content p {
        font-size: .95rem;
        margin-top: .5rem;
    }

    section#how-we-work .box .box-image img {
        width: 17%;
    }

    section#why-us .service {
        margin-bottom: 2rem;
    }

    section#why-us .service .icon {
        margin-bottom: 1rem;
    }

    section#why-us .service .icon svg {
        font-size: 3rem;
    }

    section#why-us .service .text p {
        margin-bottom: 0px;
    }

    footer .sub-footer .social-icons {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: .5rem;
    }

    footer .sub-footer .title p {
        text-align: center;
    }
}



section#case-studies .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.clients {
    padding: 30px 10px 10px;
    /*    background-color: #efefef;*/
    border-radius: 8px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    border-style: none;
}

.client-row {
    padding-top: 30px;

}

.clients img {

    top: -44px;
    position: absolute;
    left: calc(52% - 46px);
    border: 10px solid white;
    border-radius: 100px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.1);
    border-style: none;
}

.startup_happy {
    padding-top: 10rem;
}

.user {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.hclient {
    color: #8b8e94;
}

@media only screen and (max-width: 767px) {
    .clients {
        margin-bottom: 25px;
    }

    .startup_happy {
        padding-top: 0rem;
    }

    .call-us h3 {

        margin-top: 10px;

    }

}

.call-us h3 {
    padding: 15px;
    text-align: center;
    color: #fff;
    margin-top: 40px;
    background-color: #29b2a3;
    border-radius: 5px;
}

.callno {
    color: #fff;
}
.callno:hover {
    color: #fff;
}

.contactcallno {
    color: #212529;
}
.contactcallno:hover {
    color: #212529;
}

.contactcallno1 {
    color: #8d8d93;
    text-transform: lowercase;
}
.contactcallno1:hover {
    color: #8d8d93;
    text-transform: lowercase;
}


