*, *::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;
}
.block35 {
  width: 35%;
  float: left;
}
.block65 {
  width: 65%;
  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: 15px;
    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;
}
.btns {
    display: flex;
    gap: 40px;
    float: left;
}
button {
    border: none;
    background: 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;
    display: flex;
    align-items: center;
}
    button a:hover {
    color: #2073C2;
    background-color: #fff;
    border: 2px solid #2073C2;
}
.bg {
    background: url(../images/bg1.png) no-repeat center center;
    background-size: cover;
    height: 570px;
}
.l-content {
    margin-top: 80px;
}
.hide {
    display: none;
}
.box {
    padding: 5px;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 5%);
    height: 400px;
    border: 2px solid #fff;
    transition: all 0.7s ease-out;
}
.box:hover {
    border: 2px solid #2073C2;
}
.box1 {
    padding: 25px;
    border: 2px solid #E5E5E5;
    transition: all 0.8s ease-in-out;
}
.box1:hover {
    border: 2px solid #2073C2;
}
select {
  padding: 20px;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 15px;
}
label {
  margin-bottom: 5px;
  font-size: 20px;
}
.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;
    }
    .p20 {
      padding: 10px;
    }
    .block33 {
      width: 100%;
    }
    .block35 {
      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-between;
    padding: 0px 10px;
  }
  .img-responsive {
      max-width: 100%;
      height: auto;
  }
  .l-content {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .bg {
    background: none;
  }
  .hide {
    display: block;
  }
  .box {
    margin: 10px 0px;
    height: auto;
  }
  .box1 {
    margin: 10px 0px;
  }
  select {
    width: 200px;
  }
  .accord {
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}