@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700|Roboto+Condensed:400,400i,700");
/*font-family: 'Poppins', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
*/
/* External fonts load  */
@font-face {
    font-family: "";
    src: url("");
    font-weight: normal;
    font-style: normal;
}

.white-text {
    color: #fff;
}

.sp-margin-left-right {
    margin-left: 4em;
    margin-right: 4em;
}

html {
    font-size: 16px;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
}

@media screen and (min-width: 1600px) {
    html,
    body {
        font-size: calc(16px + 6 * ((100vw - 1600px) / 900));
    }
}

@media screen and (min-width: 2500px) {
    html,
    body {
        font-size: 22px;
    }
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: "Roboto Condensed", sans-serif;
}

p {
    font-size: 1.05em;
    line-height: 28px;
}

p:last-child {
    margin-bottom: 0;
}

a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.affix {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    animation: affix_animation 0.6s ease-in-out;
    -webkit-animation: affix_animation 0.6s ease-in-out;
    -webkit-box-shadow: 0 0 3px #ddd;
    box-shadow: 0 0 3px #ddd;
    z-index: 99999999;
    background: #fff;
    z-index: 999;
}

.affix .nav-link {
    color: #000 !important;
    font-weight: 500 !important;
}

@-webkit-keyframes affix_animation {
    0% {
        margin-top: -120px;
        opacity: 0;
    }
    50% {
        margin-top: -64px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes affix_animation {
    0% {
        margin-top: -120px;
        opacity: 0;
    }
    50% {
        margin-top: -64px;
        opacity: 0;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

.inner-page-banner {
    background: #333333;
    min-height: 300px;
    position: relative;
}

.inner-page-banner .banner-content {
    color: #fff;
    position: absolute;
    bottom: 60px;
    right: 0;
    left: 0;
    text-align: center;
}

.inner-page-banner .banner-content h3 {
    color: #ef5931;
    font-size: 2em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-block {
    padding: 4em 0;
}

.section-block-bottom {
    padding-bottom: 4em;
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading .title {
    font-size: 1.5em;
    color: #ef5931;
}

.inner-page p {
    font-size: 1.1em;
}

.service-points {
    margin-bottom: 1rem;
}

.service-points li:not(:last-child) {
    margin-bottom: 10px;
}

.video-banner {
    height: 90vh !important;
    position: relative;
}

.video-banner .video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.video-banner .video-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.video-banner h3 {
    color: #fff;
    font-size: 2.3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.video-banner p {
    color: #fff;
    font-size: 1.1em;
}

.video-banner .scroll-downs {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 34px;
    height: 55px;
}

.video-banner .scroll-downs:hover {
    cursor: pointer;
}

.video-banner .scroll-downs .mousey {
    width: 2px;
    padding: 10px 10px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.video-banner .scroll-downs .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

.video-banner video {
    -o-object-fit: inherit;
    object-fit: inherit;
}

.pre-loading {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: #fff;
    overflow: hidden;
    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;
}

.pre-loading .image {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: zoominoutsinglefeatured;
    animation-name: zoominoutsinglefeatured;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.pre-loading .image img {
    width: 100px;
}

@-webkit-keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes zoominoutsinglefeatured {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-animation: backGround 5s ease infinite;
    animation: backGround 5s ease infinite;
    z-index: 99999999999999999999;
    overflow: hidden;
}

.loading .loadingWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loading .loadingWrapper #loading {
    margin: auto;
    height: 100px;
    width: 100px;
    border: transparent;
    border-top: 3px solid #ef5931;
    border-radius: 50%;
    -webkit-animation: round 2s linear infinite;
    animation: round 2s linear infinite;
}

.loading .loadingWrapper h1 {
    color: #fff;
    position: relative;
    margin: auto;
    top: 50%;
}

@-webkit-keyframes round {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes backGround {
    0% {
        background-color: #222222;
    }
    50% {
        background-color: #555555;
    }
    75% {
        background-color: #444444;
    }
    100% {
        background-color: #111111;
    }
}

@keyframes backGround {
    0% {
        background-color: #222222;
    }
    50% {
        background-color: #555555;
    }
    75% {
        background-color: #444444;
    }
    100% {
        background-color: #111111;
    }
}

.success-rate {
    background: #f9f8ff;
    padding: 4em 0;
}

.success-rate .section-heading {
    margin-bottom: 50px;
}

.success-rate .section-heading .heading {
    color: #ef5931;
    font-size: 1.75em;
}

.success-rate .success-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.success-rate .success-list li {
    margin-bottom: 3em;
    padding: 0 40px;
}

.success-rate .success-list li span {
    font-size: 2em;
    color: #ef5931;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.success-rate .success-list li span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 2px solid #ef5931;
}

.success-rate .success-list li p {
    font-size: 1em;
    line-height: 20px;
    color: #333333;
}

.success-rate .article-source p {
    text-align: right;
    font-size: 15px;
    color: #666;
}

.new-section-block {
    padding-left: 4em !important;
    padding-right: 4em !important;
}

.careers-form {
    padding: 4em 0 0 0;
}

.careers-form h3 {
    margin-bottom: 2em;
    text-align: center;
    color: #ef5931;
}

.careers-form .form-group {
    margin-bottom: 25px;
}

.careers-form input {
    height: 45px;
}

.careers-form .btn-submit {
    padding: 8px 25px;
    background: #ef5931;
    color: #fff;
    margin-top: 20px;
}

.affix .white-text {
    color: #000;
}

.border-radius-5 img {
    border-radius: 5px;
}

.inspiration-text {
    position: absolute;
    color: #ef5931;
    top: 10px;
    right: 10px;
}

.six-layers-list li:not(:last-child) {
    margin-bottom: 7px;
}

.six-layers-list li a {
    color: #ef5931;
    font-size: 1.05em;
}

.six-layers-list li a span img {
    width: 15px;
    margin-right: 3px;
}

.footer-follow-us {
    display: none;
}
#footer {
    padding: 4em 0;
}
