body {
    font-size: 1rem;
}

.header-bar {
    /* overflow: hidden; */
    background-color: white;
    position: fixed;
    top: 0px;
    left: 0%;
    width: 100%;
    z-index: 98;
    padding: 15px 10px;
}
    .logo-container {
        display: inline-block;
        margin-top: 3px;
    }
        /*
        .tagline {
            color: white;
            line-height: 35px;
        }
    .post-project-btn {
        background-color: #ffc107;
        color: black;
        padding: 10px;
        line-height: 31px;
    }
        .post-project-btn:hover {
            text-decoration: none;
            color: #3e3e3e;
        }
        */
    .mobile-only-nav-toggle {
        display: none;
    }
    .hamburger-icon {
        font-size: 30px;
        cursor: pointer;
        color: black;
    }
    .navbar-item {
        color: black;
    }
        .navbar-item:hover {
            color: gray;
            text-decoration: none;
        }
    .navbar-item-dropdown {
        position: relative;
        display: inline-block;
    }
    .navbar-item-dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 160px;
        padding-top: 12px;
    }
    .navbar-item-dropdown-content a {
        color: black;
        padding: 12px;
        text-decoration: none;
        display: block;
    }
        .navbar-item-dropdown-content a:hover {
            color: gray;
            text-decoration: none;
        }
    .navbar-item-dropdown:hover .navbar-item-dropdown-content {
        display: block;
    }
    .navbar-arrow-down {
      border: solid black;
      border-width: 0 2px 2px 0;
      display: inline-block;
      padding: 3px;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      position: relative;
      top: -3px;
      left: 3px;
    }

.sub-header-bar {
    position: fixed;
    top: 51px;
    background-color: transparent;
    left: 0%;
    width: 100%;
    z-index: 98;
    padding: 0px 10px;
}
    .sub-header-bar a {
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
    }
        .sub-header-bar a:hover, .sub-header-bar a:focus {
            color: #b9b6b6;
        }
    .nav-link {
        display: block;
        padding: .5rem 2rem .5rem 0;
    }
    
.back-to-top {
    background: none;
    margin: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 100;
    display: none;
    text-decoration: none;
    color: #ffc107;
}
    .back-to-top:hover {
        color: #3e3e3e;
    }
    .back-to-top i {
      font-size: 50px;
    }

.footer {
    /* background-color: #28689a;
    background: rgba(39,62,84,0.95);
    color: white; */
    background-color: white;
    border-top: 1px #c7c6c6 dashed;
    padding: 20px 0;
    font-size: small;
}
    .footer a.footer-social-media-icon {
        color: gray;
        display: inline-block;
        margin: 10px;
    }

    .footer-nav > li, .footer-nav > li > a {
        list-style-type: none;
        padding: 3px 0px;
        color: black;
    }
    .footer-nav > li > a:hover {
        text-decoration: none;
        color: gray;
    }
    .footer-row {
        margin: 0 auto;
    }

.copyright {
    color: black;
    position: absolute;
    bottom: 0;
    right: 15px;
}

.big-text {
    font-family: 'Lato', sans-serif;
    font-size: 2.1rem;
}

.big-text-blue {
    font-family: 'Lato', sans-serif;
    color: #28689a;
}

.object-fit-fill {
    object-fit: fill !important;
}

.cursor-pointer {
    cursor: pointer;
}

.z-index-90 {
    z-index:  90 !important;
}

.read-more {
    color: #ffc107;
}

.show {
    display: block !important;
}

.clear {
  clear: both;
}
    
.no-side-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.no-margin {
    margin: 0px !important;
}

.top-margin-100 {
    margin-top: 100px;
}

.top-margin-200 {
    margin-top: 200px;
}

.bottom-margin-100 {
    margin-bottom: 100px;
}

.bottom-margin-200 {
    margin-bottom: 200px;
}

.half-width-col {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.lh-36 {
    line-height: 36px;
}

.position-top-50 {
    top:  50px;
}

.warning-text {
    color: red;
}

.bolded-text {
    font-weight: bold;
}

.text-italicized {
    font-style: italic;
}

.text-spaced {
    letter-spacing: 5px;
}

.text-underlined {
    text-decoration: underline;
}

.grayed-out {
    color: gray;
}

.no-left-border {
    border-left: 0 !important;
}

.no-right-border {
    border-right: 0 !important;
}

.no-borders {
    border: 0 !important;
}

.nav-overlay {
    height: 0%;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
    padding-left: 25px;
}
    .nav-overlay-content {
        position: relative;
        top: 20%;
        width: 100%;
        text-align: right;
    }
        .nav-overlay-content hr {
            border-top: 1px solid #818181;
        }
    .nav-overlay a {
        padding: 8px;
        text-decoration: none;
        font-size: 15px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }
        .nav-overlay a:hover, .nav-overlay a:focus {
            color: #f1f1f1;
        }
    .nav-overlay .nav-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 60px;
    }

.full-screen-height {
    height:  100vh;
}

.content-left-alignment {
    margin-left: 2em;
}

