html {
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #242424;
  padding-top: 145px;
}

@media (max-width: 575px) {
  body {
    padding-top: 120px;
  }
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1366px) {
  .cmpad {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .cmpad {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cmpad {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eee;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #3a3a3a;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #444;
  }

  .custscroll::-webkit-scrollbar,
  .custscroll::-webkit-scrollbar-thumb {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscroll:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
  .custscroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }

  .custscrollA::-webkit-scrollbar {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
  }
  .custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }
}

ul.social {
  display: flex;
  margin-bottom: 0;
}

ul.social li {
  display: block;
}

ul.social li:last-child {
  margin-right: 0;
}

ul.social li a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-size: 0.875rem;
}

ul.social li a i {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 0.8rem;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  /* background: white !important;
  color: #258ecc; */
}

ul.social li a:hover i {
  background-color: #258ecc !important;
  color: white;
}

ul.social li a .fa-facebook-f {
  background-color: #3b5998;
}

ul.social li a:hover .fa-facebook-f {
  background-color: #3b5998;
}

ul.social li a .fa-twitter {
  background-color: #00acee;
}

ul.social li a:hover .fa-twitter {
  background-color: #00acee;
}

ul.social li a .fa-instagram {
  background-color: #8a3ab9;
  background: #d6249f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
ul.social li a .fa-x-twitter {
  background-color: #000;
}

ul.social li a:hover .fa-instagram {
  background-color: #8a3ab9;
}

ul.social li a .fa-linkedin-in {
  background-color: #0072b1;
}

ul.social li a:hover .fa-linkedin-in {
  background-color: #0072b1;
}

ul.social li a .fa-pinterest {
  background-color: #c8232c;
}

ul.social li a:hover .fa-pinterest {
  background-color: #c8232c;
}

ul.social li a .fa-youtube {
  background-color: #ff0000;
}

ul.social li a:hover .fa-youtube {
  background-color: #ff0000;
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  top: 0;
  height: 145px;
  z-index: 99;
  width: 100%;
  transition: 0.3s;
  background-color: white;
  transition: 0.3s;
}
header::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #00a652, #00adef);
}
header.active {
  height: 45px;
  transition: 0.3s;
}
header.active::before {
  height: 0;
}

.head-main {
  display: flex;
  align-items: center;
  padding: 12px 0;
  height: 100px;
  gap: 15px;
}
header.active .head-main {
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: 0.3s;
}

.head-main .logo-sec {
  width: 345px;
  /* transition: 0.3s; */
}
/* .head-main .logo-sec img {
  border-radius: 0.3rem;
} */

.head-main .menu-sec {
  flex: 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column;
  gap: 15px;
}
.head-main .menu-sec ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.head-main .menu-sec ul li {
  font-size: 0.85rem;
}
.head-main .menu-sec ul li .dropbtn {
  color: black;
  font-size: 0.9rem;
  transition: 0.3s;
}
.head-main .menu-sec ul li .dropbtn:hover {
  color: #00a652;
}
.phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone b {
  font-weight: 600;
}
.phone span {
  width: 25px;
  height: 25px;
  background-color: #00a652;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone img {
  width: 13px;
  filter: brightness(0) invert(1);
}

.menu-list-main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.menu-list-main li .dropbtn {
  color: black;
  font-size: 0.9rem;
  font-weight: 400;
  transition: 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  height: 30px;
}
.net {
  padding: 6px 15px;
  font-size: 0.8rem;
  border-radius: 0.3rem;
  color: white;
  background: linear-gradient(315deg, #e67c04, #f7c41c, #ff4d17);
  background-size: 600% 600%;
  animation: gradient 5s ease infinite;
  display: flex;
  gap: 8px;
}
.net img {
  width: 15px;
}
@keyframes gradient {
  0% {
    background-position: 0% 13%;
  }
  50% {
    background-position: 100% 88%;
  }
  100% {
    background-position: 0% 13%;
  }
}

.head-serch {
  display: flex;
  position: relative;
}

.head-serch .icon img {
  width: 16px;
}

.head-serch .icon {
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: #00000024;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  top: 0;
  bottom: 0;
  margin: auto;
}

.head-serch.icon:hover {
  background-color: #094d96;
}

.head-serch .icon a::before {
  display: none;
}
    .head-serch input {
        width: 230px;
        padding: 8px 18px;
        border: unset;
        background-color: rgb(25 126 207);
        font-size: 0.8rem;
        color: #333;
        transition: 0.3s;
        color: white;
        padding-right: 35px;
        height: 100%;
    }
.head-serch input:focus {
  outline: none;
  border: none;
}
.head-serch input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}

.head-bottom {
    height: 45px;
    background-color: #0067b9;
}

.head-bottom .menu-list-main {
  justify-content: flex-start;
}
.head-bottom .menu-list-main li a::before {
  display: none;
}

.head-bottom .menu-list-main li .dropbtn {
  font-size: 0.85rem;
  color: white;
  height: 45px;
  padding: 0 10px;
  line-height: 1.2;
  transition: 0.3s;
  border: none;
}
.head-bottom .menu-list-main li .dropbtn:hover {
  background-color: #00a652;
}
.head-bottom .menu-list-main li .dropbtn img {
  min-width: 18px;
}
.head-bottom .menu-list-main li span {
  padding-right: 10px;
}
.head-bottom .menu-list-main .menu {
  background-color: #00000024;
  width: 45px;
  align-items: center;
  justify-content: center;
}
.head-bottom .menu-list-main .menu img {
  width: 20px;
}
/* .head-bottom .menu-list li img {
  width: 20px;
} */
.head-bottom li:first-child a::before {
  display: none;
}

.menu-list-main li .dropbtn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: rgb(36 114 196 / 10%);
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateX(0) translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.menu-list-main li a:hover::before {
  transform: translateX(100%) translateY(-50%);
  opacity: 1;
}

.menu-list-main li a:hover {
  color: #ef8200;
}

.dis-list {
  display: flex;
  align-items: center;
  gap: 10px !important;
  border-radius: 0.3rem;
}
.dis-list li .font {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 3px 15px;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  border: 1px solid #cfe0f2;
}
.dis-list li .font a {
  /*color: #333;*/
  color: #000000;
  font-size: 0.85rem;
}

