/* 



.content {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.box_ {
    width: 250px;
    height: 399px;
    background-color: #ffffffcb;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 1px 1px 5px #858585, -1px -1px 5px #858585;
    transition: 0.3s;
    margin: 10px;
}

.box_:hover {
    box-shadow: 0px 5px 10px #858585;
    transition: 0.3s;
    transform: scale(1.2);
}

.box_ img {
    width: 250px;
    height: 400px;
    transition: 0.3s;
}

.box_:hover img {
    transform: scale(1.3);
    transition: 0.3s;
    filter: blur(3px);
}

.box_ p {
    position: relative;
    color: rgb(255, 255, 255);
    z-index: 20;
    text-align: center;
    top: 0px;
    border-radius: 5px;
    padding: 20px 10px;
    font-weight: 300;
    width: 250px;
    height: 404px;
    display: inline-flex;
    background-color: #272727cb;
    background-color: rgb(61 124 159 / 70%);

    align-items: flex-end;
    flex-wrap: wrap;
}

.box_:hover p {
    animation: toTop 0.3s both;
}

.btn_ {
    display: block;
    margin: 10px auto;
    padding: 10px 15px;
    background: none;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
    outline: none;
    box-shadow: 0px 10px 6px #1f1f1f;
    transition: 0.1s;
}

.btn_:hover {
    background-color: #fff;
    color: #363636;
    box-shadow: none;
    transform: translateY(3px);
    transition: 0.1s;
}

@keyframes toTop {
    0% {
        top: 0px;
    }
    100% {
        top: -404px;
    }
}





.cube {
    margin: auto;
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 2s ease;
}

.cube:hover {
    transform: rotateX(180deg) rotateY(720deg);
}

.side {
    position: absolute;
    width: 200px;
    height: 200px;
    text-transform: uppercase;
    text-align: center;
}

.side.back {
    transform: translateZ(-100px) rotateX(180deg);
}
.side.left {
    transform: translateX(-100px) rotateY(-90deg);
}
.side.right {
    transform: translateX(100px) rotateY(90deg);
}

.side.front {
    transform: translateZ(100px);
}
.side.top {
    transform: translateY(-100px) rotateX(90deg);
}
.side.bottom {
    transform:translateY(100px) rotateX(90deg);
}

.side .icon {
    margin: 30% auto;
    vertical-align: middle;
    font-size: 84px;
}

.side.grey {
    color: #777;
    background-color: white;
}

.side.black {
    color: white;
    background-color: #ff0000;
}

.side.twitter {
    color: white;
    background-color: #0084b4;
}
.side.grey {
    color: #777;
    background-color: white;
}

.side.facebook {
    color: white;
    background-color: #ed1b24;
}


 */




.section_news .card_news {
    background-color: #fff;
    padding: 15px;
    max-height: 400px;
    overflow: hidden;
    border: 1px solid #f6f6f6;
    display: block;
    margin-bottom: 16px;
}

.section_news .card_news .img_news {
    width: 100%;
    height: 185px;
    overflow: hidden;
}

.section_news .card_news .img_news img {
    transition: all 0.3s;
    transform: scale(1);
    width: 100%;
    height: 100%;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.shadow::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(90deg, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .1) 60%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, .8)), color-stop(60%, rgba(0, 0, 0, .1)));
    background: -webkit-linear-gradient(
90deg
, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .1) 60%);
    background: -o-linear-gradient(90deg, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .1) 60%);
    background: -ms-linear-gradient(90deg, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .1) 60%);
    background: linear-gradient(
0deg
, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, .1) 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.section_news .card_news .content_news .date_news .fa-calendar {
    font-size: 20px;
    color: #000000;
}


.section_news .card_news .content_news .date_news .date {
    color: gray;
    padding-right: 10px;
    font-size: 13px;
    font-weight: bold;
}

.section_news .card_news .content_news {
    padding-top: 10px;
}

.section_news .card_news .content_news div.h3 {
    margin-top: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #000000;
}

