*{
    padding: 0px;
    margin: 0px;
    align-items: center;
 }
body {
    font-family: Arial, sans-serif;
    background-color:#c6ced6;
    align-items: center;
}

header {
    background-color: rgb(0, 71, 88);
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav {
    background-color: rgb(0, 101, 126);
    color: #ffffff;
    padding: 10px;
    text-align: center;
}



section {
    padding: 0px;

}

footer {
    background-color: rgb(0, 101, 126);
    color: #fff;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.imgview{
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider { 
    width: 1200px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}
.slides {
    width:500%;
    height:300px;
    display: flex;  
}

.slides input{
    display:none;
}

.slide{
    width: 20%;
    transition: 2s;
}
.slide img{
    width: 1200px;
    height: 300px;
}

.navigation-manual{
    position: absolute;
    width: 1200px;
    margin-top:-30px;
    display: flex;
    justify-content: center;
}

.manual-btn{
    border: 2px solid #575757;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child){
    margin-right: 40px;
}

.manual-btn:hover{
    background-color: #302f2f;
}

#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}
.box{
    width: auto;
    margin:2.5% 7%;
    background:white;
    padding: 1%;
    border-radius:10px;
    box-shadow:5px 5px 3px gray;
    display:flex;
    justify-content:space-between;
}
.box:hover {
    transition: 1s;
    background: linear-gradient(-90deg, rgba(0,55,69,1) 24%, rgba(1,96,124,1) 50%, rgba(1,170,187,1) 74%, rgba(0,181,207,1) 91%);
    cursor: pointer;
    scale: 105%;
    transition: 1s;
   
}
.box:hover .para,.box:hover .para h3{
    transition:1s;
    color: aliceblue;
}

.images{
    border-radius: 10px;
}
.para{
   color:rgb(0, 101, 126);
   padding:0% 5%;
   font-size:1rem;
   text-align:center;
}
.para h3{
    color: rgb(0, 96, 110);
}
 
section h2{
    text-align: center;
    color:rgb(255, 255, 255); 
    background-color: rgb(0, 118, 148);
    margin: 1% 5%;
}

#contact_container{
    width: auto;
    margin: 1%;
    border: 1px solid black;
}
#contact_box{
    width: auto;
    display: flex;
    justify-content: center;  
    margin: 2% 5% 5% 5%;
    background: linear-gradient(-90deg, rgba(0,55,69,1) 24%, rgba(1,96,124,1) 50%, rgba(1,170,187,1) 74%, rgba(0,181,207,1) 91%);
}

.request{
    background: #fff;
    flex-basis: 60%;
    padding: 1%;
}

.request label{
      color: rgb(0, 118, 148);
      margin: 1%;
}
.request h3{
    margin: 1%;
    margin-bottom: 2%;
    color:rgb(0, 96, 110);
    font-weight: 600;
}

#reach{
    
    color: #fff;
    flex-basis: 40%;
    padding: 1%;
}
#reach h2
{
	margin-bottom: 40px;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
}

#reach p {
    margin: 10% 0; 
    line-height: 1.0;
}

.input_row{
    display: flex;
    justify-content: space-between;
}
.input_row .input_group
{
    flex-basis: 45%;
    margin: 1%;
}
input{
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 1%;
}
textarea{
    width: 98%;
    outline: none;
    margin: 1%;
    box-sizing: border-box;
    border: 1px solid #ccc;
}
button{
    outline: none;
    border: none;
    color:white;
    background: rgb(0, 118, 148);
    margin: 1%;
    font-size:0.8rem;
    width: 15%;
    padding: 1.5%;
    border-radius: 25px;
    box-shadow: 0px 5px 15px 0px rgba(0,55,69,0.5);

}