/* =================================
------------------------------------
  Arcade - Architecture
  Version: 1.0
 ------------------------------------ 
 ====================================*/





/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/


@font-face {
    font-family: 'Quicksand';
    src: url(../fonts/Quicksand-Regular.ttf);
}



html,
body {
    height: 100%;
    /*font-family: 'Source Sans Pro';*/
    font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 700;

}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
}



h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

h4 {
    font-size: 15px;
}

p {
    font-size: 15px;
    color: #727272;
    line-height: 2;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

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

ul,
ol {
    padding: 0;
    margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.p-20{
    padding: 0 20px;
}
.sp-title {
    font-size: 40px;
    margin-bottom: 0px;
    font-weight: bold;
}

.sp-title span {
    background: #16acca;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt50 {
    margin-top: 50px;
}

.spad {
    padding: 100px 0;
}

.spad1 {
    padding: 0 0 100px 0;
}

.spad2 {
    padding: 50px 0 50px 0;
}

.section-title {
    margin-bottom: 75px;
}

.section-title h1,
.section-title h2 {
    display: inline-block;
    background: #0094E6;
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 50px;
}

.set-bg {
    background-size: cover;
    background-repeat: no-repeat;
}

/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    border-left-color: transparent;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.site-btn {
    display: inline-block;
    font-weight: 700;
    border: 4px solid;
    min-width: 150px;
    text-align: center;
    padding: 10px 0;
    position: relative;
    background-color: transparent;
    margin-right: 15px;
    z-index: 1;
    cursor: pointer;
}

.site-btn:after,
.site-btn:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 4px;
    right: -15px;
}

.site-btn:after {
    bottom: 8px;
}

.site-btn:before {
    bottom: 18px;
}

.site-btn.sb-light {
    color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
    background: #fff;
}

.site-btn.sb-dark {
    color: #222222;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
    background: #222222;
}

.site-btn.sb-solid-color {
    background: #baff00;
    border-color: #baff00;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
    background: #222222;
}

.site-btn.sb-solid-dark {
    background: #222;
    border-color: #222;
    color: #baff00;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
    background: #baff00;
}

.element {
    margin-bottom: 100px;
}

/*===  Accordion ===*/
.accordion-area .panel {
    margin-bottom: 15px;
}

.accordion-area .panel-header {
    background: #f0f0f0;
    display: block;
    padding: 12px 50px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active {
    background: #0094e6;
    color: #fff;
    text-align: center;
}

.accordion-area .panel-header.active .panel-link:after {
    content: "-";
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
    content: "+";
}

.accordion-area .panel-link {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #0094e6;
    border: none;
    cursor: pointer;
    color: #fff;
}

.accordion-area .panel-body p {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 25px;
}

.accordion-area .panel-body {
    padding: 0 5px;
}

.accordion-area .panel-link:after {
    content: "+";
    position: absolute;
    left: 50%;
    font-size: 16px;
    font-weight: 700;
    top: 50%;
    line-height: 16px;
    margin-top: -8px;
    margin-left: -4px;
}

/*===  Tab  ===*/
.tab-element .nav-tabs {
    border-bottom: none;
    margin-bottom: 35px;
}

.tab-element .nav-tabs .nav-link {
    border: none;
    background: #f0f0f0;
    border-radius: 0;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding: 15px 30px;
}

.tab-element .nav-tabs .nav-link.active {
    background: #baff00;
}

.tab-element .nav-tabs .nav-link.active,
.tab-element .nav-tabs .nav-link:hover {
    border: none;
}

.tab-element .tab-pane h4 {
    font-size: 18px;
    margin: 25px 0 20px;
}

.tab-element .tab-pane p {
    font-size: 14px;
}

/*===  Loader ===*/
.circle-progress {
    text-align: center;
    padding-top: 30px;
    display: inline-block;
}

.circle-progress .prog-circle {
    position: relative;
    margin-bottom: -155px;
}

.circle-progress .prog-circle:after {
    position: absolute;
    content: "";
    width: 177px;
    height: 177px;
    left: 9px;
    top: 9px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.circle-progress canvas {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.circle-progress .progress-info {
    width: 100%;
    border-radius: 150px;
    margin: 0 auto;
    padding-top: 22px;
}

.circle-progress .progress-info h2 {
    font-size: 48px;
}

.circle-progress .prog-title {
    text-align: center;
    margin-top: 100px;
}

.circle-progress .prog-title h3 {
    font-size: 18px;
    color: #727272;
}

.img-popup-warp .mfp-content {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.header-area {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 50;
}

.logo-area {
    float: left;
    display: inline-block;
    background: #0094E6;
    padding: 20px 60px 30px;
}

.phone-number {
    float: right;
    display: inline-block;
    padding: 5px 10px;
    background: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-right: 50px;
}

.phone-number a {
    text-decoration: none;
    color: #212529 !important;
}

.nav-switch {
    display: none;
}

.nav-menu {
    display: inline-block;
    float: right;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 34px 10px 5px;
    /*text-transform: uppercase;*/
    margin-right: 30px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a:after {
    position: absolute;
    content: "";
    width: 3px;
    height: 0;
    left: 50%;
    margin-left: 0px;
    top: 0;
    background: #14b8e5;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-menu ul li a:hover:after {
    height: 25px;
}

.nav-menu ul li.active > a:after {
    height: 25px;
}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
    height: 100vh;
    background: #ededed;
    position: relative;
}

.left-bar {
    position: absolute;
    width: 100px;
    height: 100%;
    background: #0094E6;
    z-index: 20;
}

.left-bar .left-bar-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    margin-bottom: 90px;
}

.social-links a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.social-links a:hover {
    color: #baff00;
}

.hero-right-text {
    position: absolute;
    right: 140px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    bottom: 60%;
    z-index: 30;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 9px;
}

.hero-slider .hero-slide-item {
    width: 100%;
    height: 100vh;
    display: table;

}

.hero-slider .hero-slide-item .slide-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;

}

.hero-slider .owl-nav {
    position: absolute;
    display: inline-block;
    left: 350px;
    bottom: 70px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
    color: #baff00;
}

.hero-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

.slide-num-holder {
    width: 153px;
    height: 150px;
    position: absolute;
    right: 60px;
    background: rgba(18, 18, 18, 0.95);
    bottom: -40px;
    z-index: 111;
    text-align: right;
    padding-right: 20px;
    padding-top: 40px;
    color: #fff;
    font-weight: 700;
}

.slide-num-holder span {
    font-size: 48px;
    color: #baff00;
    position: relative;
    top: -10px;
    right: -10px;
}

.slide-content {
    margin-left: 350px;
    margin-bottom: 50px;
    padding-left: 190px;
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.slide-content:after {
    position: absolute;
    content: "";
    height: calc(100% + 50px);
    width: 330px;
    border-top: 130px solid #00d2ff;
    border-left: 150px solid #00d2ff;
    border-bottom: 110px solid #00c0ff;
    top: 0;
    left: 0;
    opacity: 0.73;
}

.slide-content h2 {
    color: #fff;
    font-size: 60px;
    line-height: 80px;
}

.owl-item.active .slide-content {
    opacity: 1;
}

/*----------------------------------------*/
/*  Intro Section CSS
/*----------------------------------------*/
.intro-text p {
    margin-bottom: 20px;
}

.intro-text ul li {
    color: #727272;
    margin-left: 18px;
    line-height: 2;
    text-align: left;
}

/*----------------------------------------*/
/*  Service Section CSS
/*----------------------------------------*/
.service-box {
    margin-bottom: 30px;
    box-shadow: 0px 0px 6px #00000012;
    padding: 18px;
    border: 1px solid #dedede;
}

.service-box .sb-icon {
    margin-bottom: 30px;
    width: 100px;
    height: 125px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service-box .sb-icon .sb-img-icon {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-box .sb-icon .sb-img-icon img {
    opacity: 0.2;
    max-height: 70px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-box .sb-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 25px;
    top: -80px;
    -webkit-transform: rotate(-65deg);
    -ms-transform: rotate(-65deg);
    transform: rotate(-65deg);
}


.service-box .readmore {
    font-size: 12px;
    font-weight: 700;
    color: #222222;
    display: inline-block;
    padding: 2px 0;
    background-color: transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.service-box:hover .sb-icon {
    background-color: #f0f0f0;
}

.service-box:hover .sb-icon .sb-img-icon {
    left: 15px;
    margin-bottom: 5px;
}

.service-box:hover .sb-icon .sb-img-icon img {
    opacity: 1;
}

.service-box:hover .readmore {
    background-color: #16acca;
    padding: 2px 10px;
    color: #fff;
}

/*----------------------------------------*/
/*  Detailing Section CSS
/*----------------------------------------*/
.detail-box {
    margin-bottom: 00px;
    box-shadow: 0px 0px 6px #00000012;
    padding: 18px;
    border: 1px solid #dedede;
}

.detail-box .db-icon {
    margin-bottom: 30px;
    width: 100px;
    height: 125px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.detail-box .db-img-icon {
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.detail-box .db-img-icon img {

    max-height: 70px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}






/*----------------------------------------*/
/*  CTA Section CSS
/*----------------------------------------*/
.cta-section {
    position: relative;
    margin-bottom: 100px;
}

.cta-section:after {
    content: "";
    position: absolute;
    width: 67%;
    height: 100%;
    right: 0;
    top: 0;
    background: #2a85d2;
    z-index: 2;
}

.cta-section .cta-image-box {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    background-image: url("../img/cta-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section .container {
    position: relative;
    z-index: 9;
}

.cta-section .cta-content h2 {
    color: #fff;
}

.cta-section .cta-content p {
    color: #fff;
    margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon {
    display: inline-block;
    height: 80px;
    position: relative;
    width: 50px;
    margin-right: 40px;
    margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon:last-child {
    margin-right: 0;
}

.cta-section .cta-content .cta-img-icon img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 100%;
}

/*----------------------------------------*/
/*  Milestones Section CSS
/*----------------------------------------*/
.milestone {
    min-height: 110px;
    padding-left: 43px;
    padding-top: 15px;
    position: relative;
}

.milestone h2 {
    margin-bottom: 0;
    font-size: 50px;
    display: inline-block;
    float: left;
    position: relative;
    z-index: 1;
}

.milestone p {
    float: left;
    font-size: 20px;
    margin-top: 10px;
    margin-left: 10px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.milestone:after {
    position: absolute;
    content: "";
    width: 110px;
    height: 110px;
    left: 0;
    top: 0;
    background: #efefef;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.milestone:hover:after {
    background: #baff00;
}

/*----------------------------------------*/
/*  Projects Section CSS
/*----------------------------------------*/
.projects-filter-nav {
    list-style: none;
    text-align: right;
    margin-top: 20px;
}

.projects-filter-nav li {
    display: inline-block;
    margin-left: 25px;
    color: #747474;
    font-size: 18px;
    font-weight: 500;
    padding: 0 5px;
    cursor: pointer;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.projects-filter-nav li.btn-active {
    background: #baff00;
    color: #222222;
}

.projects-slider {
    padding: 0 40px;
    margin-top: 60px;
}

.projects-slider .single-project {
    height: 550px;
    width: 100%;
    background: #333;
    -o-transition: .8s;
    transition: .8s;
    -webkit-transition: .8s;
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
}

.projects-slider .single-project .project-content {
    padding: 50px;
    height: 100%;
    background: rgba(13, 13, 13, 0.5);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    opacity: 0;
}

.projects-slider .single-project .project-content h2 {
    color: #fff;
    font-weight: 500;
    position: relative;
    top: 20px;
    -webkit-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
}

.projects-slider .single-project .project-content p {
    color: #baff00;
    font-weight: 500;
    position: relative;
    top: 40px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.projects-slider .single-project .seemore {
    position: absolute;
    right: 50px;
    bottom: 30px;
    background: #baff00;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding: 2px 8px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.projects-slider .single-project:hover .project-content {
    opacity: 1;
}

.projects-slider .single-project:hover .project-content h2,
.projects-slider .single-project:hover .project-content p {
    top: 0;
}

.projects-slider .single-project:hover .seemore {
    bottom: 50px;
}

.projects-slider .single-project.__loading {
    opacity: 0;
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    -webkit-transform: translateX(40px);
}

.projects-slider .owl-nav {
    text-align: right;
    max-width: 1170px;
    margin: 40px auto 0;
}

.projects-slider .owl-nav .owl-prev,
.projects-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 0 5px;
}

.projects-slider .owl-nav .owl-prev:hover,
.projects-slider .owl-nav .owl-next:hover {
    background: #baff00;
}

.projects-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.projects-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.projects-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

/*----------------------------------------*/
/*  Client Section CSS
/*----------------------------------------*/
.client-slider .single-brand {
    display: table;
    height: 80px;
    width: 100%;
}

.client-slider .single-brand a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.client-slider .single-brand a img {
    width: auto;
    margin: 0 auto;
    opacity: 0.2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.tools-slider .single-brand a img {
    opacity: 1;
    height: 50px;
}

.client-slider .single-brand a:hover img {
    opacity: 1;
}

/*----------------------------------------*/
/*  Footer Section CSS
/*----------------------------------------*/
.footer-section {
    padding-top: 110px;
    padding-bottom: 110px;
    border-top: 1px solid #c8c8c8;
    position: relative;
    /*background: #E6E6E6;*/
}

.footer-section .copyright {
    position: absolute;
    bottom: 0%;
    margin-top: -12px;
    left: 0px;
    color: #737373;
}

.footer-section .footer-social {
    width: 75px;
    text-align: center;
    position: absolute;
    right: 60px;
    top: -55px;
    padding-top: 20px;
    background: #0094E6;
}

.footer-item ul {
    list-style: none;
}

.footer-item ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-item ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    padding: 0 5px;
}

.footer-item ul li a:hover {
    background: #16acca;
    color: #fff;
}

/*----------------------------------------*/
/*  Other pages CSS
/*----------------------------------------*/
.page-header-section {
    height: 445px;
    padding-top: 200px;
}

.page-header-section .header-title {
    font-size: 82px;
    color: #fff;
}

.page-header-section .header-title span {
    background: none;
    color: #baff00;
}

/*----------------------------------------*/
/*  About page CSS
/*----------------------------------------*/
.testimonials-section {
    position: relative;
    margin: 60px 0;
}

.testimonials-section h1 {
    color: #fff;
}

.testimonials-section:after {
    content: "";
    position: absolute;
    width: 67%;
    height: 100%;
    right: 0;
    top: 0;
    background: #2a85d2;
    z-index: 2;
}

.testimonials-section .testimonials-image-box {
    position: absolute;
    width: 50%;
    height: calc(100% + 120px);
    left: 0;
    top: -60px;
    background-image: url("../img/building_mttl.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-section .container {
    position: relative;
    z-index: 9;
}

.testimonials-section .qut {
    color: #baff00;
    font-size: 36px;
    margin-bottom: 20px;
}

.ts-item p {
    color: #fff;
    font-style: italic;
    margin-bottom: 50px;
}

.ts-item h4 {
    font-size: 15px;
    font-weight: 400;
    color: #baff00;
    margin-bottom: 0;
}

.ts-item span {
    font-size: 12px;
    color: #fff;
}

.team-member {
    padding-right: 67px;
    position: relative;
    margin: 20px 0;
}

.team-member img {
    min-width: 100%;
}

.team-member .member-info {
    display: none;
    position: absolute;
    padding: 30px;
    width: auto;
    background: #fff;
    bottom: 1px;
    -webkit-box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
    box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-member .member-info h2 {
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
}

.team-member .member-info p {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.team-member:hover .member-info {
    animation: d-pop .5s;
    display: block;
    background: #0094E6C4;
    -webkit-box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
    box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
    overflow: hidden;
    z-index: 1;
}

@keyframes d-pop {
    from {
        transform: translateY(10px)
    }

    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.promo-section {
    padding-top: 90px;
    padding-bottom: 80px;
}

.promo-text h1 {
    margin-bottom: 20px;
}

.promo-text p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0;
}

.slide-num-holder.test-slider {
    right: auto;
    left: 100%;
    bottom: -140px;
    width: 140px;
    height: 140px;
}

/*----------------------------------------*/
/*  Service page CSS
/*----------------------------------------*/
.service-slider {
    position: relative;
}

.service-slider .owl-controls {
    position: absolute;
    height: 100%;
    width: 14px;
    left: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
}

.service-slider .owl-dots {
    display: table-cell;
    vertical-align: middle;
}

.service-slider .owl-dots .owl-dot {
    width: 14px;
    height: 13px;
    margin-bottom: 10px;
    background: #e8e8e8;
}

.service-slider .owl-dots .owl-dot.active {
    background: #baff00;
}

.service-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.service-text p {
    margin-bottom: 50px;
}

.service-text ol {
    list-style: none;
}

.service-text ol li {
    font-size: 20px;
    font-weight: 700;
    color: #727272;
    margin-bottom: 20px;
}

.solid-service-box {
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    min-height: 420px;
    max-height: 420px;
    box-shadow: 0 0px 20px rgba(153, 153, 153, .2);
}

.solid-service-box h2 {
    font-size: 48px;
    color: #727272;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box h3 {
    margin-bottom: 20px;
}

.solid-service-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.solid-service-box .readmore {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    opacity: 0;
    visibility: hidden;
    position: relative;
    bottom: -20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box:hover {
    background: #a4e2ff;
}

.solid-service-box:hover h2 {
    color: #222;
}

.solid-service-box:hover .readmore {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.promo-box {
    width: 1383px;
    margin: 0 auto;
    padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
    color: #fff;
}

/*----------------------------------------*/
/*  Blog page CSS
/*----------------------------------------*/
.blog-post {
    margin-bottom: 120px;
}

.blog-post .thumb {
    padding: 25px;
    position: relative;
}

.blog-post .thumb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    top: 0;
    left: 0;
    background: #f0f0f0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.blog-post .post-date {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    background: #baff00;
    padding: 4px 15px;
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 30px;
}

.blog-post h2 a {
    color: #222;
}

.blog-post p {
    margin-bottom: 0;
}

.blog-post .post-meta {
    margin-bottom: 40px;
}

.blog-post .post-meta a {
    color: #727272;
    font-size: 12px;
    margin-right: 10px;
}

.blog-post .post-meta a i {
    font-size: 16px;
    margin-left: 5px;
}

.blog-post:hover .thumb:after {
    background: #baff00;
}

.pagination {
    display: inline-block;
    padding: 20px 30px;
    background: #222;
    border-radius: 0;
}

.pagination a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pagination a.active {
    font-size: 48px;
    color: #baff00;
}

.search {
    position: relative;
}

.widget-area {
    margin-bottom: 80px;
}

.widget-area .widget-title {
    font-size: 22px;
    margin-bottom: 40px;
}

.widget-area .search input {
    width: 100%;
    background: #f0f0f0;
    border: none;
    font-size: 12px;
    padding: 10px;
    padding-right: 35px;
    font-style: italic;
}

.widget-area .search button {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: #838383;
    height: 100%;
    width: 40px;
}

.widget-area ul {
    list-style: none;
}

.widget-area ul li a {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #727272;
    padding: 3px 10px;
    padding-left: 25px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:after {
    position: absolute;
    content: "+";
    color: #838383;
    left: 5px;
    top: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:hover {
    background: #baff00;
    color: #222;
}

.widget-area ul li a:hover:after {
    color: #222;
}

.widget-area ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .rp-widget .rp-widget-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-area .rp-widget .rp-widget-item:last-child {
    margin-bottom: 0;
}

.widget-area .rp-widget .thumb {
    width: 68px;
    height: 68px;
    float: left;
    margin-right: 30px;
    background: #ddd;
    display: block;
}

.widget-area .rp-widget .rp-content {
    padding-left: 98px;
}

.widget-area .rp-widget h4 {
    line-height: 1.5;
    margin-bottom: 0;
}

.widget-area .rp-widget p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.widget-area .quote-widget span {
    font-size: 47px;
    font-style: italic;
    color: #727272;
}

.widget-area .quote-widget p {
    font-style: italic;
    margin-bottom: 0;
    font-size: 13px;
}

.widget-area .instagram-widget {
    padding-top: 30px;
}

.widget-area .instagram-widget a {
    display: block;
    overflow: hidden;
    width: 33.33333%;
    float: left;
    position: relative;
}

.widget-area .instagram-widget a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #baff00;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area .instagram-widget a:before {
    position: absolute;
    content: "+";
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    width: 20px;
    top: 50%;
    margin-top: -13px;
    left: 50%;
    margin-left: -10px;
    text-shadow: 0 0 20px #999;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
}

.widget-area .instagram-widget a:hover:after,
.widget-area .instagram-widget a:hover:before {
    opacity: 1;
}

.widget-area .instagram-widget a img {
    min-width: 100%;
}

/*----------------------------------------*/
/*  Contact page CSS
/*----------------------------------------*/
.cf-social {
    margin-top: 50px;
}

.cf-social a {
    color: #222;
    margin-right: 25px;
}

.contact-form {
    padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 13px;
    border: 1px solid #ccc;
    background: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.contact-form textarea {
    height: 100px;
    margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
    font-style: italic;
}

.contact-form :-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::placeholder {
    font-style: italic;
}

.map-area {
    height: 685px;
    width: 100%;
    display: block;
    background: #f0f0f0;
    margin-bottom: 2px;
}

/*----------------------------------------*/
/*  Portfolio page CSS
/*----------------------------------------*/
.portfolio-filter {
    list-style: none;
}

.portfolio-filter li {
    display: inline-block;
    margin-right: 40px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    font-weight: 500;
}

.portfolio-filter li.active {
    text-decoration: underline;
    -webkit-text-decoration-color: #2046f2;
    text-decoration-color: #2046f2;
}

.portfolio-warp {
    display: block;
    overflow: hidden;
}

.portfolio-warp .grid-item {
    width: 20%;
    background-position: center;
}

.portfolio-warp .grid-item:after {
    content: '';
    display: block;
    clear: both;
}

.portfolio-warp .grid-item.grid-wide,
.portfolio-warp .grid-item.grid-long {
    width: 40%;
}

.portfolio-warp .grid-item a {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(186, 255, 0, 0.45);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.portfolio-warp .grid-item a:after {
    position: absolute;
    content: "+";
    left: 50%;
    top: 60%;
    width: 48px;
    margin-left: -24px;
    margin-top: -24px;
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.portfolio-warp .grid-item:hover a {
    opacity: 1;
}

.portfolio-warp .grid-item:hover a:after {
    top: 50%;
}

.portfolio-warp .grid-sizer {
    width: 20%;
}

/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
    .slide-num-holder.test-slider {
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 1400px) {
    .promo-box {
        width: 100%;
    }
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .phone-number {
        margin-right: 30px;
    }

    .nav-menu ul li a {
        margin-right: 20px;
    }

    .slide-content {
        margin-left: 220px;
    }

    .milestone p {
        margin-left: 10px;
        font-size: 17px;
    }

    .milestone h2 {
        font-size: 55px;
    }

    .milestone:after {
        width: 90px;
        height: 90px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        right: 100px;
    }
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-area {
        padding: 20px 40px 30px;
    }

    .slide-content {
        margin-left: 170px;
        margin-bottom: -35px;
        padding-left: 120px;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .slide-content:after {
        border-top: 100px solid #00d2ff;
        border-left: 100px solid #00d2ff;
        border-bottom: 60px solid #00c0ff;
    }

    .hero-slider .owl-nav {
        left: 170px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        bottom: 70%;
        right: 100px;
    }

    .nav-menu ul li a {
        margin-right: 5px;
        font-size: 13px;
        padding: 37px 7px 5px;
    }

    .phone-number {
        font-size: 12px;
        margin-right: 10px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .solid-service-box {
        margin-bottom: 30px;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .hero-section,
    .hero-slider .hero-slide-item {
        height: 850px;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .projects-filter-nav li {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {

    h1,
    .sp-title {
        font-size: 34px;
    }

    .page-header-section .header-title {
        font-size: 55px;
    }

    .left-bar {
        width: 70px;
    }

    .slide-content:after,
    .hero-right-text,
    .phone-number {
        display: none;
    }

    .nav-switch {
        position: absolute;
        right: 20px;
        font-size: 30px;
        color: #fff;
        top: 20px;
        display: block;
    }

    .nav-menu {
        position: absolute;
        width: calc(100% - 90px);
        left: 80px;
        background: #00304ad6;
        top: 100%;
        margin-top: 11px;
        display: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 21px;
        border-bottom: 1px solid #254f66;
        margin-right: 0;
        color: #fff !important;
    }

    .nav-menu ul li a:after {
        left: 20px;
    }

    .nav-menu ul li.active > a:after,
    .nav-menu ul li a:hover:after {
        height: 10px;
    }

    .hero-section {
        height: auto;
    }

    .hero-slider .hero-slide-item {
        padding: 150px 0;
        height: auto;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-slider .owl-nav {
        padding-left: 70px;
        width: 100%;
        text-align: center;
        left: 0;
    }

    .slide-content {
        margin-left: 70px;
        padding: 0;
        text-align: center;
    }

    .slide-num-holder,
    .slide-num-holder.test-slider {
        right: 0;
        height: 75px;
        width: 136px;
        padding-top: 18px;
    }

    .slide-num-holder span,
    .slide-num-holder.test-slider span {
        font-size: 40px;
    }

    .slide-num-holder.test-slider {
        bottom: -135px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #2a85d2;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 40px;
    }


}

/* small mobile :320px. */
@media only screen and (max-width: 479px) {
    .logo-area {
        padding: 20px 30px 30px;
    }

    .header-area {
        background: #00304a;
        padding-right: 66px;
    }

    .nav-menu {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-top: 2px solid;
    }

    .left-bar {
        display: none;
    }

    .hero-slider .owl-nav {
        padding-left: 0;
    }

    .slide-content {
        margin-left: 0;
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 35px;
        line-height: 1.5;
    }

    .portfolio-warp .grid-item {
        width: 100%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 100%;
    }

    .portfolio-warp .grid-sizer {
        width: 100%;
    }

    .projects-slider {
        padding: 0 15px;
    }
}



.nissu {

    animation: scale-up-center 50s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    overflow: hidden;
}


.imghold {
    animation: scale-up-center 50s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .imghold ul li {
        display: none;
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2019-6-10 20:24:47
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/* Custom Classes */
.defination {
    position: absolute;
    width: 50%;
    background: #0000001f;
    color: #fff;
    padding: 50px;
    right: 4%;
    top: 30%;
}

#value_chain {}

.bgvt,
.bgbl {
    color: white;
    padding: 10px 0 10px 10px;
}

.bgvt {
    background: #7F7EAD;

}

.bgbl {
    background: #1A9CC7;

}

.cps {
    padding-left: 35px;
}

.tj {
    text-align: justify;
}

.section-title h1 {
    color: #fff;
}

.niss button {
    background: none;
    border: 0;
    margin-bottom: 70px;
    color: #505050;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    padding: 10px 20px;
}

.niss ul li {
    font-size: 15px;
    color: grey;
}


.w3-red,
.w3-hover-red:hover {
    color: #fff !important;
    background-color: #0094E6 !important;
    height: 50px;
    font-weight: 500;
}

@media only screen and (min-width: 768px) {
    .copyright {
        visibility: visible;
    }

    .copyright1 {
        visibility: hidden;
    }

}

@media only screen and (max-width: 375px) {
    .copyright {
        visibility: hidden;
    }

    .copyright1 {
        visibility: visible;
        position: absolute;
        margin: 0 auto;
        bottom: 1%;
        left: 14%;
        text-align: center;
    }

    .milestone_icon {
        width: 8vh !important;
    }
}

.fact-area .fact-box {
    /*box-shadow: 0 20px 50px rgba(153, 153, 153, .2);*/
}

.fact-box {
    margin: 20px 0 auto;
}

.mtb50 {
    margin-top: 50px;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.single-fact {
    text-align: center;
    margin: 20px 0;
    padding: 8px 16px;
    width: 25vh;
    /*border-right: 1px solid #ddd;*/
}

.single-fact h2 {
    font-size: 28px;
}

.single-fact p {
    margin: 0;
    font-size: 14px;
}

.single-fact:last-child {
    border-right: 0;
}

@media only screen and (max-width: 991px) {
    .fact-box {
        margin: 40px 0;
        padding: 0 20px;
    }

    .single-fact {
        margin: 20px 0;
        padding: 20px 0;
    }

    .single-fact h2 {
        font-size: 20px;

    }

    .single-fact p {
        font-size: 12px;

    }
}

@media only screen and (max-width: 768px) {
    .fact-box {
        margin: 40px 0;

    }

    .single-fact {
        margin: 10px 0;
        padding: 8px 32px;
    }

    .single-fact h2 {
        font-size: 25px;

    }

    .single-fact p {
        font-size: 14px;

    }

    .single-fact:nth-child(2),
    .single-fact:nth-child(3) {
        border-right: 0;
    }

    .dt {
        display: table;
    }
}

.az {
    animation: animatezoom 0.6s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.i4ewOd-haAclf > .i4ewOd-pzNkMb-haAclf {
    visibility: hidden;
}

ul li {
    list-style: disclosure-closed;
}

.liner hr {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-top: 7px;
}

/* MODAL Settings*/
.modal-dialog h1,
h2,
h3,
h4 {
    color: #434343;
}

.viewer {
    border: 0;
    position: relative;
    vertical-align: middle;
    display: block;
    margin: 0 auto;
    color: #fff;
    background: #000;
    height: 30px;
    padding: 10px;
}

.modal-dialog {
    max-width: 80%;
    font-size: 13px;
    color: #727272;
}

.project-img,
.project-desc {
    margin: 0 0 30px 0;
}

.project-desc ul li {
    list-style: disc;
    line-height: 2;
    margin-left: 10px;
}

.project-content {
    padding: 10px 30px;
}

.more-desc {}

.table-box {
    background: #F9F9F9;
    padding: 20px;
}

/* MODAL Settings Ends*/


/* video start*/
#sectionhome {
    background: url('img/srikanth.jpg');
    background-size: auto;
    height: 100vh;
    background-size: cover;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    max-height: 1080px;
}

.video_overlay {
    background: rgba(0, 0, 0, .52) none repeat scroll 0 0;
    border: 0 none;
    height: 100vh;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 7;
}

#sectionhome .video,
#section2 .video {
    border: 0 none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

/* video ends*/

/* Laptop Settings */
.readbtn-slide {
    visibility: hidden;
}

@media only screen and (max-width: 1250px) {
    .defination {
        visibility: hidden;
    }

    .readbtn-slide {
        visibility: visible;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {


    .slide-content {
        margin-left: 250px;
        margin-bottom: 50px;
        height: 65vh;
    }

    @media only screen and (min-width: 1024px) and (max-width: 1366px) {


        .slide-content {
            margin-left: 280px;
            margin-bottom: 50px;
            height: 65vh;
        }

        .slide-content::after {
            border-top: 110px solid #00d2ff;
            border-left: 120px solid #00d2ff;
            border-bottom: 100px solid #00c0ff;
        }

        .slide-content {
            padding-top: 150px;
            padding-left: 150px;
        }

        .slide-content h2 {
            font-size: 46px;
            line-height: 60px;
        }

        .hero-right-text {
            bottom: 70%;
        }
    }
}

.milestone_icon {
    width: 5vh;
}

/* Footer Section Modified */
.footer-item h3 {
    font-size: 18px;
    color: #777777;
    font-weight: 600;
    text-shadow: 0 1px 0 #fff;
}

.footer-item h6 {
    font-size: 14px;
    color: #777777;
    font-weight: 600;
}

.footer-section {
    background: rgba(0, 0, 0, 0) url("../img/fabric_1.png") repeat scroll 0% 0%;
}

.footer-item ul li a {
    color: #A2A2A2;
    text-shadow: 0 1px 0 #fff;
}

.footer-item ul li a:hover {
    color: #fff;
    text-shadow: 0 0px 0 #fff;
}

.footer-item1 ul li,
h6 {
    color: #A2A2A2;
    text-shadow: 0 1px 0 #fff;
    margin-top: 18px;
    list-style: url("../img/map-icon_footer.png");
}

/* Contact Locations Section */
.icon-small {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    float: left;
}

.mttl-locations {
    margin: 20px 0;
}

.mttl-locations p {
    line-height: 1;
}

.mttl-locations h5 {
    font-weight: 400;
}

.country-wise {
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
    margin: 40px 0;
}

.country-name {
    float: left;
    font-size: 24px;
    margin-left: 20px;
    font-weight: 600;
}

.cfbg {
    background: #fff;
    box-shadow: 0 0 7px #00000030;
    padding: 20px;
}


.tools {
    box-shadow: 0 0 5px #00000029;
    border: 1px solid #dedede;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 180px;
    padding: 5vh;
    margin-bottom: 30px;
}

.mb30 {
    margin-bottom: 30px;
}



@media only screen and (min-width: 575px) and (max-width: 1920px) {
    .tsc_sm {
        display: none;
    }

    .tsc_lg {
        display: block;
    }
}

@media only screen and (max-width: 575px) {
    .tsc_sm {
        display: block;
    }

    .tsc_lg {
        display: none;
    }
}

.client-section,
.tsc-lg {
    border-bottom: 1px solid #dfdfdf;
}

.services_ext .seemore {
    background: #5895d7;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
}

.services_extw .seemore {
    background: #fff;
    font-size: 14px;
    color: #5895d7;
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
}

.verticla-container {
    width: 1500px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 100px;
}

.verticla-container q {
    font-size: 22px;
}

.vertical-page ul li a {
    color: #000;
}

.vertical-bg {
    position: absolute;
    z-index: -1;
    right: 0;
}

@media only screen and (max-width: 1366px) {


    .verticla-container {
        width: 1200px;
    }
}

@media only screen and (max-width: 1024px) {


    .verticla-container {
        width: 100%;
    }

}

/* DROPDOWN Start */

.dropbtn {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 22px 16px !important;
    text-decoration: none;
    display: block !important;
}

.dropdown-content a {
    font-size: 15px !important;
    margin-right: 0 !important;
}

.dropdown-content a::after {
    background: none !important;
}


.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {}

/* DROPDOWN End*/
.modal-header {
    border-bottom: 0;
}

.modal-title {
    margin-bottom: 30px;
}

.awards {
    float: left;
    padding: 10px !important
}


.mttl-locations button {
    background: #16acca;
    padding: 7px;
    border-radius: 3px;
    color: #fff;
    border: 0;
}

.mttl-locations button a {
    color: #fff;
}


/* Modification*/
@media only screen and (min-width: 769px) and (max-width: 1920px) {
    .minified_lo img {
        background-repeat: no-repeat !important;
    }

    .minified_lo .owl-carousel .owl-stage {
        width: 100% !important;
    }

    .minified_lo .owl-carousel .owl-item {
        margin-right: 14px !important;
        margin-bottom: 20px;
    }

    .minified_lo .projects-slider .single-project {
        height: 380px;
    }

    .minified_lo .projects-slider .single-project {
        background-size: cover;
        background-repeat: no-repeat !important;
    }
}

/* Modification*/
@media only screen and (min-width: 319px) and (max-width: 768px) {
    .minified_lo .projects-slider .single-project {
        background-size: contain !important;
        background-repeat: no-repeat !important;
    }

}




/* . Custom Hover Effect */

.hovereffect {

    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    cursor: default;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out
}

.hovereffect img {
    display: block;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.hovereffect h2 {
    color: #baff00;
    font-family: 'Source Sans Pro';
    position: relative;
    font-size: 6rem;
    -webkit-transform: translatey(-100px);
    -ms-transform: translatey(-100px);
    transform: translatey(-100px);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position: absolute;
    font-weight: lighter;
    left: 45%;
    top: 35%;
    cursor: pointer;
}

.hovereffect a.info {
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 50px 0 0;
    padding: 7px 14px;
}

.hovereffect a.info:hover {
    box-shadow: 0 0 5px #fff;
}

.hovereffect:hover img {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.hovereffect:hover .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
}

.hovereffect:hover h2,
.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: translatey(0);
    -webkit-transform: translatey(0);
    transform: translatey(0);
}

.hovereffect:hover a.info {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}

.seemore1 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #baff00;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding: 2px 8px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.project-content a:hover {
    color: #000 !important;
}

.project-content p {
    color: #baff00;
    font-weight: 500;
    position: relative;
    top: 80px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.projects_mttl > .col-pt0 .col-lg-3,
.col-md-4,
.col-sm-6,
.col-xs-12 {
    padding: 3px;
}

.projects_gallery .container {
    max-width: 1800px;
}

@media only screen and (max-width: 320px) {
    .hero-slider .owl-dots span {
        left: 33% !important;
        bottom: 50px !important;
    }

}

@media only screen and (max-width: 640px) {
    .hero-slider .owl-dots span {
        left: 33% !important;
        bottom: 50px !important;
    }

}

/* small mobile :320px. */
@media only screen and (min-width:440px) and (max-width: 766px) {
    .logo-area {
        padding: 10px 30px 10px;
    }

    .header-area {
        background: #121212;
        padding-right: 66px;
    }

    .nav-menu {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-top: 2px solid;
    }

    .left-bar {
        display: none;
    }

    .hero-slider .owl-nav {
        padding-left: 0;
    }

    .hero-slider .hero-slide-item {
        padding: 40px 0;

    }

    .slide-content {
        margin-left: 0;
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 30px;
        line-height: 1.5;
    }

    .portfolio-warp .grid-item {
        width: 100%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 100%;
    }

    .portfolio-warp .grid-sizer {
        width: 100%;
    }

    .projects-slider {
        padding: 0 15px;
    }

    .page-header-section {
        height: 320px;
    }
}

#categories {
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    font-weight: 600;
}

#categories ul li {
    display: list-item;
    float: left;
    margin: 20px;
    list-style: none;
    text-transform: uppercase;
}


#categories li:nth-child(1) {
    color: #EF6F51;
}

#categories li:nth-child(2) {
    color: #8B3A91;
}

#categories li:nth-child(3) {
    color: #D89E64;
}

#categories li:nth-child(4) {
    color: #9FB72E;
}

#categories li:nth-child(5) {
    color: #B31911;
}

#categories li:nth-child(6) {
    color: #37C1C5;
}

#categories li:nth-child(7) {
    color: #6482FF;
}

#categories li:nth-child(8) {
    color: #EAC016;
}

#categories li:nth-child(9) {
    color: #9C75FF;
}

#categories li:nth-child(10) {
    color: #DD00A0;
}

/* TEAM */
.team-section {
    margin-bottom: 20px;
}

.team-img-holder {
    text-align: center;
    border-radius: 100%;
    max-height: 200px;
    border: 2px solid #00d4e6;
    margin-bottom: 40px;
}

.tc {
    text-align: center;
}

.nc-row h3,
.nc-row-alt h3,
.nc-row-bod h3 {
    margin-bottom: 0;
    color: #16acca;
}

.nc-row span,
.nc-row-alt span,
.nc-row-bod span {
    color: #bec62f;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
}

.nc-row-bod {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px dashed #ccc;
}

.nc-row {
    text-align: left;
}

.nc-row-alt {
    text-align: right;
}

.spec li {
    list-style: none !important;
}

.info-img ing {
    max-width: 34px;
}

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

.info-content {
    text-align: left;
    padding: 1rem 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .nc-row,
    .nc-row-alt {
        text-align: left !important;
    }

    .bbds {
        border-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1920px) {

    .nc-row,
    .nc-row-alt {
        text-align: left !important;
    }

    .bbds {
        border-bottom: 0;
    }

    .toggle-icon {
        display: none !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .info-content {
        text-align: center !important;
    }

    .bbds {
        border-bottom: 1px dashed #000;
        margin: 20px 0;
    }

    .bbd {
        border-bottom: 0 !important;
    }

    .niss button {
        margin-bottom: 30px;
        padding: 10px 16px;
    }

    .toggle-text {
        display: none;
    }

    .toggle-icon {
        display: block;
        color: #b8b8b8;
    }

    .w3-red .toggle-icon,
    .w3-hover-red .toggle-icon:hover {
        color: #fff;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

    .nc-row,
    .nc-row-alt {
        text-align: center !important;
    }

    .iso span {
        position: relative;
        left: 3% !important;
    }
    .intro_section{
        margin-top: 8vh !important;
    }
    .civil_img, .mes_img {
        height: 42vh !important;
    }
    
}

table tr:nth-child(even) td:first-child {
    text-align: left;
}

table tr:nth-child(odd) td:first-child {
    text-align: left;
}

.bbd {
    border-bottom: 1px dashed #000;
}

.iso span {
    margin: 20px 0px;
    display: inline-block;
    position: relative;
    left: 20%;
}

.iso span strong {
    margin-left: 14px;
}

.tj p {
    text-align: justify;
}

.intro_section{
       height: 100%;
    }
.civil_img, .mes_img {
    float: left;
    display: table-cell;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    background-size: 100%;
}

.civil_img {
    background-color: #E7E7E1;

}
.redirect {
            height: 100vh;
            background-position: center center;
            vertical-align: middle;
            display: table-cell;
        }

.mes_img {
    background-color: #36A3D0;

}
