html,body
{
 /* font-family: 'Work Sans', sans-serif !important;*/
 font-family: 'Laila', sans-serif;
  padding: 0;
  margin: 0px;
  line-height: 30px;
  letter-spacing: 0.4px;
  scroll-behavior: smooth;
   background-color: white;
   color:#000;
}

#toggle_checkbox
{
    display: none;
}

label
{
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 116px;
    height: 56px;
    margin: 0 auto;
    background-color: #77b5fe;
    border-radius: 56px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: 0.3s ease background-color;
    overflow: hidden;
}

#star
{
    position: absolute;
    top: 13px;
    left: 13px;
    width: 30px;
    height: 30px;
    background-color: #fafd0f;
    transform: scale(1);
    border-radius: 50%;
    transition: 0.3s ease top, 0.3s ease left, 0.3s ease transform, 0.3s ease background-color;
    z-index: 1;
}

#star-1
{
    position: relative;
}

#star-2
{
    position: absolute;
    transform: rotateZ(36deg);
}

.star
{
    top: 0;
    left: -7px;
    font-size: 54px;
    line-height: 28px;
    color: #fafd0f;
    transition: 0.3s ease color;
}

#moon
{
    position: absolute;
    bottom: -52px;
    right: 8px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s ease bottom;
}

#moon:before
{
    content: "";
    position: absolute;
    top: -12px;
    left: -17px;
    width: 40px;
    height: 40px;
    background-color:#03a9f4;
    border-radius: 50%;
    transition: 0.3s ease background-color;
}

#toggle_checkbox:checked + label
{
    background-color: #000;
}

#toggle_checkbox:checked + label #star
{
    top: 3px;
    left: 64px;
    transform: scale(0.3);
    background-color: yellow;
}

#toggle_checkbox:checked + label .star
{
    color: yellow;
}

#toggle_checkbox:checked + label #moon
{
    bottom: 8px;
}

#toggle_checkbox:checked + label #moon:before
{
    background-color: #000;
}

/*
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
/*.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
*/
 .dark-mode {
  background-color: black;
  color: #fff;
 }
 .dark-mode .font_20px
 {
	 color:#fff !important;
 }
