html, body{
 width: 100%;
 height: 100%;
 padding: 0;
 margin: 0px;
 background-color:#ededed ;
}



#banner {
    float: right;
    background-color: #f7f7f7;
    width: 65%;
    height: 60%;
    text-align: center;
    text-shadow: rgba(9, 247, 84, 0.24);
    } 

    .button {
        background-color: rgb(20, 147, 35);
        border: none;
        color: white;
        padding: 0px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 4px 2px;
        border-radius: 5px;   
        border: 2px solid white;        
        cursor: pointer;
        -webkit-transition-duration: 0.4s; 
        transition-duration: 0.4s;    
      }
          .button:hover {
        background-color: #e1fcc3; 
         box-shadow: 0 12px 16px 0 rgba(9, 247, 84, 0.24), 0 17px 50px 0 rgba(0,0,0,0.19);    
        color: black;
        text-decoration:none;
          }   


.right {
  float: left;
  margin-top: -100px;
  margin-left: -34px;
}

.left {
  float: right;
  margin-top: 0px;
  text-align: inherit;
  text-shadow: rgb(20, 147, 35);
}


.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  width: 500px;
 
}

.dropdown {
  position: relative;
  top: -99px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
  width: 500px;
 
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  margin-top: -10px;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}



.abc{
  background-image: url("images/abc.jpg");
position: relative;
margin-top: 0px;
margin-right: 0px ;
margin-left: 0px;
float: right;
width: 62%;
height: 44.5%;
box-sizing: border-box;
}


slider {
 display: block;
 width: 40%;
 height: 118%;
 background-color: #1f1f1f;
 overflow: hidden;
 position: absolute;
}

slider > * {
 position: absolute;
 display: block;
 width: 100%;
 height: 100%;
 background: #1f1f1f;
 animation: slide 12s infinite;
 overflow: hidden;
}

slide:nth-child(1){
 left: 0%;
 animation-delay: -1s;
 background-image: url(images/1.jpg);
 background-size: cover;
 background-position: center;
}

slide:nth-child(2){
 animation-delay: 2s;
 background-image: url(images/2.jpg);
 background-size: cover;
 background-position: center;
}

slide:nth-child(3){
 animation-delay: 5s;
 background-image: url(images/3.jpg);
 background-size: cover;
 background-position: center;
}

slide:nth-child(4){
 left: 0%;
 animation-delay: 8s;
 background-image: url(images/4.jpg);
 background-size: cover;
 background-position: center;
}

slide p {
 font-family: Comfortaa;
 font-size: 70px;
 text-align: center;
 display: inline-block;
 width: 100%;
 margin-top: 340px;
 color: #fff;
}

@keyframes slide {
 0% { left: 100%; width: 100%; }
 5% { left: 0%; }
 25% { left: 0%; }
 30% { left: -100%; width: 100%; }
 30.0001% { left: -100%; width: 0%; }
 100% { left: 100%; width: 0%; }
}


.content{
  text-align: center;
}


.middle{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;

 }

  .btn{
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #3498db;
   overflow: hidden;
   position: relative;
 }

  .btn i{
   line-height: 50px;
   font-size:26px;
   transition: 0.2s linear;
 } 

  .btn:hover i{
      transform: scale(1.3);
      color: #f1f1f1;
 }
 
  .btn::before{
   content: "";
   position: absolute;
   width: 120%;
   height: 120%;
   background: #099728;
   transform: rotate(0deg);
   left: -110%;
   top: 90%;
 }

  .btn:hover::before{
   animation: aaa 0.7s 1;
   top: -10%;
   left: -10%;
 }

 @keyframes aaa {
   0%{
     left: -110%;
     top: 90%;
   }
   50%{
     left: 10%;
     top: -30%;
   }
   100%{
     top: -10%;
     left: -10%;
   }
 }
 

 .a {
  color: hotpink;
}
   


 @media screen and (max-width: 900px) {

  #banner{
    width: 100%;
  }
  
  

  .right {
    display: none;
  }

  .abc {
    display: none;
  }
  
  .html,body{
    height: auto;
   }

   .dropbtn{
    padding: 9px;
    font-size: 14px;
     width: 250px;
   }


   .dropdown-content {
     width: 240px;
     z-index: 1;
   }
   
   .button {
     font-size: 13px;
   }

   .footerab {
     margin-bottom: -20px;
   }

  }

  @media screen and (max-width: 300px) {

  
    .dropdown{
      margin-top: 200px;
     
    }
  
  
    .dropbtn{
      width: 90px;
      
    }
  
  
    .dropdown-content {
      width: 90px;
     
     
    }
  
  }
  


/* Footer */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
section {
  margin-right: 0px;
   margin-top: 0px;
    position: relative;
    bottom: 60px;
    margin-bottom: 0px;
    padding: 10px 5px;
}

.footer-links {
    margin-left: 0px;
}

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 0px;
    text-transform: uppercase;
}
#footer {
   /* background: black !important;  */
    /* background-image: url("images/img3.jpg"); */
}
.footerab {
    /* background: palevioletred; */
    position: relative;
    bottom: 10px;
    background-image: url("images/footerimg.jpg");
    margin-right: 0px;
    margin-bottom: -10px;
}
#footer h5{
  margin-top: 9px;
	padding-left: 12px;
    border-left: 3px solid #eeeeee;
    padding-bottom: 0px;
    margin-bottom: 0px;
    color:black;
}
#footer a {
    color: black;
    text-decoration: none !important;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
#footer ul.social li{
	padding: 3px 0;
}
#footer ul.social li a i {
    margin-right: 5px;
	font-size:25px;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.social li:hover a i {
	font-size:30px;
	margin-top:-10px;
}
#footer ul.social li a,
#footer ul.quick-links li a{
	color: rgb(5, 17, 9);
}
/* #footer ul.social li a:hover{
	color: #007b5e;
} */
.fa-instagram:hover {
    color: transparent;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
}
.fa-facebook-f:hover {
    color: #4267B2;
}
.fa-twitter:hover {
    color: #1DA1F2;
}
.fa-youtube-play:hover {
    color: #FF0000;
}
.fa-envelope:hover {
    color: rgb(0, 183, 255);
}
#footer ul.quick-links li{
	padding: 3px 0;
	-webkit-transition: .5s all ease;
	-moz-transition: .5s all ease;
	transition: .5s all ease;
}
#footer ul.quick-links li:hover{
	padding: 3px 0;
	margin-left:5px;
	font-weight:700;
}
#footer ul.quick-links li a i{
	margin-right: 5px;
}
#footer ul.quick-links li:hover a i {
    font-weight: 700;
}



.covertrans {
  text-decoration: #f1f1f1;
    align-content: center;
    margin-left: 0px;
    margin-right: 0px;
    background-color: rgba(14, 238, 14, 0.2);
     height: 70px;
     width: 100%;
     position:;
     margin-bottom:0px;
     z-index: 100;
}

.h6{
  margin-top: -12px;
}

@media (max-width:767px){
	#footer h5 {
    padding-left: 0;
    border-left: transparent;
    padding-bottom: 0px;
    margin-bottom: 10px;
}


}


@media screen and (max-width: 600px) {


  .display-1{
    font-size: 30px;
  }

  .btn{
    width: 30px;
    height: 30px;
  }

  .btn i{
    line-height: 26px;
    font-size:18px;
  }

  .container1{
    font-size: 10px;
  }

  section {
    margin-top: 0px;
     bottom: 50px;
    }

    .dropdown{

    }
    
}