.light-hor-divider {
    margin-left: 5.5em;
    max-width: 90%;
}

.white-bg-section {
    background-color: white;
}

.short-hor-divider {
    width: 50px;
    border-bottom: 5px solid #28689a;
}

.orange-short-hor-divider {
    width: 50px;
    border-bottom: 5px solid #ffc107;
}

.white-box-with-shadow {
    box-shadow: 0 10px 50px rgb(0 0 0 / 8%), 0 13px 45px rgb(0 0 0 / 8%);
    border-radius: 10px;
}

.non-clickable-link {
    pointer-events: none;
   cursor: default;
}

.object-top {
    object-position: top;
}

/*********** SCREEN SIZES ADJUSTMENTS ***********/

@media screen and (max-height: 450px) {
  .nav-overlay {overflow-y: auto;}
  .nav-overlay a {font-size: 20px}
  .nav-overlay .nav-close-btn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media(max-width:991px) {
    .mobile-only-border {
        border-bottom: 1px solid #d3e0e9;
    }
    .mobile-only-spacing-top {
        padding-top: 25px;
    }
    .mobile-only-mb-20 {
        margin-bottom: 20px;
    }
    /*
    .about-value-points img {
        width: 25px !important;
    }
    .about-value-points div {
        padding: 0px !important;
    }
    */
}

@media(max-width:767px) {
    .mobile-only-nav-toggle {
        display: block;
    }
    .navbar-item {
        display: none;
    }
    .footer {
        padding-left: 31px !important;
    }
    .footer-col {
        text-align: left !important;
    }
    .copyright {
        position: relative;
    }
    .mobile-only-border-sm {
        border-bottom: 1px solid #d3e0e9;
    }
    .mobile-only-spacing-top-sm {
        padding-top: 25px;
    }
    .mobile-only-mb-20-sm {
        margin-bottom: 20px;
    }
    .mobile-only-mb-10-sm {
        margin-bottom: 10px;
    }
    .mobile-only-mb-5-sm {
        margin-bottom: 5px;
    }
    .mobile-only-default-position {
        top: 0 !important;
    }
    .mobile-only-no-spacing {
        margin: 0 !important;
        padding: 0 !important;
    }
    .tagline {
        display: none;
    }
    .post-project-btn {
        background-color: #ffc107;
        line-height: 20px;
        margin-right: 10px;
    }
    .sub-header-bar a {
        font-size: 10px;
        padding: 0.5em;
    }
    .fact-img-container img {
        display: block;
        width: 100% !important;
    }
    .content-left-alignment, .page-header-left-alignment, .light-hor-divider {
        margin-left: 0px !important;
    }
    .page-header-section-container {
        font-size: 12px;
    }
    .ml-5 {
        margin-left: 1rem !important;
        padding-right: 30px !important;
    }
    .statement-section, .about-full-section {
        min-height: 100vh;
        height: auto !important;
    }
    .no-display {
        display: none !important;
    }
    /*
    .testimonial-container {
        width: 50% !important;
    }
        .testimonial {
            background-color: transparent !important;
            border: 0px !important;
            padding: 0px !important;
            min-height: 90px !important;
        }
            .testimonal-content {
                display: none;
            }
    */

    .client-list-item img {
        padding: 0px;
        max-width: 90% !important;
        max-height: 30px !important;
    }

    #mobile-only-pricing-section {
        display: block !important;
    }

    .each-of-our-work-container {
        margin-left: -25px;
    }
}

@media (min-aspect-ratio: 16/9) {
    #home-landing-video {
        height: 300% !important;
        top: -100% !important;
    }
}

@media (max-aspect-ratio: 16/9) {
    #home-landing-video {
        width: 300% !important;
        left: -100% !important;
    }
}

/*********** PAGE HEADERS ***********/

.page-header-section {
    /* width: 100vw; */
    background-position: bottom center;
    background-size: cover;
    margin-top: 81px;
}
    .page-header-section-overlay {
        background: rgba(39,62,84,0.95);
        overflow: hidden;
        width: 100%;
        height: 100%;
        z-index: 2;
        padding-bottom: 100px;
    }
        .page-header-section-container {
            color: white;
            padding-top: 92px;
            min-height: 336px;
        }

.page-header-left-alignment {
    margin-left: 4.5em;
}

/*********** HOME ***********/

.home-header-section {
    background-image: url('../storage/app/public/home-bg.jpg');
    background-position: center center;
}

.animated-big-number-counter, .animated-small-number-counter, .animated-number-counter-operator {
    line-height: 100px;
    color: black;
    font-size: 50px;
}

.statement-section {
    background-color: white;
}
    .statement-section-content {
        width: calc(100vw - 3rem);
    }
    /*
    .statement-sub-section {
        padding-left: 0 !important;
    }
        .statement-sub-section h4 {
            margin-bottom: 0px;
        }
        */