.dropdown a.nav-link
{
    color: #0051a3 !important;
    font-weight: 600;
}
.disclaimerheading {
    font-size: 18px;
    color: #B5B5B5;
}
.disclaimertext {
    border-top: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    color: #B5B5B5;
    text-align: left;
    line-height: 20px;
    font-family: sans-serif;
    font-size: 12px;
    padding: 3px 0;
}
.banner
{
   background-image: url(../images/slider.jpg);
    height: 400px;
    color: #fff;
    top: 70px;
    position: relative;
}
.padding_center
{
    padding: 150px;
    color: #fff;
    position: relative;
    text-align: center;
}
.bannertitle
{
    font-size: 40px;
    font-weight: 800;
    text-align: center;
}
.banner::before{
  background-color: rgb(0 0 0 / 71%);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.img
{
    /*box-shadow: 0 0 10px 4px #817d79;*/
}
.overlaptext h3
{
    position: absolute;
    top: 50%;
    left: 16px;
    right: 16px;
    text-align: center;
    background-color: rgba(0,0,0,.35);
    padding: 15px 0 16px;
    margin-top: -28px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.25;
    color: #fff;
    font-weight: 600;
}


/*login style*/
.wrapper{
  overflow: hidden;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
  margin: 0 auto;
}
.wrapper .title-text{
  display: flex;
  width: 200%;
}
.wrapper .title{
  width: 50%;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 15px;
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 15px;
  background: -webkit-linear-gradient(left,#003366,#004080,#0059b3
, #0073e6);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #fff;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #000;
}
#login:checked ~ label.signup{
  color: #000;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  padding: 0 10px;
}
.form-inner form .field{
  height: auto;
  width: 100%;
  margin-top: 20px;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 15px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus{
  border-color: #1a75ff;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder{
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #1a75ff;
}
.form-inner form .pass-link{
  margin-top: 5px;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #1a75ff;
  text-decoration: none;
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  text-decoration: underline;
}
form .btn{
  height: 50px;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(right,#003366,#004080,#0059b3
, #0073e6);
  border-radius: 15px;
  transition: all 0.4s ease;
  top: 0;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.text-danger {
    color: #ff3547 !important;
    width: 0%;
}
/*End login style*/
.limited_post12 .limited_subpost12:nth-child(n+13)
{
    display:none;
}
.last4:nth-last-child(-n+4) {
  display: none;
}
.block-header
{
    display: flex;
    padding: 20px 0px;
    font-weight: 600;
    margin-left: -15px;
}
.block-header a
{
    padding: 0 20px;
    color: #0051a3;
    font-size: 20px;
    font-weight: 600;
}
.Downloadbtn
{
    background: -webkit-linear-gradient(right,#003366,#004080,#0059b3 , #0073e6);
    color: #fff;
    font-size: :20px;
    padding: 10px 30px;
    text-align: center;
    border: none;
    border-radius: 20px;
}
.Downloadbtn a
{
    color: #fff;
    font-size: 25px;
    padding: 0 30px;

}
header
{
    padding-bottom:40px;
}
.header-menu
{
    background: #fff;
    margin: 10px 0;
    padding: 0 25px;
}
.header-menu ul li
{
        padding: 0 10px;
}
a
{
    color: #000;
}
.header-menu li a
{
    color: #000;
    font-size: 20px;
}
header .nav-link {
    display: block;
    padding: 10px 1rem;
    font-size: 18px;
    font-weight: 500;
}
.nav-item a:hover
{
     background: #fff !important;
}
.navbar-nav .nav-item.active>.nav-link 
{
    background: #fff !important;
    font-size: 20px;
}
.menu .whitebg
{
    background: #fff;
    color: #000;
    padding:40px 0px;
}
.navbar-brand
{
    width: 25%;
}

 .navbar{
     background: #fff;
     padding-top: 0;
     padding-bottom: 0;
    box-shadow: 0 0 2px 0px;
}
.font_20px
{
    font-size: 20px;
   /* color: #000;*/
    padding: 10px 0px;
    line-height: 25px;
}
.dropdown-menu
{
   top: 119%;
   text-align: center; 
   min-width: 7rem;
}
.navbar .dropdown-menu a {
    padding: 0 10px;
    font-size: 18px;
    font-weight: 300;
}
.navbar .nav-item .nav-link .fas
{
    padding-right: 10px;
    padding-left: 10px;
}




.ham,.menu {
    display: none;
   }
.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;
}

.sticky {
    position: fixed;
   animation: fadeInDown .5s;
}
ul li
{
    list-style: none;
}
b
{
    font-weight: bold;
}
footer
{
    background-color:#0051a3;
    color:#ffffff85;
    padding: 0px 0px 0 0;
}
footer a
{
    color: #fff;
    font-size: 15px;
    padding: 0px 5px;
    display: block;
}
footer a:hover
{
    color: #fff !important;
}
footer p
{
    color: #fff;
    font-size: 12px;
    margin: 0px;
}
.footer_line
{
    background: #1763af;
    text-align: center;
}
.form-control
{
    font-size: 15px;
    margin: 5px 0px;
}

/*captch style*/
#captchaBackground {
 height: 220px;
 width: 250px;
 background-color: #2d3748;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
}
#captchaHeading {
 color: white;
}
#captcha {
 height: auto;
 width: 100%;
 font-size: 30px;
 letter-spacing: 30px;
 margin: auto;
 display: block;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 margin: 0px;
}
.center {
 display: flex;
 flex-direction: column;
 align-items: center;
}
.error
{
    color: red;
    font-size: 13px;
}
#submitButton {
    border: 0px;
    font-weight: bold;
}
#refreshButton {
 border: 0px;
 font-weight: bold;
 margin: 30px 0px;
 position: absolute;
}
#textBox {
 height: 40px;
}
.incorrectCaptcha {
 color: #FF0000;
}
.correctCaptcha {
 color: #7FFF00;
}
/*End captch style*/

