* {
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 15; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: black;
    margin: 5% auto; 
    
    border: 1px solid #888;
    width: 80%; 
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

body {
    background: linear-gradient(210deg, rgba(0,0,0,1) 47%, rgba(157,110,42,1) 100%);
    color: white;
}

.slider-bg {
    height: 100vh;
    position: relative;
    background-image: url(img/bg-hero-image.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}


.background-overlay {
    background-color: #000000;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

header {
    position: relative;
    z-index: 0;
    padding: 50px 0px;
    width: 70%;
    margin: auto;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    top: 0;
}

header .header-right  {
display: flex;
flex-direction: row;
}

header .header-right a {
    margin-left: 25px;
    color: #fcecca;
    text-decoration: none;
    font-size: 18px;
}

header .header-right  .active {

    border-bottom: 1px solid;
}
header .active:before {
    position: absolute;
    top:0px;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    -webkit-transform: scale3d(0, 5, 1);
    transform: scale3d(0, 5, 1);
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
    transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);

}

.news-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 70%;
    margin: auto;
margin-bottom: 75px;
}

.left img {width: 100%;}
.left {width: 60%;display: inline-block;}
.right {width: 30%;
    display: inline;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
padding-top: 0px;
    font-size: 20px;
height: fit-content;}


.item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 50px;
    
}



 .item img {    
width: 100%;
object-fit: cover;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;

}

.item .title-date {
    width: 100%;
    font-size: 15px;
    font-weight: 200;
    text-align: center;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.item .title-date .title {
    border-style: solid;
border-width: 0px 0px 0px 1px;
border-color: #838282;
text-align: left;
padding-left: 15px;
font-size: 2.5rem;
    line-height: 1.25em;    
}

.item .item-p {
    font-size: 15px;
    font-weight: 300;
    margin: 20px 0px;
}

.news-btn {
    font-size: 15px;
color: black;
background-color: #fcecca;
padding: 9px 15px;
text-decoration: none;
}

.news-flex .news-btn:hover {
    background-color: #f2b100;
    transition: 1s;

}

.right form {width: 100%;display: flex;border: 1px solid rgba(128, 128, 128, 0.449);margin-bottom: 25px;}
.right form  #text {width: 75%;padding: 8px;border-style: none;}
.right form  button {width: 25%;padding: 8px;border-style: none;background-color: white;display: flex;align-items: center;justify-content: right;}



.populer a, a:hover, a:active, a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;  

}

.populer-item img {width: 100%;height: auto;}

.populer-item  {
    width: 100%;
position: relative;
display: inline-block;
margin-bottom: 15px;
}

.populer-item-cover {
    top: 0px;
    position: absolute;
    background-color: #0000008e;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 96%;
}

.populer button {
    cursor: pointer;;
    padding: 0px;
    border-style: none;
    background-color: black;
}

.populer-item-cover-left {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2b610b6;
    font-size: 26px;
    color: white;
}

.populer-item-cover-right {
    width: 80%;
    color: white;
    text-align: center;
    font-size: 21px;
}

.right .title {
    font-size: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d0d0d0;
    margin-bottom: 25px;
}




    
footer {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #212121;
    color: white;
    padding: 50px 5%;
    width: 100%;
    margin: auto;
}

.footer-item {
    width: 27%;
    display: flex;
    flex-direction: column;
}

.footer-title {
    text-align: center;
    padding-left: 5px;
    padding-bottom: 5px;
    font-size: 25px;
    position: relative;
    width: 100%;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
}



.footer-item p {
    font-size: 15px;
    padding: 10px 0px;
    font-weight: 200;
    text-align: center;
    line-height: 2;
}

.footer-item p b {
    font-weight: 400;
    color: #f2b100;
}

.footer-news {
    padding: 15px 0px;
    font-weight: 100;
}

.footer-project p {
    padding: 5px 0px;
    font-size: 20px;
    text-align: center;
}



.footer-bottom p {
    width: 300px;
}

.social-footer {
position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: right;
    flex-direction: column;
bottom: 25px;
right: 25px;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    z-index: 20;
}   

.social-footer-2 {
    position: absolute;
            display: flex;
            align-items: flex-start;
            justify-content: right;
            flex-direction: row;
    top: 25px;
    right: 25px;
            padding-bottom: 15px;
            padding-left: 5px;
            padding-right: 5px;
            z-index: 20;
        }   

.social-footer svg {margin-top: 25px;}
.social-footer-2 svg {margin-left: 25px;}
.footer-item-logo {
    width: 27%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-item-logo a {
    font-size: 15px;
    color: white;
    text-decoration: none;
    margin-top: 35px;
    font-weight: 200;
}

    @media only screen and (max-width: 1300px) { 

        .news-container,header {
            width: 85%;
        }
    }