body {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #344354;
  /* background-color: #7c2ae805; */
}
.ovhidden {
  overflow: hidden;
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-sharp,
.fa-solid,
.fab,
.far,
.fas {
  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;
}

img.loadimg {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
img.loadimg.fade {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

button {
  border: none;
  cursor: pointer;
  outline: 0;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  font-weight: 700;
}
.h4,
.h5,
.h6,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.4;
}

input {
  font-family: "Poppins", sans-serif;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 54px;
    padding-right: 54px;
  }
}
@media (max-width: 1366px) {
  .cmpad {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@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%;
  }
}

.mainhead {
  font-weight: 700;
  position: relative;
  color: #2a2a2a;
}
h3.mainhead {
  font-size: 1.3rem;
}
h4.mainhead {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 2.2rem;
  }
  .h2,
  h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 575px) {
  .h2,
  h2 {
    font-size: 1.5rem;
  }
  .h1,
  h1 {
    font-size: 2rem;
  }
}

@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;
  gap: 0.5rem;
}
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: 30px;
  height: 30px;
  /* line-height: 30px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 0.9rem;
  color: #173572;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
  color: #fff;  
  background: #3361ad;
}

p {
  margin-top: 0;
}

.flexVcenter {
  display: flex;
  flex-flow: wrap;
  align-content: center;
}

@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);
  }
}
@keyframes moveLeft {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
  50% {
    transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
  }
  100% {
    transform: translate(0px);
    -webkit-transform: translate(0px);
  }
}
@keyframes moveDown {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
    -webkit-transform: translateY(5px);
  }
  100% {
    transform: translate(0px);
    -webkit-transform: translate(0px);
  }
}
@keyframes moveUp {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*PULSE*/
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.textcontent p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
.homepage .logo2{
  display: none;
}
.inpage .logo1{
  display: none;
}
.inpage header.active .logo2{
display: none;
}
.inpage header.active .logo1{
  display: block;
}
header .headmain {
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
header .menutop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
  /* margin-bottom: 10px; */
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
header.active .menutop {
  overflow: hidden;
  height: 0;
}
header.active {
  background-color: white;
  box-shadow: 0px 3px 20px #0000001c;
}

header .menutop a {
  color: #333;
  font-size: 0.8rem;
  border-left: 1px solid #dbdbde;
  padding-left: 15px;
}
header .menutop a:first-child{
  border-left: none;
}

header .menutop .con-sec,
header .menutop .menu-sec {
  display: flex;
  gap: 15px;
}
.con-sec a,.menu-sec a{
  transition: .3s;
}
.con-sec a:hover,.menu-sec a:hover{
color: #092f79;
}
header .menutop i {
  color: #1650c4;
}

header .headmain .logocol {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  z-index: 1;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}
header.active .headmain .logocol{
  width: 200px;
}
header .headmain .logocol a {
  width: 100%;
  display: flex;
}
header .headmain .logocol a img {
  width: 100%;
}
header .headmain .menucol {
  flex: 1 0;
}
header .menubottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  height: 100%;
  position: relative;
  /* padding-right: 40px; */
}

header .con-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .con-menu .head-icon {
  width: 40px;
  height: 40px;
  background: #1650c4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: white;
}

header .con-menu .num p {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #666;
}
header .con-menu .phone {
  color: black;
  font-size: 0.9rem;
  font-weight: 600;
}
header .con-menu .num {
  padding-right: 30px;
  border-right: 1px solid #00000021;
}
.header-btn {
  /* background: linear-gradient(90deg, #2abbd9, #7d27e8);*/ 
  padding: 8px 23px;
  border-radius: 0.3rem;
  color: white;
  font-size: 0.9rem; 
  background: #1650c4;
  background-size: 300%;
  color: #fff;
  border: none;
  background-position: left center;    
}
.header-btn:hover{
  background: #092f79;
}
/* 
header .megamenu {
  height: 100%;
}
header .megamenu a.mainli {
  color: #333;
  display: flex;
  height: 40px;
  align-items: center;
  font-weight: 500;
  font-size: .95rem;
  color: #333;
}
header .megamenu:hover a.mainli {
  color: #0a8bfe;
}
header .megamenu a.enqbtn {
  padding: 0 25px;
  height: 50px;
  margin-top: 10px;
}
header .megamenu a.enqbtn:hover {
  color: #fff;
} */
header .menubtn {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  padding: 0 15px;
  background-color: rgb(0 0 0 / 30%);
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: .3s;
}
.dropbtn:hover{
  color: #092f79;
}
.dropdown:hover .dropbtn{
  color: #092f79;
}
.dropbtn{
  color: #333;
  display: flex;
  height: 40px;
  align-items: center;
  font-weight: 500;
  font-size: .95rem;  
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 8%);
  z-index: 1;
  border-radius: 0.3rem;
  font-size: .85rem;
  overflow: hidden;
  left: -10px;
  /* margin-top: 10px; */
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #dee5f7;
    color: #1650c4;
}