.dis-list .lang {
  border: 1px solid #02adf138;
  border-radius: 0.3rem;
  padding: 3px 18px;
  font-size: 0.8rem;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  background: white;
}
.dis-list .lang:hover {
  background-color: #02adf1;
  color: white;
}

.dropdown {
  position: unset;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  right: 0;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 3px 4px 0px rgb(0 0 0 / 18%);
  min-height: 300px;
}

.dropdown:hover .dropbtn::after,
.font-list:hover .dropbtn::after {
  width: 100%;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: all 0.3s;
  animation-name: fadeInDown;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}
.dropdown:hover .dropbtn {
  background-color: #00a652;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.dropdown-content .drop-con {
  padding: 0;
}

.form-switch .form-check-input:focus {
  box-shadow: unset;
}
.form-switch .form-check-input {
  height: 20px;
  width: 2.3rem;
  cursor: pointer;
  border: 1px solid #02adf138;
}

.menu-con {
  display: flex;
  gap: 20px;
}
.menu-con .menu-con1 {
  width: calc(100% - 300px);
}
.menu-list {
  display: flex;
  flex-flow: wrap;
  height: 100%;
}
.menu-list .menu-sec {
  flex: 1 0 33.333%;
  max-width: 33.3333%;
  border-right: 1px solid #00000012;
  /* border-bottom: 1px solid #00000012;
  min-height: 190px; */
}
.menu-box {
  line-height: 35px;
  padding: 20px;
}
.menu-list h5 {
  /* display: flex; */
  font-size: 0.95rem;
  font-weight: 500;
  /* line-height: 18px; */
  color: black;
}
.menu-list img {
  width: 23px;
  margin-right: 10px;
}

.in-menu-list li {
  line-height: 18px;
  padding: 5px 0;
}

.in-menu-list li a {
  transition: 0.3s;
  font-size: 0.85rem;
  color: #333;
}
.in-menu-list li a:hover {
  color: #217acc;
}
.menu-con .menu-con2 {
  padding: 18px;
  padding-left: 0;
}
.menu-con .menu-con2 img {
  width: 275px;
  border-radius: 0.3rem;
  overflow: hidden;
}
.menu-list-main.login .dropbtn {
  background-color: #00b75a;
  padding: 0 20px !important;
}
.menu-list-main.login .dropdown:hover .dropbtn {
  background-color: #07773e;
}
.menu-list-main.login .menu-con {
  padding: 8px 30px;
}

.menu-list-main.login .dropdown-content {
  width: 35%;
  min-width: 400px;
  min-height: auto;
}

.menu-list-main.login .log-sec .log-sec1,
.menu-list-main.login .log-sec .log-sec2 {
  padding: 15px;
}

.log-sec .log-sec1,
.log-sec .log-sec2 {
  border: 1px solid #0000001f;
}
.log-sec .log-sec1 {
  border-right: 0;
}
.log-sec .log-sec1,
.log-sec .log-sec2 {
  width: 50%;
}
.log-sec .log-sec2 {
  padding-left: 20px;
}
.log-sec .log-sec1 {
  padding-right: 20px;
}
.log-sec h5 {
  font-size: 0.9rem;
}
.log-sec .log-btn {
  background: #e9a606;
  padding: 5px 20px;
  border-radius: 0.3rem;
  color: white;
  font-size: 0.9rem;
  transition: 0.3s;
}
.log-sec .log-btn:hover {
  background: #a17409;
  color: white;
}
.log-sec ul {
  padding: 25px 0;
  padding-bottom: 0;
}
.log-sec ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.log-sec ul li:not(:last-child) {
  border-bottom: 1px solid #0000001a;
}
.log-sec ul li:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: #333;
  /* background-color: #137d17; */
  position: absolute;
  right: 0;
  font-size: 0.7rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 11px;
}
.log-sec ul li p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: #333;
  font-weight: 500;
}
.log-sec ul li a {
  font-size: 0.8rem;
  color: #068947;
  transition: 0.3s;
  /* position: absolute; */
  display: flex;
  justify-content: space-between;
  /* top: 0; */
  transition: 0.3s;
}

@media (max-width: 575px) {
  header {
    height: 120px;
  }
  .head-main {
    height: 80px;
    padding: 10px 0;
  }
  .head-main .logo-sec {
    width: 280px;
  }
  .head-bottom,
  header.active {
    height: 40px;
  }
  .head-bottom .menu-list-main li .dropbtn {
    padding: 0 15px !important;
    height: 40px;
  }
    .log-sec .log-sec1,
    .log-sec .log-sec2 {
        width: 100%;
    }
    .menu-list-main.login .dropdown-content {       
        min-width: 100%;        
    }
    .log-sec .log-sec1 {
        border-right: 1px solid #0000001f;
    }
}
.top-menu .dropdown {
  position: relative;
}
.top-menu .dropdown:hover .dropbtn {
  background-color: unset;
}
.top-menu .dropdown:hover .dropbtn{
  color: #00a652;
}
.top-menu .dropdown .dropdown-content {
  width: 200px;
  min-height: auto;
  right: -10px;
  border-radius: .3rem;
  padding: 0;
}
.top-menu .dropdown .dropdown-content a{
  display: flex;
  width: 100%;
  padding: 8px 15px;
  color: #333;
  border-radius: .3rem;
  transition: .3s;
  line-height: 20px;
}
.top-menu .dropdown .dropdown-content a:hover{
  color: #02adf1;
  background-color: #02adf114;
}

/*///////////RESPONSIVE HEADER***************/

