@media (prefers-color-scheme: dark) {
    .only-light {
        display: none !important;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    font-size: 1rem;
    background-color: #f4f8fb;
}

@media (prefers-color-scheme: dark) {
    :root {
        background-color: #f4f8fb;
    }

    body {
        background-color: #f4f8fb;
    }
}

a {
    color: #1c3a6a;
    -webkit-transition: color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}

a:hover {
    color: #011b35;
    text-decoration: none;
}

p {
    color: #455e85;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    color: #1c3a6a;
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: 2.3rem;
}

h2,
.h2 {
    font-size: 1.9rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

.img-fluid {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.orange {
    color: #011b35;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border-radius: 0px;
    background-color: #ffffff;
    color: #1c3a6a;
    font-weight: 500;
    border: 1px solid #ffffff;
    outline: 0;
}

.form-control:focus {
    border-color: #1c3a6a;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff url('../images/select-arrow-down.png') no-repeat 96% center;
    color: #1c3a6a;
    border: 1px solid #ffffff;
    padding: 10px 35px 10px 15px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-group .btn-control {
    -webkit-box-flex: 0;
    flex: 0 1 100px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #011b35;
    color: #ffffff;
    padding: 0;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: background-color 300ms ease-in-out;
}

.arrow-btn .btn {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
    background-color: #011b35;
    color: #1c3a6a;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 15px 25px;
    letter-spacing: 1px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

#home-selector {
    line-height: 50px;
    background: #ecebeb;
    display: inline-block;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
}

.arrow-btn .btn span {
    background-color: #1c3a6a;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    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;
    width: 80px;
    font-size: 32px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.arrow-btn .btn:hover {
    background-color: #f7f4f4;
}

.site-header {
    width: 100%;
    padding: 2.5rem 0 1.562rem 0;
}

.site-header.abs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.site-header .site-logo {
    text-align: center;
    margin-bottom: 15px;
}

.site-header .site-logo img {
    max-height: 55px;
}

.site-header .sign-in,
.site-header .get-started {
    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;
}

.site-header .sign-in a {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
    color: #011b35;
    line-height: 1;
}

.site-header .sign-in a:hover {
    color: #1c3a6a;
}

.site-header .get-started a {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: #0f9a49;
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    padding: 10px 8px;
    z-index: 1;
}

.green-text {
    color: #0f9a49;
}

.site-header .get-started a::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1c3a6a;
    width: 2%;
    height: 100%;
    -webkit-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
    z-index: -1;
}

.site-header .get-started a:hover::after {
    width: 100%;
}


.presence-sec {
    padding: 5rem 0;
}

.presence-sec .content {
    font-weight: 500;
}

.presence-sec .content .h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #011b35;
    text-transform: none;
    line-height: 1.7;
    margin-bottom: 80px;
}

.presence-sec .form-group {
    width: 100%;
    max-width: 440px;
}

.presence-sec .form-group .form-control {
    background-color: #ecebeb;
    border-color: #ecebeb;
}

.branding-slider-sec,
.services-sec {
    position: relative;
    padding: 5rem 0;
    background: rgb(28, 58, 106);
    color: #ffffff;
    z-index: 1;
}

.branding-slider-sec p {
    margin-bottom: 30px;
}

.branding-slider-sec .top-text {
    position: relative;
    display: inline-block;
    color: #011b35;
    padding-right: 20px;
}

.branding-slider-sec .top-text::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: #011b35;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.branding-slider-sec h2,
.branding-slider-sec p {
    color: #ffffff;
}

.branding-slider-sec p {
    font-size: 0.9rem;
}

.branding-slider-sec .arrows {
    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;
    padding: 15px 65px 0 0;
}

.branding-slider-sec .arrows a {
    width: 30px;
    height: 30px;
    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;
    padding: 0;
    border-radius: 50%;
    background-color: #011b35;
    color: #1c3a6a;
    font-size: 1rem;
    border: 1px solid #1c3a6a;
    margin-left: 10px;
    -webkit-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
    transition: color 300ms ease-in-out, background-color 300ms ease-in-out;
}

.branding-slider-sec .arrows button:hover {
    background-color: #1c3a6a;
    color: #ffffff;
}

.image-box {
    display: inline-block;
    position: relative;
    margin: 0 0 50px 0;
    padding-right: 60px;
    text-align: center;
}

.image-box .cpt {
    font-size: 0.9rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    -webkit-transform: rotate(90deg) scaleX(-1);
    -ms-transform: rotate(90deg) scaleX(-1);
    transform: rotate(90deg) scaleX(-1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.image-box .cpt .inner {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.branding-slider-sec .form-group .form-control {
    background-color: rgb(236, 235, 235);
}

.branding-slider-sec .form-group .form-control::-webkit-input-placeholder {
    color: #1c3a6a;
}

.branding-slider-sec .form-group .form-control::-moz-placeholder {
    color: #1c3a6a;
}

.branding-slider-sec .form-group .form-control:-ms-input-placeholder {
    color: #1c3a6a;
}

.branding-slider-sec .form-group .form-control::-ms-input-placeholder {
    color: #1c3a6a;
}

.branding-slider-sec .form-group .form-control::placeholder {
    color: #1c3a6a;
}

.clients-review-sec {
    padding: 4rem 0;
}

.clients-review-sec h2 {
    text-align: center;
    color: #011b35;
    margin-bottom: 35px;
}

.testimonials-carousel .carousel-item {
    text-align: center;
}

.testimonials-carousel .carousel-item p {
    font-weight: 600;
    color: #1c3a6a;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.testimonials-carousel .carousel-item .client-name {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 40px;
    color: #011b35;
}

.testimonials-carousel .carousel-item .client-name span {
    color: #1c3a6a;
}

.testimonials-carousel .dots {
    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;
    list-style: none;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.testimonials-carousel .dots li {
    margin: 0 8px;
}

.testimonials-carousel .dots li button {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    text-indent: -9999px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #011b35;
    -webkit-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
}

.testimonials-carousel .dots li button:hover {
    opacity: 0.6;
}

.testimonials-carousel .dots li.active button {
    background-color: #1c3a6a;
}


/*=======Page-2=======*/

.what-wedo-sec .col-lg-5 {
    padding-top: 14rem;
}

.what-wedo-sec {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.what-wedo-sec .top-text {
    color: #011b35;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.what-wedo-sec h1 {
    margin-bottom: 30px;
}

.what-wedo-sec p {
    line-height: 1.8;
}

.what-wedo-sec span {
    display: block;
    margin-bottom: 10px;
}

.what-wedo-sec .arrow-btn {
    max-width: 400px;
}

.what-wedo-sec .arrow-btn span {
    margin-bottom: 0;
}

.services-sec {
    position: relative;
    margin-top: 120px;
}

.services-sec .container {
    position: relative;
}

.services-sec .arrow-btn {
    width: 100%;
    max-width: 400px;
    position: absolute;
    top: -126px;
    left: 0;
    right: auto;
    z-index: 1;
}

.services-sec h2 {
    color: #446187;
}

.services-sec .service-select-form .form-control {
    max-width: 350px;
    background-color: #ecebeb;
    border-color: #ecebeb;
    margin-top: 15px;
}

.services-sec .service-select-form span {
    display: block;
    padding: 15px 0 15px 15px;
}

.services-sec .image-box {
    margin-top: 0;
}

.service-products-list .product-item {
    display: block;
    text-align: center;
    background-color: #ffffff;
    padding: 30px 15px 15px 15px;
    border: 1px solid #ffffff;
    margin-bottom: 30px;
    height: 150px;
    -webkit-transition: border-color 300ms ease-in-out;
    -o-transition: border-color 300ms ease-in-out;
    transition: border-color 300ms ease-in-out;
}

.service-products-list .product-item:hover {
    border-color: #011b35;
}

.service-products-list .product-item h3 {
    font-size: 1rem;
    color: #0f9a49;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: none;
    -webkit-transition: color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}

.service-products-list .product-item:hover h3 {
    color: #011b35;
}

.service-products-list .product-item .icon {
    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;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: #0f9a49;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.service-products-list .product-item:hover .icon {
    background-color: #011b35;
}

.product-estimate {
    width: 100%;
    max-width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    line-height: 1.1;
    margin-top: 25px;
}

.product-estimate span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: #ffffff;
    color: #1c3a6a;
    padding: 15px;
}

.product-estimate .amount {
    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;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
    background-color: #011b35;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 15px;
}

.next-service-nav {
    display: block;
    text-align: right;
    color: #ffffff;
    margin-top: 40px;
}

.next-service-nav .next {
    display: block;
    position: relative;
    width: 100%;
    max-width: 170px;
    margin-left: auto;
    text-align: left;
    background-color: #ffffff;
    color: #1c3a6a;
    font-weight: 500;
    line-height: 1;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 10px;
    margin-bottom: 10px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.next-service-nav .next span {
    background-color: #1c3a6a;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    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;
    width: 60px;
    font-size: 28px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.next-service-nav .next:hover span {
    background-color: #285aab;
}

.next-service-nav .skip {
    font-size: 0.88rem;
    color: #ffffff;
    color: #1c3a6a;
}

.next-service-nav .skip:hover {
    text-decoration: underline;
}

.specific-req-sec {
    padding: 1rem 0 4rem 0;
    font-weight: 500;
}

.specific-req-sec h2 {
    text-align: center;
    color: #011b35;
}

.specific-req-sec .req-sec-top p:first-child {
    display: inline-block;
    position: relative;
    padding-right: 30px;
}

.specific-req-sec .req-sec-top p:first-child::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant-caps: normal;
    -webkit-font-variant-ligatures: normal;
    font-variant-ligatures: normal;
    font-weight: 900;
    height: 16px;
    line-height: 16px;
    text-rendering: auto;
    width: 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    -webkit-font-smoothing: antialiased;
}

.user-req-form label {
    display: block;
    color: #011b35;
    font-size: 0.9rem;
    padding-left: 15px;
}

.user-req-form .form-control {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(239, 241, 242, 1);
    box-shadow: 0px 2px 0px 0px rgba(239, 241, 242, 1);
    margin-bottom: 15px;
}

.user-req-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.user-req-form button[type="submit"] {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
    background-color: #ecebeb;
    color: #1c3a6a;
    font-weight: 500;
    line-height: 1;
    border: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 15px 25px;
    -webkit-box-shadow: 0px 2px 0px 0px rgb(230, 232, 233);
    box-shadow: 0px 2px 0px 0px rgb(230, 232, 233);
    margin-bottom: 24px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.user-req-form button[type="submit"] span {
    background-color: #011b35;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    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;
    width: 60px;
    font-size: 32px;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.user-req-form button[type="submit"]:hover {
    background-color: #f7f4f4;
}

.user-req-form button[type="submit"]:hover span {
    background-color: #0f9a49;
}


.site-footer {
    padding: 40px 0;
    background-color: #1c3a6a;
    color: #ffffff;
    margin-top: 30px;
}

.site-footer h4,
.site-footer p,
.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #011b35;
}

.site-footer h4 {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.site-footer address {
    line-height: 1.8;
}

.site-footer .footer-top {
    padding: 40px 0;
}

.site-footer .footer-top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-top ul li {
    margin-bottom: 5px;
}

.site-footer .footer-top ul .mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.site-footer .footer-top ul .mail a {
    font-size: 20px;
    margin-left: auto;
}

.support-team-members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.member-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #011b35;
    margin-top: 10px;
    border-radius: 100px;
    color: #ffffff;
    line-height: 1.4;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1c3a6a;
    cursor: pointer;
    -webkit-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out;
}

.member-item .member-avatar {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: 10px;
}

.member-item .member-avatar::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #54d3ad;
    border: 2px solid #ffffff;
    display: block;
    position: absolute;
    top: -2px;
    right: 0;
    z-index: 1;
}

.member-item .member-avatar img {
    width: 100%;
    border-radius: 50%;
}

.member-item:hover {
    background-color: #0f9a49;
}

.footer-bottom {
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #011b35;
    line-height: 1.5;
}


@media screen and (min-width: 992px) {
    .site-header .site-logo {
        text-align: left;
        margin-bottom: 0;
    }

    .site-header .get-started {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .site-header .get-started a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
    }

    .image-box {
        text-align: right;
        margin: 50px 0 0 0;
        position: relative;
    }

    .image-box .cpt {
        color: rgb(28, 58, 106);
    }

    .picture-video-player {
        color: #ff0000;
        font-size: 70px;
        top: 50%;
        left: 50%;
        position: absolute;
        z-index: 10000;
        margin-top: -35px;
        margin-left: -35px;
    }

    .branding-slider-sec,
    .services-sec {
        background: rgb(28, 58, 106);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgb(28, 58, 106)), color-stop(72%, rgb(28, 58, 106)), color-stop(72%, rgb(15, 154, 73)), color-stop(100%, rgb(245, 130, 30)));
        background: -o-linear-gradient(left, rgb(28, 58, 106) 0%, rgb(28, 58, 106) 72%, rgb(245, 130, 30) 72%, rgb(245, 130, 30) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgb(28, 58, 106)), color-stop(72%, rgb(28, 58, 106)), color-stop(72%, rgb(15, 154, 73)), to(rgb(245, 130, 30)));
        background: linear-gradient(to right, rgb(28, 58, 106) 0%, rgb(28, 58, 106) 72%, rgb(245, 130, 30) 72%, rgb(15, 154, 73) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f4b69', endColorstr='#ffa500', GradientType=1);
    }

    .branding-slider-sec .form-group {
        margin-top: 100px;
    }

    .text-lg-right {
        text-align: right;
    }

    .services-sec .arrow-btn {
        left: auto;
        right: 274px;
    }

    .what-wedo-sec .col-lg-5,
    .what-wedo-sec .col-lg-6 {
        padding: 10rem 0 4rem 0;
    }

    .what-wedo-sec .col-lg-6::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: -50%;
        bottom: 0;
        background: url('../images/bg-image-1.jpg') no-repeat left top;
        background-size: cover;
        z-index: -1;
    }

    .what-wedo-sec .content-left {
        padding-right: 1rem;
    }

    .what-wedo-sec .content-right {
        margin: 14.4rem 0 0 0;
    }

    .what-wedo-sec .content-right p {
        padding-left: 4rem;
        border-left: 5px solid #011b35;
    }
}

@media screen and (min-width: 768px) {
    .site-footer .footer-top {
        padding: 80px 0 60px 0;
    }

    .support-team-members .member-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
        flex: 0 1 49%;
    }

    .text-md-right {
        text-align: right
    }

    .text-md-left {
        text-align: left;
    }

    .presence-sec .content {
        margin-top: 80px;
    }

    .presence-sec .content h1,
    .presence-sec .content p,
    .presence-sec .content span {
        padding-left: 15px;
    }

    .testimonials-carousel .carousel-item p {
        padding: 0 8rem;
    }

    .what-wedo-sec h1 {
        margin-bottom: 89px;
    }
}

@media screen and (min-width: 576px) {
}

@media screen and (min-width: 1501px) {
    .branding-slider-sec,
    .services-sec {
        background: rgb(28, 58, 106);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgb(28, 58, 106)), color-stop(66%, rgb(28, 58, 106)), color-stop(66%, rgb(245, 130, 30)), color-stop(100%, rgb(245, 130, 30)));
        background: -o-linear-gradient(left, rgb(28, 58, 106) 0%, rgb(28, 58, 106) 66%, rgb(245, 130, 30) 66%, rgb(245, 130, 30) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgb(28, 58, 106)), color-stop(66%, rgb(28, 58, 106)), color-stop(66%, rgb(245, 130, 30)), to(rgb(245, 130, 30)));
        background: linear-gradient(to right, rgb(28, 58, 106) 0%, rgb(28, 58, 106) 66%, rgb(245, 130, 30) 66%, rgb(245, 130, 30) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f4b69', endColorstr='#ffa500', GradientType=1);
    }

    .what-wedo-sec .col-lg-6::after {
        right: -100%;
    }
}

.carousel-control-prev, .carousel-control-next {
    top: 485px;
}

.carousel-control-prev {
    left: 270px;
}

@media screen and (min-width: 768px) {
    #featured-slider:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 75%;
        border-bottom: 35px solid #ffffff;
    }

    #featured-slider:after {
        content: "";
        position: absolute;
        z-index: 100;
        width: 15px;
        bottom: 0px;
        height: 27%;
        background: #ffffff;
    }

}