.dropdown:hover .dropdown-content {display: block;}








@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.mobsidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  /* width: 300px; */
  z-index: 999;
  background-color: #fff;
  /* padding: 15px; */
  box-shadow: -2px 2px 20px rgb(0 0 0 / 25%);
  /* display: none; */
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
  overflow: hidden;

}
.mobsidebar.active {
  display: block;
  padding: 15px;
  width: 300px;
}
.moblogo {
  margin-bottom: 1.5rem;
  position: relative;
}
.moblogo img {
  width: 220px;
}
.mobx {
  background-color: rgb(0 188 212 / 70%);
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0.5rem 1rem;
  right: 0;
  top: 8px;
}
.mobx:hover {
  background-color: rgb(0 188 212 / 100%);
}
.mobmenu {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
}
.mobmenu li a {
  display: flex;
  color: #344354;
  padding: 8px 10px;
  box-shadow: 0 0 0 1px rgb(0 188 212 / 10%);
  border-radius: 0.5rem;
}
.mobmenu li a:hover {
  background-color: rgb(0 188 212 / 10%);
}
.mobsidebar ul.social li a i {
  color: #fff;
  background-color: #00bcd4;
  border-radius: 0.5rem 1rem;
}
.mobsidebar ul.social li a:hover i {
  color: #fff;
}
.mobhead {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  opacity: 0.75;
}
.mobnumber {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.mobnumber .btns {
  display: flex;
  gap: 0.5rem;
}
.mobnumber a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 28px;
  padding: 0 10px;
  font-size: 0.85rem;
  color: #fff;
  border-radius: 0.5rem 1rem;
  background-color: red;
}
.mobnumber a i {
  margin-right: 5px;
}
.mobnumber a.chat {
  background-color: #25d366;
}
.mobnumber a.call {
  background-color: #8bc34a;
}

@media (max-width: 575px) {
  header .megamenu a.enqbtn {
    min-width: auto;
    padding: 0 16px;
    font-size: 20px;
  }
}

@media (max-width: 440px) {
  header .menubtn {
    width: 40px;
    padding: 0 12px;
  }
  header .megamenu a.enqbtn {
    padding: 0 12px;
    font-size: 18px;
  }
  header .menubottom {
    gap: 0.5rem;
  }
}

/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  /* min-height: 400px; */
  /* max-height: 950px; */
  display: flex;
  flex-flow: wrap;
  align-items: center;
  padding-top: 70px;
  /*background-color: #7c2ae805;*/
  background-color: #1650c414;
}
.slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/images/slideover.svg);
  background-position: center;
  background-size: cover;
  opacity: 0.05;
}
.slider .slideimg {
  position: relative;
}
.slider .slideimg img {
  border-radius: 35% 60% 36% 63% / 32% 47% 47% 63%;
  width: 450px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.slider .slideimg::before {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  background-color: #1650c421;
  border-radius: 69% 60% 71% 88% / 65% 60% 70% 72%;
  left: 0;
  right: 0;
  margin: auto;
  /* animation: rotate-center 20s linear infinite both; */
}
.slider .slideimg::after {
  position: absolute;
  content: "";
  width: 440px;
  height: 440px;
  border: 0.125rem solid #534fea94;
  border-radius: 35% 60% 36% 63% / 32% 50% 50% 63%;
  left: 0;
  right: -60px;
  margin: auto;
  top: 18px;
  z-index: 2;
  
}
@keyframes rotate-center{
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
.slidercont {
  /*    color: #fff;*/
  line-height: 3rem;
}
.slidercont h4 {
  opacity: 0.75;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  display: flex;
  align-items: center;
  /* text-transform: uppercase; */
}
.slidercont h4:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #1650c4;
  margin-right: 0.5rem;
}
.slidercont span {
  color: #1650c4;
}
.slidercont h1 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.slidercont a.btn {
  height: 50px;
}
.slfollow .social {
  align-items: center;
}
.slfollow .social:after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #fff;
  margin-left: 5px;
  opacity: 0.5;
}

