section.banner {
    padding-top: 120px;
}
/* Banner css start */
section.banner .row{
    width: 100%;
}
section.banner h1 {
    color: var(--white-color);
    font-size: 60px;
    line-height: 1.2;
    text-align: center;
}
section.banner p{
    text-align: center;
}
section.banner a.main-btn {
    display: block;
    margin-top: var(--m10);
    width: 180px;
    text-align: center;
}
section.banner .col-8.cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}
/*portfolio css start*/
section.portfolio {
    background: var(--black-color);
    padding: var(--p90) 30px;
}
.portfolio-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.portfolio-tabs {
    margin-bottom: 15px;
}
.portfolio-tabs ul{
    border-bottom: 1px solid #999696;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.portfolio-heading span.section-title__tagline{
    border-bottom: 1px solid #D06A3E;
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}
.portfolio-heading h2{
    color: var(--white-color);
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 15px;
}
.portfolio-heading h2 span{
    font-weight: 400;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
}
section.portfolio .nav-link{
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0px;
    padding-bottom: 10px;
    position: relative;
}
section.portfolio .portfolio-tabs li:not(:last-child) {
    margin-right: 28px;
}
section.portfolio .nav-pills .nav-link.active, section.portfolio .nav-pills .show>.nav-link{
background-color: transparent;
color: #FF7425;
}
section.portfolio .nav-link:hover, section.portfolio .nav-link.active{
    color: #FF7425;
}
section.portfolio .nav-link::before {
    content: '';
    height: 9px;
    width: 9px;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    border-radius: 50%;
    background-color: #FF7425;
    bottom: -5px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
}
section.portfolio .nav-link.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.portfolio-details a{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 340px;
    display: block;
}
.portfolio-details a img{
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.portfolio-details .overlay-hover {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(22, 22, 22, 0.4);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}
.port-info {
    height: 300px;
    width: 300px;
    border-radius: 50%;
    padding: 105px 20px 80px 65px;
    bottom: -60px;
    left: -40px;
    position: absolute;
    z-index: 1;
}
.port-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    left: -50px;
    top: 50px;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.port-info h2{
    font-size: 22px;
    top: 15px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    color: var(--white-color);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.portfolio-btn {
    display: inline-block;
    top: 15px;
    position: relative;
    z-index: 2;
    padding-right: 30px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.portfolio-btn::after {
    content: '';
    height: 1px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: 2px;
}
.portfolio-details a:hover .overlay-hover{
    opacity: 1;
}
.portfolio-details a:hover .port-bg{
    left: 0px;
    top: 0px;
    opacity: 1;
    background-color: #FF7425;
}
.portfolio-details a:hover .port-info h2{
    top: 0px;
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.portfolio-details a:hover .portfolio-btn {
    top: 0px;
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.portfolio-details{
    gap: 30px 0;
}
.tab-content>.active {
    display: flex;
}