.btn-primary {
    background-color: #011b35;
    border-color: #011b35;
    border-radius: 0px;
}

.btn-primary:hover {
    background-color: #1c3a6a;
    border-color: #1c3a6a;
}

.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}

.pad-right-zero {
    padding-right: 0px
}

.pad-left-zero {
    padding-left: 0px
}

#home-selector::after {
    font-size: 30px;
    line-height: 50px;
    float: right;
    margin-top: 20px;
}

.full-width {
    width: 100%
}

#slideshow {
    margin: 0 auto;
    height: 250px;
    width: 100%;
    box-sizing: border-box;
}

.entire-content {
    margin: auto;
    width: 190px;
    perspective: 1000px;
    position: relative;
    padding-top: 80px;
}

.content-carrousel {
    width: 100%;
    position: absolute;
    float: right;
    animation: rotar 45s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.content-carrousel figure {
    width: 100%;
    height: 150px;
    border: 1px solid #1c3a6a;
    overflow: hidden;
    position: absolute;
}

.content-carrousel figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(300px);
}

.content-carrousel figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(300px);
}

.content-carrousel figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(300px);
}

.content-carrousel figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(300px);
}

.content-carrousel figure:nth-child(5) {
    transform: rotateY(160deg) translateZ(300px);
}

