/*Genral*/

html, body {
	height: 100%;
	margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

a{
	text-decoration:none !important;
	color:#000;
}
img {
    max-width: 100%;
    height: auto;
}
.pd0{
	padding:0px !important;
}
.pd31{
	padding:30px 15px 20px 15px !important;
}
.pd21{
	padding: 0px 15px 5px 15px !important;
} 
.pd30{
	padding:30px 0px!important;
}
.pd33{
	padding: 30px 15px;
}
.pd50{
	padding:50px 0px !important;
}
.pd80{
	padding:80px 0px  40px!important
}
.pd-top-50{
	padding-top:50px !important
}
.pd-btn-0{
	padding-bottom:0px !important;
}
.pd-b25{
	padding-bottom:25px !important
}
.bg-white{
	background:#fff;
	box-shadow:0px 0px 10px 0px rgba(0,0,0,0.1);
}
.bg-grey{
	background:#f3f3f3 !important;
}
.bg-black{
	background:#000;
}
.mrgb10{
	margin-bottom:10px !important
}
.mrgb15{
	margin:15px 0px !important
}
.mrg-b-30{
	margin-bottom:30px !important;
}
.mrg-t-30{
	margin-top:30px !important;
}
.mrg100{
	margin-top:90px;
}
.mrgn-btm-60{
	margin-bottom:60px !important;
}
.pad-lf-40{
	padding-left:40px !important
}
.bg-black{
    background:#000;
}
.btn-style{
	padding:10px 20px;
	background:#1d4998;
	color:#fff;
    font-size:16px;
    border:1px solid transparent;
    transition-delay: 0.5s;
    transition: all 0.5s ease;
}
.btn-style:hover{
    border:1px solid #1d4998;
    color:#1d4998;
    background:transparent;
}
.btn-style1{
	padding:10px 20px;
	background:#fff;
	color:#C40E72;
    font-size:16px;
    font-weight:600;
    border:1px solid transparent;
    transition-delay: 0.5s;
    transition: all 0.5s ease;
}
.btn-style1:hover{
    border:1px solid #fff;
    color:#fff;
    background:transparent;
}
.animated{
    animation-delay: 0.5s;
}
.pulse {
    overflow: visible;
    position: relative;
    z-index:9;
}

.pulse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #e2772e;
    border-radius: 50%;
    transition: opacity .3s, transform .3s;
    animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0;
        transform: scale(1.5)
    }
    100% {
        opacity: 0;
        transform: scale(1.5)
    }
}
.verr{
    display:none;
}
/*Genral*/
.cards {
    display: inline-block;
    padding: 5px 35px;
    perspective: 1800px;
    text-align: center;
    transform-style: preserve-3d;
    position: absolute;
    top: 0%;
    left: 0%;
    transition-delay: 0.5s;
    transition: all 0.5s ease;
    z-index:9;
}
  
  .card {
    border-radius: 15px;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    perspective: 1200px;
    position: relative;
    transform-style: preserve-3d;
    transform: translatez(15px);
    transition: transform 200ms ease-out;
    text-align: center;
  }
  .card:hover {
       transform: translatez(20px);
    }
    
      .card:not(:last-child) {
      margin-right: 30px;
    }

.top-head{
    padding: 3px 0px;
    background: #ffce08;
}
.top-head h3{
    margin:0px;
    color:rgb(0, 0, 0);
    font-size:14px;
} 

.hdmail ul{
    list-style-type:none;
    margin:0;
    padding:0;
} 
.hdmail ul li{
    display:inline-block;
    padding:0px 10px;
    font-weight:600;
}
.hdmail a{
    color:rgb(0, 0, 0);
    font-weight:600;
}
.social ul{
    list-style-type:none;
    margin:0;
    padding:0;
} 
.float-right{
    float:right !important;
}
.social ul li{
    display:inline-block;
    padding:0px 10px;
    font-weight:600;
    font-size:16px;
}
.social li :hover .fa-facebook{
    color:#3b5998;
}

.social li :hover .fa-twitter{
    color: #00acee;
}

.social li :hover .fa-instagram{
    color:#fb3958;
}

.social li :hover .fa-linkedin{
    color:#0077B5;
}
/*Index Page*/

/*Video Background*/

/* Video Background */