@media (min-width: 1201px) {
  .header_resp {
    display: none;
  }
}
.header_resp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}
.cd-dropdown-trigger {
  padding: 0;
  border-radius: 0;
}
.cd-dropdown-trigger .fa {
  font-size: 22px;
  color: #069548;
}
.cd-dropdown-wrapper {
  width: 100%;
}
.cd-dropdown .hdtop {
  background-color: #fff;
  border-color: #069548;
  width: 100%;
  position: relative;
  z-index: 1;
  height: 65px;
  padding: 0;
  display: flex;
  flex-flow: wrap;
  border-bottom: 1px solid #f1f1f1;
}
.cd-dropdown .hdtop .menuadmin {
  display: flex;
  width: 100%;
  height: 65px;
}
.cd-dropdown {
  background-color: rgba(0, 0, 0, 0.7);
  width: inherit !important;
}
.cd-dropdown > .cd-dropdown-content {
  width: 70%;
  right: 30%;
  background-color: #f0fbff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
.closebarz {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: 70%;
  cursor: zoom-out;
}
@media (min-width: 767px) {
  .cd-dropdown > .cd-dropdown-content {
    width: 500px;
  }
  .closebarz {
    left: 500px;
  }
}
.cd-dropdown-content {
  padding-top: 0;
}
.cd-dropdown-content ul {
  padding-top: 65px;
  background-color: #f0fbff;
}
.cd-dropdown-content a,
.cd-dropdown-content ul a {
  color: #607d8b;
  border: none;
  border-bottom: 1px solid #ddd;
}
.cd-dropdown .cd-close {
  right: 1rem;
  top: 18px;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 9;
  box-shadow: 6px 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

@media (max-width: 575px) {
  .cd-dropdown > .cd-dropdown-content {
    width: 80%;
    right: 20%;
  }
  .closebarz {
    left: 80%;
  }
}

@media (max-width: 360px) {
  .closebarz {
    display: none;
  }
  .cd-dropdown > .cd-dropdown-content {
    width: 100%;
    right: 0;
  }
  .cd-dropdown .cd-close {
    display: block;
  }
}

.cd-dropdown .logo {
  max-width: 150px;
  margin: 5px auto;
}
.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
  padding: 0 15px;
}
.cd-dropdown-content a,
.cd-dropdown-content ul a {
  height: 38px;
  line-height: 38px;
  font-size: 0.875rem;
  border: none;
  margin: 8px;
  background-color: #fff;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.cd-dropdown-content a:hover,
.cd-dropdown-content ul a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #01adf0;
}
.cd-dropdown-content a .icon,
.cd-dropdown-content ul a .icon {
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
  width: 20px;
  margin-right: 8px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.cd-dropdown-content a:hover .icon,
.cd-dropdown-content ul a:hover .icon {
  filter: none;
}
.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
  background: #ccc;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.has-children > a:hover::before,
.has-children > a:hover::after,
.go-back a:hover::before,
.go-back a:hover::after {
  background-color: #fff;
}
.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
  background: #60606a;
  width: 1px;
  height: 15px;
}
.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
  height: 1px;
}
.has-children > a img.img-menu {
  max-width: 20px;
  margin-right: 10px;
}
.cd-search {
  position: relative;
  font-size: 0.875rem;
}
.cd-search input[type="search"],
.cd-search input[type="search"]:focus {
  height: 40px;
  background-color: #fff;
  color: #666;
}
.cd-search input::placeholder {
  color: #999 !important;
}
.cd-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 0;
  color: #999;
  background-color: transparent;
  color: #333;
}
.cd-search button:hover {
  color: #00b75a;
}
.hdtop .upic {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  height: 100%;
}
.hdtop .upic a {
  height: 100%;
  margin: 0;
  border-radius: 0;
  padding: 0;
}
.hdtop .upic a:hover {
  background-color: transparent;
}
.hdtop .upic img {
  display: block;
  /*height: 100%;*/
  width: 78%;
}
.menu-user {
  flex: 1 0;
  color: #f7f7f7;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
  background-color: #00b75a;
  padding-left: 15px;
}
.menu-user .uname {
  font-size: 14px;
}
.menu-user span {
  display: block;
  line-height: 20px;
  font-size: 12px;
}
.menu-acc {
  display: flex;
  justify-content: space-around;
  padding: 0 4px;
  margin-top: 3px;
  margin-bottom: 3px;
}
.menu-acc a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  line-height: normal;
  height: 60px;
  margin: 4px;
  border-radius: 0.3rem;
  width: 100%;
  border: none;
  color: #999;
  border-right: 1px solid #f1f1f1;
}
.menu-acc a img {
  width: 20px;
  margin-bottom: 4px;
  margin-right: 0;
  filter: brightness(0.5);
  -webkit-filter: brightness(0.5);
}
.menu-acc a:hover img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.accbtns button {
  width: 50%;
  float: left;
  color: white;
  border: none;
  height: 35px;
  line-height: 35px;
  background-color: #df2b6e;
}
.accbtns button:last-child {
  background-color: #e83f7e;
}

.accdet {
  display: table;
  width: 100%;
  border-bottom: 1px solid #cfcfcf;
}
.accdet button {
  width: 50%;
  float: left;
  color: #df2b6e;
  height: auto;
  border: none;
  border-right: 1px solid #ddd;
  background-color: #fff;
  font-size: 10px;
  padding: 8px 5px;
}
.accdet button:last-child {
  border-right: none;
}
.accdet button span {
  display: block;
  color: #666;
  font-size: 14px;
}
.accdet button span i.fa {
  margin-right: 3px;
}

