@import url('https://fonts.googleapis.com/css2?family=Mea+Culpa&display=swap');

.main-box {
    width: 100%;
    height: 40vh;
    position: relative;
    display: flex;
}

@media (max-width:991px) {
    .main-box {
        flex-direction: column;
        height: 75vh;
    }
}

.box-part {
    width: 50%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width:991px) {
    .box-part {
        width: 100%;
    }
}

.box-part.part1 {
    background: #ffffff;
}

.box-part::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
}

.landing_logo {
    position: relative;
    background: #ffffffdb;
    border: 4px solid white;
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 80px;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s linear;
    z-index: 1;
}

@media (max-width:991px) {
    .landing_logo {
        width: 180px;
        height: 65px;
        top: 70px;
    }
}

.landing_logo:active {
    transform: scale(1);
}

.layer1 {
    isolation: isolate;
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    filter: url(#glass-distortion);
    backdrop-filter: blur(4px);
    transition: backdrop-filter 0.2s ease, opacity 0.2s ease;
}

.landing_logo:hover .layer1 {
    opacity: 0.9;
}

.layer2 {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    border-radius: 99px;
    box-shadow: inset 1px 1px 0px 0 rgb(192 228 233 / 70%),
        inset -3px 0px 10px 0 rgb(192 228 233 / 70%),
        inset 3px 2px 3px 0 rgb(192 228 233 / 70%),
        inset -1px -1px 3px 1px rgba(255, 255, 255, 0.5),
        inset -1px -5px 10px -1px rgba(255, 255, 255, 0.5);
    transition: box-shadow 0.18s ease;
}

.landing_logo:hover .layer2 {
    box-shadow: inset 1px 1px 0 0 rgb(192 228 233 / 85%),
        inset -3px 0 12px 0 rgb(192 228 233 / 85%),
        inset 4px 3px 4px 0 rgb(192 228 233 / 80%),
        inset -1px -2px 4px 1px rgba(255, 255, 255, 0.65),
        inset -2px -7px 12px -1px rgba(255, 255, 255, 0.6);
}

.logo_def {
    width: auto;
    position: relative;
    z-index: 999;
}

.box-part.part2 .logo_def {
    height: 60px;
}

.box-part.part1 .logo_def {
    height: 37px;
}

@media (max-width:991px) {
    .box-part.part1 .logo_def {
        height: 30px;
    }

    .box-part.part2 .logo_def {
        height: 50px;
    }
}

.landing_logo:hover {
    background: #fff;
}

.scale-up-center {
    -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
}

.box-part video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.explore {
    font-size: 16px;
    line-height: 1;
    color: #fff !important;
    font-weight: 500;
    display: table;
    position: absolute;
    bottom: 100px;
    transform: translateX(-50%);
    left: 50%;
    text-decoration: none !important;
    z-index: 999;
    letter-spacing: 2px;
    transition: all 0.5s linear;
}

@media (max-width:991px) {
    .explore {
        bottom: 45px;
    }
}

.explore::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 98%;
    height: 1px;
    background-color: #fff;
}

.explore:hover {
    opacity: 0.5;
}

