body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #414042;
}

.text-main {
    color: #0086CA;
}

.bg-main {
    background-color: #0086CA;
}

.bg-lightblue {
    background-color: #f2f6ff;
}

.bg-dark {
    background-color: #3a5774 !important;
}

.fs-28 {
    font-size: 1.75rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-16 {
    font-size: 1rem;
}

.shape {
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    width: 100%;
    height: 8vh;
}

.shape-right {
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    width: 100%;
    height: 8vh;
    margin-top: -7.9vh;
}

.headerline {
    width: 60px;
    border: 2px solid #0086CA;
}

/*nav bar*/

header nav {
    width: 100% !important;
}

header nav .navbar-brand {
    max-width: 300px;
}

header nav .navbar-brand img {
    width: 90%;
}

@media only screen and (max-width: 991px) {
    header nav .navbar-brand {
        max-width: 180px;
    }
    .pb-5,
    .py-5 {
        padding-bottom: 2rem !important;
    }
    .pt-5,
    .py-5 {
        padding-top: 2rem !important;
    }
    .mb-5,
    .my-5 {
        margin-bottom: 2rem !important;
    }
    .mt-5,
    .my-5 {
        margin-top: 2rem !important;
    }
    .container {
        padding-right: 30px !important;
        padding-left: 30px !important;
    }
}

/*nav bar end*/

/*footer*/

.footer-social .round {
    display: inline-block;
    height: 28px;
    width: 28px;
    line-height: 28px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    border: 1px solid #fff;
}

.footer-social .round:hover {
    color: #43474a;
    background-color: #fff;
}

/*home page*/

.homepage-banner {
    position: relative;
    background-color: black;
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

.homepage-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.homepage-banner .container {
    position: relative;
    z-index: 2;
}

.homepage-banner .overlay-wcs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #012144b8;
    opacity: 0.85;
}

.homepage-banner .homebanner {
    top: 26vh;
    position: relative;
}

.homepage-banner .homebanner h1 {
    font-size: 3rem;
    line-height: 1.25em;
}

.homepage-banner .homebanner span {
    font-size: 1.25rem;
}

/*what we do*/

#whatwedo.whatwedo .container {
    padding-top: 4rem;
    padding-bottom: 9rem;
}

#whatwedo.whatwedo .row {
    margin-top: 3rem;
}

#whatwedo.whatwedo .box {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    background-color: #0086CA;
    border-radius: 6px;
}

#whatwedo.whatwedo .box .overbox {
    background-color: #0086CA;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 100;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

#whatwedo.whatwedo .box:hover .overbox {
    opacity: 1;
}

#whatwedo.whatwedo .box .overtext {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    transform: translateY(40px);
}

#whatwedo.whatwedo .box .title {
    font-size: 1rem;
    opacity: 0;
    transition-delay: 0.1s;
    transition-duration: 0.2s;
}

#whatwedo.whatwedo .box:hover .title,
.box:focus .title {
    opacity: 1;
    transform: translateY(0px);
}

#whatwedo.whatwedo .box .tagline {
    font-size: 1rem;
    opacity: 0;
    transition-delay: 0.2s;
    transition-duration: 0.2s;
}

#whatwedo.whatwedo .box:hover .tagline,
#whatwedo.whatwedo .box:focus .tagline {
    opacity: 1;
    transform: translateX(0px);
}

/*Contact Us*/

.ig-social .round {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: #0086ca;
    color: #fff;
    text-align: center;
    -webkit-box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
    -moz-box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
    box-shadow: 0px 0px 0px 3px rgb(255, 255, 255);
}

.ig-social .round:hover {
    color: #43474a;
    -webkit-box-shadow: 0px 0px 0px 3px rgb(67, 71, 74);
    -moz-box-shadow: 0px 0px 0px 3px rgb(67, 71, 74);
    box-shadow: 0px 0px 0px 3px rgb(67, 71, 74);
}

@media only screen and (max-width: 991px) {
    .homepage-banner .homebanner h1 {
        font-size: 1.5rem;
    }
    .homepage-banner .homebanner span {
        font-size: 1.25rem;
    }
    .homepage-banner {
        height: 50vh;
    }
    .homepage-banner .background-overlay {
        height: 50vh;
    }
    .homepage-banner .homebanner {
        top: 20vh;
    }
    #whatwedo.whatwedo .box {
        height: 350px;
    }
    #whatwedo.whatwedo .box .tagline {
        font-size: 0.875rem;
    }
}

@media only screen and (max-width: 767px) {
    #whatwedo.whatwedo .box {
        height: 280px;
    }
}

/*About Us page*/

