.Banner {
    background-image: url('../img/Banner/Banner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    height: calc(100vh - 150px);
}

.Banner .text {
    position: absolute;
    left: 35%;
    top: 25%;
    transform: translateX(-50%);
    color: white;
    width: 42%;
}

.Banner .text h2 {
    font-size: 48px;
    font-weight: bold;
}

.Banner .text p {
    margin: 30px 0;
}

.Banner .text a button {
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px 26px;
    transition: 0.4s;
}

.Banner .text a button:hover {
    background-color: #004C90;
    border: 1px solid #004C90;
}

.Box1 {
    margin-top: 120px;
}

.Box1 .container-md.row {
    position: relative;
    margin: 0 auto;
    padding-bottom: 100px;
}

.Box1 .About-Txt span {
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
}

.Box1 .About-Txt span::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #00448B;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box1 .About-Txt h4 {
    font-size: 45px;
    font-weight: bold;
}

.Box1 .About-Txt p {
    color: #666;
    margin: 40px 0 50px 0;
}

.Box1 .About-Txt ul {
    padding: 0;
}

.Box1 .About-Txt ul li {
    margin-bottom: 20px;
    font-weight: 600;
}

.Box1 .About-Txt ul li i {
    background-color: #00448B;
    color: #fff;
    padding: 5px;
    border-radius: 99px;
    font-size: 12px;
    margin-right: 15px;
}

.Box1 .About-Txt a button {
    text-transform: uppercase;
    background-color: #00448B;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    margin-top: 30px;
    transition: 0.4s;
}
.Box1 .About-Txt a button:hover{
    background-color: #D71619;
}
.Box1 .About-Img {
    padding: 0 120px 0 100px;
    display: flex;
    justify-content: end;
    position: relative;
}

.Box1 .About-Img .img1 {
    position: absolute;
    z-index: 2;
    left: 15%;
    top: 40%;
    transform: translateY(-50%);
    width: 30%;
    height: 50%;
}

.Box1 .About-Img .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Box1 .About-Img .img2 {
    width: 80%;
}

.Box1 .About-Img .img2 img {
    width: 100%;

}

.Box1 .About-Img .dian {
    position: absolute;
    top: -40px;
    right: 50px;
    z-index: -1;
    animation-name: shapeMover;
    animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

@keyframes shapeMover {

    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0)
    }

    50% {
        transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(10px)
    }
}


.Box1 .About-Img .txt {
    font-size: 90px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: #b2b2b25c;
    opacity: .50;
    position: absolute;
    left: -380px;
    top: 320px;
    transform: rotate(-90deg);
}


.Box1 .About-Di {
    position: absolute;
    background-color: #00448B;
    bottom: 0;
    right: 0;

}

.Box1 .About-Di .box {
    padding: 40px 20px 30px 20px;
    text-align: center;
    color: #fff;
}

.Box1 .About-Di .box i {
    font-size: 50px;
}

.Box1 .About-Di .box h5 {
    font-size: 26px;
    font-weight: 600;
}

.Box1 .About-Di .box span {
    font-size: 16px;
}

@media screen and (max-width:1400px) {
    .Box1 .container-md.row{
        padding-bottom: 170px;
    }

    .Box1 .About-Img{
        padding: 0 55px 0 40px;
    }
    .Box1 .About-Di .box i{
        font-size: 45px;
    }

    .Box1 .About-Img .img1{
        width: 35%;
    }

}
@media screen and (max-width:1200px) {

    .Box1 .About-Di{
        width: 80% !important;
        right: -34%;
        transform: translateX(-50%);
    }

    .Box1 .About-Img .img1{
        display: none;
    }


}
@media screen and (max-width:991px) {
    .Box1 .About-Txt span{
        margin-top: 30px;
        display: block;
        width: fit-content;
    }
    .Box1 .About-Di{
        position: relative;
        width: 100% !important;
        right: 0;
        transform: translateX(0);
        margin: 0 auto;
        margin-top: 50px;
    }
    .Box1 .container-md.row{
        padding-bottom: 0px;
    }
    .Banner .text{
        top: 19%;
        left: 50%;
        width: 80%;
    }
    .Banner .text h2{
        font-size: 30px;
    }


    .Box1 .About-Img{
        padding: 0;
    }
    .Box1 .About-Img .img2{
        width: 100%;
        position: relative;
        height: 0;
        padding-top: 50%;
        overflow: hidden;
    }

    .Box1 .About-Img .img2 img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }




}



