/*
Theme Name: Core Swipe Global
*/


body {
 font-family: 'Yantramanav', sans-serif;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
	font-size:18px;
}
body, html, p, li, div, section {
     
    line-height: 1.75;
}

.h1,
h1 {
    font-size: 24px;
   
}
.h2,
h2 {
    font-size: 24px;
   
}
.h3,
h3 {
    font-size: 22px;
    margin-top: 10px;
}
.h4,
h4 {
    font-size: 20px;
    margin-top: 10px;
}
.h5,
h5 {
    font-size: 18px;
  margin-top: 10px;
}
.h6,
h6 {
    font-size: 16px;
   margin-top: 10px;
}
p {
    font-size:18px;  
   font-family: 'Yantramanav', sans-serif;  
    line-height: 22px;
}
.process p{word-break: break-word;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   line-height: 25px; /* fallback */   
   -webkit-line-clamp: 6; /* number of lines to show */
   -webkit-box-orient: vertical;}
.heading-pra{ 
   font-family: 'Yantramanav', sans-serif;   
  
line-height: 1.75;}
/*menu css start*/
.logo {
    width: 20%;
    margin-left: 3%;
}
.navbar {
    color: black;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
}
.navbar.change {
    background: rgba(0, 0, 0, .9);
    width: 100%;
    height: 80px;
    transition-duration: 2s;
    border-bottom: 2px solid  #ff6600;
  
}

.nav-btn {
    flex: 2;
    display: flex;
    
}
.nav-links {
    flex: 6;
}
.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.logo {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}
.logo span {
    font-weight: 300;
}
.btn{ height: 40px;}
.btn.solid,
.btn.transparent:hover {
    background-color: #fff;
    color: #69bde7;
}
.screen-reader-response{display:none;}
.btn.transparent,
.btn.solid:hover {
    background-color: transparent;
    color: #fff;
}
.nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-link {
    position: relative;
}
ul {
    margin-left:20px;
}
.nav-link  a{
    line-height: 35px;
    color: #fff;   
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;    
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}
.nav-link  a:hover{ color: #ff6600; }

 .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
.nav-link>a>i {
    margin-left: .2rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 17rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
     
}
.dropdown ul {
    position: relative;
  
}
.dropdown-link> a {
    display: flex;
background-color: #ffffff;
color: rgb(10, 10, 10);
padding: 0rem 1rem;
font-size: 15px;
align-items: center;
justify-content: space-between;
transition: .6s;
font-weight: 500
}

.dropdown-link:hover>a {
    color: #ff6600;
    font-size: 14px;
    background-color:#ff6600 : 
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.arrow {
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}
.dropdown-link:first-child:hover~.arrow {
    background-color:  #ff6600;
}
.dropdown-link {
    position: relative;
    list-style-type: none;
    padding: 0 ;
    
}

.dropdown.second {
    top: 0;
    left: 90%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
	
}
.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}
.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}
.hamburger-menu-container {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}
.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}
.hamburger-menu div:before,
.hamburger-menu div:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}
.hamburger-menu div:before {
    transform: translateY(-7px);
}
.hamburger-menu div:after {
    transform: translateY(7px);
}
#check {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}
#check:checked~.hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}
#check:checked~.hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}
#check:checked~.hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}


/* aad by sohan css	 */
 
.inul{margin-left:0px !important;}
 .inul li{margin-bottom:0px; list-style-type:none;font-size: 18px;  }

.inul li{padding: 0 0 0 30px; 
position: relative;
border: none;
	text-align: left;}

