body{
  margin: 0px;
  

}

body::-webkit-scrollbar{
  width: 5px;

}

body::-webkit-scrollbar-track{
  
  background: transparent;
}

body::-webkit-scrollbar-thumb{
  border-radius: 10px;
  background: rgba(0, 0, 0, .3);
}

/* login */

.logincontainer{
  width: 100%;
  height: 100vh;
  display: flex;
  background: white;
  justify-content: center;
}

.loginleft{
  width: 50%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loginleft img{
  height: 400px;
}

.loginright{
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formdiv{
  width: 80%;
  display: flex;
  flex-direction: column;
  background: white;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 10px;
}

.websitename{
  width: 100%;
  margin-top: 10px;
}

.websitename h1{
  text-align: center;
  font-size: 45px;
  font-weight: 500;
}

.logincaption{
  width: 100%;
  margin-top: 10px;
}

.logincaption h1{
  margin: 0px;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
}

.formdiv form{
  width: 100%;
}

.backtohomes{
  width: 100%;
  margin-top: 20px;
}

.backtohomes a{
  display: flex;
  width: 100%;
  text-decoration: none;
  height: 40px;
  border: 2px solid rgb(0, 100, 200);
  justify-content: center;
  align-items: center;
  background: white;
  color: rgb(0, 100, 200);
  border-radius: 5px;
}

.loginrow{
  width: 100%;
  height: 50px;
  border: 1px solid rgb(200, 200, 200);
  margin-top: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error{
  width: 100%;
  margin-top: 10px;
  font-size: 13px;
/*  color: rgb(0, 200, 100);*/
}

.cows{
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
  width:100%;height:100vh;position:fixed;top:0px;left:0px;
}
.cows img{
  height: 80px;
  animation: ggg;
  animation-duration: 2s;
  animation-iteration-count: infinite;
    opacity: 0.5;

}

@keyframes ggg{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}

.loginrow label{
  width: 95%;
  display: flex;
  align-items: center;
}

.loginrow label svg{
  width:20px;
  height: 20px;
  color: rgb(150, 150, 150);
}

.loginrow label span{
  color: rgb(150, 150, 150);
  font-weight: 400;
  font-size: 14px;
  margin-left: 10px;
}

.loginrow input{
  background: none;
  outline: none;
  border: none;
  width: 95%;
}

.loginrow:has(input:focus){
  box-shadow: 0px 0px 5px rgb(0, 100, 255);
}

.loginbotton{
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.loginbotton input{
  width: 100%;
  height: 50px;
  background: rgb(0, 100, 200);
  border: none;
  outline: none;
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 17px;
  border-radius: 5px;
  box-shadow: 0px 0px 3px rgb(0, 50, 100);
  cursor: pointer;
}

.loginbotton input:hover{
  opacity: 0.7;
}

.donthave{
  margin-top: 20px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donthave span, .donthave a{
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  color: rgb(60, 60, 60);
}



/* header */
.homeheader{
  background: rgba(0, 0, 0, .2);
}
.myheader{
  width: 100%;
  display: flex;
  height: 15vh;
  align-items: center;
}

.headerleft{
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerleft img{
  width: 250px;
}

.headercenter{
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headercenter nav{
  width: 90%;
  display: flex;
  justify-content: flex-end;
}

.headercenter nav a{
  text-decoration: none;
  color: white;
  font-weight: 200;
  font-size: 18px;
  margin-left: 20px;
}

/* homepage */
.homepage{
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-image:url(../image/people5.png);
   animation: ccc 30s infinite; /* total 30s, 5s per image */
   animation-timing-function: ease-in-out;
   background-attachment: fixed;
   background-repeat: no-repeat;

}

@keyframes ccc{
  0%{ background-image:url(../image/people5.png);}
  20%{ background-image:url(../image/people6.jpg);}
  40%{ background-image:url(../image/people7.jpg);}
  60%{ background-image:url(../image/people5.png);}
  80%{ background-image:url(../image/people3.jpg);}
  100%{ background-image:url(../image/people2.jpg);}
}


.homepagergb{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0,.4);
}

.landingtext{
  width: 100%;
  display: flex;
  justify-content: center;
  height: 85vh;
  align-items: center;
}

.landingbox{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.landingbox h1{
  margin: 0px;
  color: white;
  font-size: 50px;
  width: 70%;
  font-weight: 600;
  color: rgb(240, 240, 240);
}

.landingbox p{
    color: rgb(240, 240, 240);
    font-size: 25px;
}

.landingbox a{
  text-decoration: none;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.headerright{
  display: none;
}





.divrowsection{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.divbox{
  width: 20%;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  margin-left: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgb(230, 230, 230);
  transition-duration: 0.3s;
}

.divbox:hover{
  transform: scale(1.05);
}

.divbox i{
  margin-top: 25px;
  font-size: 50px;
}

.divbox h1{
  font-weight: 500;
  font-size: 20px;
  color: rgb(50, 50, 50);
  width: 85%;
  text-align: center;
  margin: 0px;
  margin-top:20px;
}

.divbox p{
  width: 85%;
  color: rgb(90, 90, 90);
  font-size: 14px;
  text-align: center;
}

.divbox a{
  text-decoration: none;
  font-weight: 500;
    color: rgb(250, 0, 100);

}


.realsection2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
    margin-top: 150px;


}

.section2left{
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section2left h1{
  font-weight: 500;
  font-size: 40px;
  color: rgb(60, 60, 60);
  margin:0px;
}

.section2left p{
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
  color: rgb(60, 60, 60);
  margin-top: 30px;
  margin-bottom: 20px;
}

.section2left a{
  text-decoration: none;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  color: white;
  text-decoration: none;
  font-weight: bold;
}


.servicesbox{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.servicerow{
  width: 48%;
  height: 40px;
  background: white;
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}


.servicerow span{
  color: rgb(70, 70, 70);
  font-size: 13px;
  margin-left: 10px;
}

.servicerow i{
  font-size: 12px;
  margin-left: 10px;
  color: rgb(250, 0, 100);
}

.servicerow:hover{
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
}

.servicerow:hover i, .servicerow:hover span{
color: white;
}


.section2right{
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section2right img{
  height: 250px;
  border-radius: 5px;
  margin-top: 20px;
}

.movingcircle{
  width: 40%;
  height: 8px;
  background: rgb(150, 255, 200);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.movingcircle span{
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: rgb(0, 200, 100);
  animation-name: fff;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes fff{
  from{margin-left:0%;}
  to{margin-left:100%;}
}


.flexcolumn{
  flex-direction: row-reverse;
}

.comparingcontainer{
  width: 100%;
  display: flex;
  margin-top: 150px;
  flex-direction: column;
  align-items: center;
}

.comparingcontainer h1{
  margin: 0px;
  font-weight: 500;
  color: rgb(50, 50, 50);
  font-size: 40px;
  width: 50%;
  text-align: center;
}

.comparingcontainer p{
  width: 50%;
  margin: 0px;
  text-align: center;
  color: rgb(50, 50, 50);
  font-weight: 300;
  line-height: 0.8cm;
}


 .divtable{
    width: 90%;
    overflow: auto;
  }


.comparingcontainer table{
  width: 100%;
  border-collapse: collapse; 
  margin-top: 50px;
  background: white;
}


.comparingcontainer thead tr{
  height: 60px;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
}

.comparingcontainer thead th{
text-align: center;
color: white;
font-weight: 300;
font-size: 20px;
}


.comparingcontainer tr span{
  margin-left: 30px;
  display: flex;
}

.comparingcontainer tbody span{
 font-weight: 400;
 color: rgb(40, 40, 40);
 display: flex;
}

.comparingcontainer tbody td{
  text-align: center;
}

.comparingcontainer tbody tr{
  height: 60px;
  border-bottom: 1px solid rgb(240, 240, 240);
}

.comparingcontainer tr i{
  font-size: 10px;
  color: white;
  border-radius: 50px;
 padding: 6px 6px 6px 6px;
 opacity: 0.7;
}

.comparingcontainer .fa-check{
  background: green;
}

.comparingcontainer .fa-minus{
  background: red;
}

.comparingcontainer .fa-calendar{
  background: rgb(255,150,0);
}

.allnnumbers{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.numberbox{
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numberbox h1{
  margin: 0px;
  font-weight: 700;
  color: rgb(255, 0, 150);
}

.numberbox span{
  color: rgb(60, 60, 60);
  font-weight: 300;
  font-size: 15px;
}

.accountappication{
  margin-top: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  padding-top: 50px;
  padding-bottom: 50px;
}

.accountapply{
  width: 80%;
  display: flex;
  align-items: center;
}

.applyleft{
  width: 50%;
  display: flex;
  flex-direction: column;
}

.applyleft h1{
  margin: 0px;
  color: white;
  font-weight: 500;
  font-size: 40px;
}

.applyleft p{
  color: white;
}
.applyright{
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.applyright a{
  text-decoration: none;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  color:rgb(0, 75, 150);
  background: white;
  text-decoration: none;
  font-weight: bold;
}

.blogcontainer{
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.blogbox{
  width: 32%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.blogimage{
  width: 100%;
  height: 250px;
  background-size: cover;
}

.blogcontent{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding-bottom: 30px;
}

.blogauto{
  width: 80%;
  margin-top: 15px;
}

.blogauto span{
font-size: 13px;
color: rgb(60, 60, 60);  
margin-right: 20px;
}

.blogauto i{
  margin-right: 5px;
  color: rgb(255, 0, 200);
}


.blogtitlle{
  width: 80%;
  margin-top:15px;
}

.blogtitlle span{
  font-weight: 600;
  color: rgb(40, 40, 40);
  font-size: 20px;
}

.blogcontents{
  width: 80%;
  margin-top: 15px;
}

.blogcontents span{
  font-weight: 300;
  color: rgb(50, 50, 50);
  line-height: 0.8cm;
}

.bloglink{
  width: 80%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
}

.bloglink a{
  text-decoration: none;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
.mynewform{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formerow{
  width: 49%;
  height: 50px;
  display: flex;
  flex-direction: column;
  border:1px solid rgb(230, 230, 230);
  background: white;
  border-radius: 5px;
  margin-top: 10px;
  align-items: center;

}

.formerows{
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  border:1px solid rgb(230, 230, 230);
  background: white;
  border-radius: 5px;
  margin-top: 10px;
  align-items: center;

}

.formerow label{
  font-size: 13px;
  width: 90%;
  color: rgb(60, 60, 60);
}
.formerows label{
  font-size: 13px;
  width: 90%;
  color: rgb(60, 60, 60);
}

.formerow input{
  width: 90%;
  background: none;
  outline: none;
  border: none;
}

.formerows textarea{
  width: 90%;
  background: none;
  outline: none;
  border: none;
  resize: none;
  height: 70px;
}

.subboton{
  margin-top: 20px;
}

.subboton input{
  text-decoration: none;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  color: white;
  text-decoration: none;
  font-weight: bold;
  outline: none;
  border: none;
  cursor: pointer;
}

main{
}

.footerdiv{
  width: 100%;
  height: 300px;
  background: rgb(150, 150, 150);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerdiv > span{
  color: rgb(240, 240, 240);
  font-size: 20px;
}

.footerlink{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.footerlink a{
  margin-left: 15px;
  text-decoration: none;
  color: rgb(230, 230, 230);
}

.forlinkbottom{
  margin-top: 50px;
}

.forlinkbottom a{
  text-decoration: none;
  font-weight: bold;
  color: rgb(230, 230, 230);
  font-size: 30px;
}


@media(max-width:1200px){
  .section2right img{
    height: 300px;
    width: 90%;
    object-fit: cover;
  }

   .servicesbox{
    flex-direction: column;
  }

  .servicerow{
    width: 100%;
  }

  .divrowsection{
    flex-wrap: wrap;
  }

  .divbox{
    width: 45%;
    margin-top: 10px;
  }

  .divrowsection{
    margin: 0px;
  }


}


@media(max-width:950px){
  .footerlink{
  flex-direction: column;
  align-items: center;
}

  .subboton{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .subboton input{
    padding: 0px;
    width: 100%;
    height: 50px;
  }
  .formerow{
    width: 100%;
  }
  .blogbox{
    width: 100%;
  }
  .accountapply{
    flex-direction: column;
  }

  .applyleft{
    width: 100%;
  }

  .applyleft h1{
    font-size: 25px;
    text-align: center;
  }

  .applyleft p{

    text-align: center;
  }

  .applyright{
    width: 100%;
  }

  .applyright{
    justify-content: center;
    margin-top: 20px;
  }

  .comparingcontainer{
    margin-top: 100px;
  }

  .realsection2{
    margin-top: 100px;
  }
  .allnnumbers{
    flex-wrap: wrap;
  }

  .numberbox{
    width: 50%;
    margin-top: 20px;
  }
  .comparingcontainer h1{
    font-size: 25px;
    width: 90%;
  }

  .comparingcontainer p{
    width: 90%;
  }

  .divtable{
   display: flex;
  }

  .comparingcontainer table{
    width: 800px;
    flex:0 0 auto;
  }


  .flexcolumn{
  flex-direction: column;
}
  .realsection2{
    flex-direction: column;
  }

  .section2left{
    width: 90%;
  }

  .section2left h1{
    font-size: 25px;
  }

  .servicesbox{
    flex-direction: column;
  }

  .servicerow{
    width: 100%;
  }

  .section2right{
    width: 90%;
    overflow: hidden;
    margin-top: 20px;
  }

  .section2right img{
    height: 200px;
  }

  .movingcircle{
    margin-top: 20px;
  }
  .divrowsection{
    margin: 0px;
    flex-direction: column;
    align-items: center;
  }

  .divbox{
    width: 90%;
    margin: 0px;
    margin-top: 20px;

  }
  .homepage{
    height:70vh;
  }

  .myheader{
    height: 10vh;
  }

  .landingtext{
    height: 60vh;
  }

  .headercenter{
    display: none;
  }
  .headerright{
    width: 45%;
    display: flex;
    justify-content: flex-end;
  }

  .headerleft{
    width: 50%;
  }

  .headerleft img{
    width: 120px;
  }

  .headerright svg{
    color: white;
  }



  .loginleft{
    width: 100%;
    height: 40vh;
  background: linear-gradient(to left, rgb(0, 150, 75), rgb(0, 75, 150));
  }

  .loginleft img{
    height: 200px;
  }

  .logincaption{
    margin: 0px;
    display: flex;
    justify-content: center;
  }

  .loginrow{
    margin-top: 15px;
  }
  .logincaption h1{
    font-weight: 700;
    font-size: 20px;
    color:rgb(0, 75, 150);  
  }

  .loginright{
    width: 100%;
    height: 60vh;

  }

  .landingbox{
    align-items: center;
  }

  .landingbox h1{
    width: 100%;
    font-size: 35px;
    text-align: center;

  }

  .landingbox p{
    text-align: center;
    font-size: 14px;
  }

  .landingbox{
    width: 95%;
  }

  .homepagergb{
  background: rgba(0, 0, 0,.7);
}



  .formdiv{
    width: 95%;
  }

  .donthave{
    flex-direction: column;
  }

  .logincontainer{
    flex-direction: column;
  }

  .websitename h1{
    font-size: 25px;
  }
}