.statement-section-container {
    padding-right: 25px;
}
    .statement-section-image-container {
        position: relative;
        min-height: 225px;
        min-width: 340px;
        max-height: 100%;
        max-width: 100%;
    }
        .statement-section-image {
            opacity: 1;
            display: block;
            height: 225px;
            width: 340px;
            max-height: 100%;
            max-width: 100%;
            backface-visibility: hidden;
            object-fit: cover;
            border-radius: 15px;
            -webkit-filter: brightness(50%);
            -moz-filter: brightness(50%);
            -o-filter: brightness(50%);
            -ms-filter: brightness(50%);
            filter: brightness(50%);
        }
        .statement-section-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            text-align: center;
            width: 75%;
            color: white;
        }

.home-why-coleegs-section a {
    color: black;
}
    .home-why-coleegs-sub-section {
        text-align: center;
    }
    .home-why-coleegs-sub-section img {
        width: 100%;
        max-width: 100px;
        transition: transform .2s;
    }
    .home-why-coleegs-sub-section img:hover {
      transform: scale(1.1);
    }

/*
.facts-section {
    background-color: white;
}
.facts-section {
    padding: 50px 0px;
    background-color: white;
}
    .fact-img-limitation {
        display: block;
        overflow: hidden;
    }
    .fact-img-container img {
        display: block;
        margin: 0;
    }
        .mobile-workforce-img img {
            width: 60%;
        }
        .future-of-work-img {
            margin-top: 62px;
        }
            .future-of-work-img img {
                width: 80%;
            }
    .future-of-work-col {
        max-width: 110px;
    }
*/

.background-medium-sized-img-right {
    /* left: -20%;
    position: absolute; */
    max-width: 40vw;
}

.background-medium-sized-img-left {
    /* right: -20%;
    position: absolute; */
    max-width: 40vw;
}

.home-borderless-pr-container {
    background-image: url('../storage/app/public/home-no-borders.jpg');
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
}

.home-borderless-pr-text-content {
    width: 50%;
    margin: 0 auto;
}
    
.testimonials-section {
    position: relative;
    z-index:1;
    min-height: 100vh;
}
    .testimonials-section .swiper-container {
        padding-bottom: 35px;
    }
    .testimonal-row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-direction: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
        .testimonial-container {
            padding: 10px;
        }
            .testimonial {
                -webkit-box-align: center;
                -webkit-align-items: center;
                -ms-flex-align: center;
                align-items: center;
                background: #fff;
                border-radius: 4px;
                border: 1px solid #DADFE2;
                margin-bottom: 0px;
                padding: 1.5em;
                min-height: 350px;
            }
                .testimonial-image-container {
                    min-height: 90px;
                    margin: 20px 0;
                }
                    .testimonial-image {
                        display: block;
                        max-width: 90px;
                        max-height: 40px;
                        /* margin: 0px auto; */
                        -webkit-align-self: center;
                        -ms-flex-item-align: center;
                        -ms-align-self: center;
                        align-self: center;
                    }
                .testimonal-content {
                    -ms-flex: 1;
                    -webkit-flex: 1;
                    flex: 1;
                }
                    .testimonal-quote {
                        font-size: 1em;
                    }
                    .testimonal-name {
                        color: #969EA2;
                        font-size: 1em;
                        font-weight: 400;
                        margin-bottom: 0;
                        padding: 0;
                    }

.home-contact-section {
    padding: 50px 50px 50px 0px;
    background-color: white;
}

/*********** SERVICES ***********/

.content-header-section {
    background-image: url('../storage/app/public/content.jpg');
}

.tech-header-section {
    background-image: url('../storage/app/public/development.jpg');
}

.human-resources-header-section {
    background-image: url('../storage/app/public/human-resources.jpg');
}

.public-relations-header-section {
    background-image: url('../storage/app/public/public-relations.jpg');
}

.marketing-header-section {
    background-image: url('../storage/app/public/marketing.jpg');
}

.service-capabilities {
    margin-top: 40px;
}
    .service-capabilities ul li {
        list-style: square;
    }