.scrollbtn {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  display: flex;
  flex-flow: column;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 2px;
  width: 28px;
  height: 46px;
  border: 1px solid;
  border-radius: 0.5rem 1rem;
}
.scrollbtn span:first-child {
  margin-left: -36px;
}
.scrollbtn:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 15px;
  width: 2px;
  height: 12px;
  background-color: #fff;
  animation: moveDown 1s infinite;
}
.scrollbtn:hover:after {
  animation: none;
}
.slaction {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  position: absolute;
  right: 1rem;
  bottom: 2rem;
}
.slaction:after {
  content: "";
  display: flex;
  width: 1px;
  height: 60px;
  background-color: #fff;
  margin-top: 5px;
  opacity: 0.75;
}
.slaction a {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #00bcd4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slaction a.chat {
  background-color: #25d366;
}
.slaction a.call {
  background-color: #00bcd4;
}
.slaction a:hover {
  box-shadow: 0 0 0 5px rgb(255 255 255 / 20%);
}

@media (max-width: 1200px) {
  .slider {
    max-height: 680px;
  }
}

@media (max-width: 991px) {
  .slider {
    max-height: 550px;
  }
  .slidercont h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .slider {
    max-height: 100%;
    /* min-height: 100vh; */
    height: 100%;
  }
  .slider .slideimg {
    width: 400px;
  }
  .scrollbtn {
    right: 1.1rem;
  }
  .slaction {
    bottom: auto;
    top: 25%;
  }
  .slaction a {
    width: 36px;
    height: 36px;
  }
  .slaction:after {
    height: 40px;
  }
  .slfollow .social:after {
    width: 60px;
  }
}

