body{
    overflow-y: auto !important;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.text-gray{
    color: gray;
}

header{
    background-color: #080808;
}


/* ========== scroll bar ============ */
/* width */
::-webkit-scrollbar {
    width: 5px;
    }
    
    /* Track */
    ::-webkit-scrollbar-track {
    background: #212121;
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
    background: #fbbc12;
    }
    

/* work page */
.work > .container:first-child{
    padding-top: 100px;
}

.bg-black.txt-only{
    background-color: #080808;
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
    color: #fff;
}

.black-animation{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    background-color: #040404;
}

.bg-black.txt-only:hover .black-animation{
    left: 0%;
}



.bg-black.txt-only .col-10 span{
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.bg-black.txt-only .col-10 h1 a{
    display: block;
    font-weight: bold;
    max-width: 740px;
    color: transparent !important;
    -webkit-text-stroke: 2px #ffba00;
    transition: all 0.5s ease;
    text-decoration: none;
    font-size: 3.5rem ;
}

.bg-black.txt-only:hover .col-10 h1 a{
    -webkit-text-stroke:none;
    color: #ffba00 !important;
}


/* youtube video */
.video-container{
    border-radius: 10px;
}

.video_wrapper {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    /* background-color: #000; */
    background-image: url("../Images/Home.jpg");
    border-radius: 10px;
    /* width: 1068px;
    height: 600px; */
}

.video_wrapper_full {
    /*padding-top: 450px;*/
    padding-top: 350px;
}

.utubeFrame {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 10px;
}

.video-icon {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 80%);
    background-size: 100%;
    border: none;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 800ms, height 0s;
    -moz-transition: opacity 800ms, height 0s;
    transition: opacity 800ms, height 0s;
    -webkit-transition-delay: 0s, 0s;
    -moz-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
    border-radius: 10px;
}

.video-icon img{
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 40px;
}

.video-icon:hover:before,  .video-icon:focus:before {
    border-color: #f00;
}

.video-icon:hover:after, .video-icon:focus:after {
    border-left-color: #f00;
}

.utube-VideoWrapperActive .video-icon {
    opacity: 0;
    height: 0;
    -webkit-transition-delay: 0s, 800ms;
    -moz-transition-delay: 0s, 800ms;
    transition-delay: 0s, 800ms;
}



/* tabs */
.tabs{
    margin-bottom: 50px;
    border-bottom: 3px solid #424242;
}

.tabs .tab{
    display: flex;
    flex-wrap: wrap;
    /* border-bottom: 5px solid #fff; */
}

.tab-link.active:after {
    padding: 0;
    margin: 0;
    display: block;
    content: "";
    width: 30%;
    height: 5px;
    background-color: white;
    position: absolute;
    left: 0;
    bottom: -4px;
}

.tabs .tab-link{
    font-size: 16px;
    color: #757575;
    padding: 10px 50px;
    padding-left: 0;
    position: relative;
}

.tab-link.active a{
    color: #ffba00;
    text-decoration: none;
}

.tab-link a:active,
.tab-link a:hover{
    text-decoration: none;
}

.tab-link a{
    color: #757575;
    font-weight: 500;
}

/* fadein  animation*/
/* 
.vs-scroll {
    opacity: 1;
    transition: opacity 500ms;
}

.vs-scroll.scrolled {
    opacity: 1;
}

.scrolled.fade-in {
    animation: fade-in 0.7s ease-in both;
}

.scrolled.fade-in-bottom {
    animation: fade-in-bottom 0.5s ease-in-out both;
}


@keyframes fade-in-bottom {
    0% {
        
        opacity: 0;
    }
    100% {
        
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
} */


/* animation */
.fadein-anim{
    
    -webkit-animation: fadein 1.5s ease-in; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1.5s ease-in; /* Firefox < 16 */
     -ms-animation: fadein 1.5s ease-in; /* Internet Explorer */
      -o-animation: fadein 1.5s ease-in; /* Opera < 12.1 */
        animation: fadein 1.5s ease-in;

}

.text-fadein-anim{
    
-webkit-animation: fadein 3s ease-in; 
-moz-animation: fadein 3s ease-in; 
    -ms-animation: fadein 3s ease-in; 
    -o-animation: fadein 3s ease-in; 
        animation: fadein 3s ease-in;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* explore */
.explore{
    color: white;
    margin-bottom: 110px;
}

.explore h3{
    font-weight: 400;
    font-size: 25px;
}

.explore p{
    font-size: 16px;
    margin-top: 19px;
}

.image-box{
    margin-top: 35px;
}

.image-abt{
    padding-top: 10px;
}

.image-abt h3 a{
    font-weight: 800;
    font-size: 30px;
    text-decoration: none;
    color: #fff;
}

.image-abt span a{
    color: #9e9e9e;
    font-size: 14px;
    text-decoration: none;
}

.image-box{
    background-image: url(../Images/dots-bg.png);
    padding: 37px 37px 70px;
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 70%;
}

.image-box.bottom-img{
    background-position: bottom left;
}

.image-container img{
    border-radius: 10px;
    width: 100%;
    border: none;
    outline: none;
}

.image-container video{
    background: black;
    mix-blend-mode: hard-light;
}

.light-line{
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #757575;
    vertical-align: super;
    margin-right: 4px;
}

/* Faqs */
.faq{
    color: white;
    padding-top: 60px;
    padding-bottom: 70px;
}

.faq h2{
    font-weight: 800;
    margin-bottom: 35px;
    font-size: 38px;
}

.faq .card{
    border-top: 1px solid #6b6b6b;
    padding-top: 10px;
    background-color: #080808;
    padding-bottom: 10px;
}

.faq .card:last-child{
    border-bottom: 1px solid #6b6b6b;
}

.faq .card-header,
.faq .card-body{
    padding-left: 0;
    padding-right: 0;
}

.faq .card-header a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.faq .card-body{
    color: #9e9e9e;
    font-size: 16px;
    padding-top: 0px;
}

.faq .card-header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
}

#plus, #minus{
    font-size: 24px;    
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

#minus{
    display: none;
}

