@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  :root {
    --teal: #009b8f;
    --yellow:#FFC914;
  }
body{
overflow-x:hidden;

font-family: 'Titillium Web'!important;
}
ul{
    list-style:none;
}
a{
  color:inherit;
    text-decoration:none;
}
a:visited{
    color:inherit;
}
h1{
    font-size:30px;
    font-weight:700;
    text-transform: uppercase;
}
h2{
    font-size:16px;
    font-weight:500;
    text-transform: uppercase;
}


p{
    margin:16px 0 10px 0;
}
.custom-text{
  font-size:10px;
  white-space: nowrap;
}
p,label,textarea,ul li{
  font-size:20px!important;
  font-family: 'Titillium Web' !important;
}
textarea{
  font-size: 14.5px !important;
  font-family: 'Titillium Web' !important;
}
.notices{
  padding-top:30px;
  padding-left:40px;
  max-height: 100px; /* Adjust the height as needed */
  overflow-y: auto;
  color:var(--teal);
}
.mailsent{
  background:#555;
  color:#fff;
  display:flex;
  flex-direction: column;
  text-align:center;
  align-items:center;
  justify-content: center;
  width:100%;
  height:100%;
  position:absolute;
}
.btn-back{
  /*   background:teal; */
        color:#333!important;
        display:inline-block;
        background: 0 0 #fff;
        border:1px teal solid;
        border-radius: 8px;
        padding:20px 100px;
        transition:0.3s;
        cursor: pointer;
        text-transform: uppercase;
        height:100%;
        width:100%;
        font-size:16px!important;
        white-space: nowrap;
        font-weight: normal;
        font-family: 'Titillium Web';
        background:var(--);
        color:#333;
        cursor: pointer;
        height:auto;
}
.btn-back:hover{
  background:var(--yellow);
}
.container{
    max-width:1200px;
    margin:auto;
    overflow:hidden;
}

.row{
  width:100%;
  display:flex;
}
.grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:1rem;
  max-width:auto;
}

.navigation {
  width: 100%;
  z-index:20;
  transition: 0.3s;
}


.bottom-bar {
  background-color: rgb(19, 22, 26);
  padding:20px;
  background:var(--teal);
}

.bottom-bar_content {
  min-height: 60px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  vertical-align: middle;
  display: flex;
  align-items: center;
/*   padding:20px; */
padding-top:20px;
  margin-left:-10px;
}

  .logo img{
    height:80px;
    max-width:100%;
   
  }
.showcase{
    background:linear-gradient(rgba(0, 27, 25, 0.9),rgba(2, 46, 42, 0.9) ),url(/img/header.jpg)  no-repeat center center/cover;
    content:'';
    height:1000px;
    position:relative;
    width:100%;
    color:#fff;
  }
.showcase::before{
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width:100%;
    height:25%;
    clip-path: polygon(100% 25%, 0 100%, 100% 100%);
    background:#fff;
  
    }
    .showcase .container{
      display:grid;
      grid-template-columns: repeat(2,1fr);
      align-items:center;
      justify-content: center;
      top:0;
      left:0;
      height:100%;
      width:100%;
    }
    .showcase .content{
      max-width:600px;
      align-items:start;
      top:200px;
      position: absolute;
      padding:30px;
      margin-left:20px;
    }
 

  section{
    display:flex;
    flex-direction:column;
    align-items:center;
    height:100%;
    background:#fff;
  }
.contact{
  position:relative;
  width:100%;
  display:flex;
  justify-content: center;
/*   align-items:center; */
}
.contact-form{
  position:relative;
  background:#f9f9f9;
  width:100%;
  padding:60px 40px 20px;  
  top:-140px;
  border-radius: 8px;
  
}

.contact-form form{
  width:auto;
  padding:20px;
  min-width:300px;
}
.contact-form .title{
  width:auto;
  padding:20px;
  display:flex;
  justify-content: center;
  text-align: center;
  color:#333;
}
/* .contact-form .row{
  width:100%;
  display:flex;
} */

.contact-form .row input,
.contact-form .row textarea{
  position:relative;
  border:1px solid rgba(0,0,0,0.2);
  color:#111;
  background:transparent;
  width:100%;
  padding:10px;
  outline:none;
  margin:10px 0;
  resize:none;
}
.contact-form .row textarea{
  height:150px;
}
.contact-info{
max-width:600px;
padding:20px;
}
.info-box{
  background:#fff;
  padding:10px;
  width:auto;
  height:100%;
}
.info-box .content{
padding-bottom:40px;
padding:20px;
}
.info-box .box:last-child{
  grid-column: 1/3;
  grid-row: 2/2;
  padding:0;
}
.info-box .grid{
/*   padding:20px; */
}
.info-box .grid .box{
  background:#f9f9f9;
  border-radius: 8px;
  padding:20px;
}
.info-box .grid .box h2{
  margin-bottom:10px;
  color:var(--teal);
  
}
.info-box .grid .box ul li{
  margin-bottom:10px;
}
.social {
  justify-self: center;
  align-items: start;
  text-align: start;
  padding:0px;
}
.social i{
  padding:10px;
  color:#333;
  font-size:32px;
}
.social i:hover{
  color:var(--yellow);
  transition:0.3s;
}
.info-box .grid .box:nth-child(5){
  text-align: center;
  justify-content: center;
  align-items: center;
  
}