.page-header {
    position: relative;
    background-image: url('../images/header/1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 400px 0 300px;
    box-shadow: 400px 400px 400px 400px inset #0000008f;
    z-index: 1;
    margin-top: -100px;
    margin-bottom: 0;
}

@media (max-width:991px) {
    .page-header {
        padding: 250px 0 150px;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    cursor: none;
}

@media (max-width:1199px) {
    .page-header-box h1 {
        font-size: 35px;
    }
}

@media (max-width:991px) {
    .page-header-box h1 {
        font-size: 25px;
    }
}

.infrastructure-pg .box {
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
    margin: 15px 0;
}

.infrastructure-pg .box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.infrastructure-pg .box img {
    width: 100%;
    height: 220px;
    transform: rotate(0deg) scale(1);
    transition: all .8s;
    object-fit: cover;
}

@media (max-width:767px) {
    .infrastructure-pg .box img {
        height: auto;
    }
}

.infrastructure-pg .box:hover img {
    transform: rotate(10deg) scale(1.5);
}

.infrastructure-pg .box .box-content {
    background: rgba(227, 30, 36, 0.6);
    width: calc(100% - 30px);
    height: 0;
    overflow: hidden;
    transform: translateX(-50%) translateY(0%);
    position: absolute;
    bottom: 15px;
    left: 50%;
    transition: all .5s;
}

.infrastructure-pg .box:hover .box-content {
    height: calc(100% - 30px);
}

.infrastructure-pg .box .box-content .content {
    width: 100%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
}

.infrastructure-pg .box .title {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin: 0 0 3px 0;
}

.infrastructure-pg .box .post {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 10px;
    display: block;
}

.infrastructure-pg .box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
}

.infrastructure-pg .box .icon li {
    margin: 0 4px;
    display: inline-block;
}

.infrastructure-pg .box .icon li a {
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    height: 35px;
    width: 35px;
    border: 2px solid #fff;
    box-shadow: 0 0 2px #000;
    display: block;
    transition: all 0.3s;
}

.infrastructure-pg .box .icon li a:hover {
    border-radius: 35px;
    box-shadow: 0 0 5px #fff;
}

.infrastructure-pg .infrastructure__box {
    margin-bottom: 50px;
}

.infrastructure-pg .infrastructure__box img {
    width: 100%;
    position: relative;
}

.infrastructure-pg .infrastructure__box .sx-info {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    right: 50px;
    bottom: 85px;
    padding: 30px;
    max-width: 360px;
}

@media (max-width:991px) {
    .infrastructure-pg .infrastructure__box .sx-info {
        position: relative;
        right: 0;
        bottom: 0;
        max-width: 100%;
    }
}

.infrastructure-pg .infrastructure__box .sx-info:after {
    position: absolute;
    content: '';
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.infrastructure-pg .infrastructure__box .sx-info h4 {
    color: #fff;
}

@media (max-width:767px) {
    .infrastructure-pg .infrastructure__box .sx-info h4 {
        font-size: 25px;
    }
}

.infrastructure-pg .infrastructure__box .sx-info p {
    color: #fff;
}

.certificates-pg .box {
    text-align: center;
    position: relative;
    margin: 10px 0;
    width: 100%;
    display: table;
}

.certificates-pg .box:before {
    content: "";
    background-color: #000;
    outline: 7px double #000;
    outline-offset: 3px;
    opacity: 0;
    transform: skewY(10deg) scale(0.8);
    position: absolute;
    top: 25px;
    left: 25px;
    bottom: 25px;
    right: 25px;
    transition: all 0.2s ease-out;
}

.certificates-pg .box:hover:before {
    opacity: 0.8;
    transform: skewY(0) scale(1);
    z-index: 1;
}

.certificates-pg .box img {
    width: 100%;
    height: auto;
}

.certificates-pg .box .box-content {
    color: #ed3237;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) skewY(-10deg);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transition: all 0.2s ease-out;
}

.certificates-pg .box:hover .box-content {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) skewY(0);
}

.certificates-pg .box .title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 10px;
    color: #fff;
}

.certificates-pg .box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
}

.certificates-pg .box .icon li {
    display: inline-block;
}

.certificates-pg .box .icon li i {
    color: #ed3237;
    font-size: 25px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    transition: all .3s ease-in-out;
}

.certificates-pg .box .icon li i:hover {
    border-radius: 10px;
}

.chairman-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.chairman-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-pg .row {
    display: flex;
    align-items: center;
}

@media (max-width:991px) {
    .chairman-pg .row {
        flex-direction: column;
    }
}

.chairman-data {
    padding-left: 50px;
}

@media (max-width:1199px) {
    .chairman-data {
        padding-left: 0;
    }
}

.chairman-data .quote {
    width: 60px;
    margin-bottom: 20px;
}

.chairman-data .quote img {
    width: 100%;
}

.chairman-data h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.chairman-data h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.chairman-data p {
    font-size: 15px;
    margin-bottom: 30px;
}

.chairman-data h4 {
    font-size: 50px;
    margin-bottom: 15px;
    font-family: "Mea Culpa", cursive;
    font-weight: 400;
}

.chairman-data h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media (max-width:991px) {
    .chairman-img {
        margin-bottom: 30px;
    }

    .chairman-data .quote {
        width: 45px;
    }

    .chairman-data h2 {
        font-size: 25px;
    }

    .chairman-data h3 {
        font-size: 20px;
    }

    .chairman-data h4 {
        font-size: 40px;
    }
}

.figure__inner {
    border-radius: 10px;
    overflow: hidden;
}

.catalogue-pg figure.snip0012 {
    -webkit-transition: none !important;
    transition: none !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #000000;
    text-align: center;
}

.catalogue-pg figure.snip0012 img {
    max-width: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    border-bottom: 1px solid #eee;
}

.catalogue-pg figure.snip0012>div {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    position: absolute;
}

.catalogue-pg figure.snip0012>div a {
    color: #ffffff;
    margin: 0 10px;
}

.catalogue-pg figure.snip0012>div a img {
    width: auto;
    opacity: 0;
    top: 50%;
    position: relative;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    display: inline-block;
}