.Box2 {
    margin-top: 80px;
    position: relative;
}

.Box2 .Di {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 80%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Box2 .Di::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.6;
    background-color: #000;
}

.Box2 .Di img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.Box2 .container-md.row {
    padding-top: 100px;
    margin: 0 auto;
    color: #fff;
}

.Box2 .container-md.row .box:nth-child(1),
.Box2 .container-md.row .box:nth-child(2) {
    margin-bottom: 20px;
}

.Box2 .container-md.row .box div {
    background-color: #fff;
    color: #000;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.Box2 .container-md.row .box div::before {
    position: absolute;
    width: 20px;
    height: 50px;
    background-color: #D71619;
    content: '';
    top: 30;
    right: 0;
    z-index: 2;
    transition: 0.5s;
}

.Box2 .container-md.row .box:hover div::before {
    background-color: #00448B;
}

.Box2 .container-md.row .box div::after {
    width: 80%;
    height: 80%;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: '';
    background-color: #D71619;
    transition: 0.5s;
    opacity: 0;
}
.Box2 .container-md.row .box:hover div::after{
    opacity: 1;
    width: 100%;
    height: 100%;
}
.Box2 .container-md.row .box div img {
    width: 50px;
    z-index: 2;
    position: relative;
    transition: 0.5s;
}

.Box2 .container-md.row .box div h5 {
    font-weight: bold;
    margin: 10px 0;
    z-index: 2;
    position: relative;
    transition: 0.5s;
}

.Box2 .container-md.row .box div p {
    color: #0000007c;
    z-index: 2;
    position: relative;
    transition: 0.5s;
}


.Box2 .container-md.row .box:hover div img {
    filter: brightness(0) invert(1);  
}
.Box2 .container-md.row .box:hover div h5,
.Box2 .container-md.row .box:hover div p{
    color: #fff;
} 

.Box2 .container-md.row .txt span {
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
}

.Box2 .container-md.row .txt span::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #ffffff;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box2 .container-md.row .txt h4 {
    font-size: 45px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .Box2 .container-md.row .txt h4{
        font-size: 35px;
    }   
}

@media screen and (max-width: 991px) {
    .Box2 .container-md.row .col-lg-8.row{
        margin: 0 auto;
        margin-top: 30px;
    }
}

@media screen and (max-width:576px) {
    .Box2 .container-md.row .box{
        padding: 0;
    }
    .Box2 .container-md.row .box:nth-child(4){
        margin-top: 20px;;
    }
}







.Box3 {
    margin-top: 50px;
}

.Box3 .container-md {
    margin: 0 auto;
}

.Box3 .container-md .t1 {
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
}

.Box3 .container-md .t1::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #000;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box3 .container-md .t2 {
    font-size: 45px;
    font-weight: bold;
    width: 45%;
    margin-bottom: 30px;
}


.Box3 .container-md .Product-List .pbox {

    padding: 15px;
}

.Box3 .container-md .Product-List .pbox>div.boxs {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.09);
    background: #f6f6f666;
}

