@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway&display=swap');

* , ::after , ::before{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Poppins';
}
p,ul{
    font-size: 14px;
}
li{
    /* display: block; */
    word-wrap: break-word;
}
.icon-sm{
    display: inline-block;
    width: 10px;
    height: 10px;
    background-size: cover;
    margin: 0 10px;
}
.icon{
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: cover;
    margin-left: 10px
}
.icon-md{
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: cover;
}
.icon-lg{
    display: inline-block;
    width: 60px;
    height: 60px;
    background-size: cover;
}
.angle-down{
    background-image: url("../assets/icons/angle-down.svg");
}
.angle-left{
    background-image: url("../assets/icons/angle-left.svg");
}
.angle-right{
    background-image: url("../assets/icons/angle-right.svg");
}
.angle-circle-left{
    background-image: url("../assets/icons/angle-circle-left.svg");
}
.angle-circle-right{
    background-image: url("../assets/icons/angle-circle-right.svg");
}
.star{
    background-image: url("../assets/icons/star.svg");
}
.home{
    background-image: url("../assets/icons/home.svg");
}
.primary{
    background-color: #4F8B4D;
}
.secondry{
    background-color: #E65318 !important;
}
.main-container{
    /* border: 1px solid black; */
    max-width: 1300px;
    width: 85%;
    margin: 0 auto;
}
.top-nav-bar{
    /* border: 1px solid black; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    height: 100px;
}
.logo{
    width: 120px;
    height: 50px;
}
.logo-md{
    width: 150px;
    /* border: 1px solid black; */
}
.logo-md img{
    width: 100%;
    /* object-fit: cover */
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.btn-link{
    font-family: "Poppins";
    font-size: 16px;
    background-color: #4F8B4D;
    color: white;
    height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: max-content;
    border: none;
    cursor: pointer;
}
.nav-bar-links{
    display: flex;
    align-items: end;
    gap: 30px;
    justify-content: space-between;
}
.link-container{
    position: relative;
    display: flex;
    align-items: center;
    transition: border-bottom 300ms ease-in-out;
}
.link-container .link{
    line-height: 14px;
}
.link{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-bar-part{
    display: flex;
    gap: 30px;
    align-items: center;
}
.slide-element{
    display: none;
    animation:  fade 2s;
}
.slide-element.active{
    display: block;
}
.link-hover-state{
    display: none;
    width: 100%;
    height: 3px;
    background-color: #4F8B4D;
    position: absolute;
    bottom: 0;
}
.link-container:hover .link-hover-state{
    display: block;
    animation:  link-hover--animation .5s;
}
@keyframes link-hover--animation {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    padding: 20px 30px;
    width: 200px;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 21px;
}
.dropdown-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 2px solid #808080;
}
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    margin-top: 20px ;
}
.dropdown-content a:hover {
    text-decoration: underline;
}
.dropdown:hover .dropdown-content {
    display: block;
}
@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
.slider-content , .news-cover{
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.3));
    padding: 60px 0;
}
.news-cover img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sli-text-cont .text{
    width: 50%;
    color: white;
}
.sli-text-cont .section-title-2{
    color: white;
    line-height: 1.25;
}
.sli-text-cont .text{
    margin: 15px 0;
}
.sli-text-cont .btn-link{
    color: white;
    background-color: #000;
}
.sli-img-cont{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.sli-img-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-indicator{
    margin-top: 30px;
    /* margin-bottom: 100px; */
    display: flex;
    gap: 20px;
    /* border: 1px solid black; */
}
.slide-indicator .circle{
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50px;
    opacity: 0.5;
}
.slide-indicator .circle.active{
    width: 40px;
    opacity: 1;
}

.home-section-1{
    display: flex;
    justify-content: space-between;
    /* border: 1px solid black; */
}
.part-1{
    width: 45%;
    height: 600px;
}
.part-2{
    width: 50%;
    height: 600px;
}
.part-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.part-1 .sub-title{
    font-family: 'Poppins', sans-serif;

    font-weight: 700;
    font-size: 40px;
}
.sub-title{
    font-family: 'Poppins', sans-serif;

    font-weight: 700;
    font-size: 35px;
}
.part-1 .title:nth-child(2){
    margin: 5px 0;
}
.section-title-1{
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    font-weight: 900;
    font-size: 65px;
    color: #4F8B4D;
    margin-bottom: 15px;
}
.section-title-2{
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    font-size: 55px;
    font-weight: 700;
}
.ellipsis{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.part-1 .text{
    width: 60%;
    margin: 30px 0;
}
.text{
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    font-weight: 400;
    /* border: 1px solid black; */
}
.part-2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(min-content, max-content);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    /* border: 1px solid black; */
}
.grid-item{
    text-decoration: none;
    color: black;
    position: relative;
    background-color: #EFEFEF;
    padding: 40px;
    /* border: 1px solid black; */
}   
.item-1 {
    grid-area: 1 / 1 / 2 / 2;
    background-color: white !important;
}
.item-2 {
    grid-area: 1 / 2 / 2 / 4;
}
.item-3 {
    grid-area:  2 / 1 / 3 / 4;
    display:  flex;
    gap : 30px;
}
.item-1 .section-title-1{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-title{
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    font-weight: 700;
}
.item-sub-title{
    font-family: 'Poppins', sans-serif;

    font-size: 25px;
    margin: 20px 0;
    font-weight: 700;
}
.grid-item p:nth-child(4){
    margin-top: 30px;
    /* border: 1px solid black; */
}

.item-2 .item-title{
    font-size: 18px;
}
.item-2 .item-sub-title{
    width: 70%;
    font-size: 30px;
    margin: 25px 0;
}
.grid-item.item-2 p:last-child{
    margin-top: 40px;
}
.item-img{
    display: none;
    /* background-color: #333; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.item-img.active{
    display: block;
    animation:  link-hover--animation 1s;
}
.item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section-3 {
    display: flex;
}
.sec3-item-1 { 
    width: 50%;
    /* height: 800px; */
}
.sec3-item-4 {
    width: 50%;
    /* border: 1px solid black; */
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec3-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec3-item .text{
    margin: 15px 0;
}
.home-section-4 {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.sec4-item{
    width: 50%;
    height: 400px;
    background-color: #EFEFEF;
}
.sec4-item:nth-child(1),.sec6-item:nth-child(1){
    background-color: white;
}
.sec4-item:nth-child(1){
    margin-bottom: 30px;
}
.sec4-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec4-item-1 {
    width: 100% !important;
    height: min-content !important;
}
.sec4-item-7 , .sec4-item-4 , .sec4-item-3, .sec4-item-8  {
    display: flex;
    padding: 0 50px;
    align-items: center;
    box-sizing: border-box;
}
.sec4-item-1 .text{
    margin-top: 30px;
    width: 50%;
}
.arrow{
    margin-right: 30px;
}
.sec4-content .text{
    width: 100%;
}
.big-title{
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
    font-size: 40px;
    color: #808080;
    margin-bottom: 20px;
    font-weight: 900;
}
.sec4-item-4 .arrow{
    margin-left: 15px;
}
.home-section-2 , .home-section-3 , .home-section-1 , .home-section-4 , .home-section-5 , .home-section-6 , .home-section-7 , .footer-section , .section-8 , .section-9, .section-10 , .section-11 {
    width: 100%;
    margin-top: 100px;
}
.home-section-5 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(min-content, max-content);
    grid-column-gap: 40px;
    grid-row-gap: 40px; 
}
.sec5-item-1 {
    grid-area: 1 / 1 / 2 / 5;
}
.sec5-item-2 {
    grid-area: 2 / 1 / 3 / 2;
}
.sec5-item-3 {
    grid-area: 2 / 2 / 3 / 3; 
}
.sec5-item-4 {
    grid-area: 2 / 3 / 3 / 4;  
}
.sec5-item-5 {
    grid-area: 2 / 4 / 3 / 5; 
}
.sec5-img{
    width: 100px;
    height: 100px;
}
.sec5-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec5-item .text {
    margin: 30px 0 0;
}
.home-section-6 {
    width: 100%;
}
.hs-6-content .sec6-item{
    padding: 40px;
    background-color: #EFEFEF;
    flex: 1;
    color: black;
    text-decoration: none;
}
.sec6-item-1 { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.hs-6-content{
    margin-top: 25px;
    width: 100%;
    display: flex;
    gap: 25px;
}

.sec6-item-5{
    display: none;
}
.sec6-content {
    display: flex;
}
.sec6-content p:nth-child(1){
    font-family: 'Poppins', sans-serif;
    margin-right: 10px;
    font-weight: 700;
}
.sec6-content p{
    margin-top: 10px;
}
.startups{
    display: flex;
    justify-content: space-between;
}
.home-section-7 .section-title-1{
    /* text-align: center; */
    margin-bottom: 30px;
}
@keyframes scroll {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-200px * 3.5));   
    }
}
.slider{
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.sec7-content{
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(200px * 7);
}
.sec7-content-kokali{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sec7-item{
    width: 200px ;
    height: 100px;
    margin-right: 20px;
}
.sec7-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.startups .sec7-content{
    flex-direction: column;
}
.hs7-image , .hs7-content{
    width: 50%;
    height: 650px;
    /* border: 1px solid black; */
}
.hs7-content{
    padding-left: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hs7-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-part-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(min-content, max-content);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 50px 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black; 
}
.fp1-item{
    display: flex;
    flex-direction: column;
}
.fp1-item1 {
    grid-area: 1 / 1 / 2 / 2; 
}
.fp1-item2 {
    grid-area: 2 / 1 / 3 / 2; 
}
.fp1-item3 {
    grid-area: 1 / 2 / 2 / 3; 
}
.fp1-item4 {
    grid-area: 2 / 2 / 3 / 3; 
}
.fp1-item5 {
    grid-area: 1 / 3 / 2 / 4; 
}
.fp1-item6 {
    grid-area: 2 / 3 / 3 / 4; 
}
.fp1-item7 {
    grid-area: 1 / 4 / 2 / 5; 
    width: 125px;
    justify-self: end;
    align-items: center;
}
.fp1-item8 {
    grid-area: 2 / 4 / 3 / 5;
    width: max-content;
    justify-self: end;
}
.fp1-item1 .section-title-2, .fp1-item3 .section-title-2,  .fp1-item5 .section-title-2{
    font-family: 'Poppins', sans-serif;
    color: #4F8B4D;
    font-size: 40px;
    font-weight: 900;
}
.fp1-item p:first-child{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    margin-top: 0;
    color: black;
    font-weight: 900;
}
.fp1-item a, .fp1-item p{
    color: #333;
    margin-top: 10px;
}
.fp1-item7 a{
    text-decoration: none;
}
.fp1-item7 a:last-child{
    margin-top: 30px;
}
.footer-part-2{
    font-family: 'Poppins', sans-serif;

    display: flex;
    justify-content: space-between ;
    padding: 30px 0;
    font-weight: 700;
}
.fp2-item {
    display: flex;
    align-items: center;
}
.fp2-item .text{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.fp2-item:last-child{
    display: flex;
    gap: 20px;
    align-items: center;
}
.breadcrumbs-section {
    margin-top: 30px;
    padding: 30px 0;
}
.breadcrumbs-section .main-container{
    display: flex;
}
.bc-link .text{
    text-decoration: none;
    color: #333;
}
.bc-link:last-child  {
    display: flex;
    align-items: center;
    width: 40%;
}
.bc-link:last-child .text {
    font-family: 'Poppins', sans-serif;

    text-decoration: underline;
    color: #333;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 900;
}
.about-content{
    margin-top: 70px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-item{
    width: 45%;
    height: 800px;
}
.about-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-item.text-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news{
    color: black;
}
.actualitiy-item{
    background-color: #EFEFEF;
    pointer-events: auto;
    display: inline-block;
}
.actualities-section{
    margin-top: 50px;
}
.others-actualities{
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.actualitiy-item{
    flex: 1;
}
.main-container .scroll-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.paging {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paging .text{
    margin: 0;
    font-size: 14px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    color: 0;
    padding: 0;
    color: black;
}
.paging .text.active{
    border-radius: 50px;
    background-color: #ecb34962;
}
.startups .section-title-1{
    color: #E65318;
}
.section-8 .section-title-1 , .sec9-desc .section-title-1 , .section-10 .section-title-1{
    color: #E65318;
}
.section-8 .text{
    margin-top: 30px;
    width: 40%;
}
.section-8-content{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.categories{
    display: flex;
    gap: 30px;
}
.cat-name{
    grid-area: 1 / 1 / 2 / 2;
    width: 300px;
    font-family: 'Poppins', sans-serif;

    font-size: 30px;
    display: flex;
    font-weight: 900;
}
.categories-content{
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    flex: 1;
}
.sec8-item{
    width: 300px;
}
.sec8-item .item-sub-title{
    font-size: 18px;
}

.content-img{
    height: 250px;
}
.content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-9{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.sec9-img{
    width: 50%;
    height: 600px;
}
.sec9-desc{
    width: 45%;
}
.sec9-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec9-desc .text{
    margin-top: 15px;
    width: 90%;
}
.section-10{
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.comments{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.sec10-content{
    /* width: 3; */
    flex: 1;
    background-color: #EFEFEF;
    padding: 30px;
}
.sec10-content .item-sub-title{
    margin-bottom: 0;
}
.sec10-content .text:nth-child(3){
    margin-top: 10px;
    margin-bottom: 30px;
}
.profile-pic{
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 4px solid #E65318;
}
.profile-pic img{
    width: 100%;
    height: 100%;
    border-radius: 50px;
}
.stars-content{
    margin-top: 30px;
}
.stars-content .icon:nth-child(1) {
    margin: 0;
}
.section-11{
    padding: 50px 0;
    margin-bottom: 50px;
}
.section-11 .section-title-1{
    color: white;
    width: 90%;
    margin: 0 auto;
}
.sec11-content{
    width: 90%;
    margin: 70px auto 0;
    display: flex;
    gap : 60px;
}
.sect11-item{
    display: flex;
    flex-direction: column;
    color: white;
}
.sect11-item .text:nth-child(1){
    font-family: 'Poppins', sans-serif;

    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 900;
}
.sect11-item a.text{
    font-family: 'Poppins', sans-serif;

    font-size: 20px;
    color: white;
    margin: 10px 0;
    font-weight: 400;
}
.part-1-startup .section-title-1{
    color: #000;
}
.news-header{
    margin:  30px auto;
    flex-direction: column;
}
.news-header .text{
    font-weight: 700;
}
.news-content .text{
    font-size: 18px;
}
.project-title .text{
    font-weight: 700;
}
.project-content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.pc-item{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.pc-item1 {
    width: calc(70% - 15px);
}
.pc-item2 {
    width: calc(30% - 15px);
}
.pc-item5 {
    border: 1px solid black;
    grid-area: 1 / 3 / 5 / 4;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 40%;
    justify-self: end;
}
.pc-item-content{
    width: 100%;
}
.pc-item .text:first-child{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    font-weight: 900;
}
.return-home{
    position: fixed;
    background-color: #4F8B4D;
    left: 0;
    top: 50% ;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    color: white;
    z-index: 2;
}
.return-home .icon-md{
    width: 20px;
    height: 20px;
}
.return-home .text{
    margin-top: 5px;
    font-size: 10px !important;
}
.burger{
    width: 33px;
    height: 33px;
    display: none;
    cursor: pointer;
    position: relative;
    margin-bottom: 5px;
    margin-right: 0;
    z-index: 9;
}
.burger span{
    width: 100%;
    height: 3px;
    background-color: #4F8B4D;
    display: block;
    position: absolute;
    top: 50%;
    border-radius: 30px;
    transform: translateY(-50%);
    background-color: transparent;
}
.burger span::before,.burger span::after{
    content : '';
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: #4F8B4D;
    transition: 0.5s ease-in-out;
}
.burger span::before{
    transform: translateY(-6px);
}
.burger span::after{
    transform: translateY(6px);
}
.burger.active span::before{
    transform: translateY(0) rotate(-45deg);
}
.burger.active span::after{
    transform: translateY(0) rotate(45deg);
}
.nav-bar-mobile-part{
    display: none;
}
.sec3-item-4 .sec3-item{
    display: none;
}
.sec3-item-4 .sec-text-content{
    height: min-content;
}
.sec-text-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sec-text-content .abstract{
    flex: 1;
}
.sec-text-content .btn-link{
    display: none;
}
.return-home .text{
    font-size: 14px;
}
.about-item ul , .sec9-desc ul{
    margin-left: 15px;
}
form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
input , textarea{
    width: 500px;
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    border-radius: 10px;
    border: 1px solid black;
    padding: 20px;
    box-sizing: border-box;
    font-weight: 400;
}
input{
    height: 45px;
}
input:last-child{
    width: 150px;
    border: none !important;
}
.message{
    font-family: 'Poppins', sans-serif;

    font-size: 20px;
    margin-top: 30px;
    width: 100%;
    /* border: 1px solid black; */
    border-radius: 10px;
    width: 400px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 400;
}
.error{
    background-color: #FF9494;
}
.success{
    background-color: #c3e8c1;
}
label.label input[type="file"] {
    position: absolute;
    top: -1000px;
}
.label {
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 5px;
    display: flex;
    align-items: center;
    border: 1px solid black;
    width: 500px;
    height: 45px;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

    font-size: 16px;
    font-weight: 400;
}
.label:invalid+span {
    color: gray;
}
.label:valid+span {
    color: 000000;
}
.message-content{
    display: flex;
    justify-content: center;
}
.sec6-item-2 .item-sub-title{
    margin-top: 0;
}
.sec3-item-4 .text{
    margin-bottom: 0;
}
.project-item .item-sub-title{
    margin-top: 0;
}
ul{
    margin-left: 30px;
}
.nav-bar{
    width: 100%;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 2;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.2);
    padding: 10px 0;
}
.nav-bar.active{
    box-shadow: none;
}
.form-message{
    width: 50%;
}
.message-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.alert{
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.infos{
    background-color: #98c6633b;
}
.autre_infos{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.autre_infos a{
    color: black;
}
.a-propos-img{
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}
.a-propos-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.non-clickable{
    cursor:  not-allowed;
}

.section-link{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color:  #ECB349 !important;
    font-size: 18px;
    transition: all 250ms;
}
.section-link:hover{
    font-size: 20px;
    transition: all 250ms;
}
.new-img{
    width: 100%;
    height: 600px;
}
.new-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}