@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* {
    margin:0px;
    padding:0px;
    font-family: 'Manrope', cursive;
}
.banner .row {
    align-items: center;
}
.banner {
    padding-top: 30px;
    padding-bottom: 30px;
}
th.sort-asc::after {
  content: " ▲";
  font-size: 12px;
}
th.sort-desc::after {
  content: " ▼";
  font-size: 12px;
}

.successmessage {
  position: fixed;
  right: 30;
  bottom: 30;
  background: green;
  color: white;
  padding: 30px;
  transition: all 0.6s ease;
}
.successmessage {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.hide {
  opacity: 0;
}
.banner p {
    font-weight: 300;
    text-align: justify;
}
.area{
    background: #247fa8;
    background: linear-gradient(80deg, #d9e4ec, #f6f9fc);
    background: -webkit-linear-gradient(to left, #29A8E1, #247fa8);
    position:relative;
}
.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}
.circles li:nth-child(1){
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.circles li:nth-child(2){
    left: 10%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.circles li:nth-child(4){
    left: 40%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.circles li:nth-child(6){
    left: 75%;
    width: 40px;
    height: 40px;
    animation-delay: 3s;
}
.circles li:nth-child(7){
    left: 35%;
    width: 50px;
    height: 50px;
    animation-delay: 7s;
}
.circles li:nth-child(8){
    left: 50%;
    width: 15px;
    height: 15px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.circles li:nth-child(9){
    left: 20%;
    width: 8px;
    height: 8px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.circles li:nth-child(10){
    left: 85%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.banner.area .container {
    z-index: 2;
    position: relative;
}

.banner.area a {
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
}
.banner.area .contact {
    margin-top: 10px;
}

.banner.area .contact a svg {
    margin-right: 3px;
}

.banner.area .contact a {
    font-weight: bold;
}
.banner.area .contact {
    display: flex;
    align-items: center;
}

.banner.area .contact a {
    margin-right: 10px;
}
@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/*Table CSS*/
table {
    background: #f2ffff;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: #9abad9;
    margin: 0px auto;
    width:100%;
  }
  
  th {
    font: 400 1.125em Arial, sans-serif;
    padding: 0.75rem 1.5rem;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: white;
    text-align: left;
    color: #fff;
    background: #247fa8;
  }
  
  td {
    font-size: 16px;
    padding: 0.55rem 1.5rem;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: #ffffff;
    color: #000;
  }
  td a {
    color:black;
    font-weight:bold;
  }
  td a:hover {
    color:#247fa8;
    font-weight:bold;
  }
  tbody tr:nth-child(even) {
    background-color: #bdc2ca;
  }
  
  .table-wrap {
    margin: 1.5rem auto;
  }
  
  .sort-header::-moz-selection {
    background: 0 0;
  }
  .sort-header::selection {
    background: 0 0;
  }
  .sort-header {
    cursor: pointer;
  }
  .sort-header:after {
    content: "";
    float: right;
    margin: 7px 0.25rem 0 0.5rem;
    border-width: 0 5px 5px;
    border-style: solid;
    border-color: #fff transparent;
    opacity: 0.6;
    visibility: hidden;
  }
  .sort-header:hover:after {
    visibility: visible;
  }
  .sort-asc:after,
  .sort-asc:hover:after,
  .sort-desc:after {
    visibility: visible;
    opacity: 1;
  }
  .sort-desc:after {
    border-bottom: none;
    border-width: 5px 5px 0;
  }
  .searchbox {
    background: #e6e6e6;
    
    margin-bottom: 20px;
}
.searchbox .searchfield {
    padding: 10px;
    outline: 0;
    width: 100%;
}
.searchbox {
    display: flex;
    align-items: center;
}
.container.formsec h2 {
    margin-bottom: 30px;
    font-size: 30px;
}
.container.formsec form {
    padding: 30px;
    background: #d3d3d3;
    max-width: 500px;
    margin: 0 auto;
}
.error {
    background: red;
    margin-bottom: 10px;
    color: white;
    line-height:2;
}
.success {
    background: green;
    margin-bottom: 10px;
    color: white;
    line-height:2;
}
.container.formsec form input {
    height: 40px;
    width: 100%;
    margin-bottom: 10px;
    padding-left: 10px;
    border: 0px;
    font-size: 16px;
    outline: none;
}
.searchbox svg {
    padding: 10px;
    background: linear-gradient( 80deg, #29A8E1, #247fa8);
    fill: white;
}
.container.formsec {
    padding-top: 30px;
    text-align: center;
}
.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  .btn-12{
    position: relative;
    right: 20px;
    bottom: 20px;
    border:none;
    box-shadow: none;
    width: 130px;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
  }
  .btn-12 span {
    background: #247fa8;
  background: linear-gradient( 80deg, #29A8E1, #247fa8);
    display: block;
    position: absolute;
    width: 130px;
    height: 40px;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    border-radius: 5px;
    margin:0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .btn-12 span:nth-child(1) {
    box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
  }
  .btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
  }
  .btn-12:hover span:nth-child(1) {
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  .btn-12:hover span:nth-child(2) {
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
   color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
  }
  .btn-12 {
    display: block;
    margin: 0 auto;
}
/* .loadmore {
  display: none !important;
} */

@media(max-width:767px)
{
  #table thead {
    display: none;
  }

  #table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
  }

  #table td {
    display: block;
    text-align: center;
    position: relative;
    border: none;    
    border-bottom: 1px solid #eee;
  }

  #table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: bold;
    text-align: left;
  }
  .banner.area {width: 100%;}

.banner.area .container {
    max-width: 88%;
}
.banner.area .contact a {
    font-size: 14px;
}
}