@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
    --primary: #ff9c3c;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #398cbb;
	--text-primary: #ff9c3c;
	--text-secondary: #398cbb;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.back-to-top i{
font-size:22px;
font-weight:700	
}

.bg-dark1{
background:#398cbb
}

.bg-primary1{
background:#ff9c3c
}

.btn-primary{
background:#ff9c3c;
border:#ff9c3c
}

.text-primary1{
	color:#ff9c3c
}

.text-secondary1{
background:#398cbb
}

.orange{
	color:#ff9c3c
}

.grey{
color:#7f878b	
}

.wh{
color:#fff	
}


.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 20px;
  padding-bottom: 5px;
  position: relative;
  color:#ff9c3c;
  font-family: 'Roboto', sans-serif;
}


.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #398cbb;
  bottom: 0;
  left: calc(50% - 20px);
}


.section-title1 {
  text-align: center;
}

.section-title1 h2 {
  margin-bottom: 20px;
  padding-bottom: 5px;
  position: relative;
  color:#fff;
  font-family: 'Roboto', sans-serif;
}


.section-title1 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 20px);
}


h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: #ff9c3c;
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    right: -15px;
    transform: skewX(30deg);
    background-color: #ff9c3c;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 70px;
    display: flex;
    align-items: center;
}

@media (max-width: 320px) {
.navbar .navbar-brand {
    position: relative;
    padding-right: 0px;
    width:210px;
    display: inline-flex;
    align-items: center;
}	

.navbar-brand .ps-5{
	margin-left:0px !important;
	padding-left:0px
}

}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: v#7f8788);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ff9c3c;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .nav-item .dropdown-menu a:hover {
 background:#ff9c3c;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    color: #fff;
}

@media (max-width:1024px){
.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 20px 0;
    color: v#7f8788);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}	
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

.carousel .carousel-control-prev-icon{ 
visibility: hidden; 
}
.carousel:hover .carousel-control-prev-icon{ visibility: visible; }


.carousel .carousel-control-next-icon { visibility: hidden; }
.carousel:hover .carousel-control-next-icon { visibility: visible; }

}

/*** Services Page Header ***/

.page-header {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%), url(../img/qualintia-services.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



/*** About Us Page Header ***/

.page-header1 {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%), url(../img/about-qualintia.jpg) center center no-repeat;
    background-size: cover;
}

.page-header1 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header1 .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header1 .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}




/*** About Us Page Header ***/

.page-header2 {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%), url(../img/qualintia-service-models.jpg) center center no-repeat;
    background-size: cover;
}

.page-header2 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header2 .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header2 .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



/*** Case Studies Page Header ***/

.page-header3 {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%), url(../img/case-studies.jpg) center center no-repeat;
    background-size: cover;
}

.page-header3 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header3 .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header3 .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



/*** Blogs Page Header ***/

.page-header4 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%), url(../img/our-blogs.jpg) center center no-repeat;
    background-size: cover;
}

.page-header4 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header4 .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header4 .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



/*** Contact Page Header ***/

.page-header5 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%), url(../img/contact-qualintia.jpg) center center no-repeat;
    background-size: cover;
}

.page-header5 .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header5 .breadcrumb-item {
    font-size: 18px;
    color: var(--primary);
}

.page-header5 .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}




@media (max-width: 767px) {
	.page-header2 {
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%), url(../img/qualintia-service-models-ss.jpg) center center no-repeat;
    background-size: cover;
}

.page-header4 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%), url(../img/our-blogs-ss.jpg) center center no-repeat;
    background-size: cover;
}

}

.intro{
background:#f7f7f7	
}
/*** Services ***/


.service-item {
    position: relative;
    text-align: center;
}

.top-feature {
    position: relative;
    margin-top: -50px;
    z-index: 1;
	background:#ff9c3c;
	display:block;
}


.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
	z-index:-1;
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .3s;
	width:100%;
}


@media (max-width: 767px) {

.service-item {
margin-bottom:20px
}
}