#container {
    position: relative;
    overflow: hidden;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 535px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:-91;
    background: #000;
  }
  
  #video-container {
    position: relative;
    
    width: 100%;
    height: 0;
    
    padding-bottom: 50%;
  }
  
  #video-container iframe {
    position: absolute;
    z-index: 0;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: 0.75;
  }
  
  #content {
    position: absolute;
    z-index: 1;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-align: center;
    color: #fff;
  }
  
  #content p {
    margin: 0;
    padding: 0;
  
    font-size: 72px;
    font-weight: bold;
    text-shadow: 1px 3px 10px rgba(0, 0, 0, 0.75);
  }
  
  #content span {
    font-size: 24px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.75);
  }
/*Video Background*/
/*Heading title*/
.hdtitle h3{
position:relative;
text-transform:uppercase;
font-size:28px;
letter-spacing: 5px;
font-weight: 600;
text-align:center;
color:#1d4998;
margin-bottom:50px;
}
.hdtitle h3:before{
    position:absolute;
    content:'';
    width:80px;
    height:2px;
    background: #1d4998;
    right:40%;
    bottom:-10px;
    transform: translate(-50%,-50%)
}
/*Heading title*/
/*Intro Text*/
.intro-txt{
    position:relative;
    overflow:hidden;
    background:url('../images/bg-img1.png');
    background-repeat:no-repeat;    
    text-align:center !important;
}
.intro-txt p{
    font-size:16px;
    text-align:justify;
    padding-bottom:20px;
}
.intro-txt a{
    text-align:center !important;
}
/*Intro Text*/
/*Strip1*/
.strip1{
    background:linear-gradient(120deg,rgb(180,9,147) 30%,rgb(208,17,86) 100%);
    color:#fff;
    text-align:center;
    position:relative;
}
.strip1:before{
    position:absolute;
    background:#BF0D7D;
    content:'';
    width:50px;
    height:50px;
    bottom:-25px;
    left:48%;
    transform:rotate(45deg);
}
/*strip1*/

/**/
.ser-icon{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #00bff3;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-icon1{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #f26c4f;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon1:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-icon2{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #f070ab;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon2:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-icon3{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #9038c3;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon3:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-icon4{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #fbba00;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon4:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-icon5{
    text-align:center;
    width:70px;
    height:70px;
    border-radius:50%;
    background: #45bfb5;
    margin:0 auto;
    padding:7px;
    position:relative;
}
.ser-icon5:before{
    position:absolute;
    width:80px;
    height:80px;
    border-radius:50%;
    content:'';
    border:1px solid #fff;
    top:-5px;
    left:-5px;
}
.ser-in{
    text-align:center;
    color:#fff;
    margin-bottom:45px;
}
.ser-in h4{
    font-weight:600;
    margin-top:25px;
}
.width30{
    width:60px;
}

/*Strip2*/
.strip2{
    background:linear-gradient(120deg,rgb(180,9,147) 30%,rgb(208,17,86) 100%);
    color:#fff;
    text-align:left;
    position:relative;
}
.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    right:10%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
/*Strip2*/

/*Why us*/
.whyus{
    background:#f3f3f3;
}
.whyus h3{
    font-weight:600;
    margin-bottom:30px;
}
.whyus ul{
    list-style-type: none;
    padding:0px;
    margin:0px;
}
.whyus ul li{
    position:relative;
    padding-left:35px;
    padding-bottom:15px;
}
.whyus ul li img{
    position:absolute;
    top:3px;
    left:0px;
}
/*Whu Us*/

/*Gallery strip*/
.gallery-strip h3{
    text-align:center;
    font-size:24px;
    font-weight:600;
}
.gal-strip-caro .item{
    position:relative;
}
.gal-strip-caro .item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition-delay:0.5s; 
    transition:all 0.5s ease;
}
.gal-strip-caro .item .text{
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.gal-strip-caro .item .text a{
    font-size:28px;
    color:#fff;
}
.gal-strip-caro .item:hover .overlay{
    transform: scale(1);
}
#html5-watermark{
	display:none !important;
}
/*Gallery Strip*/

