
:root{
  --black: #2A2A2A;
  --textclr: #474747;
  --green: #239E5F;
  --green50: rgb(35 158 95 / 50%);
  --green20: rgb(35 158 95 / 20%);
  --green10: rgb(35 158 95 / 10%);
  --blue: #0572BC;
  --white: #ffffff;
  --gradient: linear-gradient(120deg, #239E5F 0%, #158A8A 40%, #0572BC 100%);
  --grad1: linear-gradient(120deg, #FF595E 0%, #D70006 100%);
  --grad2: linear-gradient(120deg, #FF924C 0%, #CC5000 100%);
  --grad3: linear-gradient(120deg, #FFCA3A 0%, #CB7A00 100%);
  --grad4: linear-gradient(120deg, #8AC926 0%, #5A9300 100%);
  --grad5: linear-gradient(120deg, #1982C4 0%, #005A93 100%);
  --grad6: linear-gradient(120deg, #6A4C93 0%, #370082 100%);
  --trans30: all .3s ease;
  --font12: .75rem;
  --font13: .813rem;
  --font14: .875rem;
  --font16: 1rem;
  --font18: 1.125rem;
  --font20: 1.25rem;
  --font28: 1.75rem;
  --font30: 1.875rem;
  --font32: 2rem;
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: var(--font16);
  font-family: "Mulish", sans-serif;
  color: var(--black);
  font-weight: 400;
  background-color: #F7FFFD;
}

a{
  color: var(--black);
  text-decoration: none !important;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
p{
  color: var(--textclr);
}
h1, h2, h3, h4, h5, h6{
  font-weight: 400;
  color: var(--black);
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
  color: var(--green);
}
ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
  }
}


.cmtop{
  padding-top: 120px !important;
}

@media (max-width: 1366px) {
  .cmpad {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cmpad {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cmpad {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cmtop{
    padding-top: 90px !important;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
  .cmtop{
    padding-top: 80px !important;
  }
}


@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: #333;
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--green);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--gradient);
  }
}

.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: rgb(0 0 0 / 5%);
}
.custscrollA::-webkit-scrollbar-track {
  background: transparent;
}
.custscrollA::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 6px;
}
.custscrollA::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}


.btn-group {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  gap: 10px;
}
.btn-group .btn {
  flex: none;
}
.btn{
  padding: 10px 20px;
  min-height: 44px;
  min-width: 44px;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  font-weight: 600;
  background-color: transparent;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.btn-lg{
  padding: 12px 25px;
}

.btn-primary{
  background-color: var(--green);
  background: var(--gradient);
  color: #fff;
  background-size: 100%;
}
.btn-primary:hover{
  background-size: 250%;
  box-shadow: 4px 6px 20px rgb(35 159 95 / 40%);
}
.btn-primary img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.btn-secondary{
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-white{
  background-color: #fff;
  color: var(--black);
  border: 1px solid #eee;
}
.btn-secondary:hover,
.btn-white:hover{
  background-color: var(--green);
  color: #fff;
}
.btn-outline{
  color: var(--black);
  border: 1px solid var(--black);
  background-color: transparent;
}
.btn-outline:hover{
  background-color: var(--black);
  color: #fff;
}
.btn-secondary:hover img,
.btn-white:hover img,
.btn-outline:hover img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  color: #fff;
}

.btn .break{
  display: flex;
  flex-direction: column;
}
.btn .small{
  font-size: var(--font12);
  line-height: normal;
  font-weight: 500;
}

.redbtn{
  background-color: #D70006;
  background: var(--grad1);
  color: var(--white);
  background-size: 100%;
}
.bluebtn{
  background-color: #1982C4;
  background: var(--grad5);
  color: var(--white);
  background-size: 100%;
}
.bluebtn:hover, .redbtn:hover{
  background-size: 250%;
}
.rounded{
  border-radius: 50% !important;
}
.new{
  background-color: #E79500;
  background: linear-gradient(120deg, #E79500 0%, #E7066C 100%);
  font-size: var(--font12);
  color: var(--white);
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-flex;
  margin-right: 6px;
}

.grad1{
  background: var(--grad1);
}
.grad2{
  background: var(--grad2);
}
.grad3{
  background: var(--grad3);
}
.grad4{
  background: var(--grad4);
}
.grad5{
  background: var(--grad5);
}
.grad6{
  background: var(--grad6);
}

.font12{
  font-size: var(--font12)!important;
}
.font14{
  font-size: var(--font14)!important;
}
.font16{
  font-size: var(--font16)!important;
}
.font18{
  font-size: var(--font18)!important;
}

.social{
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}
.social a{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
}
.social a:hover{
  background-color: var(--green);
  background-image: var(--gradient);
}
.social a img{
  max-height: 18px;
}
.social a:hover img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.morebtn{
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: #15653c;
  cursor: pointer;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
}
.morebtn:after{
  content: '';
  display: flex;
  width: 12px;
  height: 8px;
  background-image: url(../img/icons/right.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.morebtn:hover:after{
  animation: moveRight 1s infinite;
}

h2.mainhead{
  font-weight: 500;
  font-size: var(--font30);
}
h2.mainhead span{
  font-weight: 700;
}
.bighead{
  font-size: 2.5rem;
}
.caption{
  font-size: var(--font18);
}

.posrel{
  position: relative !important;
}

.regular{
  font-weight: 400 !important;
}
.semibold{
  font-weight: 600 !important;
}
.bold{
  font-weight: 700 !important;
}
.green{
  color: var(--green);
}

.headcol{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.headcol *{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  font-weight: 600;
}


@media(max-width:767px){
  .bighead{
    font-size: 2rem;
  }
}



@keyframes moveRight{
  0%{
      transform: translateX(0px);
      -webkit-transform: translateX(0px);
  }
  50%{
      transform: translateX(5px);
      -webkit-transform: translateX(5px);
  }
  100%{
      transform: translate(0px);
      -webkit-transform: translate(0px);
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
@keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}


/*PULSE*/
@keyframes pulse {
from {
  -webkit-transform: scale3d(.25, .25, .25);
  transform: scale3d(.25, .25, .25);
}

50% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

to {
  -webkit-transform: scale3d(.25, .25, .25);
  transform: scale3d(.25, .25, .25);
}
}

@keyframes pulsemd {
  from {
    -webkit-transform: scale3d(.75, .75, .75);
    transform: scale3d(.75, .75, .75);
  }
  
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  
  to {
    -webkit-transform: scale3d(.75, .75, .75);
    transform: scale3d(.75, .75, .75);
  }
  }

@keyframes rotate {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(.75);
  }
  to {
    transform: rotate(0deg) scale(1);
  }
  }

.animate_pulse{
  animation: pulse 10s infinite;
}
.animate_pulsemd{
  animation: pulsemd 12s infinite;
}
.animate_rotate{
  animation: rotate 15s infinite;
}


/*::::::::::::::::ELEMENT:::::::::::::::::*/
.element{
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.element.bottom{
  bottom: 0;
}
.element.left{
  left: 0;
}
.element.right{
  right: 0;
}
.element.top{
  top: 0;
}
.element.middle{
  top: 50%;
}
.element.center{
  left: 50%;
}

@media(max-width:575px){
  .element.round{
    width: 200px;
    height: 200px;
  }
}




/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgb(255 255 255 / 50%);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 20px rgb(0 0 0 / 5%);
}
header.active{
  background-color: rgb(255 255 255 / 100%);
}
header .logocol{
  max-width: 330px;
  min-width: 220px;
}
header .logocol a{
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .logocol a img {
  height: 100px;
  object-fit: contain;
  object-position: left;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
}
header.active .logocol a img{
  height: 50px;
}
header .menucol{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
header .menulist {
  display: flex;
  gap: 15px;
  align-items: center;
  height: 100%;
  position: relative;
}
header .menuright{
  display: flex;
  align-items: center;
  gap: 15px;
  height: 50px;
  opacity: 1;
  position: relative;
  transition: all .3s linear;
  -webkit-transition: all .3s linear;
}
@media(min-width:992px){
header.active .menuright{
  height: 0;
  overflow: hidden;
  margin-top: 0 !important;
  opacity: 0;
}
}
header .menuright li{
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
}
header .menuright li:not(:first-child)::before{
  content: '';
  width: 1px;
  height: 30px;
  background-color: #000;
  opacity: .1;
  position: absolute;
  left: 0;
}
header .menuright li img{
  height: auto;
}
header .menuright .btn{
  height: 50px;
  min-width: 50px;
  white-space: nowrap;
  font-weight: 700;
}
header .menuright .accessbtn{
  border: 1px solid rgb(0 0 0 / 10%);
}
header .menuright .accessbtn.active{
  background-color: var(--black);
}
header .menuright .accessbtn.active img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
header .gradbtn{
  background-color: #D70006;
  background: linear-gradient(120deg, #FF595E 0%, #D70006 40%, #FF595E 70%, #D70006 100%);
  background-size: 400% 400%;
  animation: gradient 3s ease infinite;
}
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

header .normalmenu{
  position: relative;
}
header .megamenu .mainli{
  display: flex;
  height: 30px;
  font-weight: 500;
  align-items: center;
  position: relative;
  padding: 0;
  border: none;
  outline: 0;
  color: var(--black);
  background-color: transparent;
}
header .megamenu:hover a.mainli,
header .megamenu.active a.mainli,
header .megamenu.active:hover a.mainli{
  color: var(--green) !important;
}
header .menubtn{
  border: none;
  outline: 0;
  background-color: transparent;
  padding: 0;
  min-width: 24px;
}
header .menubtn img{
  filter: brightness(0) opacity(.8);
  -webkit-filter: brightness(0) opacity(.8);
}
header .menubtn:hover img{
  filter: brightness(1) opacity(1);
  -webkit-filter: brightness(1) opacity(1);
}
header .megamenu-content {
  display: flex;
  align-items: center;
  position: absolute;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  border: none;
  z-index: 99;
  height: 0;
  padding: 0 15px;
  overflow: hidden;
  right: 0;
  box-shadow: 15px 20px 20px var(--green20);
  line-height: 1.4;
  border-radius: 6px;
}
header .normalmenu .megamenu-content{
  right: -15px;
  width: max-content;
  max-width: none;
  min-width: 200px;
}
header .megamenu:hover .megamenu-content {
  height: auto;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  animation-name: zoomIn;
  animation-duration: .4s;
  animation-iteration-count: 1;
}
header .megamenu .megalist{
  display: flex;
  flex-direction: column;
}
header .normalmenu .megalist li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
header .megamenu .megalist li a{
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: var(--textclr);
}
header .megamenu .megalist li a:hover{
  color: var(--green);
}
header .megamenu .megalist li a img{
  filter: brightness(0) opacity(.3);
  -webkit-filter: brightness(0) opacity(.3);
}
header .megamenu .megalist li a:hover img{
  filter: brightness(0) opacity(.75);
  -webkit-filter: brightness(0) opacity(.75);
}

header .iconmenu{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  max-height: 330px;
  overflow-y: auto;
}
header .iconmenu li{
  flex: 1 0 25%;
  padding: 5px;
}
header .iconmenu li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  gap: 5px;
  border: 1px solid #eee;
  border-radius: .3rem;
  height: 100%;
  justify-content: center;
  text-align: center;
  font-size: var(--font14);
  font-weight: 500;
  color: var(--textclr);
  line-height: normal;
}
header .iconmenu li a:hover{
  color: var(--green);
  border-color: var(--green20);
  background-color: var(--green10);
}
header .iconmenu li a .icon {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
header .iconmenu li a img{
  transition:var(--trans30);
  -webkit-transition:var(--trans30);
}
header .iconmenu li a:hover img{
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.mobilenav{
  position: fixed;
  bottom: 1rem;
  z-index: 998;
  background-color: #fff;
  width: 180px;
  max-width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  padding: 3px 10px;
  border-radius: 3rem;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  animation: zoomIn 1s 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobilenav.hidden {
  opacity: 0;
  visibility: hidden;
}
.mobilenav .navmenu {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.mobilenav .btn-outline{
  border: none;
}
.mobilenav .btn-outline img{
  filter: brightness(0) opacity(.75);
  -webkit-filter: brightness(0) opacity(.75);
}
.mobilenav .btn-outline:hover img{
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}
.mobilenav .focus{
  box-shadow: 0 0 0 5px var(--green20);
  transform: scale(1.1) translateY(-10px);
}


.flexVcenter{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-right{
  text-align: right!important;
}

.h-auto .swiper-slide{
  height: auto;
}



@media(max-width:991px){
  header .menuright li:not(:last-child){
    padding-left: 0;
  }
  header .menuright li:not(:last-child)::before{
    display: none;
  }
}

@media(max-width:767px){
  header .logocol a img{
    height: 70px;
  }
}

@media(max-width:575px){
  header .logocol a img{
    height: 60px;
  }
  header .menuright{
    gap:10px
  }
  header .menuright li{
    padding-left: 10px;
  }
  header .menuright .btn {
    height: 44px;
    min-width: 44px;
  }
  .inpage .mobilenav{
    display: none !important;
  }
}

@media(max-width:330px){
  header .menuright{
    gap: 6px;
  }
  header .menuright li{
    padding-left: 6px;
  }
}




/*::::::::::::::::SEARCH:::::::::::::::::*/
.closebtn{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: none;
  border-radius: 50%;
  border-top-right-radius: .5rem;
  background-color: #deefec;
  transition:var(--trans30);
  -webkit-transition:var(--trans30);
}
.closebtn:hover{
  background-color: var(--white);
  box-shadow: -2px 4px 10px var(--green20);
}
.srchform input{
  flex: 1;
  height: 50px;
}
.charlist,
.listlabel{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.charlist li{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font14);
  font-weight: 600;
  color: var(--textclr);
  box-shadow: 2px 3px 10px rgb(0 0 0 / 5%);
  cursor: pointer;
  transition:var(--trans30);
  -webkit-transition:var(--trans30);
}
.charlist li:hover{
  background-color: var(--green);
  color: var(--white);
}
.charlist li[disabled], .charlist li[disabled]:hover{
  background-color: #f5f5f5;
  color: var(--textclr);
  box-shadow: none;
  cursor: no-drop;
}
.listlabel li{
  display: flex;
  padding: 5px 10px;
  border-radius: .5rem;
  border: 1px solid var(--green20);
  font-size: var(--font14);
  color: var(--textclr);
  cursor: pointer;
  transition:var(--trans30);
  -webkit-transition:var(--trans30);
}
.listlabel li a{
  color: var(--textclr);
}
.listlabel li a:hover{
  color: var(--green);
}

@media(max-width:575px){
  .listlabel{
    gap: 6px;
  }
  .listlabel li{
    padding: 3px 8px;
  }
}





/*::::::::::::::::ACCESSIBILITY:::::::::::::::::*/

.accessbox{
  background-color: #fff;
  border-radius: .5rem;
  border: 1px solid #eee;
  position: absolute;
  z-index: 1;
  width: 300px;
  left: 0;
  transform: translateX(-20%);
  top: 100%;
  margin: auto;
  padding: 20px;
  display: none;
  box-shadow: 15px 20px 20px var(--green20);
}
.accessbox .hdbox{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.accessbox .hdbox .head{
  font-weight: 700;
  font-size: var(--font16);
  color: var(--black);
  margin: 0;
}
.accessbox .hdbox .closebtn{
  width: 28px;
  height: 28px;
}
.accessbox .acclist{
  display: flex;
  flex-flow: wrap;
  font-size: var(--font13);
  gap: 15px;
}
.accessbox .accbtn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--green10);
  font-weight: 600;
  color: var(--textclr);
  border-radius: .5rem;
  padding: 15px 0;
  gap: 5px;
  width: 120px;
  cursor: pointer;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.accessbox .accbtn:hover{
  background-color: var(--green10);
}
.accessbox .accbtn.active{
  box-shadow: 0 0 0 2px var(--green50);
}
.accessbox .accbtn.active img{
  transform: scale(1.1);
}
.acclink{
  display: flex;
  flex-direction: column;
  font-size: var(--font13);
  margin-top: 15px;
}
.acclink li{
  border-top: 1px solid rgb(0 0 0 / 5%);
}
.acclink li a{
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--textclr);
  height: 40px;
  position: relative;
}
.acclink li a:hover{
  color: var(--red);
}
.acclink li a:after{
  content: '';
  position: absolute;
  right: 0;
  right: 0;
  border-left: 5px solid var(--black);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  opacity: .5;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.acclink li a:hover:after{
  opacity: 1;
}


.mobiaccess{
  position: fixed;
  z-index: 998;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem 1rem 0 0;
}

@media(max-width:991px){
  .accessbox{
    transform: translateX(-25%);
  }
}

@media(max-width:575px){
  .accessbox{
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    width: 432px;
    max-width: 100%;
    bottom: 0;
    border-radius: 2rem 1rem 0 0;
    box-shadow: 0 -10px 20px var(--green20);
  }
  .accessbox .acclist{
    gap: 10px;
  }
  .accessbox .accbtn{
    flex: 1 0 calc(33.333% - 10px);
    padding: 8px 5px;
  }
  .accessbox .hdbox .closebtn{
    top: 10px;
    right: 10px;
  }
  .accessbox .accbtn img {
    width: 20px;
    height: 20px;
  }
}



/*::::::::::::::::SIDEMENU:::::::::::::::::*/

.sidebar {
  width: 350px;
  max-width: calc(100% - 1rem);
  height: calc(100vh - 2rem);
  position: fixed;
  z-index: 999;
  border-radius: 1rem;
  top: 1rem;
  right: 1rem;
  background-color: rgb(255 255 255 / 96%);
  backdrop-filter: blur(2px);
  padding: 1rem;
  transform: translateX(calc(100% + 1rem));
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.sidebar.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  box-shadow: -15px 5px 20px rgb(0 0 0 / 10%);
}
.bgoverlay{
  content: '';
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--green50);
  background: linear-gradient(90deg, rgb(35 158 95 / 0%) 0%, #158A8A 40%, #0572BC 100%);
  opacity: 0;
  cursor: zoom-out;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.bgoverlay.active{
  width: 100%;
  opacity: .5;
}

.sidebar .sidecont{
  overflow: hidden;
  height: 100%;
  overflow-y: auto;
}
.sidebar .head{
  font-weight: 700;
  color: var(--black);
  font-size: var(--font18);
}
.sidebar .sidelist{
  display: flex;
  flex-direction: column;
}

.sidebar .sidelist a{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--textclr);
  font-weight: 500;
  border-radius: .5rem;
  border-bottom: 1px solid var(--green10);
}
.sidebar .sidelist a:hover{
  color: var(--green);
}
.sidebar .sidelist a .icon img {
  filter: brightness(0) opacity(0.3);
  -webkit-filter: brightness(0) opacity(0.3);
}
.sidebar .sidelist a:hover .icon img{
  filter: brightness(0) opacity(0.75);
  -webkit-filter: brightness(0) opacity(0.75);
}

.sidebar .sidelist .toggle-arrow {
  position: absolute;
  right: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/angledown.svg);
  background-size: contain;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.sidelist li.open > a .toggle-arrow {
  transform: rotateX(180deg); 
  -webkit-transform: rotateX(180deg); 
}

.sidebar .mobidrop {
  display: none;
  margin: 10px 0;
  padding: 0 15px;
  border-radius: .5rem;
  background: #fff;
  box-shadow: 0 10px 20px -15px rgb(0 0 0 / 20%);
}
.sidebar .sidelist li.open > .mobidrop {
  display: block;
}


@media(max-width:575px){
  .sidebar{
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 1rem 0 0 1rem;
  }
  .sidebar .closebtn{
    border-top-right-radius: 0;
  }
}





/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/
.slider {
  position: relative;
  width: 100%;
  background-image: url(../img/images/topbg.png);
  background-position: bottom center;
  background-size: cover;
  padding-bottom: 90px;
}

.slider .hdcol{
  flex: 1 0 150px;
  max-width: 150px;
  font-weight: 600;
  font-size: var(--font14);
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
@media(min-width:768px){
.slider .hdcol:after{
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 20px;
  background-color: rgb(0 0 0 / 10%);
}
}
.slider .hdcol span{
  font-weight: 700;
  font-size: var(--font18);
}
.slider .slmenucol{
  width: calc(100% - 150px);
}
.iconlink{
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
  padding: 8px 15px;
  background-color: #fff;
  border-radius: .5rem;
  border: 1px solid rgb(0 0 0 / 10%);
  font-size: var(--font14);
  font-weight: 600;
  line-height: normal;
}
.iconlink .icon{
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
}
.iconlink:hover{
  color: var(--green);
  border-color: var(--green50);
}

.colorlist>*:nth-child(6n+1) .icon,
.colorlist.reverse>*:nth-child(6n+6) .icon{
  background: var(--grad1);
}
.colorlist>*:nth-child(6n+2) .icon,
.colorlist.reverse>*:nth-child(6n+5) .icon{
  background: var(--grad2);
}
.colorlist>*:nth-child(6n+3) .icon,
.colorlist.reverse>*:nth-child(6n+4) .icon{
  background: var(--grad5);
}
.colorlist>*:nth-child(6n+4) .icon,
.colorlist.reverse>*:nth-child(6n+3) .icon{
  background: var(--grad3);
}
.colorlist>*:nth-child(6n+5) .icon,
.colorlist.reverse>*:nth-child(6n+2) .icon{
  background: var(--grad4);
}
.colorlist>*:nth-child(6n+6) .icon,
.colorlist.reverse>*:nth-child(6n+1) .icon{
  background: var(--grad6);
}

.hdcol .head{
  margin: 0;
}

.slider-con {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-flow: column;
  justify-content: center;
  max-width: 100%;
}
.mainslidebox{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  position: relative;
}
.slider .mainslider,
.slider .mainslider .swiper-slide,
.slider .mainslider .slideimg {
  border-radius: 20px 20px 130px 20px;
}
.slider .mainslider .slideimg,
.slider .mainslider .slideimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider .bigslide{
  max-width: 100%;
  width: 600px;
  height: 400px;
  margin: 0;
}

@media(min-width:1400px){
  .mainslidebox{
    align-items: normal;
    justify-content: space-between !important;
  }
  /*.slider .bigslide{*/
  /*  width: calc(100% - 280px);*/
  /*}*/
  .slider-con{
    width: 600px;
    max-width:100%;
  }
  .bookform{
    display: flex!important;
  }
}

@media(min-width:1200px) and (max-width:1399px){
  .bookBtn{
    display: flex!important;
  }
  .exploreBtn{
    display: none!important;
  }
}

@media(min-width:992px){
  .slider .bigslide{
    min-height: 400px !important;
  }
}

.slider h1 {
  font-weight: 900;
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--black);
}
.slider h1 span {
  font-weight: 600;
  font-size: var(--font20);
  display: inline-flex;
}
.sliderbtn{
  display: flex;
  gap: 20px;
}
.sliderbtn .btn{
  height: 50px;
}


.textgrad{
  color: var(--white);
  background: var(--green);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mainpagination{
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: auto !important;
  width: auto !important;
  padding: 8px 6px;
  background-color: #fff;
  border-radius: 20px;
  left: 15px !important;
  bottom: 15px !important;
}
.mainpagination .swiper-pagination-bullet{
  background-color: var(--black);
  opacity: .2;
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border: 1px solid rgb(255 255 255 / 20%);
  transition: all .75s linear;
  -webkit-transition: all .75s linear;
}
.mainpagination .swiper-pagination-bullet-active{
  background-color: var(--green);
  opacity: 1;
  background: var(--gradient);
  box-shadow: 0 0 0 2px rgb(255 255 255 / 25%);
}


.bookform{
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  min-width: 300px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bookform .head{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: var(--font18);
  justify-content: flex-end;
}
.formbox{
  background-color: #F6FFFD;
  padding: 20px;
  border-radius: 10px;
  box-shadow: -8px 10px 20px rgb(0 0 0 / 5%);
}

.slidebottom{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}
.appdown{
  display: flex;
  gap: 10px;
  width: 130px;
}
.appdown a:hover{
  color: var(--green);
}
.appdown a:hover img{
  transform: scale(1.1);
}
.updatemain{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 175px);
}
.updatemain .head{
  background: var(--grad6);
  color: var(--white);
  padding: 6px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font14);
  font-weight: 600;
  line-height: normal;
  border-radius: 8px 8px 0 0;
  margin-left: 20px;
}
.upslidemain{
  background-color: #fff;
  height: 46px;
  border-radius: 6px;
  font-size: var(--font14);
  padding: 14px 16px;
  border: 1px solid #eee;
  width: 100%;
}
.updateslide .swiper-slide{
  width: auto !important;
}
.updateslide a{
  color: var(--textclr);
  position: relative;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  line-height: normal;
  font-weight: 400;
}
.updateslide a:hover{
  color: var(--black);
}
.updateslide a .date{
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #1c644b;
  margin-right: 6px;
  font-size: var(--font12);
}
.updateslide a .date .dd{
  font-size: var(--font14);
  font-weight: 700;
}


@media(max-width:1200px){
  .slider{
    background-position: bottom left;
  }
  .slider-con{
    width: 700px;
    margin: auto;
    align-items: center;
    text-align: center;
  }
}


@media(max-width:991px){
  .mainslidebox{
    gap: 20px;
  }
  .bookform{
    position: relative;
  }
}


@media(max-width:767px){
.slider .hdcol{
  max-width: 100%;
  flex: auto;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.hdcol .head{
  display: flex;
  align-items: center;
  gap: 8px;
}
.updatemain{
  width: 100%;
}
}

@media(max-width:575px){
  .slider h1{
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .slider h1 span{
    font-size: var(--font18);
  }
  .sliderbtn{
    gap: 10px;
  }
  .sliderbtn .btn{
    padding: 10px 15px;
    height: 44px;
  }
  .slider .mainslider, .slider .mainslider .swiper-slide, .slider .mainslider .slideimg{
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 15px;
  }
  .upslidemain{
    height: auto;
    padding: 10px;
  }
  .iconlink{
    padding: 8px;
    gap: 6px;
  }
  .iconlink .icon{
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 6px;
  }
  .mainpagination{
    bottom: 6px !important;
    left: 6px !important;
    gap: 6px;
    padding: 6px 3px;
  }
  .mainpagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
  }
}




/* \\\\\\\\\\\\\\CARD////////////// */
.iconcard{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 20px rgb(0 0 0 / 5%);
  height: 100%;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.iconcard.list{
  flex-direction: row;
  height: auto;
}
.iconcard:hover{
  transform: scale(1.015);
  -webkit-transform: scale(1.015);
  box-shadow: 8px 10px 20px rgb(35 158 95 / 15%);
}
.noeffect .iconcard{
  box-shadow: none;
}
.noeffect .iconcard:hover{
  transform: none;
  box-shadow: none;
}
.nobg{background-color: transparent;}
.iconcard .icon,
.listbox .icon{
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 50%;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.iconcard:hover .icon{
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.iconcard .icon img,
.listbox .icon img{
  height: auto;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.iconcard .head,
.listbox .head,
.noeffect .iconcard:hover .head{
  color: var(--black);
  font-weight: 700;
  font-size: var(--font18);
  margin-bottom: 10px;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.iconcard:hover .head{
  color: var(--green);
}

.iconcard .desc,
.listbox .desc{
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--font14);
}

.iconcard p a:hover{
  color: var(--green);
}



.listbox{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.listbox .cardcont{
  flex: 1 0;
}


@media(max-width:575px){
  .iconcard{
    padding: 10px;
  }
  .iconcard .icon, .listbox .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 6px;
  }
  .iconcard .head, .listbox .head, .noeffect .iconcard:hover .head{
    font-size: var(--font16);
    margin-bottom: 6px;
  }
}




.services{
  margin-top: 0px;
  position: relative;
}




/* \\\\\\\\\\\\\\TABS////////////// */
.mytabs{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tablist{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tablist.has-scroll{
  flex-wrap: nowrap;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 1px;
  justify-content: flex-start;
}
.tablist .tabsbtn{
  background-color: var(--white);
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 30px;
  height: 38px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-weight: 600;
  font-size: var(--font14);
  color: var(--black);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.tablist.vertical .tabsbtn{
  justify-content: start;
  border-radius: 8px;
  padding: 12px 20px;
  height: auto;
}
.tablist .tabsbtn:hover{
  color: var(--green);
  border-color: var(--green50);
}
.tablist .tabsbtn.active{
  background-color: var(--green);
  background: var(--gradient);
  color: var(--white);
}

@media(max-width:575px){
  .tablist{
    gap: 5px;
  }
  .tablist .tabsbtn{
    padding: 0 12px;
    height: 32px;
  }
}

@media (max-width: 991px) {
  .hasaccordion .tab-content>.tab-pane {
    display: block;
    opacity: 1;
  }
}


.profilecard, .usercard{
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  height: 100%;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.usercard{
  gap: 0;
}
.profilecard .imgbox,
.usercard .imgbox{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 20px;
  height: 100%;
}
.usercard .imgbox{
  padding: 0;
}
.profilecard .imgbox::before,
.noeffect.profilecard:hover .imgbox::before{
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 50px 50px 15px 15px;
  background-color: var(--green);
  background: var(--gradient);
  opacity: .2;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.profilecard:hover .imgbox::before{
  opacity: 1;
}
.profilecard .imgbox .proimg,
.usercard .imgbox .proimg{
  border-radius: 50px 50px 15px 15px;
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
}
.usercard .imgbox .proimg{
  border-radius: 20px 60px 30px 30px;
  box-shadow: 0 0 0 5px rgb(0 0 0 / 5%);
}
.profilecard .profbtn{
  background-color: var(--white);
  border-radius: 30px;
  color: var(--black);
  font-size: var(--font14);
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: normal;
  gap: 5px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgb(0 0 0 / 10%);
  position: absolute;
  bottom: 10px;
  transform: scale(0);
  -webkit-transform: scale(0);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.profilecard .profbtn .icon{
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-color: red;
  background: var(--grad1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.profilecard .profbtn:hover{
  color: var(--green)
}
.profilecard:hover .profbtn{
  transform: scale(1);
  -webkit-transform: scale(1);
}
.profilecard .bookbtn{
  border: none;
  outline: 0;
  padding: 0;
  cursor: pointer;
}
.profilecard .boxcont,
.usercard .boxcont{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.usercard .boxcont{
  background-color: #fff;
  box-shadow: 4px 4px 20px rgb(0 0 0 / 5%);
  padding: 10px;
  border-radius: 30px 10px 10px 10px;
  margin-top: -25px;
  position: relative;
  gap: 0;
}
.profilecard .boxcont p,
.usercard .boxcont p{
  margin: 0;
}
.profilecard .boxcont .head,
.usercard .boxcont .head,
.noeffect.profilecard:hover .boxcont .head{
  font-weight: 700;
  font-size: var(--font16);
  color: var(--black);
  line-height: normal;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.profilecard .boxcont .desc,
.usercard .boxcont .desc{
  font-size: var(--font14);
}
.profilecard:hover .boxcont .head{
  color: var(--green);
}

@media(max-width:767px){
  .usercard .imgbox .proimg{
    border-radius: 10px 40px 20px 20px;
  }
}

@media(max-width:575px){
  .row-cols-2 .imgcard .imgbox img{
    height: 160px;
  }
}

@media(max-width:380px){
  .row-cols-xs-1>*{
    width: 100%;
  }
  .row-cols-2 .imgcard .imgbox img{
    height: 120px;
  }
  .row-cols-xs-1 .imgcard .imgbox img{
    height: 160px;
  }
}


.navibtn{
  width: 44px !important;
  height: 44px !important;
  border: 1px solid #eee;
  border-radius: 50%;
  background-color: var(--white);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.navibtn::after{
  font-size: var(--font14) !important;
  color: var(--green);
  font-weight: 600;
}
.navibtn:hover{
  border-color: var(--green20);
  background-color: #e2f5ed;
}
.navcol{
  display: flex;
  gap: 10px;
}
.navcol .navibtn{
  position: relative;
  right: auto;
  left: auto;
  margin: auto;
  top: auto;
  width: 36px !important;
  height: 36px !important;
}

@media(max-width:575px){
  .navibtn {
    width: 36px !important;
    height: 36px !important;
  }
}




/* IMAGE CARD */
.imgcard{
  display: flex;
  flex-flow: column;
  position: relative;
  padding-bottom: 10px;
  height: 100%;
}
.imgcard .date{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--font12);
  color: var(--white);
  font-weight: 500;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  background-color: rgb(5 114 188 / 75%);
  padding: 2px 8px;
  border-radius: 8px;
}
.imgcard .date .dd{
  font-size: var(--font16);
  font-weight: 700;
}
.imgcard .imgbox{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.imgcard .imgbox img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: auto;
  position: relative;
  z-index: 1;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.imgcard:hover .imgbox img{
  transform: scale(1.05) translateY(-5px);
}
.imgcard .imgcont p{
  margin: 0;
}
.imgcard .imgcont .head{
  font-weight: 600;
  color: var(--black);
  font-size: var(--font16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
  margin-bottom: 5px;
}
.imgcard .imgcont .desc{
  font-size: var(--font13);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.imgcard .morebtn{
  font-size: var(--font14);
}
.imgcard:hover .morebtn:after{
  animation: moveRight 1s infinite;
}


.imgcard.grid {
  flex-flow: row;
  padding: 0;
}
.imgcard.grid .imgbox {
  width: 80px;
  flex: 1 0 80px;
  margin: 0;
  border-radius: 6px;
}
.imgcard.grid .imgcont {
  margin: 0;
  border-radius: 0;
  padding: 0 0 0 15px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  background: transparent;
}
.imgcard.grid .imgcont .head {
  font-size: var(--font13);
}
.imgcard.grid .imgbox img {
  border-radius: 6px;
  height: 100%;
}
.imgcard.grid:hover .imgbox img{
  transform: scale(1.05);
}
.imgcard.grid .date {
  position: unset;
  width: 100%;
  padding: 0;
  font-size: var(--font12);
  background: none;
  color: var(--green);
}
.imgcard.grid .date .dd {
  font-size: var(--font16);
}



/* /////////////LOGO CARD\\\\\\\\\\\\\\\\ */
.logocard{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 6px;
  height: 80px;
}
.logocard img{
  height: 100%;
  object-fit: contain;
  object-position: center;
}


@media(min-width:768px){
.parthead{
  max-width: 160px;
}
.partcol{
  max-width: calc(100% - 160px);
}
}

@media(max-width:575px){
  .logocard{
    height: 60px;
  }
  .partnerslide{
    height: 130px;
  }
}



/* /////////////REVIEW CARD\\\\\\\\\\\\\\\\ */
.reviewcard{
  display: flex;
  flex-direction: column;
  position: relative;
}
.reviewcard::before{
  content: '';
  position: absolute;
  top: 20px;
  right: 60px;
  width: 70%;
  height: 1px;
  background-color: #000;
  opacity: .1;
}
.reviewcard .quote {
  display: block;
  margin-left: auto;
  margin-bottom: 20px;
}
.reviewcard .cardcont{
  background-color: rgb(255 255 255 / 50%);
  border: 1px solid var(--green20);
  border-radius: 10px;
  padding: 20px;
}
.reviewcard .cardhead{
  display: flex;
  gap: 15px;
  align-items: center;
}
.reviewcard .cardhead .userimg{
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 1px solid rgb(0 0 0 / 10%);
  overflow: hidden;
}
.reviewcard .cardhead .userimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewcard .cardhead .head{
  font-weight: 600;
  color: var(--black);
}
.reviewcard .cardcont .desc{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviewcard .cardcont.expanded .desc{
  -webkit-line-clamp: initial;
}

.testislide .navcol{
  position: absolute;
  bottom: 0;
  right: 0;
}

@media(max-width:991px){
  .reviewcard .quote{
    width: 30px;
  }
}

@media(max-width:575px){
  .reviewcard .cardhead{
    gap: 10px;
  }
  .reviewcard .cardhead .userimg{
    width: 44px;
    height: 44px;
  }
  .reviewcard .quote{
    margin-bottom: 10px;
  }
  .testislide .navcol{
    bottom: auto;
    right: auto;
    left: 60px;
    top: 3px;
  }
}



/*********ACCORDION***********/
.myaccordion {
  width: 100%;
}

.myaccordion .accordion-item {
  margin-bottom: .5rem; 
  border: 1px solid;
  border-color: #eee;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.myaccordion .accordion-button {
  background-color: var(--green);
  background: var(--gradient);
  color: var(--white);
  font-size: var(--font16);
  padding: 13px 15px;
  padding-left: 50px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: none;
  transition: .3s;
}
.myaccordion .accordion-button.collapsed{
  background: var(--white);
  color: var(--black);
}
.myaccordion .accordion-button.collapsed:hover {
  color: var(--green);
}
.myaccordion .accordion-button::after {
  width: 24px;
  height: 24px;
  background-image: url(../img/icons/angle-down.svg);
  background-size: contain;
  text-align: center;
  position: absolute;
  left: 15px;
}
.myaccordion .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icons/angle-down1.svg);
}
.myaccordion .accordion-body p:last-child{
  margin-bottom: 0;
}

@media(max-width:575px){
  .myaccordion .accordion-button{
    padding-left: 40px;
    font-size: var(--font14);
  }
  .myaccordion .accordion-button::after{
    left: 10px;
    width: 20px;
    height: 20px;
  }
}




/* \\\\\\\\\\\\\\OVERVIEW////////////// */
.overview:before{
  content: '';
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 500px;
  background-image: url(../img/images/midbg.svg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

@media(min-width:992px){
.highcol{
  max-width: 420px;
}
}

.highbox{
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 30px 10px;
  box-shadow: -8px 12px 20px rgb(58 169 255 / 10%);
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.counter .item{
  border: 1px solid rgb(58 169 255 / 20%);
  padding: 15px 10px;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.counter .item .count{
  font-weight: 800;
  font-size: var(--font20);
  margin-top: 5px;
}
.counter .item .name{
  font-weight: 600;
  color: var(--textclr);
  font-size: var(--font14);
}

@media(max-width:575px){
  .highbox{
    row-gap: 20px;
    padding: 20px 15px;
  }
}




/* \\\\\\\\\\\\\\CAREERS////////////// */
.careermain{
  background-image: url(../img/images/careerbg.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 0 1rem;
}
.careecont{
  padding-bottom: 110px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.careeimg{
  object-fit: cover;
  border-radius: 150px 50px 50px 150px;
  margin-top: -20px;
}




/* \\\\\\\\\\\\\\FOOTER////////////// */

footer{
  position: relative;
  background-image: url(../img/images/footbg.svg);
  background-position: top right;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 60px;
  color: var(--textclr);
  margin-top: -100px;
}
@media(max-width:767px){
  footer{
    background-image: url(../img/images/footbgsm.svg);
    background-position-x: left;
    margin-top: -50px;
  }
}
footer a,
footer p{
  color: var(--textclr);
}
footer a:hover{
  color: var(--green);
}
footer .footmid{
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  border-top: 1px solid rgb(0 0 0 / 10%);
  padding: 50px 0;
  margin-bottom: 40px;
}
footer .iconcard{
  background-color: transparent;
}
footer .inpbox{
  display: flex;
  gap: 10px;
}
footer .inpbox input{
  border-color: rgb(0 0 0 / 10%);
}
footer .myform.hasicon .frmicon{
  top: 15px;
}
footer .menuhead{
  font-weight: 600;
  color: var(--black);
  font-size: var(--font18);
}
footer .footmenu,
footer .footlink{
  display: flex;
  flex-flow: wrap;
  row-gap: 8px;
}
footer .footmenu{
  flex-direction: column;
}
footer .contcol p{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
footer .copy span{
  font-size: 1.15rem;
  display: inline-block;
  position: relative;
  top: 1px;
}
footer .power a:hover{
  color: var(--textclr);
}
footer .policy{
  gap: 10px 20px;
}

@media(max-width:1200px){
  footer{
    padding-top: 100px;
  }
}

@media(max-width:991px){
  footer{
    margin-top: -50px;
    padding-top: 50px;
  }
}

@media(max-width:767px){
  footer{
    padding-top: 30px;
  }
  footer .policy {
    gap: 5px 15px;
  }
}

@media(max-width:575px){
  footer{
    margin-top: -25px;
  }
}

@media(max-width:480px){
  .xs-hide{
    display: none!important;
  }
  }



/*---------------------------------------*/
/*::::::::::::::::FORM:::::::::::::::*/
/*---------------------------------------*/
.myform .inpbox{
  flex: 1 0 auto;
  text-align: left;
  max-width: 100%;
  position: relative;
}
.myform label {
  font-size: var(--font14);
  margin-bottom: 5px;
  color: var(--textclr);
  font-weight: 500;
}
.myform label span{
  color: red;
}
.myform .form-check{
  display: flex;
  gap: 3px;
  align-items: center;
}

.myform .textlink{
  width: 100%;
}
.myform .textlink button{
  font-weight: 600;
  border: none;
  background-color: transparent;
  outline: 0;
  padding: 0;
  color: var(--blue);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.myform .textlink button:hover{
  color: var(--green);
}
.myform input,
.myform textarea,
.myform select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 8px 15px;
  border-radius: 0.5rem;
  box-shadow: none;
  border: 1px solid #eee;
  background-color: transparent;
  outline: 0;
  color: var(--textclr);
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.myform input:focus,
.myform textarea:focus,
.myform select:focus {
  border-color: var(--green);
}
.myform input[readonly]:focus,
.myform textarea[readonly]:focus,
.myform select[readonly]:focus {
  border-color: #ddd;
}
.myform input[type='checkbox']{
  width: auto;
  margin: 0;
}
.myform textarea{
  height: 66px;
}
.myform .btn {
  padding: 10px 25px;
  height: 50px;
  min-width: auto;
}
.myform select {
  color: var(--textclr);
}
.myform ::-webkit-input-placeholder {
  color: var(--textclr);
  opacity: 0.5;
}
/* Hide HTML5 Up and Down arrows. */
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 42px;
    opacity: 0;
    -webkit-appearance: none;
}



.myform.hasicon input,
.myform.hasicon textarea,
.myform.hasicon select {
  padding-left: 40px;
}
.myform.hasicon .frmicon{
  position: absolute;
  top: 10px;
  left: 12px;
  pointer-events: none;
}


/* CUSTOM SELECT */
.select-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select-dropdown__button {
  width: 100%;
  margin-bottom: 1rem;
  padding: 8px 15px;
  border-radius: 0.3rem;
  box-shadow: none;
  border: 1px solid #eee;
  outline: 0;
  text-align: left;
  color: var(--textclr);
  background-color: transparent;
  transition: var(--trans30);
  -webkit-transition: var(--trans30);
}
.myform.hasicon .select-dropdown__button{
  padding-left: 40px;
}
.select-dropdown__button::focus {
  outline: none;
}
.select-dropdown__button .zmdi-chevron-down {
  position: absolute;
  right: 10px;
  top: 12px;
}
.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  margin-top: -17px;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  border-radius: .3rem;
  border: 1px solid #eee;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 2;
  box-shadow: -2px 6px 20px rgb(0 0 0 / 10%);
}
.select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}
.select-dropdown__list-item {
  display: block;
  list-style-type: none;
  padding: 10px 15px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: var(--font14);
  line-height: 1.4;
  cursor: pointer;
  color: #616161;
  transition: all ease-in-out 0.3s;
}
.select-dropdown__list-item:hover{
  color: var(--green);
}



/* \\\\\\\\\\\\\\MODAL////////////// */
.modal-content{
  border-radius: 1rem;
  border: none;
  box-shadow: 6px 8px 20px rgb(0 0 0 / 10%);
}
.modal-backdrop{    
  background-color: var(--green50);
  background: linear-gradient(90deg, rgb(35 158 95 / 100%) 0%, rgb(21 138 138 / 100%) 40%, rgb(5 114 188 / 100%) 100%);
}

.mymodal .profilecard{
  box-shadow: 5px 6px 20px var(--green10);
  border-radius: 1rem;
  margin-top: -50px;
  background: #fff;
  max-width: 300px;
  width: 100%;
}



.prtnrtxt{
    font-size: 1.5rem;
    line-height: 1.2;
}


@media(max-width:575px){
   .sidebar{
       backdrop-filter:none!important;
   } 
   .mainpagination .swiper-pagination-bullet{
 
  width: 10px!important;
  height: 10px!important;
  
}
.mainpagination{
    gap:10px!important;
    padding:6px  6px;
}
}



.myModal .modal-body {
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}
.myModal .btn-close {
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 0.5rem;
    background-color: #239e5f;
    z-index: 9;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 1;
    color: white;
    border: none;
}
.myModal .btn-close img {
    filter: brightness(0) invert(1);
}
@media (min-width: 576px) {
    .myModal .modal-dialog {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
}
.myModal .carousel-control-next-icon {
    background-image: url(../img/icons/next1.svg);
}
.myModal .carousel-control-prev-icon {
    background-image: url(../img/icons/prev1.svg);
}
.myModal .carousel-control-prev,
.myModal .carousel-control-next {
    opacity: 1;
}
.myModal .carousel-control-next:hover,
.myModal .carousel-control-next:hover {
    opacity: 1;
}