@media only screen and (max-width: 990px) 
{
  /*mobile menu*/
    button:focus
    {
        border: none !important;
        outline: none !important;
    }
    .navbar-brand
    {
        width: 50%;
    }
    .ham {
      position: fixed;
      /* keep the hamburger button above everything */
      z-index: 1000;
      top: 15px;
      right: 1rem;
      width: 2rem;
      height: 0rem;
      background:none;
      cursor: pointer;
      border: none;
      display: block;
    }
    .menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100vh;
     /* background: #fff;*/
      color: #000;
      transform: translateY(-100%);
      transition: transform 0.5s;
      list-style: none;
      padding: 1.5rem 0px;
      z-index: -999;
      display: block;
      overflow-y: scroll;
    }
    .showMenu {
      transform: translateY(0%);
    }

    .showMenu a{
      padding: 5px 0;
      line-height: 30px;
      color: #000;
      font-size: 18px;
    }
    .showMenu li {
        list-style: none;
        border-bottom: 1px solid #00000014;
        margin: 0;
        padding: 5px 25px;
    }
    .menu li
    {
      padding: 5px 25px;  
    }
    .menuLink {
      display: inline;
      font-size: 25px;
      color: white;
      text-decoration: none;
      text-align: center;
      /*transition: transform 1.8s;*/
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    .menuLink:hover {
      text-decoration: underline;
    }
    .hamburger .line{
      width: 25px;
      height: 2px;
      background-color: #0051a3;
      display: block;
      margin: 4px auto;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    .hamburger:hover{
      cursor: pointer;
    }
    #hamburger-1.is-active .line:nth-child(2){
      opacity: 0;
    }
    #hamburger-1.is-active .line:nth-child(1){
      -webkit-transform: translateY(5px) rotate(50deg);
      -ms-transform: translateY(5px) rotate(50deg);
      -o-transform: translateY(5px) rotate(50deg);
      transform: translateY(5px) rotate(50deg);
          background-color: #0051a3;
        height: 2px;
    }

    #hamburger-1.is-active .line:nth-child(3){
      -webkit-transform: translateY(-8px) rotate(135deg);
      -ms-transform: translateY(-8px) rotate(135deg);
      -o-transform: translateY(-8px) rotate(135deg);
      transform: translateY(-8px) rotate(135deg);
          background-color: #0051a3;
        height: 2px;
    }
    #formSubmit
    {
        padding: 0px 0px 50px 20px;
    }
    .modal-dialog
    {
        margin: 0px;
    }
    .modal-content img
    {
        display: none;
    }
/*End mobile menu*/
}
@media screen and (min-width: 200px ) and (max-width: 500px)
{
   .header-menu
    {
        display: none;
    }
   .padding_center
   {
    padding: 130px 0;
   }
   .banner
   {
    top: 50px;
   }
   .bannertitle
   {
    font-size: 20px;
   }
   .h4
   {
    font-size: 13px;
   }
   .img
   {
    margin: 0 0 20px 0px;
   }
   .overlaptext h3
   {
    font-size: 20px;
   }
   .pt-5, .py-5 {
    padding-top: 0rem!important;
    }
    
}
@media screen and (min-width: 501px ) and (max-width: 766px)
{
    .header-menu
    {
        display: none;
    }
   .padding_center
   {
    padding: 70px 0;
   }
   .banner
   {
    top: 50px;
   }
   .img
   {
    margin: 0 0 20px 0px;
   }
   .overlaptext h3
   {
    font-size: 15px;
   }
   .pt-5, .py-5 {
    padding-top: 0rem!important;
    }
}
@media screen and (min-width: 768px ) and (max-width: 900px)
{
   .header-menu
    {
        display: none;
    }
   .padding_center
   {
    padding: 70px 0;
   }
   .banner
   {
    top: 50px;
   }
   .img
   {
    margin: 0 0 20px 0px;
   }
   .overlaptext h3
   {
    font-size: 15px;
   }
   .pt-5, .py-5 {
    padding-top: 0rem!important;
    }
    footer
    {
        padding: 30px 0px !important;
    }
    .inner .pt-5
    {
        padding-top: 6rem !important;
    }
    .order-2 h3
    {
       order: 2
    }
    
}
/*@media only screen and (min-width: 500px) {
    .navbar-brand {
    width: 40%;
    }
 
}
@media only screen and (min-width: 600px) {
    .navbar-brand {
    width: 40%;
    }

}
@media only screen and (min-width: 700px) {
    .navbar-brand {
    width: 30%;
    }
   
}
@media only screen and (min-width: 800px) {
    .navbar-brand {
    width: 30%;
    }
   
}
*/