.contact{
  height:auto;
  
}

.contact-form{
  padding:30px 0 0 0;
  max-width:600px;
}
.container form .form-col{
  display:flex;
  flex-direction: column;
}

form .input-data{
  width:auto;
  height:100%;
  margin:0 20px;
  position: relative;
}
.input-data input,
.textarea textarea{
  display:block;
  height:100%;
  width:100%;
  border:none;
}
.input-data input{
/*   border:none; */
    width:100%;
    border-bottom:1px solid rgba(0,0,0,0.12);
    height:70px;
    padding:0 20px;
    top:0;
    display:block;
}
.input-data input:focus,
.textarea textarea:focus{
  outline:none;
border-bottom:1px solid #333;
}
.input-data.success input,
.input-data.success textarea{
border-color: green;
color: green;
}
.input-data.error input, 
.input-data.error textarea{
border-color: red;
color: red;
}

.success textarea {
  border-bottom:1px green solid;
}
.error textarea {
  border-bottom:1px red solid;
}

.success input {
  border-bottom:1px green solid;
}

.textarea textarea {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    height: 150px;
    padding: 0 20px;
    margin: 40px 0;
    top: 0;
    resize: none;
    padding-top: 10px;
    font-family: 'Titillium Web', sans-serif; 
}

.button-row{
  display:flex;
justify-content: space-between;
/*   padding:20px; */
  width:100%;
}

.form-button-column{
  display:flex;
  flex-direction: column;
}
.input-data .btn-submit, 
.input-data .btn-upload {
    color: #333;
    display: inline-block;
    border: 1px teal solid;
    border-radius: 8px;
    padding: 20px 40px;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    height: 100%;
    width: 100%;
    font-size: 16px !important;
    white-space: nowrap;
    font-weight: normal;
    font-family: 'Titillium Web';
    box-sizing: border-box; /* Ensure box sizing includes padding and borders */
    max-width: 100%; /* Ensure the button doesn't exceed its container's width */
    height:70px;
    display:flex;
    text-align: center;
    align-items:center;
}
.btn-upload{
  text-align: center;
  background: 0 0 #fff;
 }
 
 .btn-submit{
     background: 0 0 #fff;
     
 }
 .btn-upload:hover, .btn-submit:hover{
  background:var(--yellow);
  color:#333;
 }
/* .focused > .form-label{
    opacity:1;
    transform:translateX(0px);

} */
.statement{
  padding:30px 20px;
}
.map{
  width:100%;
  height:200px;
  
}
.map iframe{
  width:100%;
  height:200px;

}

.footer{
    height:70px;
    background:#333;
    color:#fff;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
  }




  @media(max-width:1150px){
    .info-box .grid {
display:flex;
flex-direction: column;
  }
}
  @media(max-width:920px){
      .bottom-bar_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
      }
    .showcase{
      height:1100px;
    }

  .showcase .container{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;

  }
  .showcase .content{
    max-width:600px;
    align-items:center;
    justify-content: center;
    text-align: center;
    margin-left:0px;
  }
    .contact{
      flex-direction: column;
      justify-content: center;
  align-items:center;
    }
    .info-box .grid {
      display:grid;
        }
        .info-box .content{
          margin-top:-100px;
        }
 
  }
  @media only screen and (max-width: 768px) {
    .showcase {
      background-position: center; 
      background-size: cover;
    }
    .btn-submit,
    .btn-upload {
        padding: 15px 30px;
        font-size: 14px;
    }
}
  @media(max-width:550px){
  .button-row{
    flex-direction: column;
    width:auto;
  }
  .form-button-column{
    margin-bottom:20px;
  }
  .contact-form{
    top:-60px;
    
  }
  .showcase .content{
    max-width:600px;
    align-items:center;
    justify-content: center;
    text-align: center;
    margin-left:0px;
    top:120px;
  }
  .showcase .content h1{
    font-size:24px;
  }

  }
  @media(max-width:600px){
   
    .showcase::before{
      height:0;
      clip-path: none;
      }
  }
  @media(max-width:518px){
   
  .info-box .grid{
    display:flex;
    flex-direction: column;

  }
  .contact{
    margin-bottom:40px;
  }
}
@media(max-width:420px){
  .showcase .content p{
    font-size:18px!important;
  }
}
@media(max-width:340px){
  .showcase .content p{
    font-size:16px!important;
  }
}
  @media(max-width:320px){
    .showcase {
      background-position: center; 
      background-size: cover;
    }
    .input-data .btn-submit, 
    .input-data .btn-upload {

        font-size: 14px !important;

    }
    .showcase .content p{
      font-size:16px!important;
    }



  }















