footer{
    background: #272727 ;
    text-align: center;
    text-transform: uppercase;
    padding-top: 30px;
    margin-top: auto;
    color: #fff;
    padding: 7px;
    bottom: 0;
    width: 100%;
    position: fixed;
    z-index: 1;
}

footer li{
    list-style: none;
    display: inline-block;
    margin: 10px;
}

.footer-icons a{
    background: #589837;
    color: #272727;
    padding: 15px;
    border-radius: 100px;
    display: flex;
    font-size: 25px;
}

.footer-icons a:hover{
    color: #fff;

}

.footer-menu a{
    color: #fff;
  
}
.footer-menu a:hover{
    color: #5b9638;
}

.footer-copyright{
    background-color: #5b9638;
    color: #fff;
    padding: 15px;
    margin-top: 30px;

}

.footer-copyright p{
   margin-bottom: 0px;
}


/*===========================================*/
section{
    padding: 20px;
    overflow: hidden;
}

section .header{
    text-align: center;
    padding-bottom: 60px;
}

.header h2{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.header h2::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 50px;
    height: 3px;
    background: #008072;
    margin: auto;
}

.header p{
    margin-bottom: 0;
    color: #6f6f6f;
}


.container{
    max-width: 1300px;
    box-shadow: 0px 2px 25px rgb(0 0 0 / 10%);
    border-radius: 10px;
    margin: auto;
    display: flex;
    transition: 0.4s all ease-in-out;
}

.info_container{
    padding: 20px;
    max-width: 35%;
    width: 100%;
    background: #008072;
    border-radius: 10px 0 0 10px;
    color: #fff;
}

.info_container .info_item{
    padding: 20px;
    background: #009282;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info_container .info_item:last-child{
    margin: 0;
}

.info_item .icon{
    float: left;
    clear: left;
    margin-right: 15px;
    height: 75px;
}

.icon i{
    font-size: 20px;
    color: #fff;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.info_item:hover i{
    background: #fff;
    color: #009282;
}

.information h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.information p{
    font-size: 15px;
    line-height: 1.7;
}

.input_container{
    max-width: 65%;
    width: 100%;
    padding: 30px;
}

form .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    
}

form .form_control{
    border: 1px solid #ced4da;
    outline: none;
    font-size: 14px;
    padding: 12px 15px;
    color: #212529;
    width: 100%;
    margin-bottom: 25px;
    transition: 0.3s;
    line-height: 1.5;
    background-color: #fcfafa;
    box-shadow: 3px 3px 15px grey;
}

.form_control:focus{
    border-color: #009282;
}

textarea{
    resize: none;
    font-family: sans-serif;
    background-color: #fcfafa;
    box-shadow: 3px 3px 15px grey;
}

.btn{
    width: 100%;
    text-align: center;
}

.btn button{
    background: #008072;
    border: 0;
    padding: 16px 45px;
    color: #fcfafa;
    border-radius: 50px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 400;
    transition: 0.4s;
}

.btn button:hover{
    background: #019e8b;
}

@media screen and (max-width: 1400px) {
    
    .container{
        max-width: 1100px;
    }

    .information p{
        font-size: 13px;
    }
}

@media screen and (max-width: 1200px){
    .container{
        max-width: 900px;
    }
}

@media screen and (max-width: 991px){
    .container{
        max-width: 768px;
        flex-direction: column;
    }

    .info_container, .input_container{
        max-width: 100%;
    }

    .info_container{
        border-radius: 10px 10px 0 0;
    }

    .input_container{
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px){
    section{
        padding: 50px 5px;
    }
    .container{
        max-width: 550px;
    }
    form .row{
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================================================================*/

  
  h1{
    text-align: center;
    margin: 30px;
    color: white;
  }
  
  .conten{
    width: 800px;
    height: 500px;
    border: 2px solid black;
    margin: auto;
    position: relative;
  }
  
  .conten .slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s;
  }
  
  .conten .slide img{
    width: 100%;
    height: 100%;
  }
  
  .conten .slide span{
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 10px;
  }
  
  .conten .slide .navigation{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .conten .slide .navigation label{
    font-size: 40px;
    color: rgb(247, 9, 9);
    padding: 20px;
    cursor: pointer;
    user-select: none;
  }
  
  #item-1:checked ~ .item-1{
    opacity: 1;
    z-index: 2;
  }
  
  #item-2:checked ~ .item-2, #item-3:checked ~ .item-3, #item-4:checked ~ .item-4{
    z-index: 3;
    opacity: 1;
  }
  
  .conten > input{
    visibility: hidden;
    position: absolute;
  }
  