.content-carrousel figure:nth-child(6) {
    transform: rotateY(200deg) translateZ(300px);
}

.content-carrousel figure:nth-child(7) {
    transform: rotateY(240deg) translateZ(300px);
}

.content-carrousel figure:nth-child(8) {
    transform: rotateY(280deg) translateZ(300px);
}

.content-carrousel figure:nth-child(9) {
    transform: rotateY(320deg) translateZ(300px);
}

.content-carrousel figure:nth-child(10) {
    transform: rotateY(360deg) translateZ(300px);
}

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #f7f7f7;
    border-radius: 1px;
}

.content-carrousel img {
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
    filter: grayscale(80%);
}

.content-carrousel img:hover {
    transform: scale(1.2);
    transition: all 300ms;
    filter: grayscale(0%);
}

@keyframes rotar {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.start-project-container {
    width: 49%;
    margin-bottom: 10px;
}

.home-video-player {
    font-size: 50px;
    position: absolute;
    color: #1c3a6a;
    left: 67%;
    top: 50%;
    cursor: pointer
}

@media screen and (max-width: 768px) {
    .home-video-player {
        left: 50%;
    }

    .image-box {
        padding-right: 0px;
    }

    .start-project-container {
        width: 100%;
    }

    .big-screen-only {
        display: none
    }
}

@keyframes fa-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

.fa-blink:hover {
    animation: 0;
}

#product-description-details {
    font-size: 12px;
    border-left: 1px solid #e8e8e8;
}

.modal-backdrop {
    display: none !important;
}