.aboutus-page {
    height: 40vh;
    background-color: #1f3592;
    background: url(../img/1.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.services-page {
    height: 35vh;
    background-color: #1f3592;
    background: url(../img/1.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.aboutus-page .background-overlay {
    background-image: linear-gradient(320deg, #003063 0%, #000000 100%);
    opacity: 0.75;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 40vh;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.services-page .background-overlay {
    background-image: linear-gradient(320deg, #003063 0%, #000000 100%);
    opacity: 0.75;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 35vh;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.aboutus-page .homebanner,
.services-page .homebanner {
    top: 15vh;
    position: relative;
}

.aboutus-page .homebanner h1,
.services-page .homebanner h1 {
    font-size: 2.3rem;
    line-height: 1.25em;
}

.aboutus-page .homebanner span,
.services-page .homebanner span {
    font-size: 1.25rem;
}

.our-values .card img {
    max-width: 150px;
    margin: auto;
    margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    .aboutus-page .homebanner h1,
    .services-page .homebanner h1 {
        font-size: 1.5rem;
    }
    .aboutus-page,
    .services-page {
        height: 40vh;
    }
    .aboutus-page .background-overlay,
    .services-page .background-overlay {
        height: 40vh;
    }
    .aboutus-page .homebanner,
    .services-page .homebanner {
        top: 15vh;
    }
}

@media only screen and (max-width: 767px) {
    .homebanner {
        top: 10vh;
    }
}

/*Careers page*/

.careers-page {
    height: 40vh;
    background-color: #1f3592;
    background: url(../img/see-what-others-cant.jpg) 72% 72%;
    background-size: cover;
}

.careers-page .background-overlay {
    background-color: #001933;
    opacity: 0.8;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 40vh;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.careers-page .homebanner {
    top: 15vh;
    position: relative;
}

.careers-page .homebanner h1 {
    font-size: 3rem;
    line-height: 1.25em;
}

.careers-page .homebanner span {
    font-size: 1.25rem;
}

.panel-default>.panel-heading {
    border: 1px solid #adb5bd;
}

.panel-title {
    font-size: 1rem;
}

.panel-title>a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #FFFFFF;
}

.panel-body {
    padding: 15px;
    border: 1px solid #adb5bd;
    border-top: none;
}

.more-less {
    float: right;
    color: #FFFFFF;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #EEEEEE;
}

@media only screen and (max-width: 991px) {
    .careers-page {
        height: 50vh;
    }
    .careers-page .background-overlay {
        height: 50vh;
    }
}

@media only screen and (max-width: 767px) {
    .careers-page {
        height: 80vh;
    }
    .careers-page .background-overlay {
        height: 80vh;
    }
    .careers-page .homebanner h1 {
        font-size: 1.5rem;
    }
}

.bg_black {
    background: #0086ca;
}

.block-blog {
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(226, 223, 223, 0.61);
}

.transperent_block {
    padding: 0px;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.transperent_block img {
    width: 100%;
    height: 100%;
}

.transperent_block:hover .black_hover_block {
    opacity: 1;
    transform: translateY(-150px);
    -webkit-transform: translateY(-150px);
    -moz-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    -o-transform: translateY(-150px);
}

.transperent_block img {
    z-index: 4;
}

.transperent_block .black_hover_block {
    position: absolute;
    bottom: 3%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.transperent_block:hover .black_hover_block,
.black_hover_block:hover {
    bottom: 30%;
    transition: all 0.3s ease-in-out;
}

.transperent_block .blur {
    background-color: rgb(6 65 95 / 65%);
    height: 400px;
    z-index: 5;
    position: absolute;
    width: 100%;
}

.transperent_block .black_hover_block_text {
    z-index: 10;
    color: #fff;
    position: absolute;
    text-align: center;
    top: -28px;
    width: 100%;
}

.block_header {
    margin-top: 5px;
}

.black_hover_block_text i:hover {
    color: #77132f;
}

#perksnbenefits .box {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 240px;
    background-color: #0086CA;
    border-radius: 6px;
}

#perksnbenefits .box .overbox {
    background-color: #0086CA;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 100;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 1.8rem;
}

#perksnbenefits .box:hover .overbox {
    opacity: 1;
}

#perksnbenefits .box .overtext {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    transform: translateY(40px);
}

#perksnbenefits .box:hover .title,
.box:focus .title {
    opacity: 1;
    transform: translateY(0px);
}

#perksnbenefits .box .tagline {
    font-size: 1rem;
    opacity: 0;
    transition-delay: 0.2s;
    transition-duration: 0.2s;
}

#perksnbenefits .box:hover .tagline,
#perksnbenefits .box:focus .tagline {
    opacity: 1;
    transform: translateX(0px);
}

@media only screen and (max-width: 991px) {
    #perksnbenefits .box .tagline {
        font-size: 0.875rem;
    }
}

.application-form h3 {
    font-weight: 400;
}

.application-form .form-control {
    height: 50px;
}

.application-form .gj-datepicker-bootstrap [role=right-icon] button .gj-icon,
.gj-datepicker-bootstrap [role=right-icon] button .material-icons {
    top: 13px
}

.application-form #othertext {
    height: 50px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

/* Hide the browser's default checkbox */

.application-form input.additional {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    left: 15px;
    height: 25px;
    width: 25px;
    border: 1px solid #ced4da;
    background-color: none;
}

/* When the checkbox is checked, add a blue background */

.application-form input.additional:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.application-form input.additional:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.application-form .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn-main {
    color: #fff;
    background-color: #0086ca;
    border-color: #0086ca;
}

.btn-main:hover {
    color: #fff;
    background-color: #0071ab;
    border-color: #0071ab;
}

.btn.btn-3d {
    border-radius: 3px;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}