*, *::after, *::before {
 box-sizing: border-box;
 margin: 0;
 padding: 0 }

body,
html {
	margin: 0; 
	padding: 0;
	font-family: "poppins";
	font-style: normal;
}
.full-section {
  width: 100%;
  float: left;
}
.fixed-content {
  max-width: 1140px;
  margin: auto;
}
                                                    /* Block */
.blockfull {
  width: 100%;
}

.block100 {
  width: 100%;
  float: left;
} 
.block50 {
  width: 50%;
  float: left;
}
.block25 {
  width: 25%;
  float: left;
}
.p20 {
  padding: 20px;
  display: block;
}
.pl {
  padding: 20px 20px 20px 0px;
}
.pr {
  padding: 20px 0px 20px 20px;
}
.pub {
  padding: 20px;
}
.gap {
  margin: 5px;
}
.nrmltxt {
    font-size: 18px !important;
    line-height: normal;
}
                                                /* Text Align */
.center {
  text-align: center;
}
.right {
    text-align: right;
}
.left {
  text-align: left;
}

.specer {
  float: left;
  height: 20px;
  width: 100%;
}
.dislex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-dislex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.logo {
    padding: 20px 0px;
    font-size: 20px;
    color: #fff;
}
.main-nav {
    background-color: #2073C2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}
.navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

}
.navbar li {
    margin-right: 15px;
    padding: 0px 10px;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 10px;
}

.navbar a:hover {
    border-bottom: 4px solid #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
}
button {
  border: none;
}
button a {
  background-color: #2073C2;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 20px;
  border-radius: 40px;
  border: 2px solid #fff;
  transition: all 0.5s ease;
}
button a:hover {
  color: #2073C2;
  background-color: #fff;
  border: 2px solid #2073C2;
}
.block50 ul li {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 20px 0px;
}
.cards {
    display: flex;
    gap: 20px;
}








@media (min-width:0px) and (max-width:768px) {
    .pl {
    padding: 0px;
    }
    .pr {
    padding: 0px;
    }
    .pub {
    padding: 10px 0px;
    }
    .block25 {
      width: 100%;
    }
    .block50 {
      width: 100%;
    }
    .dislex {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    .r-dislex {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    .navbar {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
      background-color: #2073C2;
      position: absolute;
      top: 60px;
      left: 0;
      transition: max-height 0.4s ease-in-out;
  }
  
  .navbar.active {
      display: flex;
      z-index: 1;
  }
  
  .navbar li {
      margin: 10px 0;
  }
  li {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 20px 0px;
}
  
  .hamburger {
      display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .main-nav {
    justify-content: space-between;
  }
  .img-responsive {
      max-width: 100%;
      height: auto;
  }
  .cards {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  li {
    margin: 10px 0px;
  }
}