/*Footer*/
.up-footer{
    color:#fff;
}
.up-footer a{
    color:#fff;
}
.up-footer ul{
    padding:0px;
    margin-bottom:20px;
    list-style-type: none;
}
.links li {
    padding-bottom:10px;
    transition-delay:0.5s;
    transition:all 0.5s ease;
}
.links li a{
    padding-bottom:10px;
    transition-delay:0.5s;
    transition:all 0.5s ease;
}
.links li:hover a{
    padding-left:15px;
    color:#F26B4F;
}
.footer-form input, .footer-form textarea{
    background: transparent;
    margin-bottom:15px;
    border-radius:0px;
    resize: none;
}
.footer-form .btn{
    background:#1d4998;
    color:#fff;
    transition-delay:0.5s;
    transition: all 0.5s ease;
}
.footer-form .btn:hover{
    background: #f26c4f;
}
.lo-footer{
    text-align:center;
    background: linear-gradient(120deg,rgba(148,0,212)30%,rgba(165,5,175)100%);
}
.lo-footer p{
    margin:0px;
    color:#fff;
    padding:5px;
}
.lo-footer a{
    color:#fff;
}
/*Index Page*/

/*breadcrumb*/
.ttm-page-title-row {
    display: block;
    padding-top: 100px;
    padding-bottom: 85px;
    z-index: 11;
}
.ttm-page-title-row {
    position: relative;
    background-image: url(../images/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
div.ttm-page-title-row > .ttm-bg-layer {
    background-color: rgba(24,35,51,0.5);
}
.ttm-bg-layer, .ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.ttm-textcolor-white{
    color: #fff;
}

.title-box .page-title-heading {
    position: relative;
}
.title-box .page-title-heading h1 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 43px;
    line-height: 50px;
    color: #fff;
    padding-left: 20px;
    margin-bottom: 10px;
}
.title-box .page-title-heading .title:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: #fda12b;
}
.title-box .fa{
    color:#fff;
}
/*breadcrub*/