div.card-header[aria-expanded="true"] #minus{
    display: block;
}

div.card-header[aria-expanded="true"] #plus{
    display: none;
}

div.card-header[aria-expanded="false"] #minus{
    display: none;
}

div.card-header[aria-expanded="false"] #plus{
    display: block;
}

/* capabilities */
.capabilities{
    color: #fff;
}

.capabilities h2{
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 38px;
}

.capabilities p{
    color: #9e9e9e;
    margin-bottom: 45px;
    font-size: 20px;
}

.capabilities .bold.white-text{
    color: #fff;
    line-height: 1.9;
    font-weight: 600;
    font-size: 20px;
}

.capabilities .points{
    color: #9e9e9e;
    line-height: 1.9;
    font-size: 20px;
}


/* 
.contact-info span{
    font-size: 20px;
    display: block;
    font-weight: 500;
    margin-top: 35px;
    color: #535353;
}

.contact-info h2{
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-info{
    max-width: 1200px;
    margin-bottom: 0px !important;
}

.contact-info img{
    max-width: 300px;
} */

/* contact info section */
.contact-info span{
    font-size: 20px;
    display: block;
    font-weight: 500;
    margin-top: 20px;
}

.contact-info h2{
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-info{
    /* max-width: 1200px; */
    margin-bottom: 0px !important;
}

.contact-info img{
    max-width: 300px;
}

/* footer */
footer .qr-row{
    margin-bottom: 0;
}


@media screen and (max-width: 1188px) {
    .tabs .tab-link {
        padding-right: 25px;
    }

    .capabilities h2{
        font-size: 30px;
    }

    .capabilities p{
        font-size: 16px;
    }

    .capabilities .points,
    .bold.white-text{
        font-size: 16px;
    }

    .faq h2 {
        font-size: 30px;
    }

    .faq .card-header a {
        font-size: 16px;
    }

    .faq .card-body {
        font-size: 16px;
    }
}


@media screen and (max-width: 1200px) {
    
    .contact-info span {
        font-size: 18px;
        margin-top: 15px;
    }

    .contact-info img {
        max-width: 100%;
    }

    .contact-info {
        margin-bottom: 30px !important;
    }

}

@media screen and (max-width: 924px) {
    .tabs .tab-link {
        font-size: 15px;
        border-bottom: 3px solid #424242;
    }

    .tabs{
        border-bottom: none;
    }

    .capabilities .bold.white-text,
    .capabilities p,
    .capabilities .points{
        font-size: 18px;
    }
}


@media screen and (max-width: 905px) {
    
    .contact-info img {
        max-width: 100%;
    }

    .contact-info h2 {
        margin-top: 12px;
        margin-bottom: 15px;
        font-weight: 500;
        font-size: 24px;
    }

    .contact-info span {
        font-size: 16px;
    }
    
    /* .contact-info {
        margin-bottom: 50px !important;
    } */

}

@media screen and (max-width: 881px) {

    .contact-info span{
        margin-top: 3px;
    }

    .explore h3 {
        font-size: 23px;
    }

    .explore p {
        font-size: 14px;
    }

    .image-abt h3 a {
        font-size: 26px;
    }    
    
}
@media screen and (max-width: 767px) {

    .row.contact-info{
        align-items: center;
        flex-direction: column-reverse;
        padding-bottom: 100px;
        text-align: center;
        margin: 25px auto 30px auto;
    }

    .contact-info img {
        max-width: 206px;
    }

    
    .f-rev-sm{
        flex-direction: column-reverse;
        margin-bottom: 40px;
        text-align: center;
    }

    .f-rev-sm img{
        max-width: 180px;
    }


    .capabilities .points{
        margin-bottom: 30px;
    }

    .row{
        margin-right: 0;
    }

    .capabilities h2 {
        margin-bottom: 15px;
        font-size: 27px;
    }

    .capabilities p {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .capabilities .bold.white-text,
    .capabilities .points {
        font-size: 14px;
    }

    .faq .card-header a {
        font-size: 16px;
    }

    .faq h2 {
        font-size: 27px;
        margin-bottom: 35px;
    }

    .faq .card {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .bg-black.txt-only {
        padding-top: 68px;
        padding-bottom: 60px;
    }

    .bg-black.txt-only .col-sm-11 span {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .bg-black.txt-only .col-sm-11 h1 {
        font-size: 36px;
    }

    .image-box {
        padding: 37px 37px 0px;
        margin-bottom: 30px;
    }

    .tabs .tab-link {
        font-size: 14px;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .explore {
        color: white;
        margin-bottom: 52px;
    }
}

@media screen and (max-width: 753px) {
    
    .faq{
        padding-right: 10px;
    }
}


@media screen and (max-width: 575px) {

    footer .qr-row {
        bottom: 0;
        text-align: left;
    }
}

@media screen and (max-width: 553px) {
    .bg-black.txt-only .col-sm-11 h1 {
        font-size: 33px;
    }
}

@media screen and (max-width: 460px) {
    
    .contact-info span {
        font-size: 14px;
        margin-top: 10px;
    }

    
    .image-box {
        margin-bottom: 20px;
    }

    .image-abt h3 a {
        font-size: 22px;
    }

    
    .bg-black.txt-only .col-10 h1 a {
        font-size: 35px;
    }
    
}

@media screen and (max-width: 430px) {
    footer .qr-row {
        bottom: 0 !important;
        text-align: left;
    }

    .capabilities h2{
        font-size: 25px;
    }

    .faq {
        padding-top: 34px;
    }

    .faq h2 {
        font-size: 25px;
        margin-bottom: 28px;
    }

    .faq .card-header a {
        font-size: 14px;
    }

    .faq .card-body {
        font-size: 13px;
    }

    .bg-black.txt-only .col-sm-11 span {
        font-size: 14px;
    }

    .bg-black.txt-only .col-sm-11 h1 {
        font-size: 31px;
    }

    .bg-black.txt-only .col-sm-11{
        padding-right: 0;
    }
}

@media screen and (max-width: 405px) {

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-info span {
        font-size: 12px;
    }
    
    .f-rev-sm img {
        max-width: 120px;
    }

    .explore p {
        font-size: 13px;
    }

    .explore h3 {
        font-size: 20px;
    }
    
    .work > .container:first-child {
        padding-top: 120px;
    }

    .tabs,
    .explore{
        padding-left: 10px;
    }

    .tabs .tab-link {
        font-size: 13px;
        padding-right: 15px;
    }

}

@media screen and (max-width: 360px) {


    .contact-info h2 {
        font-size: 18px;
    }

    
    .contact-info span {
        font-size: 12.5px;
        margin-top: 8px;
        margin-right: 3px;
    }


    .capabilities,
    .faq{
        padding-left: 10px;
    }

    .capabilities .row .col-md-10.col-12{
        padding-right: 10px ;
    }

    .capabilities .bold.white-text,
    .capabilities .points{
        line-height: 1.7;
    }

    .bg-black.txt-only .col-sm-11 h1 {
        font-size: 26px;
    }

    .capabilities .bold.white-text, .capabilities .points, .capabilities p{
        font-size: 13px;
    }

    .bg-black.txt-only .col-10 h1 a {
        font-size: 30px;
    }

}

@media screen and (max-width: 320px) {
    .image-abt h3 a {
        font-size: 16px;
        margin-bottom: 0px;
    }


    .image-abt span a{
        font-size: 12px;
    }

    .image-box {
        margin-top: 20px;
    }

    .tabs .tab-link {
        font-size: 12px;
        padding-right: 10px;
    }
    
}