.services-clients-section {
    position: relative;
    z-index:1;
    height: 100vh;
    background-color: white;
}
    .client-list-item {
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
        .client-list-item img {
            filter: gray; /* IE6-9 */
            -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
            filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
            opacity: 0.5;
            max-height: 60px;
            max-width: 150px;
        }
        .client-list-item-no-spacing-img img {
            filter: gray; /* IE6-9 */
            -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
            filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
            opacity: 0.5;
            max-height: 30px;
            max-width: 150px;
        }
        .client-list-item-max-height-40-img {
            max-height: 40px !important;
        }
        .client-list-item-max-height-50-img {
            max-height: 50px !important;
        }
        .client-list-item-max-height-80-img {
            max-height: 80px !important;
        }
        .client-list-item-max-height-100-img {
            max-height: 100px !important;
        }
        .client-list-item-max-width-200-img {
            max-width: 200px !important;
        }

/*
.tech-services-filter-container {
}
    .tech-services-btn {
        background-color: transparent;
        cursor:pointer;
        border: 1px solid black;
        -webkit-transition:all 0.1s ease-in-out;
        -moz-transition:all 0.1s ease-in-out;
        -o-transition:all 0.1s ease-in-out;
        -ms-transition:all 0.1s ease-in-out;
        transition:all 0.1s ease-in-out;
    }
    .tech-services-btn:hover {
        border: 1px solid gold;
    }

.tech-specialist-profile-container {
    display: none;
}

.services-specialist-profile-container {
    padding: 10px;
}
    .services-specialist-profile {
        border-left: 15px solid #28689a;
        background-color: white;
        padding: 3em 3em 2.1em;
        margin: 5px 0px;
        box-shadow: 0 0 1em rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
        .services-specialist-profile:hover {
            -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
            transform: scale(1.1);
        }
        .services-specialist-profile-function {
            font-weight: bold;
        }
        .services-specialist-profile-experience {
            color: #ccc;
        }
        .services-specialist-profile-specialty-header {
            color: #999;
        }
        .services-specialist-profile-specialty-list {
            color: #999;
        }
        .services-specialist-profile-quote, .services-specialist-profile-prompt-btn, .services-specialist-profile-form {
            display: none;
            transition: all 0.3s ease;
        }
        .services-specialist-profile:hover .services-specialist-profile-quote, .services-specialist-profile:hover .services-specialist-profile-prompt-btn { 
            display: block;
        }
        blockquote.services-specialist-profile-quote {
            display: block;
            border-width: 2px 0;
            border-style: solid;
            border-color: #ccc;
            padding: 1.5em 0 0.5em;
            margin: 1.5em 0;
            position: relative;
            font-size: 0.7rem;
        }
        blockquote.services-specialist-profile-quote:before {
            content: '\201C';
            position: absolute;
            top: 0em;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            width: 3rem;
            height: 2rem;
            font: 6em/1.08em 'PT Sans', sans-serif;
            color: #ccc;
            text-align: center;
        }
*/

.services-article-container {
    padding: 15px;
}
    .services-article {
        /*
        border-left: 10px solid #ffc107;
        background-color: white;
        padding: 2em 2em 1.1em;
        margin: 5px 0px;
        box-shadow: 0 0 1em rgba(0,0,0,0.1);
        */
    }
        .services-article img {
            width: 100%;
        }
        .services-article a {
            color: inherit;
        }
            .services-article a:hover {
                text-decoration: none;
            }

/*********** ABOUT US ***********/

.about-header-section {
    background-image: url('../storage/app/public/about-us.jpg');
    background-position: center center;
}

.about-full-section {
    position: relative;
    z-index:1;
    height: 100vh;
}
.about-section-1 {
    background-color: white;
}
.about-section-1 img {
    width: 100%;
    max-width: 500px;
}

.about-our-story-section {
    position: relative;
    background-color: white;
    width: 100vw;
}
.about-our-story-section:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    background-image: url('../storage/app/public/about-us-our-story-bg.jpg');
    background-repeat: no-repeat;
    /* background-position: 50% 10%;
    background-attachment: fixed; */
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}

.about-section-1-part-1 {
    position: relative;
    /* background: #f5f8fa; */
    background-color: white;
    width: 100vw;
    /* min-height: calc(100vh - 100px);
    height: auto; */
}
.about-section-1-part-1:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    background-image: url('../storage/app/public/making-project-services-borderless.png');
    background-repeat: no-repeat;
    background-position: 50% 10%;
    -ms-background-size: contain;
    -o-background-size: contain;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
}

.about-section-2 {
    background-color: white;    
}
/*
.about-value-points img {
    width: 50px;
}
*/

.about-operating-in-countries-list li {
    float:left;
    margin:0 10px 10px 0;
    width: 200px;
}

.manual-position-top-40 {
    position: relative;
    top: -100px;
}

.future-pointers-box {
    padding-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 13px 24px 3px hsla(0,0%,58.8%,.25);
}
    .future-pointers-box img {
        width: 20%; 
        display: block; 
        margin: 0 auto 20px auto;
    }

.capabilities-section img {
    width: 50%;
    max-width: 60px;
}

.about-our-press-publication-list-item {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
    .about-our-press-publication-list-item img {
        max-height: 90px;
        max-width: 225px;
    }

/*********** TECH PLATFORM ***********/

.platform-header-section {
    background-image: url('../storage/app/public/tech-platform.jpg');
}

.platform-full-section {
    position: relative;
    z-index:1;
    height: 100vh;
}

.platform-screenshot-img {
    width: 90%;
}

.tech-img-under {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  max-width: 80%;
  display: inline-block;
}

.tech-img-over-right {
  position: absolute;
  right: 25px;
  top: 100px;
  z-index: 2;
  max-width: 50%;
  display: inline-block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.tech-img-over-left {
  position: absolute;
  left: 25px;
  top: 100px;
  z-index: 2;
  max-width: 50%;
  display: inline-block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*********** CONTACT US ***********/

.contact-header-section {
    background-image: url('../storage/app/public/contact-us.jpg');
    background-position: center center;
}
        
#contact-form .form-control {
    background-color: transparent !important;
}

/*********** BECOME A CLIENT ***********/

#became-client-container {
    display: none;
}

.become-client-header-section {
    background-image: url('../storage/app/public/become-a-client.jpg');
    background-position: bottom center;
}
        
#become-client-form .form-control {
    background-color: transparent !important;
}