.addrec {
  display: table;
  width: 100%;
}
.addrec a,
.addrec a:focus {
  display: block;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(-45deg, #ff4d89, #ff0057, #e91e72, #ffabc8);
  background-size: 400% 400%;
  animation: gradient 4s ease infinite;
}
.addrec a:hover {
  animation: none;
  color: #fff !important;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.addrec a span.fa {
  margin-right: 5px;
}
.addrec a i.fa {
  float: right;
  margin-top: 15px;
}

@media (max-width: 480px) {
  .menu-acc p {
    line-height: 5px;
    font-size: 10px;
  }
  .menu-user {
    width: calc(100% - 70px);
  }
  .menu-acc a {
    font-size: 0.65rem;
  }
}

/*RESPONSIVE MENU FOOTER*/
.menufoot {
  background-color: #fff;
  color: #666;
  text-align: center;
  min-height: 290px;
}
.menufoot ul {
  position: relative;
  padding: 6px 0 !important;
  padding-top: 15px !important;
  list-style-type: none;
}
.menufoot ul li.head {
  font-size: 12px;
  padding: 0 10px;
  color: #666;
  margin-bottom: 10px;
}

.menufoot ul.reach li {
  display: block;
  text-align: left;
}
.menufoot ul.reach li a:hover {
  background: rgb(0 150 136 / 10%);
  color: #00b75a;
}
.menufoot ul.reach li a i {
  margin-right: 6px;
  color: #00b75a;
}
.menufoot ul.reach li a img {
  height: 16px;
  margin-right: 8px;
  margin-top: -2px;
}

.menufoot ul.download {
  padding-bottom: 10px !important;
}
.menufoot ul.download li.apps a {
  width: 95px;
  display: inline-block;
  padding: 0 !important;
  margin: 0 5px;
  height: auto !important;
  line-height: normal !important;
  border: none !important;
}
.menufoot ul.download li.apps a img {
  width: 100%;
}

.menufoot ul.social {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  flex-flow: wrap;
  justify-content: center;
}
.menufoot ul.social li.head {
  margin-bottom: 15px;
  width: 100%;
}
.menufoot ul.social li a {
  width: auto;
  text-align: center;
  height: 35px !important;
  line-height: 35px !important;
  text-overflow: initial;
  border: none !important;
  padding: 0 !important;
  margin: 0 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}
.menufoot ul.social li a:hover .fab {
  box-shadow: 0 0 0 3px rgb(0 0 0 / 20%);
}

.menufoot ul.menu {
  padding-top: 6px !important;
}
.menufoot ul.menu li {
  padding: 5px 0;
  display: inline-block;
}
.menufoot ul.menu li a {
  font-size: 11px;
  height: auto !important;
  line-height: 22px !important;
  padding: 0 8px;
  background-color: rgb(0 150 136 / 10%);
  border-radius: 0.3rem;
  color: #828c99 !important;
  margin: 0 2px;
}
.menufoot ul.menu li a:hover {
  background: rgb(0 150 136 / 20%);
  color: #00b75a !important;
}
.menufoot ul.rights {
  border-top: 1px solid #cfcfcf;
  padding: 15px 0 !important;
}
.menufoot ul.rights p {
  margin-bottom: 0;
  font-size: 12px;
}
.menufoot ul.rights a {
  display: inline;
  height: auto !important;
  line-height: normal !important;
  padding: 0;
  border: none !important;
  background-color: transparent;
  font-size: 12px;
  margin: 0;
  color: #666;
}

/* ////////////// SLIDER /////////////// */

.mainslider {
  height: 60vh;
}
.mainslider .slide-img {
  position: relative;
  height: 100%;
}
.mainslider .slide-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100%;
  right: 4rem;
  left: auto;
  width: max-content;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
  font-size: 1rem;
  filter: brightness(0) invert(1);
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
  position: absolute;
  height: 40px;
  width: 40px;
  background-color: #eb1c22;
  box-shadow: 0px 0px 20px #00000017;
  transition: 0.3s;
}
.swiper-btn .swiper-button-next:hover,
.swiper-btn .swiper-button-prev:hover {
  background-color: white;
}

.swiper-btn .swiper-button-next:hover:after,
.swiper-btn .swiper-button-prev:hover:after {
  font-size: 1rem;
  filter: brightness(0);
}
.swiper-btn .swiper-button-prev {
  left: 4rem;
  right: auto;
}
.swiper-btn .swiper-button-next {
  right: 4rem;
  left: auto;
}

.swiper-pagi .swiper-pagination-bullet-active {
  background: white;
  width: 15px;
  border-radius: 3px;
}

.swiper-pagi .swiper-pagination-bullet {
  background-color: white;
  transition: 0.3s;
}
.swiper-pagi
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 3px;
}

.box2 .swiper-btn .swiper-button-next {
  right: 10px;
  position: absolute !important;
}
.box2 .swiper-btn .swiper-button-prev {
  left: 10px;
  position: absolute !important;
}

.box2 .swiper-btn .header-next {
  right: 10px;
  width: 30px;
  height: 35px;
}
.box2 .swiper-btn .header-prev {
  left: 10px;
  width: 30px;
  height: 35px;
}

.slide-con {
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 47%;
    transform: translateY(-47%);
    border-radius: 0.5rem;
    text-align: center;
    overflow: hidden;
    width: 120px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
}

    .slide-con li {
        padding: 10px 8px;
        line-height: 13px;
        border-bottom: 1px solid rgb(255 255 255 / 39%);        
        background-color: #0067b9;
        transition: 0.3s;
        cursor: pointer;
    }
.slide-con li:hover {
  background-color: #00a652;
}
.slide-con li:last-child {
  border-bottom: none;
}

.slide-con li a {
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
}
.slide-con li img {
  width: 20px;
  margin: auto;
  padding-bottom: 5px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
  .mainslider {
    height: 45vh;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 1.5rem;
  }
  .slide-con {
    position: sticky;
    bottom: 0;
    top: auto;
    transform: none;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    width: 90%;
    margin: auto;
    margin-top: -10px;
  }
  .slide-con li {
    flex: 1 0 auto;
  }
}

@media (max-width: 991px) {
  .mainslider {
    height: 35vh;
  }
}
@media (max-width: 767px) {
  .slide-con {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .mainslider {
    height: 25vh;
  }
}

@media (max-width: 575px) {
  .slide-con li {
    flex: 1 0 50%;
    border-left: 1px solid rgb(255 255 255 / 39%);
  }
  .slide-con li:nth-child(1),
  .slide-con li:nth-child(4) {
    border-left: none;
  }
}
@media (max-width: 575px) and (orientation: portrait) {
  .mainslider {
    height: 50vh;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 1rem;
  }
}
@media (max-width: 400px) and (orientation: portrait) {
  .mainslider {
    height: 40vh;
  }
}

/*///////////// SERVICES//////////////*/

.serlist {
  display: flex;
  flex-flow: wrap;
  margin: -5px;
}
.serlist li {
  flex: 1 0 33.333%;
  max-width: 33.333%;
  padding: 5px;
  cursor: pointer;
}

.serbox {
  border: 1px solid #0000001f;
  border-radius: 0.3rem;
  padding: 20px;
  transition: 0.3s;
  height: 100%;
}
.serlist li:hover .serbox {
  border: 1px solid #02adf1d4;
}

.serbox h5 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #333;
}
.serbox img {
  width: 40px;
  filter: brightness(0);
  margin-bottom: 20px;
}
.digi li {
  flex: 1 0 50%;
  max-width: 50%;
}
.digi img {
  margin-bottom: 0;
  filter: unset;
}
.digi span {
  /* margin-bottom: 0; 
  background-color: #02adf114;*/
  background-color: #02adf129;
  display: flex;

  padding: 10px;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50px;
}