.catalogue-pg figure.snip0012>div a img.left-icon {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.catalogue-pg figure.snip0012>div a img.right-icon {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.catalogue-pg figure.snip0012>div::before {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 50%;
    left: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.catalogue-pg figure.snip0012:hover img {
    opacity: 0.35;
}

.catalogue-pg figure.snip0012:hover>div img {
    opacity: 0.9;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.catalogue-pg figure.snip0012:hover>div img.left-icon {
    -webkit-transform: translate3d(-25%, -50%, 0);
    transform: translate3d(-25%, -50%, 0);
}

.catalogue-pg figure.snip0012:hover>div img.right-icon {
    -webkit-transform: translate3d(25%, -50%, 0);
    transform: translate3d(25%, -50%, 0);
}

.catalogue-pg figure.snip0012:hover>div::before {
    background: rgba(255, 255, 255, 0);
    top: 30px;
    bottom: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.catalogue-pg .figure__inner .title {
    text-align: center;
    padding: 15px 0px;
}

.catalogue-pg .figure__inner .title h3 {
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
}

.catalogue-pg .figure__inner {
    box-shadow: 5px 6px 12px 0px rgb(0 0 0 / 50%);
    margin: 15px 0;
}

#chartdiv {
    width: 100%;
    height: 80vh;
    margin: 30px 0 50px 0;
}

@media (max-width:991px) {
    #chartdiv {
        height: 35vh;
    }
}

.owl-carousel-slider .client-logo img {
    width: 110px;
    border: 1px solid #777;
    border-radius: 110px;
    padding: 5px;
    background: #fff;
    margin-bottom: 10px;
}

.owl-carousel-slider .client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.owl-carousel-slider .client-logo span {
    font-size: 15px;
    color: #000;
}

.contact-us-form h2 {
    font-size: 32px;
    font-weight: 500;
}

@media (max-width:1199px) {
    .contact-us-form h2 {
        font-size: 25px;
    }
}

.contact-us-form input,
.contact-us-form textarea {
    margin: 0 0 10px 0;
}

.contact-us-form .btn:hover {
    background: #000 !important;
}

.row-d {
    display: flex;
    align-items: center;
}

@media (max-width:991px) {
    .row-d {
        flex-direction: column;
    }

    .row-d .col-lg-6 {
        width: 100%;
    }
}

#notification {
    position: fixed;
    bottom: 70px;
    left: 15px;
    z-index: 9;
    border-color: #0062cc;
    background-color: #fff;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5);
    border-radius: 5px;
    width: 300px;
    height: auto;
    padding: 20px;
}

#notification p {
    text-align: justify;
    color: #000
}

#notification a {
    color: #000 !important;
    font-weight: 600;
}

.whatsappicon {
    position: fixed;
    bottom: 15px;
    left: 15px;
}

.whatsappicon img {
    max-width: 50px;
}

.tableimg {
    width: 50px;
}

/* bottom to top css start */

#toptobottombutton {
    display: inline-block;
    background-color: #000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    position: fixed;
    bottom: 15px;
    right: 15px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#toptobottombutton:hover {
    cursor: pointer;
    background-color: #ed3237;
    color: #fff;
}

#toptobottombutton.show {
    opacity: 1;
    visibility: visible;
}


/* bottom to top css end */

.categories-list h2 {
    font-size: 25px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 15px 0 40px;
    position: relative;
}

.categories-list h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #777;
}

.categories-list h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px;
}

.categories-list a {
    color: #000;
}

.categories-list a:hover,
.categories-list a.active {
    color: #ed3237;
}

.categories-list ul {
    padding: 0;
    margin: 0 0 30px;
    list-style: circle;
    padding-left: 20px;
}

.categories-list ul li a {
    font-size: 16px;
}

.categories-list ul li {
    margin: 0 0 5px;
}

.categories-list ul li:last-child {
    margin: 0;
}

.product-pg .portfolio-item {
    border: 1px solid;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.product-pg .portfolio-item h2,
.product-pg .portfolio-item h3 {
    margin: 15px 0 0;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.product-pg .portfolio-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
}

.product-pg .portfolio-item a {
    color: #000;
}

.product-pg .portfolio-item a:hover {
    color: #ed3237;
}

.product-pg .portfolio--img .portfolio--hover {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-pg .portfolio--zoom {
    margin: 0;
}

.main-slidert {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width:991px){
    .main-slidert{
        margin-bottom: 30px;
    }
}
.slidest {
    position: relative;
}

.slidet {
    display: none;
    width: 100%;
}

.slidet img {
    height: 300px;
    width: auto;
    display: block;
    object-fit: contain;
    border: 1px solid #16161647;
    margin: 0 auto;
}
@media (max-width:767px){
    .slidet img{
        width: -webkit-fill-available;
    }
}
.preview-slidert {
    margin-top: 10px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-slidet {
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #16161647;
    padding: 2px;
    background: #eee;
}

.preview-slidet.active{
    border: 1px solid #ed3237;
}

.preview-slidet img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.product-data h5{
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}
.product-data h2{
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 15px;
}
.product-data table th,
.product-data table td{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.product-data table tr{
    padding: 10px 0;
    display: block;
    border-top: 1px solid #00000036;
}
.product-data table tr:last-child{
    border-bottom: 1px solid #00000036;
}
.product-data table{
    width: 100%;
}
.product-data table td{
    opacity: 0.6;
}
.product-data table th{
    width: 80px;
}
.product-data table td span{
    padding-right: 10px;
}

.product-data .btn:hover{
    background: #000 !important;
}