.section_news .card_news .content_news div.p {
    font-size: 14px;
    color: #ed1b24;
}

/* transition: all 0.3s;
    transform: scale(1);
transform: scale(1.1); */
.section_news .card_news:hover .img_news img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
    transform: scale(1.1);
}
.section_news .card_news:hover .content_news div.h3 {
    color: #ed1b24;
}







.main-menu li::before {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 0px;
    opacity: 0;
    background-color: #ed1b24;
    transition: all .3s linear;
}
.main-menu li:hover::before {
    height: 4px;
    opacity: 1;
}
.main-menu li:hover a{
    color: #ed1b24;
}
.main-menu li:before {
    height: 100%;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}
li.active {
    height: 4px;
    opacity: 1;
    background-color: #ed1b24;
}


















.gallery-area {
    /* float: right; */
    /* width: 100%; */
    text-align: center;
    overflow: hidden;
}
.galler_2_btm_section {
    float: right;
    width: 100%;
}
.project_pdr_btm {
    padding-bottom: 30px;
}
.gallery-area .gallery-list {
    position: relative;
    overflow: hidden;
}
.gallery-area .gallery-list .sp_img_box_overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: 600px;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}

.gallery-area .gallery-list .sp_img_box_overlay {
    position: absolute;
    right: 0;
    left: 0;
    top: 600px;
    bottom: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
.gallery-area .gallery-list img {
    width: 100%;
}
.tab_img_overlay {
    /* float: right; */
    width: 100%;
    text-align: center;
    display: inline-block;
    position: absolute;
    z-index: 10;
    right: 0;
    left: 0;
    margin: 0px auto;
    top: 30%;
}

.tab_img_overlay a {
    font-size: 18px;
    color: #434443;
    text-align: center;
    opacity: 0;
    -webkit-filter: blur(70px);
    filter: blur(70px);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    -ms-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
}
.tab_img_overlay i {
    width: 50px;
    height: 50px;
    background: #ffffff;
    text-align: center;
    line-height: 53px;
    border-radius: 100%;
    font-size: 18px;
    margin-top: 10px;
}
.fa-pagelines:before {
    content: "\f18c";
}
.tab_img_overlay h1{
    color:#fff;
    font-size:18px;
    text-transform:capitalize;
    font-weight:500;
    text-align:center;
    opacity:0;
    padding-top:10px;
    -webkit-filter:blur(70px);
    filter:blur(70px);
    -webkit-transform:scale(1.3);
    -moz-transform:scale(1.3);
    -ms-transform:scale(1.3);
    -o-transform:scale(1.3);
    transform:scale(1.3);
    -webkit-transition:all 0.3s ease 0.3s;
    -moz-transition:all 0.3s ease 0.3s;
    -ms-transition:all 0.3s ease 0.3s;
    -o-transition:all 0.3s ease 0.3s;
    transition:all 0.3s ease 0.3s;
}
.tab_img_overlay p {
    color: #fff !important;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    text-align: center;
    opacity: 0;
    -webkit-filter: blur(70px);
    filter: blur(70px);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    -ms-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
}
.gallery-area .gallery-list:hover .sp_img_box_overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(222, 221, 221, 0.6) 1%, #235069 100%);
    background: -webkit-linear-gradient(top, rgba(222, 221, 221, 0.6) 1%, #235069 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1%,rgba(0, 0, 0, 0.9) 100%);    opacity: 1;
    /* background: linear-gradient(
0deg
, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 70%);

 */
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
.gallery-area .gallery-list:hover .tab_img_overlay a {
    opacity: 1;
    z-index: 10;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all 0.7s;
}
.tab_img_overlay a:hover {
    color: #169b2a !important;
}
.gallery-area .gallery-list:hover .tab_img_overlay h1 {
    opacity: 1;
    color: #fff;
    z-index: 10;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all 0.7s;
}

.gallery-area .gallery-list:hover .tab_img_overlay P {
    opacity: 1;
    color: #434443;
    z-index: 10;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: all 0.7s;
}