@media (max-width: 575px) {
  .serlist li {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .serbox {
    padding: 15px;
  }
  .serbox img {
    /*margin-bottom: 15px;*/
    width: 30px;
  }
  .serbox h5 {
    font-size: 0.875rem;
  }
}

/*///////////// MESSAGE//////////////*/
.msg {
  border: 1px solid #e0e0e0;
  border-radius: 0.3rem;
  overflow: hidden;
  /* padding: 10px;*/
}
.msg img {
  border-radius: 0.3rem;
}
.msg .msg-img {
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
}
.msg .msg-con {
  padding: 10px 15px;
}
    .msg h5 {
        position: absolute;
        right: 0;
        background-color: #0067b9;
        bottom: 0;
        padding: 8px 30px;
        font-size: 0.93rem;
        color: white;
        /*border-left: 5px solid #07c766;*/
        border-left: 5px solid #44c70f;
        width: 80%;
    }
.msg h5 p {
  font-size: 0.75rem;
  color: #ffffffde;
  margin-bottom: 0;
}
.msg-con p {
  margin-bottom: 5px;
  font-style: italic;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
  color: #333;
}
.read {
  font-size: 0.85rem;
  font-weight: 500;
  /*color: #fb7b19;*/
  color: #0367B3;
  transition: 0.4s;
}
.read:hover {
  color: #a75212;
}

@media (max-width: 575px) {
  .msg h5 {
    padding: 8px 15px;
  }
}

/*///////////// MOBILE//////////////*/
.mobile {
  background-image: url("../img/images/mob-bag1.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.mob-img {
  width: 450px;
  margin: auto;
}
.mobile h3 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
}
.mobile p {
  color: #4d4d4d;
  margin-bottom: 20px;
  font-size: 1.3rem;
  max-width: 500px;
  font-weight: 300;
}
.mobile .cen {
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
}
.mobile .mobdatacol {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.mobile .applink {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.mobile .applink li img {
  width: 130px;
}

.mobdatatab {
  display: flex;
  flex-flow: wrap;
  flex: 1 0;
}

.left-column {
  width: 500px;
  max-width: 100%;
  padding: 10px;
}

.left-column img {
  max-width: 100%;
  display: none; /* Initially hide all images */
}

.tab-image.active {
  display: block !important; /* Show the active image */
}

.center-column {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0;
}

.center-column .tab-button {
  color: #333;
  padding: 20px 15px;
  width: 100%;
  border: 1px solid #03934a91;
  border-radius: 0.3rem;
  font-size: 0.9rem;
  transition: 0.3s;
  text-align: center;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}
.center-column .tab-button img {
  width: 40px;
  margin: auto;
  padding-bottom: 10px;
}

.center-column .tab-button.active {
    /*background-color: #03934a;*/
    background-color: #028744;
    color: #fff;
}
.center-column .tab-button:after {
  content: "";
  position: absolute;
  /* inset: 0; */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #03934a;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: -9px;
  transition: 0.3s;
  opacity: 0;
}
.center-column .tab-button.active:after {
  opacity: 1;
}

.right-column {
  flex: 1 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

.mobile .tab-content {
  display: none;
}

.mobile .tab-content.active {
  display: block;
}

@media (max-width: 1200px) {
  .left-column {
    width: 420px;
  }
}

@media (max-width: 991px) {
  .mobile h3 {
    font-size: 2rem;
  }
  .mobile p {
    font-size: 1.1rem;
  }
  .left-column {
    width: 320px;
  }
  .center-column .tab-button {
    padding: 10px 15px;
  }
}

@media (max-width: 767px) {
  .center-column {
    width: 100%;
    flex-direction: row;
  }
  .center-column .tab-button {
    padding: 10px 5px;
  }
  .mobdatatab {
    flex: 1 0 100%;
  }
  .right-column {
    justify-content: center;
    text-align: center;
  }
  .mobile .applink {
    justify-content: center;
  }
  .left-column {
    margin: auto;
    width: 450px;
  }
  .center-column .tab-button:after {
    opacity: 1;
    top: auto;
    bottom: -20px;
    right: 0;
    left: 0;
    width: 10px;
    margin: auto;
    transform: none;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #03934a;
    opacity: 0;
  }
}

/*///////////// GALLERY//////////////*/
.gal-list {
  display: flex;
  flex-flow: wrap;
  margin: -5px;
}
.gal-list li {
  flex: 1 0 33.333%;
  max-width: 33.333%;
  padding: 5px;
}
.galbox {
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

    .galbox .gal-con {
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 0.8rem;
        background: #0067b9db;
        color: white;
        padding: 5px 10px;
        backdrop-filter: blur(1px);
        transition: 0.3s;
        border-left: 5px solid #07c766;
        overflow: hidden;
        left: 15px;
        bottom: 10px;
    }
.galbox .coverimg {
  object-fit: cover;
}
.galbox .galicon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galbox .gal-con p {
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.galbox:hover .gal-con {
  background-color: #02adf1;
}
.galbox:hover img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .gal-list li {
    flex: 1 0 50%;
    max-width: 50%;
  }
}

/*///////////// PRODUCTS//////////////*/

.pro-box {
  overflow: hidden;
  box-shadow: 0px 1px 20px #00000012;
  margin: 20px 0;
  margin-top: 0;
  background-color: white;
  border-radius: 0.5rem;
  position: relative;
}

.pro-box:hover img {
  transform: scale(1.1);
}
.pro-box:hover a {
  background: #07773e;
}

.pro-con h1 {
  font-size: 1rem;
  padding: 0 10px;
}
.pro-con p {
  font-size: 0.85rem;
  color: #545454;
  margin-bottom: 18px;
  padding: 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.intr-rate {
    width: 120px;
    height: 44px;
    padding: 12px 12px 12px 12px;
    background-color: #0067b9;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    font-size: 0.85rem;
    color: rgb(255 255 255 / 90%);
    font-weight: 400;
}
.intr-btn a {
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  background: #00a652;
  padding: 5px 10px;
  border-radius: 0.3rem;
}
.intr-btn a:hover {
  background: #058042;
}
.intr-main {
  display: flex;
  justify-content: space-between;
}
.pro-img {
  margin-bottom: 13px;
  overflow: hidden;
}

.m-head {
  font-size: 1.7rem;
}
.mainhead {
  font-weight: 700;
  position: relative;
}
/* .m-head span {
  color: #02adf1;
} */
.para {
  color: #545454;
  /* line-height: 20px; */
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-weight: 400;
}
.abt-list {
  padding-top: 8px;
  display: flex;
  gap: 1rem;
  /* flex-flow: wrap; */
  width: 100%;
  margin-right: 15px;
}
.abt-list a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: #333;
  background: #02adf114;
  padding: 8px 15px;
  line-height: normal;
  font-size: 0.875rem;
  border-radius: 0.3rem;
}
.abt-list a:hover {
  color: #02adf1;
}
.abt-list img {
  width: 40px;
  margin-bottom: 5px;
}
.abt-list li {
  flex: 1 0 50%;
  padding: 5px 0;
  max-width: 50%;
}
.product-slider-bag {
  position: relative;
}
.product-slider-bag::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -30px;
  background-color: #ebf5fb;
  height: 100%;
  width: 100%;
  border-radius: 0.3rem;
  min-height: 360px;
}
.product-slider-bag .swiper-pagination-progressbar {
  top: auto;
  bottom: 0;
  width: 50%;
  left: auto;
  right: 0;
  height: 3px;
}
.product-slider-bag
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #0c496d !important;
}

.swipertopbtn {
  position: absolute;
  top: -15px;
  right: 10px;
  display: flex;
}

.product-slider-bag .swiper-button-next,
.product-slider-bag .swiper-button-prev {
  width: 36px;
  height: 36px;
  margin: 0 6px;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 3px 3px 15px #ccc;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.product-slider-bag .swiper-button-next:after,
.product-slider-bag .swiper-button-prev:after {
  color: #333;
  font-size: 1rem;
}

.product-slider-bag .swiper-button-prev {
  left: -43px;
}
.product-slider-bag .swiper-button-next {
  right: -50px;
}
.product-slider-bag .swiper-button-next:hover,
.product-slider-bag .swiper-button-prev:hover {
  background-color: #02adf1;
  color: #fff;
}
.product-slider-bag .swiper-button-next:hover:after,
.product-slider-bag .swiper-button-prev:hover:after {
  color: white;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .product-slider-bag::before {
    right: 0;
  }
  .product-slider-bag {
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .m-head {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

/* ///////// news and events ////////// */

.news {
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.news:hover {
  transform: translateY(-5px);
}
.news-date {
    font-size: 0.8rem;
    background: #028342;
    color: white;
    padding: 3px 10px;
    border-radius: 0.3rem;
    position: absolute;
    right: 8px;
    bottom: 8px;
    box-shadow: #00000070 0 0 6px 2px;
}
.news .pro-con {
  padding: 10px 13px;
}
.news .pro-img {
  padding: 0;
}
.news h1 {
  padding: 13px 0;
  margin-bottom: 5px;
  max-height: 35px;
  overflow: hidden;
}
.news .para {
  margin-bottom: 6px;
  padding: 0;
  max-height: 38px;
  overflow: hidden;
  color: #545454;
}

.news a {
  font-size: 0.8rem;
  color: #02adf1;
  transition: 0.3s;
}
.news a:hover {
  color: #ed960a;
  background-color: unset;
}
.pro-box.news:hover a {
  background-color: unset;
}

.blogbtn,
.newsbtn {
  position: relative;
}
.view-all {
  position: absolute;
  right: 16px;
  top: 0;
  /* border: 1px solid #02adf1; */
  padding: 8px 30px;
  border-radius: 0.3rem;
  color: white;
  /*background: #e99d0c;*/
  background: #02891B;
  font-size: 0.85rem;
  transition: 0.3s;
}
.bttn {
  /* border: 1px solid #02adf1; */
  padding: 8px 30px;
  border-radius: 0.3rem;
  color: white;
  background: #e99d0c;
  font-size: 0.85rem;
  transition: 0.3s;
}
.view-all:hover,
.bttn:hover {
  background: #b3780c;
}

.news-btn .swiper-button-next:after,
.news-btn .swiper-button-prev:after {
  font-size: 1rem !important;
  color: white !important;
}
.news-btn .swiper-button-next,
.news-btn .swiper-button-prev {
    width: 36px;
    height: 36px;
    top: 35%;
    background-color: #02adf1;
    border-radius: 50%;
    box-shadow: 3px 3px 15px #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.pro-box.news .pro-img {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .view-all {
    padding: 8px 20px;
    right: 10px;
  }
}

/* ////////////// TAB SEC /////////////// */
.mytab .nav-tabs .nav-item {
  flex: 1 0 auto;
}
.mytab .nav-tabs .nav-item .nav-link {
  width: 100%;
  font-size: 0.875rem;
  color: #333;
  transition: 0.3s;
  font-weight: 500;
}
.mytab .nav-tabs .nav-item .nav-link.active span {
  background: rgb(36 114 196 / 100%);
}
.mytab .nav-tabs .nav-item .nav-link.active span img {
  filter: brightness(0) invert(1);
}
.mytab .tab-content {
  padding: 20px;
  border: 1px solid #dee2e6;
  border-radius: 0 0 0.5rem 0.5rem;
  border-top: unset;
  box-shadow: 0px 25px 20px -25px #02adf12e;
}

.mytab .nav-tabs .nav-item span {
  width: 50px;
  height: 50px;
  background: rgb(36 114 196 / 20%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: 0.3s;
}

.mytab .nav-tabs .nav-item span img {
  width: 28px;
}
.mytab .nav-tabs .nav-item .nav-link:hover {
  border: 1px solid 1px solid #dee2e6;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  outline: none;
}
.mytab .nav-tabs .nav-item .nav-link:hover span {
  transform: rotateY(180deg);
}

/* ////////// ROTATE /////////////// */

/* ////////// COUNTER /////////////// */

.counter {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  gap: 20px;
  border-bottom: 2px dashed #e9e9e9;
  padding-bottom: 20px;
  justify-content: space-between;
  position: relative;
}
.counter:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 3px;
  background-color: #e9e9e9;
  left: -25px;
  top: -20px;
  bottom: 0;
  margin: auto;
  border-radius: 5px;
}

.counter h5 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a652;
  margin-bottom: 0;
}
.counter .count-img {
  display: flex;
  align-items: center;
  gap: 20px;
}
.counter .count-img p {
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}
.counter .count-img img {
  filter: brightness(0);
  width: 50px;
}
.counter-head .subhead {
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #666;
}
.counter-head .mainhead {
  font-size: 2.3rem;
}
.counter-head p {
  max-width: 400px;
}
.counter-head img {
  width: 180px;
  margin-bottom: 10px;
}

.counter .count-con {
  display: flex;
}

@media (max-width: 991px) {
  .counter-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .counter-head .mainhead {
    font-size: 2rem;
  }
  .counter h5 {
    font-size: 1.75rem;
    font-weight: 600;
  }
  .counter .count-img img {
    width: 32px;
  }
  .counter .count-img p {
    font-size: 0.9rem;
  }
}

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/
footer {
  background: rgb(2 173 241 / 20%);
  display: flex;
  flex-flow: wrap;
  color: rgb(255 255 255 / 75%);
  font-size: 0.9rem;
}
    footer .footleft {
        width: 500px;
        background-color: #011a3e;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
footer .footleft h6 {
  color: white;
}
footer .footright {
  width: calc(100% - 500px);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer .footright p {
  color: #333;
}

@media (max-width: 1280px) {
  footer .footleft {
    width: 400px;
  }
  footer .footright {
    width: calc(100% - 400px);
  }
}

footer h5,
footer h6 {
  color: black;
}
footer .ftline {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.1;
  margin: 1rem 0;
}
footer .ftlogo {
  margin-bottom: 2rem;
}
footer .ftsponsor {
  width: 200px;
}
footer .newsletter {
  display: flex;
  flex-flow: column;
  width: 360px;
  max-width: 100%;
}
footer .inputgroup {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}
footer .inputgroup input {
  width: 100%;
  padding: 10px 15px;
  outline: 0;
  color: #666;
  border: unset;
}
footer .inputgroup input::placeholder {
  font-size: 0.85rem;
}
footer .inputgroup button {
  padding: 0 20px;
  background: #01adf0;
  color: #fff;
  border: none;
}
footer .contlist {
  display: flex;
  flex-flow: column;
  line-height: 2;
}
footer .contlist li i {
  color: #fff;
  margin-right: 5px;
}

.footmenu {
  display: flex;
  flex-flow: column;
}
.footmenu li {
  padding: 5px 0;
}
.footmenu li a {
  color: rgb(0 0 0 / 75%);
}
.footmenu li a:hover {
  color: #04a453;
}
footer .social {
  gap: 0.25rem;
}
footer ul.social li a i {
  border-radius: 50%;
  background: transparent !important;
  color: black;
}
footer ul.social li a:hover i {
  background-color: #02adf1 !important;
  color: #fff;
}
footer ul.social li a i.fa-whatsapp {
  background: #25d366 !important;
  color: white;
}
footer ul.social li a:hover i.fa-whatsapp {
  color: #fff;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

footer .applink {
  display: flex;
  gap: 1rem;
}
footer .applink a {
  display: flex;
  opacity: 0.8;
}
footer .applink a:hover {
  opacity: 1;
}
footer .applink a img {
  width: 100px;
  filter: brightness(0);
}

footer .footlist {
  display: flex;
  flex-flow: wrap;
  gap: 1rem;
}
footer .footlist li a {
  color: rgb(0 139 69 / 100%);
  background-color: rgb(0 166 82 / 20%);
  padding: 3px 8px;
  border-radius: 0.3rem;
  font-size: 0.75rem;
}
footer .footlist li a:hover {
  color: #fff;
  background-color: #02a552;
}
footer .copyright {
  text-align: right;
}
footer .copyright a {
  color: #333;
}

.flexVcenter {
  display: flex;
  flex-flow: wrap;
  align-content: center;
}
footer p,
footer a {
  font-size: 0.853rem;
}

@media (max-width: 767px) {
  footer .footright,
  footer .footleft {
    width: 100%;
  }
  footer .copyright {
    text-align: center;
  }
  footer .footlist {
    gap: 0.5rem;
  }
}

@media (max-width: 575px) {
  footer .ftlogo {
    width: 280px;
  }
}

@media(max-width: 575px){
    .dsk{
        display: none;
    }
}
@media(min-width: 576px){
    .mob{
        display: none;
    }
}

.msg h5 span {
    font-size: 0.75rem;
    color: #ffffffde;
    margin-bottom: 0;
}
.watermark {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../img/preview.png);
    background-position: center;
    background-size: cover;
    opacity: .18;
}

.accessibility {
    display: flex;
    flex-flow: column;
    gap: 5px;
    align-items: center;
    padding: 5px;
    padding-left: 3px;
    /* text-align: left; */
    font-size: 12px;
    position: fixed;
    left: 0;
    z-index: 99998;
    top: 50%;
    background-color: #fff;
    box-shadow: 0 0 20px rgb(60 159 139 / 15%);
    border-radius: 0 15px 15px 0;
}

.accessibility .fontsize {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.accessibility button {
    border: 1px solid #eee;
    background: #fff;
    width: 30px;
    height: 24px;
    padding: 8px;
    /*color: #607d8b;*/
    color: #114d6a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

/* .custom-switch {
  padding-left: 2.25rem;
} */
.theme .custom-switch {
    left: 4px;
}

@media (min-width: 576px) {
    .accessibility {
        display: none;
    }
}

.mymodal {
    background-color: rgb(0 173 239 / 20%);
    backdrop-filter: blur(3px);
}

.mymodal .close {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
    background-color: #00a652;
    border: none;
    border-radius: 50%;
    padding: 10px;
    transition: 0.3s;
}

.mymodal .close:hover {
    background-color: #07773e;
}

.mymodal .modal-content {
    border: unset;
    box-shadow: 0px 0px 20px #00000045;
    border-radius: 10px;
}

.mymodal .modal-header {
    padding: 10px 15px;
}

.mymodal .modal-header h1, .mymodal .modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    padding: 5px 0;
}

.mymodal .modal-content input, .mymodal .modal-content textarea {
    padding: 6px 10px;
    border: 1px solid #dee2e6;
}

.mymodal .modal-content input::placeholder, .mymodal .modal-content textarea::placeholder {
    font-size: 0.8rem;
}
/*.popup-modal .dsk{
    width:600px;
}*/

@media (min-width: 576px) {
    .mymodal.enqmodal .modal-dialog {
        max-width: 600px;
    }
}


.mymodal .modal-footer {
    justify-content: flex-end;
}

    .mymodal .modal-footer .bttn {
        border: none;
        padding: 10px 35px;
    }

.mymodal-form .cap {
    display: flex;
    align-items: center;
}

.mymodal-form .cap .sec2 button {
    margin: 0px 10px;
    border: unset;
    border-radius: 50px;
    padding: 8px;
    background-color: #00a652;
    transition: 0.3s;
}

.mymodal-form .cap .sec2 button:hover {
    background-color: #07773e;
}

.mymodal-form .cap .sec2 button img {
    filter: brightness(0) invert(1);
}

.mymodal-form .cap .sec2 img {
    width: 15px;
}

.mymodal-form .cap input {
    margin-bottom: 0;
}
.btn-search{
    outline:unset;
    border:none;
}
.serswiper, .digitalswiper {
    height: 280px;
}
    
.serswiper .swiper-slide, .digitalswiper .swiper-slide {
    height: calc((100% - 30px) / 2) !important;
}

.navi {
    display: flex;
    flex-flow: row-reverse;
}
.navi .swiper-button-prev,
.navi .swiper-button-next {
    position: unset;
    width: 36px;
    height: 36px;
    margin: 0 6px;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 3px 3px 15px #ccc;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.navi .swiper-button-prev:after,
.navi .swiper-button-next:after {
    color: #333;
    font-size: 1rem;
}

.head-flex {
    display: flex;
    justify-content: space-between;
}

.position-unset {
    position: unset;
}

.cd-dropdown-content a, .cd-dropdown-content ul a {
    /*height: 38px;*/
    line-height: 38px;
    font-size: 0.875rem;
    border: none;
    margin: 8px;
    background-color: #fff;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-wrap: unset;
    line-height: 15px;
}
.serbox.services {
    border: 1px solid rgb(2 173 241 / 10%);   
    background: rgb(2 173 241 / 5%);
}
/*======== New Menu Style ============*/

.dropdown-content.newmenu {
    /*background-color: rgb(0 48 67 / 95%);*/
    /*background-color: rgb(10 41 109 / 95%);*/
    background-color: rgb(21 52 96 / 98%);
    /* width: 120%;
    left: 0; */
}

.newmenu .menu-con2 {
    padding-left: 18px;
    border-left: 1px solid rgb(255 255 255 / 20%);
}

.newmenu .menu-con1 {
    padding: 18px;
}

.newmenu .menutab {
    display: flex;
    height: 100%;
}

.newmenu .menutab .nav {
    width: 230px;
    border-right: 1px solid rgb(255 255 255 / 20%);
    height: 100%;
    padding-right: 20px;
}

.newmenu .menutab .tab-content {
    width: calc(100% - 230px);
}

.newmenu .nav-link {
    cursor: pointer;
    font-size: 0.9rem;
    color: white;
    position: relative;
    text-align: left;
    padding: 8px 15px;
}

.newmenu .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #02adf1;
    opacity: 0;
    right: -9px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
}

.newmenu .nav-link.active:after {
    opacity: 1;
}

.newmenu .nav-link.active {
    color: white;
    background-color: #02adf1;
}

.newmenu .in-menu-list {
    display: flex;
    flex-flow: wrap;
    margin: -5px;
}

.newmenu .in-menu-list li {
    flex: 1 0 33.333%;
    max-width: 33.333%;
    padding: 5px;
}

.newmenu .in-menu-list li a {
    color: rgb(255 255 255 / 90%);
    padding: 13px;
    border: 1px solid rgb(255 255 255 / 20%);
    width: 100%;
    display: flex;
    border-radius: 3px;
    transition: .3s;
    height: 100%;
    display: flex;
    align-items: center;
}

.newmenu .in-menu-list li a:hover {
    color: rgb(255 255 255 / 100%);
    border: 1px solid rgb(255 255 255 / 100%);
}
/*======== New Menu Style ============*/
.head-main .logo-sec {
    width: 320px;
}
@media (max-width: 575px) {
    .head-main .logo-sec {
        width: 245px;
    }
}

.popupslider{
    padding-bottom:15px;
}
.popupslider .swiper-pagi .swiper-pagination-bullet {
    background-color: #1d69b3;
    transition: 0.3s;
    bottom:0px;
}
.modal-content .h-modal-close { z-index:1;}
.popup-modal .modal-body {
    padding-bottom: 0px;
}
.f-div {
    display: flex;
    gap: 10px;
}
.f-img {
    max-width: 200px;
    width: 100px;
}

.marquee-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #f8f9fa;
      border: 1px solid #cee9f9;
      padding: 0.5rem 0.5rem;
      display: flex;
      align-items: center;
    }
    .marquee-label {
      flex-shrink: 0;
      margin-right: 1rem;
      background: #0d6efd;
      color: #fff;
      padding: 0.25rem 0.6rem;
      border-radius: 0.25rem;
      font-weight: 600;
      font-size: 0.9rem;
    }
    .marquee-wrapper {
      flex: 1;
      overflow: hidden;
    }
    .marquee {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 20s linear infinite;
      font-size: 1rem;
      font-weight: 400;
    }
    .marquee span {
      margin-right: 3rem; /* space between messages */
    }
    .marquee.paused {
      animation-play-state: paused;
    }
    @keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
    .marquee-btn {
      position: absolute;
      right: 3px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }
.popup-text-div {
    border: 4px solid #0067b9;
    padding: 1rem;
    border-radius: 10px;
    text-align: justify;
}