.service-item:hover .service-text {
    background: rgba(9, 77, 116, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item .service-text h4{
	color:#7f878b	
}

.service-item .service-text h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 3px;
  background: #398cbb;
  left: calc(50% - 20px);
  margin-top:10px
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item:hover .service-text h4::after{
background: #fff;
}

.q{
	color:#398cbb
}


.serv-btn {
    padding: 11px 17px;
    font-size: 13px !imporant;
    text-transform: uppercase;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color:#fff!important;
    font-family: "Open Sans", sans-serif;
    font-weight:700;
    background:var(--dark);
    }

.serv-btn i.fa{
color:#fff !important
}

.serv-btn:hover {
    padding: 11px 17px;
    font-weight:700;
    background: var(--primary);
    transition:0.3s ease-in-out;
}



/*** Service Models ***/

.sm{
background:#f7f7f7	
}

.sm-icons{
max-height:70px	
}

.ms.border-start{
	    border-left: 0px solid #dee2e6 !important;
}


@media (max-width: 1024px) {
	
.ms.border-start{
	    border-left: 1px solid #dee2e6 !important;
}	
}

.sm .sm-text{
text-align:justify	
}


/*** Services Page ***/


#tabs ul {
  margin: 0;
  padding: 0;
}

#tabs ul li {
  margin-bottom:2px;
  display: inline-block;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
  width: 100%;
  text-transform: capitalize;
   padding:12px 25px;
  display: inline-block;
  background: #f7f7f7;
  font-family: "Open Sans", sans-serif;
    font-size:16px;
    line-height: 24px;
    color: #717171;
    font-weight:600;
    transition: all 0.3s;
 border-right: 4px solid #f7f7f7;
 border-left: 4px solid #f7f7f7;
}

@media (max-width:1024px){
	#tabs ul li a {
   padding:12px 15px;
}
}



#tabs ul li a i {
  float: right;
  margin-top: 5px;
  margin-left:10px
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color:#fff;
   border-left: 4px solid #ff9c3c
}
#tabs ul .ui-tabs-active span {
  color:#454545;
}
.tabs-content {
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
	  background: #f7f7f7;
	  padding:20px
}

.tabs-content{
	text-align:justify
}

.tabs-content .ig {
box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    }
	
.tabs-content .tick{
max-height:40px;
border:none
}	

.tabs-content h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
}
@media (max-width:1024px){
	#tabs h4 {
  font-size: 20px !important;
}
}

.tabs-content h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  display:none
}

@media (max-width:893px){
.tabs-content h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  display:block
}	
}

.forspacing{
}

.tabs-content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  padding-bottom:10px !important
}

.tabs-content h3::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #5F656F;
    left: calc(50% - 20px);
	margin-top:10px
}

.tabs-content .line {
    border-top: 2px solid #f3b21a;
    margin:0px auto 10px 0px;
    display: block;
    max-width:40px;
}

#tabs .icon {
    max-height: 50px;
    margin-right: 10px;
}

@media (max-width:320px){
#tabs ul li a {
   padding:12px 5px;
}	

	
.tabs-content .tick{
max-height:30px;
border:none
}	
}





/*** Services Models Page ***/

#tabs1 ul {
  margin: 0;
  padding: 0;
}

@media (max-width:767px){
	#tabs1 ul {
  margin: 0 0 50px 0;
  padding: 0;
}
}

#tabs1 ul li {
  margin-bottom:2px;
  display: inline-block;
  width: 100%;
}
#tabs1 ul li:last-child {
  margin-bottom: 0px;
}
#tabs1 ul li a {
  width: 100%;
  text-transform: capitalize;
   padding:7px 30px;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
    font-size:16px;
    line-height: 24px;
    color: #717171;
    font-weight:600;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

#tabs1 ul li a i {
  float: right;
  margin-top: 5px;
}
#tabs1 ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs1 ul .ui-tabs-active a {
  color:#fff;
  background:#398cbb
}

#tabs1 ul li a:hover {
  color:#fff;
  background:#398cbb
}


#tabs1 ul .ui-tabs-active span {
  color:#454545;
}

#tabs1 .tabs-content1 .icon {
    max-height: 60px;
	display:block;
	margin:auto
}

.tabs-content1 .tick{
max-height:30px;
border:none
}	


.tabs-content1 {
  margin-left: 30px;
  text-align: left;
  display: inline-block;
  position: relative;
    transition: all 0.5s;
}

.tabs-content1 p {
text-align:justify	
}

.tabs-content1 h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom:5px;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
}



.tabs-content1 .line {
    border-top: 2px solid #f3b21a;
    margin:0px auto 10px 0px;
    display: block;
    max-width:40px;
}


.tabs-content1 h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  color:#ff9c3c;
  padding-bottom:10px !important;
  text-align:center
}

.tabs-content1 h3::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #398cbb;
    left: calc(50% - 20px);
	margin-top:5px
}

.tabs-content1 a{
color:#ff9c3c;	
}


.tabs-content1 a:hover{
color:#398cbb	
}



/*** About Us Page ***/

.about h3{
    font-size: 16px;
    font-weight: 600;
    text-transform: inherit;
    font-family: 'Raleway', sans-serif;
    color: #398cbb;
	display:inline-block;
	margin:15px 0 0 10px
}

.about .offerings {
margin-right:10px;
margin-left:10px;
font-weight:800;
font-size:17px
}