.inul li::before {
    content: '\f00c';
    font: 16px/26px FontAwesome;
    color: #60b741;
    position: absolute;
    left: 0;
    top: -2px;
}
.wed {
	padding:10px;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    3px 3px 5px 6px #ccc;  /* Firefox 3.5 - 3.6 */
  box-shadow:         3px 3px 5px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

 .porfolio {
  position: relative;
  
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ff6600 ;
}

.porfolio:hover .overlay {
  opacity: 0.9;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
 
.text a{color:#fff;font-size:16px; margin-right:10px; }

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.breadcrumb a {
    color: #428bca;
    text-decoration: none;
}






@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
@media (max-width: 920px) {
    .hamburger-menu-container {
        display: flex;
    }
    #check {
        display: block;
    }
    .nav-btn {
        position: fixed;
        height: auto;
        top: 4rem;
        left: 0;
        width: 100%;
        background-color:  #fff;
        color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }
    
    #check:checked~.nav-btn {
        transform: translateX(0);
        border-bottom: 2px solid #ff6600 ;
    }
    
    #check:checked~.nav-btn .nav-link,
    #check:checked~.nav-btn .log-sign {
        animation: animation .5s ease forwards var(--i);
    }
    
    .nav-links {
        flex: initial;
        width: 100%;
    }
    .dropdown-link {
        padding: 0px;
        border: 0;
    }
    .nav-links>ul {
        flex-direction: column;
    }
	.left i{margin:10px 0px;}
	.left h5{margin:10px 0px;}
	.left ul{margin-left:30px ;}
    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }
    
    .nav-link>a {
        line-height: 1;
        padding: 12px;
        color: #000;
    }
    
    .nav-link:hover>a {
        border-bottom: 1px solid #ff6600 ;
    }
    .nav-link a:hover{
        border-bottom: 1px solid #ff6600 ;
    }
    .dropdown,
    .dropdown.second {
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        display: none;
    }
    
    .nav-link:hover>.dropdown,
    .dropdown-link:hover>.dropdown {
        display: block;
    }
    
    .nav-link:hover>a>i,
    .dropdown-link:hover>a>i {
        transform: rotate(0deg);
    }
    
    .dropdown-link>a {
        padding: 0.7rem 1rem;
        line-height: 1;
    }
    
    .dropdown.second .dropdown-link>a {
        padding: 0.7rem 2rem 0.7rem 2rem;
    }
    
    .dropdown.second .dropdown.second .dropdown-link>a {
        padding: 1.2rem 2rem 1.2rem 4rem;
    }
    
    .dropdown-link:not(:nth-last-child(2)) {
        border-bottom: none;
    }
    
    .arrow {
        z-index: 1;
        background-color:  #ff6600;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }
    
    .nav-link:hover .arrow {
        background-color:  #ff6600;
    }
    
    .dropdown .dropdown .arrow {
        display: none;
    }
    

    .dropdown-link:first-child:hover~.arrow {
        background-color:  #ff6600;
    }
    
    .nav-link>a>i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }
    
    .dropdown i {
        font-size: 1rem;
        transition: .7s;
    }
    
    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}



.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}
.contact-btn {
    float: right;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: white;
    border: 1px solid #151515;
    border-radius: .25rem;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: auto;
    background-size: 100% 100%;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.1em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: auto;
    background-size: 100% 100%;
}
.nodesk {
    display: none;
}


.section-heading {
    text-align: center;
    margin: 20px 0px;
}
.section-heading h2,
h3 {
    margin-bottom: 10px;
     
}
.section-heading p {
    padding: 0px 12%;
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
  
    font-family: 'Public Sans', sans-serif;
}
.orange {
    color:  #ff6600 !important;
    text-decoration: none;
}
.nopadding {
    padding: 0px !important;
}
.mtd {
    margin: auto 0;
}