/*Contact us*/
.bg-cont{
    background:linear-gradient(120deg, rgba(255,255,255,0.95)0%, rgba(255,255,255,0.95)100%), url(../images/cont.jpg) fixed;
}
.ttm-row.contact-form-section {
    padding: 110px 0 0;
}
.pr-60 {
    padding-right: 60px !important;
}
.section-title .title-desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 32px;
}
.wrap-form label {
    width: 100%;
    margin: 0;
}
.wrap-form span.text-input {
    margin-bottom: 15px;
    display: block;
    padding-top: 5px;
    position: relative;
}
.wrap-form.ttm-contactform span.text-input i {
    position: absolute;
    left: 0;
    top: 20px;
    opacity: .9;
    font-size: 16px;
    z-index: 1;
}
.wrap-form.ttm-contactform span.text-input input, .wrap-form.ttm-contactform span.text-input textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eaeaea;
    border-radius: 0;
    padding-left: 30px;
    padding-bottom: 9px;
}
.ttm-textcolor-skincolor{
    color: #ff5e14;
}
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, select {
    font-family: inherit;
    -webkit-transition: border linear .2s,box-shadow linear .2s;
    -moz-transition: border linear .2s,box-shadow linear .2s;
    -o-transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #5d6576;
    padding: 9px 15px;
    font-weight: 400;
    text-transform: inherit;
    border: 1px solid #dedede;
    font-size: 15px;
    outline: none;
    line-height: inherit;
}
 button, input {
    outline: medium none;
    color: #ff5e14;
}
button, input {
    overflow: visible;
}
.wrap-form.ttm-contactform input[type="submit"] {
    margin-top: 20px;
}
.ttm-btn.ttm-btn-style-border {
    background-color: transparent;
    border: 2px solid;
    color: #182333;
    transition-delay: 0.5s;
    transition:all 0.5s ease;
}
.ttm-btn.ttm-btn-size-md {
    font-size: 14px;
    padding: 13px 30px 13px 30px;
}
.ttm-btn.ttm-btn-color-black.ttm-btn-style-border:hover {
    color: #fff;
    border-color: #182333;
    background: #000
}
.ttm-row.map-section {
    padding: 0 0;
}
.map-wrapper.style2 {
    height: 100%;
    margin: 0;
    padding: 0;
}
.map-wrapper {
    height: 365px;
    padding: 10px 0 0 0;
    margin-bottom: 08px;
}
#map_canvas {
    margin: 0;
    padding: 0;
    height: 100%;
    line-height:0px;
}
#map_canvas iframe{
    line-height:0px;
}
.ttm-bgcolor-grey{
    background-color:linear-gradient(120deg,rgb(180,9,147) 30%,rgb(208,17,86) 100%) !important;
}
@media only screen and (max-width: 1400px) and (min-width: 1171px){
.ttm-right-span .ttm-col-wrapper-bg-layer, .col-bg-img-one .ttm-right-span .ttm-col-wrapper-bg-layer {
    margin-right: -200px;
}
}
.ttm-bgcolor-grey>.ttm-bg-layer {
    background:linear-gradient(120deg,rgb(180,9,147) 30%,rgb(208,17,86) 100%);
}
.ttm-right-span .ttm-col-wrapper-bg-layer {
    width: auto;
    margin-right: 0px;
    right: 0;
}
.ttm-bg-layer, .ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.layer-content {
    position: relative;
    z-index: 9;
    height: 100%;
    color:#fff;
}
.layer-content a{
    color:#fff;
}
.pb-55 {
    padding-bottom: 55px !important;
}
.pt-40 {
    padding-top: 40px !important;
}
.pl-60 {
    padding-left: 60px !important;
}
.pr-140 {
    padding-right: 140px !important;
}
.box-shadow2 {
    -webkit-box-shadow: 0 0 25px 0 rgba(41,61,88,.06);
    -moz-box-shadow: 0 0 25px 0 rgba(41,61,88,.06);
    box-shadow: 0 0 25px 0 rgba(41,61,88,.06);
}
ul.ttm_contact_widget_wrapper {
    padding: 0;
    list-style-type:none;
}
ul.ttm_contact_widget_wrapper li {
    padding-left: 37px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 25px;
    border-bottom: 1px solid #eaeaea;
}
ul.ttm_contact_widget_wrapper li i {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 20px;
    font-weight: 400;
}
.social-icons.circle li>a {
    border: 1px solid #cfd1d2;
    height: 29px;
    width: 29px;
    line-height: 29px;
    text-align: center;
    display: block;
    background-color: #cfd1d2;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    transition-delay:0.5s;
    transition:all 0.5s ease;
}
.social-icons.circle li>a:hover{
    background-color: #fda12b;
}
/*Contact us*/
/*About us*/
.about-page .about-history {
    padding-bottom: 70px;
}
.about-history .section-title-border {
    font-size: 40px;
    font-weight: 400;
    padding: 0;
}
.section-title-border {
    text-align: center;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight:600 !important;
    padding: 20px 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.section-title-border:after {
    content: "";
    display: block;
    position: relative;
    height: 3px;
    width: 113px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    margin: 15px auto;
}

.about-history .section-subtitle {
    padding-top: 0;
}

.section-subtitle {
    text-align: center;
    font-family: 'Cabin',sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 17px;
    color: #6f6f6f;
    padding: 15px 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.about-history .section-subtitle {
    padding-top: 0;
}
.about-history .content-about-box {
    width: 100%;
    padding-bottom:20px;
    margin: 40px 0 10px 0;
    border-bottom: 1px solid #e7e7e7;
}
.about-history .content-about-box .frame-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    height: 100%;
}
.content-about-box .frame-image .top-mask:before {
    content: "";
    height: 50px;
    width: 40%;
    background-color: #fff;
    position: absolute;
}
.content-about-box .frame-image .top-mask:after {
    content: "";
    height: 35px;
    width: 54.8%;
    background-color: #fff;
    position: absolute;
    right: 30px;
    margin-top: 15px;
}
.content-about-box .frame-image .bottom-mask:before {
    content: "";
    height: 50px;
    width: 40%;
    background-color: #fff;
    position: absolute;
    bottom: 0;
}
.content-about-box .frame-image .bottom-mask:after {
    content: "";
    height: 35px;
    width: 54.8%;
    background-color: #fff;
    position: absolute;
    right: 30px;
    bottom: 0;
    margin-bottom: 15px;
}
.content-about-box .width-box {
    width: 100%;
    display: inline-block;
    height: 100%;
}
.content-about-box .content {
    float: right;
    background-color: #fff;
    width: 540px;
    height: 100%;
    min-height: 570px;
    padding: 30px;
    vertical-align: middle;
    margin: 15px 15px;
    position: relative;
}

.manuscript {
    text-transform: none;
    font-weight: 700;
    padding: 10px 0;
}
.content-about-box .content .title {
    text-align: center;
    font-size: 50px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight:600 !important;
}
.content p {
    line-height: 30px;
    margin-bottom: 25px;
}
.button-section {
    text-align: center;
    padding: 20px 0;
}
.btn-primary {
    color: #1b1b1b;
    background-color: #c5a86a;
    border-color: #c5a86a;
    margin: 0px 3px;
    padding: 10px 16px;
    line-height: 1.3333333;
    border-radius: 0;
}

/*Mission Vision*/
.about-venu {
    padding: 180px 0 120px;
    background: #020c16;
    z-index: 2;
    position: relative;
}
.about-venu .part-img {
    border-radius: 5px;
    overflow: hidden;
    height: 611px;
    margin-top: -60px;
}
.about-venu .part-text {
    display: -ms-inline-grid;
    display: inline-grid;
    background: #20152a;
    padding: 60px 60px 60px 30px;
    border-radius: 0 5px 5px 0;
    position: relative;
}
.about-venu .part-text h3 {
    font-size: 52px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
    margin-top: -19px;
}
.about-venu .part-text p {
    font-size: 16px;
    line-height: 28px;
    color: #bbb;
}
.about-venu .part-text a {
    display: inline-block;
    height: 60px;
    width: 160px;
    border-radius: 5px;
    position: relative;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    line-height: 60px;
    text-align: center;
    z-index: 2;
    overflow: hidden;
    margin-top: 29px;
}
.about-venu .part-text:after {
    position: absolute;
    content: '';
    right: 100%;
    top: 0;
    width: 50%;
    height: 100%;
    background: #20152a;
    z-index: -1;
    border-radius: 0 0 0 5px;
}
.about-venu .part-text a:before {
    opacity: 0;
}
.about-venu .part-text a:before {
    background: #20152a;
    position: absolute;
    content: '';
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.about-venu .part-text a:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    width: 100%;
    height: 100%;
    z-index: -2;
}
/*About us*/

/*Gallery*/
.section.overlap {
    position: relative;
    z-index: 100;
}
.portfolio_filter {
    margin: 0;
    padding: 0;
    text-align:center;
}

.portfolio_filter li {
    display:inline-block;
    list-style: none;
    padding: 0 10px;
    text-transform: uppercase;
    text-decoration: none;
}
.portfolio_filter.dark li a.active, .portfolio_filter.dark li a:hover {
    color: #ed1c24;
    text-decoration: none;
}
.portfolio_filter.dark li a {
    color: #666666;
}
.grid-services {
    margin-top: 30px;
    margin-bottom: 30px;
}
.box-image-4 {
    position: relative;
    margin-bottom: 30px;
}
.box-image-4 .media {
    overflow: hidden;
    background-color: #041e42;
    position: relative;
}
.box-image-4 .media img {
    opacity: 1;
    max-width: 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-transition: 0.1s all linear;
    transition: 0.1s all linear;
}
.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}
.media{
    position: relative;
}
.media .overlay{
    position:absolute;
    width:100%;
    height:100%;
    top:0px;
    left:0px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    content:'';
    transform:scale(0);
    opacity:0;
    transition-delay:0.5s;
    transition:all 0.5s ease; 
}
.media .text{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.media a{
    font-size:34px;
    color:#fff;
}
.media:hover .overlay{
    transform:scale(1);
    opacity:1;
}
/*Gallery*/

/*Enquiry Form*/

.cont-form h3{
	text-align:center;
	margin-bottom:20px;
	text-transform:uppercase;
	font-weight:600;
}
.cont-form form  input[type="text"], .cont-form form input[type="email"], .cont-form form textarea,.cont-form form select {
    border: 1px solid #e0edf4;
    color: #999999;
	background:#fff;
    display: block;
    font-size: 14px;
    height: 50px;
    margin-bottom: 20px;
    padding: 10px 10px;
    width: 100%;
    transition: all 500ms ease;
}
.cont-form form textarea {
	height:150px;
}
.cont-form form .btn-sty{
	border:1px solid #e2772e;
	background:#ffb700;
	color:#222;
	font-weight:600;
	font-size:18px;
	padding:7px 25px;
	width:100%;
	text-transform:uppercase;
	transition-delay:0.5s;
	transition:all 0.5s ease;
}
.cont-form form .btn-sty:hover{
	background:#fff;
	color:#ffb700;
}
/*Enquiry Form*/
/*Career*/
.career-pg h3{
    font-size: 52px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
    text-align:center;
}
.career-pg p{
    padding-bottom:10px;
    font-size:18px;
    text-align:justify;
}
/*career*/

/*Service Feature*/
.about-section.about {
    background-image: url(../images/2.jpg);
    background-color: #e7eced;
}
.section-title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title h1, .page-title h1 {
    font-size: 12px;
    letter-spacing: 14px;
    color: #ed145b;
    margin-top: 15px;
}
.section-title h2, .page-title h2 {
    font-size: 46px;
    color: #000;
    margin: 0;
}
.about-section.about .about-content {
    padding-bottom: 55px;
}
.no-padding {
    padding: 0;
}
.about-section .about-image {
    max-height: 370px;
    overflow: hidden;
}
.about-section.about .about-info {
    background-color: #fff;
    box-shadow: 0px 20px 14px 0px rgba(0,0,0,0.5);
}
.about-info {
    padding: 35px;
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
}
.about-section.about .about-info h3 {
    border-bottom: 1px solid #f0f1f2;
}
.about-info h3 {
    font-size: 19px;
    font-weight:600;
    padding-bottom: 25px;
    margin-bottom: 20px;
    color: #000;
}
.about-info ul {
    margin-top: 20px;
    font-size: 14px;
    list-style-type:none;
    padding:0px;
}
.about-info ul li{
    position:relative;
    padding-left:30px;
    padding-bottom:15px;
} 
.about-info ul li img{
    position:absolute;
    left:0px;
    top:3px;
}
.about-info ul li i {
    color: #ed145b;
    margin-right: 10px;
    font-size: 14px;
}

/*Service Feature*/

/*Led Rentals*/
.cont-tab p{
	text-align:center;
	font-weight:600;
}
.tabs .tab-select-outer select{
	width: 100%;
    border: 1px solid #BC2464;
    padding: 10px;
    background-color: #BC2464;
    color: #fff;
    font-weight: 600;
	float:right;
	margin-right:15px;
}
.tabs .tab-select-outer a{
	padding:10px;
}
.tabs {
  position:relative;
  margin: 0 auto;
  padding: 0 20px;
}
.tabs .tab-over{
	position:absolute;
	top:4%;
	left:5%;
	transform:translate(-50%,-50%);
}
.tabs .tab-over h3{
	font-size:18px;
	font-weight:600;
}
#tab-button {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  float:right;
}
#tab-button li {
  display: table-cell;
  width: 20%;
  margin-right:10px;
}
#tab-button li a {
  display: block;
  padding: .8em 0em;
  background: #eee;
  border: 1px solid #ddd;
  text-align: center;
  color: #BC2464;
  text-decoration: none;
  font-weight:600;
  text-transform:uppercase;
  font-size:12px;
}
#tab-button li:not(:first-child) a {
  border-left: none;
}
#tab-button li a:hover,
#tab-button .is-active a {
  border-bottom-color: transparent;
  background: #BC2464;
  color:#fff;
}
.tab-contents {
  padding: .5em 0em 1em;
}