.Box3 .container-md .Product-List .img {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-top: 77%;
    border-bottom: 1px solid #00000015;
    background-color: #fff;
}
.Box3 .container-md .Product-List .img::before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 2;
    left: 100%;
    top: 0;
    background-color: #00000052;
    transition: 0.5s;
}
.Box3 .container-md .Product-List .pbox:hover .img::before{
    left: 0;
}
.Box3 .container-md .Product-List .img img {
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.Box3 .container-md .Product-List .pbox:hover .img img{
    transform: translate(-50%, -50%) scale(1.1);
}

.Box3 .container-md .Product-List .txt {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Box3 .container-md .Product-List .txt h6 {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 20px;
    margin: 0;
}

.Box3 .container-md .Product-List .txt span {
    color: #00000070;
}

.Box3 .container-md .Product-List .txt div a button {
    background-color: #00448B;
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 5px 20px 5px;
    transition: 0.5s;
}
.Box3 .container-md .Product-List .txt div a button:hover {
   background-color: #D71619; 
}






.Box5 {
    margin-top: 50px;
}

.Box5 .container-md {
    margin: 0 auto;
}

.Box5 .t1 {
    text-transform: uppercase;
    font-size: 16px;
    width: fit-content;
    position: relative;
}

.Box5 .t1::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #000;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box5 .t2 {
    font-size: 45px;
    font-weight: bold;

}

.Box5 .tab-buttons {
    display: flex;
    gap: 5px;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 20px;
}

.Box5 .tab-btn {
    flex: 1;
    padding: 8px 40px;
    text-align: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #00448B;
    color: #fff;
}

.Box5 .tab-btn.active {
    background-color: #D71619;
    color: #fff;
    border-bottom-color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.Box5 .tab-btn:hover:not(.active) {
    color: #fff;
    background-color: #D71619;
}

.Box5 .tab-content {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.Box5 .tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.Box5 .tab-content img {
    width: 100%;
    height: auto;
}



@media screen and (max-width: 991px) {
    .Box5 .tab-buttons{
        width: 100%;
    }
    .Box5 .tab-btn{
        padding: 8px 20px;
    }
}
@media screen and (max-width: 768px) {
    .Box5 .tab-btn{
        font-size: 9px;
    }
}



.Box4 {
    position: relative;
    margin-top: 80px;
}

.Box4 .container-md {
    margin: 0 auto;
    padding: 100px 0;

}

.Box4 .t1 {
    text-transform: uppercase;
    font-size: 16px;
    width: fit-content;
    position: relative;
    color: #fff;
}

.Box4 .t1::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #ffffff;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box4 .t2 {
    font-size: 45px;
    font-weight: bold;
    color: #fff;
}

.Box4 .Di {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Box4 .Di::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.6;
    background-color: #000;
}

.Box4 .Di img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.Box4 .New-All {
    margin-top: 30px;
}

.Box4 .New-All .New1 {
    width: 100%;
    height: 100%;
    position: relative;
}

.Box4 .New-All .New1 a {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}

.Box4 .New-All .New1 a::before {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #00000050;
    content: '';
    left: 0;
    bottom: 0;
}

.Box4 .New-All .New1 a img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Box4 .New-All .New1 a div {
    position: absolute;
    z-index: 3;
    left: 40px;
    bottom: 40px;
    width: 100%;
}

.Box4 .New-All .New1 a div span {
    background-color: #D71619;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    width: fit-content;
    display: block;
    margin-bottom: 20px;
}

.Box4 .New-All .New1 a div h6 {
    color: #fff;
    font-weight: bold;
    font-size: 23px;
    max-width: 80%;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
    overflow: hidden;


}
.Box4 .New-All .New1 a div h6:hover{
    color: #D71619;
}


.Box4 .New-All .Ce-New ul {
    margin-bottom: 0;
}

.Box4 .New-All .Ce-New ul li a {
    display: flex;
    justify-content: end;
    position: relative;

}

.Box4 .New-All .Ce-New ul li:not(:last-child) {
    margin-bottom: 20px;
}

.Box4 .New-All .Ce-New ul li .New-Imgs {
    position: absolute;
    overflow: hidden;
    height: 100%;
    left: 0;
    padding: 0;

}
.Box4 .New-All .Ce-New ul li .New-Imgs::before{ 
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000050;
    opacity: 0;
    z-index: 2;
    transition: 0.5s;
}
.Box4 .New-All .Ce-New ul li a:hover .New-Imgs::before{
    opacity: 1;
}
.Box4 .New-All .Ce-New ul li .New-Imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.Box4 .New-All .Ce-New ul li .New-Txt {
    background-color: #fff;
    padding: 30px;
}

.Box4 .New-All .Ce-New ul li .New-Txt span {
    font-size: 12px;
    color: #848484;
    font-weight: bold;
}

.Box4 .New-All .Ce-New ul li .New-Txt span i {
    color: #00448B;
    margin-right: 4px;
}

.Box4 .New-All .Ce-New ul li .New-Txt h6 {
    font-weight: bold;
    color: #000;
    font-size: 22px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    transition: 0.5s;
}
.Box4 .New-All .Ce-New ul li .New-Txt h6:hover{
    color: #D71619;
}








.Box6 .container-md {
    margin: 0 auto;
    padding: 80px 0;
}

.Box6 .container-md .t1 {
    text-transform: uppercase;
    font-size: 16px;
    position: relative;
    width: fit-content;
}

.Box6 .container-md .t1::before {
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #000;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    content: '';
    opacity: 1;
}

.Box6 .container-md .t2 {
    font-size: 45px;
    font-weight: bold;
}

.Box6 p {
    color: #878987;
}

.Box6 ul {
    padding: 0;
    margin: 0;
}

.Box6 ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Box6 ul li:nth-child(1) {
    margin-bottom: 10px;
}

.Box6 ul li i {
    width: 40px;
    height: 40px;
    background-color: #00448B;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.Box6 ul li div {
    width: calc(100% - 55px);
}

.Box6 ul li div span {
    display: block;
    color: #878987;
    font-size: 14px;
}

.Box6 ul li div a {
    font-weight: bold;
    color: #000;
}

.Box6 .col-md-8 {
    background-color: #00438b23;
    padding: 120px;
}

.Box6 form {
    width: 100%;
}

.Box6 label {
    display: block;
    display: flex;
    justify-content: space-between;
}

.Box6  label input {
    width: 48%;
    height: 45px;
    border: 1px solid #ddd;
    padding: 0 20px;
    outline: none;
}

.Box6 textarea {
    outline: none;
    padding: 20px;
    width: 100%;
    height: 160px;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.Box6 button {
    margin-top: 20px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    padding: 15px 50px;
    background-color: #00448B;
    border: none;
    transition: 0.5s;
}
.Box6  button:hover{
    background-color: #D71619;
}




@media screen and (max-width: 992px) {
    .Box1 .About-Txt h4,
    .Box2 .container-md.row .txt h4,
    .Box5 .t2,
    .Box3 .container-md .t2,
    .Box4 .t2
    {
        font-size: 35px;
    }
    .Box3 .container-md .t2{
        width: 80%;
    }
    .Box5 .tab-buttons {
        display: flex; 
        justify-content: center;
        flex-wrap: wrap; 
        gap: 1%; 
        margin: 0;
        padding: 0;
    }
    
    .Box5 .tab-btn { 
        width: 32%; 
        flex: 0 0 32%;
        font-size: 12px;
        padding: 15px 20px; 
        border: none;
        box-sizing: border-box; 
        text-align: center;
        cursor: pointer;
        margin-bottom: 5px;
    }
    .Box4 .New-All .Ce-New {
        margin-top: 20px;
    }
    .Box4 .New-All .Ce-New ul{
        padding-left: 0;
    }
    .Box4 .New-All .Ce-New ul li{
        display: flex;
        justify-content: center;
    }
    .Box4 .New-All .Ce-New ul li a{
        width: 100%;
    }

    .Box6 form{
        margin-top: 30px;
    }

}

@media screen and (max-width:768px) {
    .Box4 .container-md{
        padding: 100px 12px;
    }
    .Box4 .New-All .New1 a img{
        position: relative;
    }
    

}

@media screen and (max-width:576px) {
    .Box5 .tab-btn{
        flex: 0 0 43%;
        font-size: 10px;
    }
    .Box1 .About-Txt h4,
    .Box2 .container-md.row .txt h4,
    .Box5 .t2,
    .Box3 .container-md .t2,
    .Box4 .t2
    {
        font-size: 25px;
    }
    .Box3 .container-md .Product-List .txt h6{
        font-size: 14px;
    }
    .Box4 .New-All .Ce-New ul li .New-Imgs{
        position: relative;
    }
    .Box4 .New-All .Ce-New ul li{
        display: block;
    }
    .Box4 .New-All .Ce-New ul li a{
        margin: 0 auto;
    }
}