/*********** PRICING ***********/

.pricing-header-section {
    background-image: url('../storage/app/public/pricing.jpg');
}

#pricing-section, #pricing-publications-section, #mobile-only-pricing-section {
    /* background-color: white; */
}

#mobile-only-pricing-section {
    display: none;
}
    .mobile-only-pricing-container-header, .mobile-only-pricing-container-body {
        height: auto;
    }

.pricing-container {
    border: 1px solid #DADFE2;
}
    .pricing-container-header, .pricing-container-body {
        border-bottom: 1px solid #DADFE2;
        height: 100%;
    }
    .pricing-includes-number {
        font-weight: bold;
        font-size: large;
        float: left;
        margin-right: .5em;
        width: 20px;
    }
/*
.success-published-in-row .client-list-item:not(:first-child), .success-published-in-first-row .client-list-item:not(:first-child) {
    border-left: 1px solid #c7c7c7;
}

.success-published-in-row .client-list-item {
    border-top: 1px solid #c7c7c7;
}
*/


.product-pricing-container {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #DADFE2;
}
    .not-last-product-pricing-col {
        border-right: 1px solid #DADFE2;
    }







.client-list-item {
    padding: 15px;
}

.faq-question>a, .faq-question>a:active{
    display:block;
    color: black;
    font-weight:bold;
    text-decoration:none;
}
.faq-panel {
    border-bottom: 1px solid #28689a;
}
.faq-arrow-down {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  top: -3px;
}
.faq-arrow-up {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.faq-answer-container {
    padding-left: 27px;
}

/*********** WHY CHOOSE US ***********/

.why-choose-us-header-section {
    background-image: url('../storage/app/public/making-project-services-borderless.png');
    background-position: center center;
    background-size: 70%;
    background-repeat: no-repeat;
}

.why-choose-us-section {
    background-color: white;
}

.why-choose-us-sub-section {
    min-height: 250px;
}

.why-choose-us-comparison-check {
    color: #28689a;
}

.why-choose-us-comparison-cross {
    color: gray;
}

#why-choose-use-comparison-table {
    background-color: #f5f2f2;
    width: calc(100vw - 400px);
    margin-left: auto;
}
    #why-choose-use-comparison-table td, #why-choose-use-comparison-table th {
        border: 4px solid white;
        text-align: center;
    }
    #why-choose-use-comparison-table-empty-cell {
        background-color: white;
        max-width: 350px;
    }
    .why-choose-use-comparison-table-first-cell {
        text-align: left !important;
    }

/*********** HOW WE CAN HELP ***********/

.how-we-can-help-header-section {
    background-image: url('../storage/app/public/how-we-can-help.jpg');
    background-position: center center;
}

.how-we-can-help-point-container {
    padding-right: 0px;
}

.how-we-can-help-point-image-container {
    position: relative;
    min-height: 400px;
    min-width: 340px;
    max-height: 100%;
    max-width: 100%;
}

.how-we-can-help-point-image {
    opacity: 1;
    display: block;
    min-width: 340px;
    height: 400px;
    max-height: 100%;
    max-width: 100%;
    transition: .5s ease;
    backface-visibility: hidden;
    object-fit: cover;
    filter: grayscale(0%);
}
    .how-we-can-help-point-image-overlay {
        background: rgba(39,62,84,0.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.how-we-can-help-point-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    height: 50%;
    width: 90%;
}

.how-we-can-help-point-image-container:hover .how-we-can-help-point-image {
    -webkit-filter: brightness(20%);
    -moz-filter: brightness(20%);
    -o-filter: brightness(20%);
    -ms-filter: brightness(20%);
    filter: brightness(20%);
}

.how-we-can-help-point-image-container:hover .how-we-can-help-point-middle {
    opacity: 1;
}

.how-we-can-help-point-image-container:hover > .how-we-can-help-point-title {
    opacity: 0;
}

.how-we-can-help-point-hover-text {
    color: white !important;
}

.how-we-can-help-point-title {
    line-height: .875rem;
    /* background-color: rgba(0,0,0,.7); */
    font-size: .6875rem;
    font-weight: 300;
    color: #f5f5f5;
    text-align: left;
    z-index: 3;
    position: absolute;
    top: 0;
    padding: 1rem 0 .5rem 1rem;
    background: linear-gradient(90deg,#000,rgba(0,0,0,0));
    width: 100%;
    transition: opacity .5s;
    opacity: 1;
}

.how-we-can-help-section, #how-we-can-help-process-section {
    background-color: white;
}

.how-we-can-help-process-step-number {
    font-size: 3.5rem;
    color: #28689a;
}

.how-we-can-help-process-step-arrow {
    color: #ffc107;
    font-size: 1.5rem;
}

/*********** OUR WORKS ***********/

.our-work-header-section {
    background-image: url('../storage/app/public/public-relations.jpg');
    background-position: bottom center;
    background-size: cover;
}
.our-work-header-section .page-header-section-overlay {
    padding-bottom: 100px;
}

.our-work-filter-option {
    border: 1px solid #28689a;
    padding: 15px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}
    .our-work-filter-option:hover {
        background-color: #28689a;
        border-color: #28689a;
        color: white;
    }
.our-work-filter-option-active {
    background-color: #28689a;
    border-color: #28689a;
    padding: 15px;
    margin-right: 15px;
    color: white;
}

.each-of-our-work-container {
    padding-right: 25px;
}

.each-of-our-work-container a {
    padding-left: 0 !important;
}

.each-of-our-work-image-container {
    position: relative;
    min-height: 225px;
    min-width: 340px;
    max-height: 100%;
    max-width: 100%;
}

.each-of-our-work-image {
    opacity: 1;
    display: block;
    height: 225px;
    width: 340px;
    max-height: 100%;
    max-width: 100%;
    transition: .5s ease;
    backface-visibility: hidden;
    object-fit: cover;
    border-radius: 15px;
}

.each-of-our-work-middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 75%;
}