.home-slider {
  max-width: 700px;
  width: 100%;
  position: absolute;
  bottom: 30px;
  /* left: 30px; */
  /* background: red; */
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-slider h5 {
  font-size: 1rem;
  color: #8d8d8d;
}

.home-slider span {
  font-weight: 600;
  color: #333;
}
.home-sec1 {
  width: 100px;
}
.home-sec2 {
  width: calc(100% - 100px);
}
.home-sec2 img {
  width: 300px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  transition: 0.3s;
}
.home-sec2 img:hover {
  filter: grayscale(0);
}

/*---------------------------------------*/
/*::::::::::::::::::SERVICES::::::::::::::*/
/*---------------------------------------*/

.subhead {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1650c4;
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  margin-bottom: 0.5rem;
}
.subhead span {
  font-weight: 100;
  color: black;
  opacity: 0.7;
}
.service-box {
  padding: 10px;
  border: 1px solid #0000001c;
  border-radius: 0.3rem;
  background: white;
  transition: 0.3s;
  cursor: pointer;
  min-height: 215px;
}
.service-box:hover {
  border: 1px solid #1650c48c;
}

h2.mainhead span {
  font-weight: 500;
  color: #606062;
}

/* .service-box .head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
} */
.service-box .head div {
  background: -webkit-linear-gradient(#2abbd9, #7d27e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.service-box .head h5 {
  margin-bottom: 0;
  font-size: 1.3rem;
}

/* .service-box img {
  margin-bottom: 10px;
  border-radius: .3rem;
} */
.service-box a {
  font-size: 0.95rem;
  color: #2d7be8;
  font-weight: 500;
  transition: .3s;
}
.service-box a:hover{
  color: #615ae3;
}
.ser-img{
  overflow: hidden;
  border-radius: .3rem; 
  margin-bottom: 10px; 
}
.service-box:hover .ser-img img{
transform: scale(1.1);
}
.service-box{
  height: 100%;
}

/*---------------------------------------*/
/*::::::::::::::::::ABOUT::::::::::::::*/
/*---------------------------------------*/

.about {
  background-color: #fcfbff;
}

.abtimg .main-img {
  width: 500px;
  border-radius: 0.8rem;
}
.abtimg .crown {
  width: 45px;
  margin: auto;
}
.experi {
  background: white;
  padding: 15px 15px;
  box-shadow: 0px 0px 20px #00000017;
  max-width: 200px;
  border-radius: 0.5rem;
  position: absolute;
  top: -40px;
  left: -100px;
  text-align: center;
}
.experi .para2 {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 0.8rem;
}
.experi .para1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #1650c4;
}
.abt-sec {
  display: flex;
  gap: 1rem;
}
.abt-sec1 {
  width: 60px;
  height: 60px;
  /* background: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0px 10px 20px #0000001c;
}
.abt-sec2 {
  width: calc(100% - 60px);
}
.abt-sec1 img {
  width: 35px;
}
.abt-sec2 h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.abt-sec2 p {
  line-height: 1.3;
}

/*---------------------------------------*/
/*::::::::::::::::::FEATURES::::::::::::::*/
/*---------------------------------------*/

.mylist {
  display: flex;
  flex-flow: column;
}
.mylist li {
  margin: 5px 0;
  position: relative;
  padding-left: 25px;
  opacity: 0.85;
  /* line-height: 1.6; */
  /* margin-bottom: 8px; */
  font-size: 0.95rem;
  color: #344354;
}
.mylist li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 1rem;
  /* background: -webkit-linear-gradient(#2abbd9, #7d27e8); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  color: #1650c4;
  position: absolute;
  left: 0;
}
.feature {
  width: 600px;
  margin: auto;
}

/*---------------------------------------*/
/*::::::::::::::::::TESTIMONIALS::::::::::::::*/
/*---------------------------------------*/
.testi-box {
  padding: 10px;
  border: 1px solid #0000001c;
  border-radius: 0.3rem;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  /* background-color: #dff0ff; */
}
.testi-box img {
  width: 60px;
  border-radius: 50px;
  margin: auto;
  margin-bottom: 15px;
}
.testi-box .para-con {
  text-align: center;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 35px;
  font-size: 0.85rem;
  position: relative;
}
.testi-box .para-con:after {
  position: absolute;
  width: 50px;
  height: 3px;
  content: "";
  background-color: #317ee8;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -18px;
  border-radius: 0.3rem;
}
.testi-box h5 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #1650c4;
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.testi-box .desig {
  font-size: 0.7rem;
  color: #a6a6a6;
  margin-bottom: 0;
}
.testi-box:hover {
  border: 1px solid #2d7be8b7;
}
.testi-box .fa-quote-right {
  position: absolute;
  bottom: -6px;
  /* background: red; */
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  left: 0;
  right: -38px;
  border-radius: 50px;
  background: #1650c4;
  color: white;
}

/*---------------------------------------*/
/*::::::::::::::::::FAQ::::::::::::::*/
/*---------------------------------------*/
.myaccordion {
  width: 100%;
}

.myaccordion .accordion-item {
  margin-bottom: 0;
  border: unset;
  border-bottom: 0.09rem solid #ddd;
  /* border-color: transparent; */
  border-radius: unset;
  overflow: hidden;
}

.myaccordion .accordion-button {
  background-color: rgb(80 145 235 / 18%);
  color: #5091eb;
  padding: 18px;
  border-radius: unset;
  box-shadow: none;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
  border-radius: unset !important;
}
.myaccordion .accordion-button.collapsed {
  background-color: white;
  color: #333;
  border-radius: unset !important;
}
.myaccordion .accordion-button:hover {
  background-color: rgb(80 145 235 / 27%);
  color: #5091eb;
}
.accordion-body {
  background: #dfebfb;
}

.myaccordion .accordion-button::after {
  color: #666;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  /* border: 1px solid rgb(0 150 136 / 30%); */
  border-radius: 0.5rem;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0.9rem;
  background: none;
  text-align: center;
  transition: 0.3s;
}
.myaccordion .accordion-button:hover:after {
  color: #5091eb;
}

.myaccordion .accordion-button:not(.collapsed)::after {
  transform: rotateX(180deg);
  color: #5091eb;
}

/*---------------------------------------*/
/*::::::::::::::::::ENQIURY::::::::::::::*/
/*---------------------------------------*/

.en-bag {
  background: linear-gradient(90deg, #154dbc, #3578ff);
  position: relative;
}
.en-bag img{
  width: 500px;
  position: absolute;
  opacity: .8;
  top: 50%;
  /* bottom: 50%; */
  transform: translateY(-50%);
}
.en-bag h2,
.en-bag span {
  color: rgb(255 255 255 / 95%) !important;
}
.en-bag .subhead {
  background: -webkit-linear-gradient(#ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
input,
select,
textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 0.3rem;
  border: unset;
  font-size: 0.8rem;
  margin-bottom: 15px;
  background: rgb(255 255 255 / 95%) !important;
  color: #666;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.en-bag .header-btn {
  background: black;
  padding: 10px 25px;
  transition: .3s;
}
.en-bag .header-btn:hover{
  background: #072d77;
}
.en-bag h5 a{
  color: white !important;
}
.en-bag h4{
  color: white;
    font-size: 1.3rem;
}
.add-sec p{
  color: rgb(255 255 255 / 85%) !important;
  margin-bottom: 8px;
  font-size: .95rem;
}
.add-sec a{
  color: rgb(255 255 255 / 80%) !important;
  transition: .3s;
}
.add-sec a:hover{
  color: rgb(255 255 255 / 100%) !important;
}
.add-in span{
  color: white !important;
  font-weight: 500;
}
.loc-link{
  color: rgb(255 255 255 / 80%) !important;
  text-decoration: underline !important;
  font-size: .8rem;
  transition: .3s;
}
.loc-link:hover{
  color: white !important;
}

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/
footer {
  background: #173572;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  font-size: 0.9rem;
  padding-top: 3rem;
}
footer .social a{
  background: white;
  border-radius: 50px;
}
footer a {
  color: rgb(255 255 255 / 80%);
}
footer a:hover {
  color:  rgb(255 255 255 / 100%);
}
footer .ftlogo {
  width: 260px;
  /* margin-bottom: 1rem; */
}
footer .ftlist {
  display: flex;
  flex-flow: column;
}
footer .ftlist li {
  margin: 3px 0;
}
footer .servlist {
  display: flex;
  flex-flow: wrap;
  gap: 8px;
}
footer .servlist li {
  display: flex;
}
footer .servlist li a {
  display: flex;
  background: rgb(80 145 235 / 17%);
  padding: 5px 10px;
  border-radius: 0.3rem;
  font-size: .85rem;
}
footer .servlist li a:hover {
  background: rgb(80 145 235 / 31%);
  color: #5091eb;
}
footer ul.adlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: .95rem;
}
footer ul.adlist li {
  /* padding-left: 25px;
  margin: 5px 0; */
}
footer ul.adlist li i {
  position: absolute;
  left: 0;
  margin-top: 5px;
  color: #5091eb;
}

footer .ftbottom {
  padding: 1rem 0;
    color: #344354;
    border-top: 1px solid #ffffff24;
    /* background: #2f7ce6; */
    color: rgb(255 255 255 / 85%);
}
footer .ftbottom a {
  /* color: rgb(255 255 255 / 70%); */
  color: rgb(255 255 255 / 85%);
}
footer .powered p {
  text-align: right;
}
.topfoot{
  padding-bottom: 3rem;
}
.topfoot p{
  font-size: .85rem;
  color: #344354;
}
.foot-menu{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-flow: column;
}

@media (max-width: 767px) {
  footer .ftbottom p {
    text-align: center;
  }
}


/* Responsive Section */
@media(max-width:991px){
  .slideimg img{
    width: 350px !important;
  }
  .slider .slideimg::before{
    width: 350px;
    height: 360px;
  }
  .slider .slideimg::after{
    width: 340px;
    height: 340px;
  }
  .abtimg .main-img{
    width: 460px;
  }
  .experi{
    padding: 25px 15px;
  }
  .en-bag img{
    width: 400px;
    left: 50%;
  }
}
@media(max-width:767px){
  .slidercont{
    margin-top: 2rem;
  }
  .slider .slideimg{
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  .abtimg .main-img{
    width: 320px;
  }
  .experi{
    padding: 20px 10px;
  }
  .abtimg .crown {
    width: 35px;
  }
  header .con-menu {
    display: none;
  }
  .en-bag img{
    width: 290px;
  }
  .flex-top{
    flex-direction: column-reverse;
  }

}
@media(max-width:575px){
.about-mob{
  justify-content: end;
  display: flex;
  margin-top: 4rem;
}
.en-bag img{
  display: none;
}
header .menutop{
  display: none;
}
.slider .slideimg{
  width: 320px;
}
.slider{
  height: 100% !important;
  min-height: auto;
  /*margin-top: 1rem;*/
  padding-bottom: 2rem;
}
footer .ftlogo{
  width: 200px;
}
.foot-menu{
  margin-top: 1rem;
}

}

@media(max-width: 460px){
  .abtimg .main-img {
    width: 250px !important;
}
.experi .para2{
  font-size: 0.7rem;
}
.experi .para1{
  font-size: 1.2rem;
}
.experi{
  padding: 10px 10px;
}
.slideimg img{
  width: 300px !important;
}
.slider .slideimg::before {
  width: 300px;
  height: 300px;
}
.slider .slideimg::after {
  width: 285px;
  height: 285px;
}

}