.tab-contents h2{
	padding-top:20px;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
    text-align: center;
    text-transform:uppercase;
}
.tab-contents p{
	text-align:justify;
	font-size:16px;
}
.tab-contents li{
    padding: 10px 0px 0px 20px;
    text-align: justify;
    position: relative;
}
.tab-contents li:before{
	position: absolute;
    left: -5px;
    top: 10px;
    content: "\f19c";
    font-family: 'FontAwesome';
    color: #BC2464;
}
.ptn{
	padding-top:none;
}
.tab-button-outer {
  display: none;
}
.tab-contents {
  border:1px solid #333;
}
@media screen and (min-width: 768px) {
  .tab-button-outer {
    position: relative;
    z-index: 2;
    display: block;
  }
  .tab-select-outer {
    display: none;
  }
  .tab-contents {
    position: relative;
    top: -1px;
    margin-top: 0;
  }
}

/*tab inner*/

.tab-hd{
	margin-top:15%;
	padding:10px 30px;
}
.tab-hd h3{
	position:relative;
	color:#fff;
	font-size:18px;
	font-weight:600;
	margin-bottom:25px;
	text-transform:uppercase;
}
.tab-hd h3:before{
	position:absolute;
	content:'';
	width:50px;
	height:3px;
	bottom:-15px;
	left:5%;
	background:#fff;
	transform:translate(-50%,-50%);
}
.tab-hd p{
	font-size:14px;
	font-weight:400;
	color:#fff;
}
.pd-in{
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    margin-top:15px;
}
.pd-in-cnt{
    padding:8px;
    background:#f2f2f2;
    min-height:200px;   
}
.pd-in-cnt h3{
    text-align:center;
    background-image: -webkit-linear-gradient(0deg, #ff6975 0%, #d34d94 56%, #a730b2 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px;
    text-transform:uppercase;
}
.li-imgs img{
    margin:15px auto;
}
.vs{
    min-height:100px;
    text-align: center;
    margin:15px;
    padding:15px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.vs p{
    text-align:center;
    font-weight:100;
}
/*tab inner*/
/*Led rentals*/