.each-of-our-work-image-container:hover .each-of-our-work-image {
    -webkit-filter: brightness(50%);
    -moz-filter: brightness(50%);
    -o-filter: brightness(50%);
    -ms-filter: brightness(50%);
    filter: brightness(50%);
}

.each-of-our-work-image-container:hover .each-of-our-work-middle {
    opacity: 1;
}

.each-of-our-work-hover-text {
    color: white !important;
}

.each-of-our-work-image-credit {
    bottom: 0.5rem;
    line-height: .875rem;
    background-color: rgba(0,0,0,.5);
    font-size: .6875rem;
    font-weight: 300;
    color: #f5f5f5;
    text-align: right;
    position: absolute;
    z-index: 3;
    padding: .25rem 1rem;
    right: 0;
    border-bottom-right-radius: 15px;
}

.each-of-our-work-container a {
    padding: 8px;
    text-decoration: none;
    font-size: 15px;
    color: black;
    display: block;
    transition: 0.3s;
}
    .each-of-our-work-container a:hover, .each-of-our-work-container a:focus {
        color: #818181;
    }
    .each-of-our-work-text:hover, .each-of-our-work-text:focus {
        color: #818181;
    }

/*********** PRESS ***********/

.our-press-header-section {
    background-image: url('../storage/app/public/press.jpg');
    background-position: top;
    background-size: cover;
}
.our-press-header-section .page-header-section-overlay {
    padding-bottom: 100px;
}
    .press-page-header-section-container {
        color: white;
        padding-top: 100px;
    }

.press-filter-option {
    border: 1px solid #28689a;
    padding: 15px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s;
}
    .press-filter-option:hover {
        background-color: #28689a;
        border-color: #28689a;
        color: white;
    }
.press-filter-option-active {
    background-color: #28689a;
    border-color: #28689a;
    padding: 15px;
    margin-right: 15px;
    color: white;
}

.each-of-our-press-container {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.each-of-our-press-container a {
    padding-left: 0 !important;
}

.each-of-our-press-image-container {
    position: relative;
    min-width: 340px;
    max-height: 100%;
    max-width: 100%;
}

.each-of-our-press-image {
    opacity: 1;
    display: block;
    max-height: 100%;
    max-width: 100%;
    transition: .5s ease;
    backface-visibility: hidden;
    object-fit: cover;
}

.our-press-section a {
    padding: 8px;
    text-decoration: none;
    font-size: 15px;
    color: black;
    display: block;
    transition: 0.3s;
}
    .our-press-section a:hover, .our-press-section a:focus {
        color: #818181;
    }

/*********** FEATURED ARTICLE ***********/

.featured-article-header-section {
    background-image: url('../storage/app/public/featured-article-bg.jpg');
    background-position: center center;
}

/*********** BE A PARTNER ***********/

.be-a-partner-header-section {
    background-image: url('../storage/app/public/become-a-client.jpg');
    background-position: center center;
}

ul.be-a-partner-criteria-list {
  list-style: none;
  margin-left: -40px;
}
    ul.be-a-partner-criteria-list li {
        margin-top: 25px;
        margin-bottom: 10px;
    }
        ul.be-a-partner-criteria-list li:before {
            content: '✓';
            color: #28689a;
            margin-right: 10px;
        }

.partner-type-box-left {
    border-right: 2px solid #28689a;
}

.why-be-a-partner-container img, .partner-type-box img {
    max-width: 100px;
}

/*********** POST A PROJECT ***********/

.post-project-main-container {
    background-color: black;
    color: white;
}
    .post-project-section-container {
        width: 100vw;
        height: calc(100vh - 58px);
        overflow: auto;
        padding-top: 100px;
    }
    
.post-project-status-bar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 98;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.15);
    background-color: inherit;
}
    .post-project-prev-btn {
        margin: 0 5px;
    }
    .post-project-status-loading-text {
        display: none;
    }

