
*{
  box-sizing: border-box;
  /* padding: 0%;
  margin: 0%; */
}


/* 
Generic table Styling, for Desktops/Laptops 
*/
table { 
  width: 100%; 
  height: 100%;
  border-collapse: collapse; 
}
/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #eee; 
}
th { 
  background: #333; 
  color: white; 
  font-weight:solid; 
  /* font-size: small; */
}
td, th { 
  padding: 6px; 
  border: 1px solid #ccc; 
  text-align: left; 
  font-size: small;
}
/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
/* @media
	  only screen 
    and (max-width: 760px), (min-device-width: 768px) 
    and (max-device-width: 1024px)  {
      table { 
        width: 75%; 
        height: 100%;
        border-collapse: collapse; 
      }
     
    } */

/* table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

thead, tbody,tr,th {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2} */

/* //end table */
.menu-line1, .menu-line2, .menu-line3 {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 6px 0; position: relative;
  transition: 0.4s;
}
#demo-dropdown:hover{
  cursor: none;
}
.active .menu-line1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.active .menu-line2 {opacity: 0;}

.active .menu-line3 {
  transform: translate(0, -11px) rotate(45deg);
}

.animate-charcter {
  text-transform: uppercase;
  font-size: small;
  background-image: linear-gradient(-225deg,
      #231557 0%,
      #44107a 29%,
      #ff1361 67%,
      #fff800 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 15px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.navbar1{
  background-color: #332d2d;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 20px;
}
.nav-list{
  list-style-type: none;
}
.nav-list .list{
  display: inline-block;
  padding: 20px 20px;
}

.navbar1 a{
  color: white;
  text-decoration: none;
}
.navbar1 a:hover{
  color: #aaa ;
}
/* .navbar1 a:visited{
  color: rgb(103, 103, 244) ;
} */
.navbar1 a:active{
  color: rgb(209, 72, 72) ;
}
.menu{
  display:none;
}
.menu-line{
  width: 20px;
  height:3px;
  background-color: white;
  /* margin-bottom: 4px; */
  margin: 6px 0; position: relative;
  transition: 0.4s;
}

@media all and (max-width: 600px){
  .navbar1{
    flex-direction: column;
  }
.menu{
  display: block;
  position:absolute;
  right: 15px;
  top: 10px;
}
.nav-list{
  list-style-type: none;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  display: none;

}
.nav-list .list{
  display: block;
  border-top: 1px solid white;

}
.active{
  display:block;
  
}


}


.input-search:focus{
  background-color: antiquewhite;
  font-size: large;
}

#searchbar{
  margin-left: 15%;
  padding:15px;
  border-radius: 10px;
}

input[type=text],input[type=email] {
   width: 30%;
   -webkit-transition: width 0.15s ease-in-out;
   transition: width 0.15s ease-in-out;
}

/* When the input field gets focus,
     change its width to 100% */
input[type=text]:focus {
  width: 50%;
}

#list{
 font-size:  1.5em;
 margin-left: 90px;
}

.animals{
display: list-item;    
} 

/* custom css for responsive navbar just for trials */

/* 
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} */

 /* The Modal (background) */
 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow:auto ; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #73cef5;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 


/*====================================================================
                        Trail Section 
======================================================================*/
.main_trial_area{
    background: url(../images/parallax-bg2.jpg) no-repeat top center;
    overflow: hidden;
    background-size: cover;
    color:#fff;
    min-height: 225px;
    padding: 20px;
}
.main_trial h2{
    text-transform: none;
    font-weight: 400;
}
.main_trial h2 span{
    font-weight: 700;
}
.main_trial h4{
    font-weight: 400;
    text-transform: none;
}

.main_trial{
    width: 100%;
}

.main_trial p {
    font-size: 1.5em;
    line-height: 1.4;
color: #999;
}

#trial
{
  padding: 0px!important;
}

#home h1 {
    text-transform: uppercase;
    font-size: 2em;
}





/*=========================== 
20. contact page
============================= */
.contact-area {
  padding: 50px 0;
}
.contact-info{}
.contact-info h3, .contact-form h3 {
  border-bottom: 2px solid #e8e8e9 !important;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 8px;
}
.contact-info h3:before{content: "";
display: inline-block;
font-family: FontAwesome;
margin-right: 5px;
vertical-align: text-bottom;}
.contact-info ul{}
.contact-info ul li{border-bottom: 1px solid #e8e8e9;
float: left;
font-size: 12px;
line-height: 40px;
list-style: outside none none;
margin: 0;
padding: 0;
width: 100%;
}
.contact-info ul li i{font-size: 16px;
margin-right: 5px;
width: 20px;}
.contact-info ul li a{}
.contact-form{}
.contact-form h3 {
  margin-bottom: 30px;
}
.contact-form input[type="text"], .contact-form input[type="email"] {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 50px;
  padding-left: 20px;
  width: 100%;
  margin-bottom: 16px;
}
.contact-form textarea#message{border: 1px solid #ccc;
border-radius: 0;
height: 180px;
padding: 20px;
width: 100%;}
.contact-form input[type="submit"] {
  background: #1e442f none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin-top: 16px;
}
.contact-form input[type=submit]:hover{background:#ffc300}



/*-- testimonials --*/
.testimonials{
    background: url(../images/parallax-bg2.jpg) no-repeat 0px 0px;
  background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-attachment: fixed;

  width: 100%;
  position: relative;

}
.agileits_w3layouts_testimonials_grid{
  text-align:center;
  position:relative;
}
.agileits_w3layouts_testimonials_grid img{
  margin:0 auto;
}
.wthree_test_social_pos{
  position:absolute;
  top:0%;
  right:38.5%;
}
.w3_agileits_social_list1 li{
  display:inline-block !important;
}
.wthree_test_social_pos li a{
  color:#fff;
  font-size:1em;
  width:30px;
  height:30px;
  border-radius:30px;
  display:block;
}
.wthree_test_social_pos li a i {
    line-height: 2.2em;
}
.w3_agile_facebook1{
  background:#3b5998;
}
.agile_twitter2{
  background:#1da1f2;
}
.w3_agile_dribble3{
  background:#ea4c89;
}
.agile_testimonials_grid{
  text-align:center;
}
.agile_testimonials_grid h3{
  margin:1em 0;
  color:#ffc300;
  font-size:1.2em;
  text-transform:uppercase;
}
.agile_testimonials_grid p{
    width: 70%;
    margin: 0 auto;
    color: #fff;
    line-height: 2em;
    letter-spacing: 1px;
}


.agileits_w3layouts_testimonials_grid img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}




.test-heading h3 {
    color: #fff;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 1em;
    text-align: center;
    position: relative;

}

#testimonials::before {
    position: absolute;
background: rgba(42, 35, 31, 0.7);
content: " ";
top: 0;
bottom: 0;
width: 100%;
height: 100%;
}

.flexslider {
    border: 0px;
    position: relative;
    zoom: 1;
    padding-bottom: 3em;
}


/*-- //testimonials --*/