 html { width: 100%; }
  body { max-width: 100%; }
* {
  box-sizing: border-box; 
font-family: 'Roboto', sans-serif;
//letter-spacing: 2px;
}

/*table*/
/*table for simple row-column table*/

   table {
      border-collapse: collapse;
      width: 100%;
    }
    th, td {
      border: 1px solid black;
      padding: 8px;
      text-align: center;
    }
    th {
      background-color: #f2f2f2;
    }
    .red {
      background-color: red;
    }
    .blue {
      background-color: blue;
    }
    .green {
      background-color: green;
    }
    .yellow {
      background-color: yellow;
    }
.ease {
  -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease-in-out;
}
.favlogo:hover {
  //border: 5px solid white;
margin-left: 0px;
display: unset;
}

a { color: #17476f; }
.outline {
  outline: black solid 1px;
  //font-weight: normal;
}

a:hover {
  //border: 1px solid blue;
  /*display: inline-block;*/
  /*margin-left: 10px;*/
  //font-weight: bold;
}

.whatsapp_float  {
  position: fixed;
  bottom: 10%;
  right: 2%;
}

p {line-height: 1.6;}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}


.header {
  color: white;
  padding: 0px;
}

/*iframepop*/
      #frameContainer {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 9999;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
      display: block; /* Display the iframe by default */
    }

    #closeButton {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 99999;
    }

    #frameContent {
      width: 80%;
      height: 80%;
      margin: 10% auto;
      display: block;
    }




    /*menu*/
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #242c42;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  //background-color: #0099cc;
}

.aside {
  background-color: #184671;
  padding: 10px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #242c42;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  padding: 10px;
  height: auto;
}

.footer div {
  border-right: 1px dashed; white;
  //height: inherit;
  display: block;
  margin: 0px;
}

.livelabel {
  background-color: #c1312c!important;
}

/*collapsing menu*/

ul.colmenu {

  list-style:none;  
  margin:0;
  padding:0;
  width:100%;
 }

 .dropdwn-menu {
  z-index: 99999;
 }

.colmenu a {
  text-decoration: none;
  color: white;
}
ul.colmenu li{
  display:none;
  height:40px;  
  background-color: #c1312c;
  padding:10px;
  color:white;
  border-top:1px solid rgba(255,255,255,.1);  
}
ul.colmenu li:hover{
  background-color: black;
  cursor: pointer;
}
ul.colmenu li:hover li {
  display: block;
  z-index: 9999999;
  top: 0;
  position: relative;
  background-color: #871511;

}

ul.colmenu li:hover li:hover {
  background-color: black;
}

ul.colmenu li:last-child{
  border-bottom-left-radius:4px;
  border-bottom-right-radius:4px;
}
 label:before{
  height:2px;
  width:20px;
  background:white;
  display:inline-block;
  content:"";
  box-shadow:0px -5px 0px 0px  white,
             0px -10px 0px 0px white;
  margin-right:10px;
  transition:all .5s;
  position:relative;
  opacity:0.5;
}
 label{
  display:block;
  background-color: #BE1717;
  padding:10px;
  color:white;  
  cursor:pointer; 
}
 input[type="checkbox"]{
  visibility:hidden;
  position:absolute;
}
 #collapse:checked ~ li{
  display:block;
  margin-top:0; 
}
#collapse:checked + label:before{
  position:relative;
  //right:calc(-160px);
  opacity:1;
  
}

/*slideshow*/

    /* Slider */
/* Slideshow container */
#slide-container {
 position: relative;
 max-width: 100%; /* responsiveness */
}
/* First element to be in block mode for responsiveness */
#slide-first-element {
 display: block; /* to get the dimensions set */
 width: 100%;
 height: auto;
}
/* Other element to be in absolute position */
#slide-element-2,
#slide-element-3 {
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
}
/* Style images */
.slide-image {
 width: 100%;
 height: 100%;
 //border-radius: 20px;
}
/* Style text */
.slide-text {
 position: absolute;
 bottom: 10px;
 background-color: #0042b1bb;
 color: white;
 width: 100%;
 text-align: center;
 font-size: 1.5rem;
}
/* Animation settings for individual elements */
/* For more images the animations have to be adjusted */
#slide-first-element {
 animation: fade-1 10s infinite;
 -webkit-animation: fade-1 10s infinite;
}
#slide-element-2 {
 animation: fade-2 10s infinite;
 -webkit-animation: fade-2 10s infinite;
}
#slide-element-3 {
 animation: fade-3 10s infinite;
 -webkit-animation: fade-3 10s infinite;
}


/* and more if there are more slides to show */
@keyframes fade-1 {
 0% { opacity: 1; }
 33% { opacity: 0; }
 66% { opacity: 0; }
 100% { opacity: 1; }
}
@keyframes fade-2 {
 0% { opacity: 0; }
 33% { opacity: 1; }
 66% { opacity: 0; }
 100% { opacity: 0; }
}
@keyframes fade-3 {
 0% { opacity: 0; }
 33% { opacity: 0; }
 66% { opacity: 1; }
 100% { opacity: 0; }
}
/* example for a 4th slide */
@keyframes fade-4 {
 0% { opacity: 0; }
 25% { opacity: 0; }
 50% { opacity: 0; }
 75% { opacity: 1; }
 100% { opacity: 0; }
}


/*call button*/

         
         .btn-grad {
            background-image: linear-gradient(to right, #02AAB0 0%, #00CDAC  51%, #02AAB0  100%);
            margin: 10px;
            padding: 15px 45px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            //box-shadow: 0 0 20px #eee;
            border-radius: 10px;
            border: 2px solid white;
            display: block;
          }

          .btn-grad:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }



/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

#img1 {display: block; visibility: visible;}
#img2 { display: none; visibility: hidden; }
.callnow { z-index: 99999;  position: fixed; bottom: 20%; right: 10%;  background-color: none; }

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }

  #logo {
  float: none;
  justify-content: center;
  margin: 0 auto;
  //border: 1px solid white;
  display: flex;
}

  .header {
    flex-direction: column;
  }
  /*.callnow { z-index: 99999; width: 30%!important; position: fixed; bottom: 20%; right: 10%; display: flex; justify-content: center; align-self: center; }*/
  .banner {
    height: 300px;
  }
  .midtxt {
    padding-left: 25px!important;
    //animation: color-change 1s infinite;
  }
  @keyframes color-change {
  //0% { color: red; }
  //50% { color: blue; }
  //100% { color: red; }
}

  }
  #img1 { display: none; visibility: hidden; }
  #img2 {display: block; visibility: visible;}

  .themecolors {
    color: #17476f;
  }