.speech-bubble {
    -webkit-filter: drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.15));
    margin-bottom: 100px;
    padding: 1em;
    position: relative;
    background: #ffc107;
    color: black;
    border-radius: 10px;
    width: 75%;
}
    .speech-bubble::before {
        border: 12.5px solid transparent;
        border-top: 12.5px solid #ffc107;
        border-bottom: 0;
        height: 0;
        width: 0;
        border-top-width: 25px;
        content: '';
        display: block;
        position: absolute;
        left: 3rem;
        bottom: -25px;
        -webkit-transform-origin: center;
              transform-origin: center;
        -webkit-transform: rotate(90deg) skew(-25deg) translateY(16.6666666667px);
              transform: rotate(90deg) skew(-25deg) translateY(16.6666666667px);
    }
    .speech-bubble cite {
        position: absolute;
        bottom: -2rem;
        left: 4.5rem;
        font-size: 1rem;
        font-style: normal;
        letter-spacing: 0.5px;
        color: white;
    }
    
#response-speech-bubble {
    display: none;
}

#step-0-form, #post-project-process-form {
    display: none;
}
    #step-0-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      color: #28689a;
    }
    #step-0-form input::-moz-placeholder { /* Firefox 19+ */
      color: #28689a;
    }
    #step-0-form input:-ms-input-placeholder { /* IE 10+ */
      color: #28689a;
    }
    #step-0-form input:-moz-placeholder { /* Firefox 18- */
      color: #28689a;
    }

.post-project-checkbox, .post-project-radio {
    display: none;
}

.skippable-message {
    color: #ccc;
}

#question-help-modal {
    color: black;
}

.post-project-text-guide p {
    cursor: pointer;
}

#step-0-form input,
#step-0-form select  {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    display: inline-block;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;

    line-height: inherit;
    display: inline-block;
    color: #28689a;
    cursor: pointer;
    border-bottom: 1px dashed #28689a;
    width: 50%;
}
    #step-0-form input:focus, #step-0-form select:focus {
        outline: none;
    }

/*********** OPTIONS TOOLTIPS ***********/
.option-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.option-tooltip .option-tooltiptext {
    visibility: hidden;
    width: 500px;
    background-color: #ffc107;
    color: black;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
    font-size: 14px;
}

.option-tooltip:hover .option-tooltiptext {
    visibility: visible;
}

/*********** DROPZONE ***********/

.dropzone {
    background-color: transparent !important;
    border: 1px solid white !important;
}


/*********** CUSTOM CHECKBOX ***********/

.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 25px;
}
    .custom-checkbox-container:hover {
        color: #28689a;
    }
    .custom-checkbox-container:hover input ~ .checkmark {
        background-color: #28689a;
    }
    .custom-checkbox-container input:checked ~ .checkmark {
        background-color: #28689a;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    .custom-checkbox-container input:checked ~ .checkmark:after {
        display: block;
    }
    .custom-checkbox-container .checkmark:after {
        left: 9px;
        top: 3px;
        width: 8px;
        height: 15px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
/*********** CUSTOM RADIO BUTTONS ***********/

.custom-radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 25px;
}
    .custom-radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    .custom-radio-container:hover {
        color: #28689a;
    }
    .custom-radio-container:hover input ~ .dotmark {
        background-color: #28689a;
    }
    .custom-radio-container input:checked ~ .dotmark {
        background-color: #28689a;
    }
    .custom-radio-container input[type=text] {
        margin-left: 5px;
        opacity: 1 !important;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid white;
        background: transparent;
        color: white;
    }
    .custom-radio-container input[type=text]:focus {
        outline: none;
    }

.dotmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
    .dotmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    .custom-radio-container input:checked ~ .dotmark:after {
        display: block;
    }
    .custom-radio-container .dotmark:after {
        top: 9px;
        left: 9px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
    }
    
/*********** CUSTOM TEXTAREA ***********/

.post-project-textarea {
    display: block;
    width: 100%;
    background-color: transparent;
    color: white;
    border: 1px solid rgb(56, 53, 53);
    caret-color: white;
    padding: 5px;
}
.post-project-textarea:focus {
  outline: none;
}
        
/*********** SLIDE IN ANIMATION ***********/

.animation-element {
    opacity: 0;
    position: relative;
}

.animation-element.slide-left {
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    -moz-transform: translate3d(-100px, 0px, 0px);
    -webkit-transform: translate3d(-100px, 0px, 0px);
    -o-transform: translate(-100px, 0px);
    -ms-transform: translate(-100px, 0px);
    transform: translate3d(-100px, 0px, 0px);
}

.animation-element.slide-left.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

