.conact-section
{margin-top: 25px;}
  .center
{text-align: center;}
  .link-3d{
  color: #31a0da;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 15px;
  border: 1px solid #31a0da;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all .5s ease;
}
.link-3d.active,
.link-3d.active:hover,
.link-3d:hover,
{
  color: #31a0da;
  background:transparent !important;
  border-color:#31a0da;
  box-shadow: -1px 1px, -2px 2px, -3px 3px, -4px 4px;
  transform: translate3d(4px, -4px, 0);
}
.btn-link{
    color: #fff;
    background: #777575;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 4px 15px;
    border: 2px solid #0984e3;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
}

.btn-link:hover{ color: #fff;text-decoration: none}

.btn-link:before,
.btn-link:after{
    content: attr(data-hover);
    background: linear-gradient(45deg,#74b9ff 49% ,#0984e3 50%);
    height: 100%;
    width: 100%;
    padding: 4px 15px;
    text-shadow: 0 0 2px #555;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 51%, 0 51%);
    transition: all 0.3s;
}

.btn-link:after{ clip-path: polygon(0 100%, 100% 100%, 100% 51%, 0 51%); }

.btn-link:hover:before{ top: -51% }

.btn-link:hover:after{ top: 51% }

.btn-link span{
    display: block;
    transform: scale(0);
    transition: all 0.3s;
}

.btn-link:hover span{ transform:scale(1); }

.btn-link.red{ border-color: #d63031; }
.btn-link.red:before,
.btn-link.red:after{
    background: linear-gradient(45deg,#ff7675 49%, #d63031 50%);
}
.btn-link.red:hover{ color: #d63031; }

.btn-link.purple{ border-color: #6c5ce7; }
.btn-link.purple:before,
.btn-link.purple:after{
    background: linear-gradient(45deg,#a29bfe 49%, #6c5ce7 50%);
}
.btn-link.purple:hover{ color: #6c5ce7; }

.btn-link.pink{ border-color: #e84393; }
.btn-link.pink:before,
.btn-link.pink:after{
    background: linear-gradient(45deg,#fd79a8 49%, #e84393 50%);
}
.btn-link.pink:hover{ color: #e84393; }

@media only screen and (max-width: 767px){
    .btn-link{ margin-bottom: 20px; }
}
.img-box{
    overflow: hidden;
    position: relative;
}
.img-box:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(112, 107, 114, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.50s ease 0s;
}
.img-box:hover:after{
    opacity: 1;
}
.img-box img{
    width: 100%;
    height: auto;
    transition: all 0.50s ease 0s;
}
.img-box .img-box-content{
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.img-box:hover .img-box-content{
    opacity: 1;
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.8);
}
.img-box .img-box-title{
    display: inline-block;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    border:none;
    margin: 0;
    padding: 7px 15px;
    transform: translate(0%, -100%);
    transition: all 0.5s ease 0s;
}
.img-box:hover .img-box-title{
    transform: translate(0%,0%);
}
@media only screen and (max-width: 990px) {
    .img-box{ margin-bottom: 15px; }
}
.project-box{
    position:relative;
    overflow: hidden;
}
.project-box .project-box-img{
    transform: translateX(0px);
    transition:transform 0.40s linear ;
}
.project-box:hover .project-box-img{
    transform: translateX(100%);
}
.project-box .project-box-img img{
    width: 100%;
    height: auto;
}
.project-box .content{
    position: absolute;
    top:0;
    right: 100%;
    width:100%;
    height:100%;
    padding:5%;
    text-align:center;
    background:#e67e22;
    transition:right 0.40s linear;
}
.project-box:hover .content{
    right:0%;
}
.project-box .title{
    font-size:18px;
    text-transform:capitalize;
    color:#fff;
    margin: 5% 0 0;
}
.project-box .description{
    color:#fff;
}
.project-box .title:after,
.project-box .description:after{
    content: "";
    border-bottom: 1px solid #fff;
    display: block;
    margin:3% auto;
    width: 57%;
}
.project-box .social-links{
    padding:0;
    margin:0;
}
.project-box .social-links li{
    list-style:none;
    display:inline-block;
    margin-right:15px;
}
.project-box .social-links li a{
    color:#fff;
    font-size:18px;
}
@media only screen and (max-width: 990px) {
    .project-box{
        margin-bottom:20px;
    }
}

.tab-contact{    position: relative;
}

.tab-contact .nav-tabs{
    display: inline-block;
    border-bottom: none;
    position: relative;
}
.tab-contact .nav-tabs::after{
    clear: both;
}
.tab-contact .nav-tabs li{
    margin-bottom: 0;
    float: right;
}
.tab-contact .nav-tabs li a{
    display: block;
    padding: 3px 30px;
    border: none;
    border-radius: 0;
    font-size: 17px;
    font-weight: 700;
    color: #444;
    margin-right: 0;
    text-align: center;
    z-index: 1;
    transition: all 0.3s ease 0s;
    position: relative;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.tab-contact .nav-tabs li a i{
    display: block;
    font-size: 40px;
    color: #777575;
    margin-bottom: 15px;
}
.tab-contact .nav-tabs li a.active,
.tab-contact .nav-tabs li a:hover{
  background:#777575;
  color: #fff;
}
.tab-contact .nav-tabs li a:before,
.tab-contact .nav-tabs li a:after{
    content: "";
    width: 0;
    border-top: 3px solid #000;
    position: absolute;
    bottom: -1px;
    left: 0;
    transition: all 0.3s ease 0s;
}
.tab-contact .nav-tabs li a:after{
    left: auto;
    right: 0;
}
.tab-contact .nav-tabs li.active a:before,
.tab-contact .nav-tabs li a:hover:before,
.tab-contact .nav-tabs li.active a:after,
.tab-contact .nav-tabs li a:hover:after{
    width: 50%;
}
.tab-contact .tab-contact-content{
    padding: 20px;
    margin-top: -5px;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #d7d6d6;
    font-size: 15px;
    color: #757575;
    line-height: 30px;
}
.tab-contact .tab-contact-content h3{
    font-size: 24px;
    margin-top: 0;
}
@media only screen and (max-width: 479px){
    .tab-contact .nav-tabs li{
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .tab-contact .nav-tabs li a,
    .tab-contact .nav-tabs li a:hover{ border-bottom: 1px solid #dfdfdf; }
    .tab-contact .tab-contact-content{ border-top: none; }
}

.responstable table {
  margin: 0;
  width: 100% !important;
  overflow: hidden;
  background:#fff;
color:#00803f;
border-radius: 10px;
border: 1px solid #eee;
}
.responstable table tr {
  border: 1px solid #d9e4e6;
}
.responstable table tr:nth-child(odd) {
  background-color: #F7F8F9;
}
.responstable table tr:first-child {
  color: #fff;
  background-color: #00803f;
  border-radius: 10px;
  font-weight: normal;

}
.responstable table th {
  display: none;
  border: 1px solid #fff;
  background-color: #167f92;
  color: #fff;
  padding: 1em;
}
.responstable table th:first-child {
  display: table-cell;
  text-align: center;
}
.responstable table th:nth-child(2) {
  display: table-cell;
}
.responstable table th:nth-child(2) span {
  display: none;
}
.responstable table th:nth-child(2):after {
  content: attr(data-th);
}
@media (min-width: 480px) {
  .responstable table th:nth-child(2) span {
    display: block;
  }
  .responstable table th:nth-child(2):after {
    display: none;
  }
}
.responstable table td {
  word-wrap: break-word;
  max-width: 7em;

}
.responstable table td:first-child {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #d9e4e6;
  border-radius: 10px 0 0 0
}
@media (min-width: 480px) {
  .responstable table td {
    border: 1px solid #d9e4e6;
  }
}
.responstable table th,
.responstable table td {
  text-align: center;
}
@media (min-width: 480px) {
  .responstable table th,
  .responstable table td {
    display: table-cell;
  }
}
.sidebar-pdf{
    padding: 5px 20px;
  border: #F7F8F9 1px solid
}
.sidebar-pdf i{
    color: #f00;}
.gallery-box a{
  margin: 5px;
  display: inline-block;
width: 15%;
  }
.gallery-box img{

width: 100%;
  }
  .img-box2{display: table-cell;
padding-left: 10px;}