.about button{
width:2.5rem;
height:2.5rem;
font-size:18px
}

.about button:hover{
	color:#fff;
	background:#ff9c3c
}





/*** Team Section ***/

.team {
background:#f7f7f7	
}

.team h3{
    font-size: 19px;
	color:#398cbb;
	text-align:left
}

.name{
	text-transform:uppercase
}

.post{
color:#7f878b;
text-transform:inherit !important
}

.abt-box {
  width:auto;
  height:auto;
  margin-top:15px;
  position: relative;
     }


 .abt-table {
    line-height: 1.3em;
    text-align: justify;
}

 .abt-table i {
    color: #ff9c3c;
    font-size: 20px;
    margin-right: 10px;
}

 .abt-table1 {
    line-height: 1.3em;
    text-align: justify;
}

 .abt-table1 i {
    color: #ff9c3c;
    font-size: 20px;
    margin-right: 10px;
}

.qs{
	display:inline-block
}

@media (max-width:893px){
	


.team img{
	display:block;
	margin: 0 auto 20px auto;
	max-height:200px
}

.abt-table{
margin:0 auto 30px auto	
}

.abt-table1{
	margin:0 auto
}
}

@media (max-width:767px){
.qs{
	display:inline-block;
	margin-bottom:20px
}

}

@media (max-width:600px){
.qs{
	display:flex;
	margin: 0 0 1em 8em
}

.about .offerings {
margin-right:10px;
margin-left:10px;
font-weight:800;
font-size:17px;
margin-top:7px
}

}

@media (max-width:320px){
.qs{
	display:flex;
	margin: 0 0 1em 3em
}

}

/*** Case Studies Page ***/

.case-s h3{
    font-size: 16px;
    font-weight: 600;
    text-transform: inherit;
    font-family: 'Raleway', sans-serif;
    color: #398cbb;
	display:inline-block;
	margin:15px 0 0 10px
}

.case-s img{
max-height:200px	
}


/*** Case Studies Page ***/


.con-info .con-info-content {
	background-color: #fff;
	box-shadow:0 10px 30px -15px rgba(0, 0, 0, 0.8);
	padding:25px;
}


.con-info1 .con-info-content1 {
	background-color: #f7f7f7;
	padding:25px;
	font-size:18px
}

.address h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  padding-left:0px;
  padding-bottom:10px !important;
  padding-top:10px !important
}

.address h3::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
	left: calc(50% - 20px);
    background: #5F656F;
	margin-top:10px
}

.address .icon {
    max-height: 50px;
    margin-right: 10px;
}

.email h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  padding-left:0px;
  padding-bottom:10px !important
}

.email h3::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #5F656F;
    left: calc(50% - 20px);
	margin-top:10px
}

.email .icon {
    max-height: 50px;
    margin-right: 10px;
}


.phone h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform:inherit;
  font-family: 'Raleway', sans-serif;
  color:#398cbb;
  padding-left:0px;
  padding-bottom:10px !important
}

.phone h3::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #5F656F;
    left: calc(50% - 20px);
	margin-top:10px
}

.phone .icon {
    max-height: 50px;
    margin-right: 10px;
}


.con-info1 .con-info-content1 p {
	padding-left:10px
}

/* Input form */
.form-control {
  box-shadow: none;
  padding: 5px 20px;
  height: 44px;
  background: #d6d5d5;
  font-size: 16px;
  border-radius: 12;
  margin:10px;
  border:none
}

.form-control:focus {
  box-shadow: none;
  border: none;
    background: #d6d5d5;
}

.enquiry .section-title{
	padding-bottom:15px
}



/*** Testimonial ***/


.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}


.testimonial-carousel .owl-nav {
    position: absolute;
    width: 50px;
    bottom: 0px;
    left: 49%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 3;
}

.testimonial-carousel h5{
color:#ff9c3c	
}

.testimonial-carousel:hover .owl-nav {
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color:#fff;
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    transform: scale(.8);
    transition: .5s;
	color:#fff
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}



  
.parallax-back1 {
  background: url(../img/back.png) no-repeat;
  background-size: cover;
  background-attachment:fixed;
  margin: auto;
  -webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-position: center center; 
}


.black_transp {
  background: rgba(0,0,0,0.5);
}


.black_transp1 {
  background: rgba(0,0,0,0.8);
}

/*** Clients ***/

.clients{
background:#fff	
}



.cli img{
display:block;
margin:0 auto;
background: #FFFFFF;
box-shadow: 0 0 45px rgba(0, 0, 0, .06);
transition: .3s;
}

/*** Footer ***/

.copyright {
    color: #fff;
	background:#398cbb
}