/*
.bounce-up {
    opacity: 0;
    -moz-transition: all 700ms ease-out;
    -webkit-transition: all 700ms ease-out;
    -o-transition: all 700ms ease-out;
    transition: all 700ms ease-out;
    -moz-transform: translate3d(0px, 200px, 0px);
    -webkit-transform: translate3d(0px, 200px, 0px);
    -o-transform: translate(0px, 200px);
    -ms-transform: translate(0px, 200px);
    transform: translate3d(0px, 200, 0px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bounce-up.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
*/

/*********** SPECIALIST LOGIN PAGE ***********/

.login-body {
    height: 100vh;
    background: url('../storage/app/public/sg-skyline.jpg') 50% fixed;
    background-size: cover;
}

@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}

.login-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    background: rgba(4, 40, 68, 0.85);
}

.login-form, .reset-password-form {
    border-radius: 2px 2px 5px 5px;
    width: 90%;
    max-width: 320px;
    background: #ffffff;
    position: relative;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    padding-bottom: 75px;
}
    .login-form.logging-in button {
        max-height: 100%;
        padding-top: 50px;
    }
    .login-form.logging-in button .spinner {
        opacity: 1;
        top: 40%;
    }
    .login-form.log-in-success button {
        background-color: #ffc107;
    }
    .login-form.log-in-success button .spinner {
        border-radius: 0;
        border-top-color: transparent;
        border-right-color: transparent;
        height: 20px;
        animation: none;
        transform: rotateZ(-45deg);
    }
    .login-form input + i.fa, .reset-password-form input + i.fa {
        color: #fff;
        position: absolute;
        margin-top: -25px;
        opacity: 0;
        left: 0;
        transition: all 0.1s ease-in;
        margin-left: -3px;
    }
    .login-form input:focus, .reset-password-form input:focus {
        outline: none;
        color: #444;
        border-color: #28689a;
        border-left-width: 35px;
    }
    .login-form input:focus + i.fa, .reset-password-form input:focus + i.fa {
        opacity: 1;
        left: 30px;
        transition: all 0.25s ease-out;
    }
    .login-form a, .reset-password-form a {
        font-size: 0.8em;
        text-decoration: none;
    }
    .login-form button, .reset-password-form button {
        width: 100%;
        height: 100%;
        padding: 10px 10px;
        background: #28689a;
        color: #fff;
        display: block;
        border: none;
        margin-top: 20px;
        position: absolute;
        left: 0;
        bottom: 0;
        max-height: 60px;
        border: 0px solid rgba(0, 0, 0, 0.1);
        border-radius: 0 0 2px 2px;
        transform: rotateZ(0deg);
        transition: all 0.1s ease-out;
        cursor: pointer;
    }
    .login-form button .spinner {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        border: 4px solid #ffffff;
        border-top-color: rgba(255, 255, 255, 0.3);
        border-radius: 100%;
        left: 50%;
        top: 0;
        opacity: 0;
        margin-left: -20px;
        margin-top: -20px;
        animation: spinner 0.6s infinite linear;
        transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
        box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
    }
    .login-form:not(.logging-in) button:hover {
        box-shadow: 0px 1px 3px #2196F3;
    }
    .login-form:not(.logging-in) button:focus {
        border-bottom-width: 4px;
    }
    
.login-back-to-home-btn {
    margin-left: -150px;
}
.login-footer {
    color: #666;
    position: absolute;
    bottom: 0;
}

/*********** PRINT FRIENDLY PAGES ***********/

.print-friendly-body {
    background-color: white;
}

/*********** CUSTOM CHECKLISTS ***********/

.capabilities-box {
    display: flex;
    height: 100%;
    padding-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 13px 24px 3px hsla(0,0%,58.8%,.25);
}
    ul#capabilities-list {
      list-style: none;
    }
        ul#capabilities-list li {
            margin-bottom: 20px;
        }
            ul#capabilities-list li:before {
                content: '✓';
                color: #28689a;
                /* margin-left: -22px; */
                margin-right: 10px;
            }

ul#custom-list-margin-10 {
  list-style: none;
}
    ul#custom-list-margin-10 li {
        margin-bottom: 10px;
    }
        ul#custom-list-margin-10 li:before {
            content: '✓';
            color: #28689a;
            margin-left: -22px;
            margin-right: 10px;
        }

ul.pricing-item-list {
  list-style: none;
}
    ul.pricing-item-list li {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: -18px;
    }
        ul.pricing-item-list li:before {
            content: '✓';
            color: #28689a;
            margin-left: -22px;
            margin-right: 10px;
        }

ul#future-of-pr-list {
  list-style: none;
}
    ul#future-of-pr-list li {
        margin-bottom: 20px;
        font-size: 1.25rem;
    }
        ul#future-of-pr-list li:before {
            content: '✓';
            color: #28689a;
            margin-left: -22px;
            margin-right: 10px;
        }

ul#about-tech-capabilities-list {
  list-style: none;
            margin-left: 10px;
}
    ul#about-tech-capabilities-list li {
        margin-bottom: 10px;
    }
        ul#about-tech-capabilities-list li:before {
            content: '✓';
            color: #28689a;
            margin-right: 10px;
        }