/*top section slider*/
.main-bg {
    background: url(./images/main-bg.jpg);
    width: 100%;
    height:auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.main-ds {
    padding-top:80px;
    padding-bottom: 80px;
}
.main-text {
    margin: 0px;
    padding:15px;
    margin:auto 0px;
}
.main-text h1 {
  
   font-size: 40px;
max-width: 900px;
margin: 25px auto;
    color: #fff;
}
.main-text h2 {
 
   font-size: 40px;
max-width: 900px;
margin: 25px auto;
    color: #fff;
}
.mainindx{
  
    font-size:40px;    
    line-height: auto;
    color: #ff6600 !important;
    font-weight: 600;
}
.main-text p {
    margin: 20px 0px;
    font-size: 18px;
    color:#fff;
    line-height: 30px;
}
.form-bot {
    width: 100%;
    height: 42px;
    background-color: #f90;
    color:#fff;
    text-align: center;
}
.top-form {
    padding:15px;
    background-image: linear-gradient(to bottom, #fff 85%,  #ff6600 15%);
}
.rouned {
    border-radius: 15px;
}
.top-form h3 {
    font-size: 18px;
    font-weight: 800;
}
.top-form h3 span {
    font-size: 18px;
    font-weight: 800;
    color:#061b30;
}
.phone {
    margin-top: 0px;
    padding: 0px;
    text-align: center;
}
.phone h3 {
    color:#fff;
    line-height: 25px;
}


/*hire us page css*/

.hirepage{display: flex;
flex-wrap: wrap;
padding: 5px 0 0;list-style-type: none;
color: #fff; margin-left:0px; }

.hirepage li{flex: 0 0 47%;
margin: 0 12px 12px 0;
text-transform: capitalize;
font-size:12px;
border: 1px dashed #fff;
color: #fff;
border-radius: 5px;
padding: 12px 10px 12px 50px;
position: relative;}

.hirepage li::before {
    content: '\f058';
    font: 24px/20px FontAwesome;
    color: #fff;
    position: absolute;
    left: 14px;
    top: 15px;
}
.point{text-align: left; margin: 20px auto;}

.faq{font-size: 23px;
font-weight: 600;
color: #000;}

.faqHeader {
        font-size: 22px;
        margin: 20px;
    }
.panel-heading{padding: 10px;
margin: 10px;
border: 1px solid #dedede;

color: #000;}

.panel-title{}
.panel-title a{font-size: 16px;}
.panel-body{padding: 20px;}

    .panel-heading [data-toggle="collapse"]:after {
        font-family: 'fontawesome';
        content: "\f054"; /* "play" icon */
        float: right;
        color: #F58723;
        font-size: 18px;
        line-height: 22px;
        /* rotate "play" icon from > (right arrow) to down arrow */
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .panel-heading [data-toggle="collapse"].collapsed:after {
        /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        color: #454444;
    }

.callbg{background-color:#011e3e; padding-top:100px;  padding-bottom:100px; }
.callp{font-size: 18px; font-weight: 600px; padding: 30px 0px;}

.sectionbg{ background: url(https://www.coreswipeglobal.com/wp-content/uploads/2021/05/des.png) center/cover no-repeat  ;    
  background-position: center; 
background-size: cover !important;}




/* end hire us page css*/


/*services section start here*/

.border {
    border: solid 1px #c0c0c0;
}
.border:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.19);
    color:#000;
}
.service-main-box{
    max-height: 400px;

}
.service-box {
    font-size: 40px;
}
.service-text {
    padding: 0 16px;
}
.service-text h3 {
    margin-top: 20px;
    font-size: 16px;
   
}
.service-text p {
  
    min-height: 270px;
    

}
.service-text2 {
    padding: 0 16px;
}
.service-text2 h3 {
    margin-top: 20px;
    font-size: 20px;
    
}
.service-text2 p {
    
    min-height: 200px;
 
}
.service-text3 {
    padding: 0 16px;
}
.service-text3 h3 {
    margin-top: 20px;
    font-size: 20px;
  
}
.service-text3 p {
   
    min-height:150px;
 
}
.service-btn {
    background-color:#c0c0c0;
    margin-bottom: 40px;
}
.box:hover .border {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 10px 0 rgba(0, 0, 0, 0.19);
    color:#000;
}
.box:hover .service-box {
    text-align: center;
    background: #fff;
    border:none;
    border-radius: 10px;
    font-size: 40px;
    color: #000;
    width:65px;
    height:65px;
    margin: 0 auto;
    line-height: 55px;
    transform: rotate(0deg);
    transition: all 0.99s ease 0s;
    margin-top: -30px;
}
.box:hover .fa {
    color:  #ff6600;
}
.box:hover .service-btn {
    background-color: #ff6600;
    color:#fff;
    font-size: 18px;
}
.box:hover h3 {
    color:  #ff6600;
}

/*  Our end-to-end web   */
.client-cont {
    background-image: linear-gradient(180deg, rgba(2, 0, 36, 1) 20%, rgba(255, 255, 255, 0) 100%),
    url('./images/bg-img2.jpg');
    width: 100%;
    height: 500px;
    text-align: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.section-heading-dark {
    width:100%;
    padding-top: 40px;
}
.section-heading-dark h3 {
    color:#fff;
    margin-bottom: 30px;
}
.section-heading-dark p {
    color:#fff;
    padding: 0px 12%;
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
}

.bl-dotted {
    border-left: 2px #fff dotted;
}
.client-vew h3 {
    font-size: 52px;
}
.client-vew p {
    font-size: 18px;
}
.footer2 {
    background-color: #45526e;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    background: #fff;
    padding: 15px 0;
    text-align: center;
}
.clients img {
    
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 16px 0;
    margin-bottom: 8px;
    height: auto;
}
.clients img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.4);
}
.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}
/*we-serve starte*/
.we-serve {
    padding:0px 80px;
}
.mte {
    margin-top:50px;
}

/*our porject  section start*/
.project {
    padding: 80px 0px;
}
.veiwall {
    text-align: end;
    margin-top: 5px;
}

/*Can-Do starte here*/

.can-do {
    margin: auto 0;
    padding-left: 20px;
}

/*testimonial sisfjas */
.testimonial_subtitle {
    color: #ff6600;
    font-size: 12px;
}
.testimonial_btn {
    background-color: #373d4b !important;
    color: #fff !important;
}
.seprator {
    height: 2px;
    width: 56px;
    background-color: #ff6600;
    margin: 7px 0 10px 0;
}
.clientinfo span {
    margin-left: 15px;
}
.comment::before {
    content: url(./images/testimonial_quote.png);
    position: relative;
    top: 5px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}
.comment::after {
    content: url(./images/testimonial_quote2.png);
    position: relative;
    bottom: 25px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
    float:right;
}

/*footer*/
.footer {
    padding-top: 60px;
}
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 100%;
    background-color: #fff0;
    color:#fff;
}
.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    background-color: #fff0;
}
 
.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef00;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.btn-orange {
    background-color: #ff6600;
    color: #fff;
}
.build ul{
    font-size: 17px;
    line-height: 22px;
    padding-left: 20px;
}
.build-content{ padding: 32px 50px;}
.build img{ height: 100%;}
.engmnt {
     background: url(./images/landing-sliderv.jpg)  ;
     background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center; 

}
.engmnt i{
    font-size: 60px;
    color: #007bff;
    margin: 20px 0 ;
}

.choose-logo i{
    font-size: 60px;  margin: 20px 0 ;
}
.enquery:hover{
    font-weight: 600;
    font-size: 18px;
    color: #fff;
} 
.main-phre{text-align: center; 
padding: 0 150px;
font-size: 14px;
line-height: 26px;}
.left{text-align: left;}

.form-group {
    margin-bottom: 1rem;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group-prepend {
    margin-right: -10px;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
   display: flex;  
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
      margin-bottom: 0;  
     font-size: 1rem;  
      font-weight: 400;  
     line-height: 1.5;  
      color: #495057;  
    text-align: center;  
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
 
 .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.form-group p {
    display: inline-block;
    width: 80%;
    margin: 0;
}
#about span {
    font-size: 32px;
    color: #042355;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.bg-info1 {
    background:#ff6600;
    color: #fff;
}
 .cont-heading{margin: 15px; padding: 15px;}
 .cont-heading h3{padding-bottom: 40px;}

@media all and (min-width: 360px) and (max-width: 780px){
   
    .client-deta{ right: -16px !important;}

     .mainindx {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: auto;
    color: #ff6600 !important;
    font-weight: 600;
}
.hirepage li {
    flex: 0 0 100%;
    margin: 0 12px 12px 0;
    text-transform: capitalize;
    font-size: 12px;
    border: 1px dashed #fff;
    color: #fff;
    border-radius: 5px;
    padding: 12px 10px 12px 50px;
    position: relative;
}
	/* aad by sohan css	 */
 
.inul{margin-left:0px !important;}
 .inul li{margin-bottom:0px; list-style-type:none;font-size: 18px;  }

.inul li{padding: 0 0 0 30px; 
position: relative;
border: none;
	text-align: left;}

.inul li::before {
    content: '\f00c';
    font: 16px/26px FontAwesome;
    color: #60b741;
    position: absolute;
    left: 0;
    top: -2px;
}
.wed {
	padding:10px;
  -webkit-box-shadow: 3px 3px 5px 6px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    3px 3px 5px 6px #ccc;  /* Firefox 3.5 - 3.6 */
  box-shadow:         3px 3px 5px 6px #ccc;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

 .porfolio {
  position: relative;
  
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ff6600 ;
}

.porfolio:hover .overlay {
  opacity: 0.9;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
 
.text a{color:#fff;font-size:16px; margin-right:10px; }

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.breadcrumb a {
    color: #428bca;
    text-decoration: none;
}
}	

.porce2{padding: 10px;
	min-height:355px;
    border: 2px dotted #c2c2c2;}
.porce2 h2{font-size:42px; opacity:0.1;  }

.porce2:hover{padding: 10px;
     color:#fff; border: 2px solid #fff; background: rgb(0,123,255);
background: linear-gradient(27deg, rgba(0,123,255,1) 0%, rgba(0,78,255,1) 50%);  }
.porce2:hover h2{font-size:42px; opacity:1; transform: rotate(-5deg);}
 



.porce{padding: 10px;
    border: 2px dotted #c2c2c2;}
.porce h2{font-size:42px; opacity:0.1;  }

.porce:hover{padding: 10px;
     color:#fff; border: 2px solid #fff; background: rgb(0,123,255);
background: linear-gradient(27deg, rgba(0,123,255,1) 0%, rgba(0,78,255,1) 50%);  }
.porce:hover h2{font-size:42px; opacity:1; transform: rotate(-5deg);}

#social-sidebar {
 right: 0;
 position: fixed;
 top: 50%;
list-style: none;
background: #f90;
	 border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
#social-sidebar:hover {
    right: 0;
    position: fixed;
    top: 50%;
    list-style: none;
    background: #00aced;
	 border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
#social-sidebar li:first-child a { border-top-left-radius: 5px;      padding-left: 5px;}
#social-sidebar li:last-child a { border-bottom-left-radius: 5px; }
 
#social-sidebar a {
  color: #fff;
white-space: nowrap;
 text-decoration: none; 
 height: 50px;
 width: 50px;  
 font-size: 24px;
 line-height: 22px;
 position: relative;
 text-align: center;
    cursor: pointer;
}
#social-sidebar a:hover span {
 right: 120%;
 opacity: 1;
}
#social-sidebar a span {
  font: 12px "Open Sans", sans-serif;
  text-transform: uppercase;
 border-radius: 3px;
 line-height: 24px;
 right: -100%;
 margin-top: -16px;
 opacity: 0;
 padding: 4px 8px;
 position: absolute;
 transition: opacity .3s, left .4s;
 top: 50%;
 z-index: -1;
}
 
#social-sidebar a span:before {
 content: "";
 display: inline-flex;
 height: 8px;
  width: 8px;
 right: -4px;
 margin-top: -4px;
 position: absolute;
 top: 50%;
 transform: rotate(45deg);
}
 
#social-sidebar a[class*="twitter"]:hover,
#social-sidebar a[class*="twitter"] span,
#social-sidebar a[class*="twitter"] span:before {background: #00aced;}