*, *::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;
}
.block33 {
  width: 33%;
  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;
}
.main-nav {
    background-color: #2073C2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;

}
.navbar li {
    padding: 0px 10px;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    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;
}
.pos {
  position: absolute;
  z-index: -1;
  top: 0;
}
.l-content {
  padding: 60px 140px 20px 30px;
}
.input-tag {
  border: none;
  border-bottom: 1px solid #5E6B7F;
  border-radius: none;
  padding: 10px 0px;
  background: none;
  font-size: 20px;
}
button {
  border: none;
}
button a {
  background-color: #2073C2;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 20px;
  border: 2px solid #fff;
  transition: all 0.5s ease;
}
button a:hover {
  color: #2073C2;
  background-color: #fff;
  border: 2px solid #2073C2;
}
.hide {
  display: none;
}
.card {
  padding: 25px;
  border: 2px solid #E5E5E5;
  transition: all 0.7s ease-in-out;
}
.card:hover {
  border: 2px solid #2073C2;
}
.card1 {
  padding: 25px;
  border: 2px solid #E5E5E5;
  transition: all 0.7s ease-in-out;
  display: flex;
  align-items: flex-start;
  height: 185px;
}
.card1:hover {
  border: 2px solid #2073C2;
}

label {
  margin-bottom: 5px;
  font-size: 20px;
}

select {
  padding: 20px;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 15px;
}
.accord {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.accord li {
  list-style: none;
  padding: 10px 20px;
  border: 1px solid #C7CBD2;
  width: 150px;
  text-align: center;
  transition: all 0.7 ease-in-out;
  cursor: pointer;
}
.accord li:hover {
  color: #fff;
  background-color: #2073C2;
  border: 1px solid #2073C2;
}
.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-top: 10px;
  gap: 50px;
}



@media (min-width:0px) and (max-width:768px) {
  .pl {
  padding: 0px;
  }
  .pr {
  padding: 0px;
  }
  .pub {
  padding: 10px 0px;
  }
  .block33 {
    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;
}

.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-around;
}
.img-responsive {
	max-width: 100%;
	height: auto;
}
.l-content {
  padding: 0px;
}
.pos {
  display: none;
}
.hide {
  display: block;
}
.card {
  margin: 10px 0px;
}
.card1 {
  margin: 10px 0px;
  display: block;
  height: auto;
}
.accord {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
}