:root {
  --font-family: "IranSans";

  --primary-color: rgba(41, 171, 226, 1);
  --secondary-color: rgba(0, 87, 86, 1);
  --black-color: rgba(40, 51, 83, 1);
  --text-color: rgba(119, 125, 144, 1);
}

*,
*::after,
*::before {
  outline: none;
  border: none;
  text-decoration: none;
  margin-block: 0;
  margin-inline: 0;
  list-style: none;
  box-sizing: border-box;
}

a {
  color: var(--black-color) !important;
  text-decoration: none !important;
}

ul {
  padding-inline-start: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family) !important;
  background-color: #fff;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Thin.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 100;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-UltraLight.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 200;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Light.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Regular.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Medium.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Heavy.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-DemiBold.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Bold.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 800;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-ExtraBold.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: "IranSans";
  src: url("../fonts/IRANSansXFaNum-Black.woff");
  font-style: normal;
  font-display: swap;
  font-weight: 1000;
}

/* general classes */

.container-x {
  padding-left: 328px;
  padding-right: 328px;
}

.button-cnt {
  display: flex;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--text-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.button-cnt .button-text {
  background-color: var(--primary-color);
  border-radius: 5px 24px 24px 0px;
  padding: 4px 24px 4px 4px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.button-cnt:hover .button-text {
  background-color: rgb(61, 193, 250);
}

.button-cnt .button-text span {
  color: #f1f5f9;
}

.button-cnt .button-arrow-cnt {
  position: relative;
  display: flex;
  margin-right: -2px;
}

.button-cnt .button-arrow-cnt .button-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 25px;
  height: 25px;
  z-index: 1;
}

.button-cnt .button-arrow-cnt>svg {
  fill: #29abe2;
  transition: all 0.3s;
}

.button-cnt:hover .button-arrow-cnt>svg {
  fill: rgb(61, 193, 250);
}

.title-cnt {
  position: relative;
  width: fit-content;
  text-align: center;
  height: 216px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.title-cnt .more {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  transition: all 0.3s;
}

.title-cnt .more .more-arrow {
  margin-right: 0;
  margin-left: 8px;
  transition: all 0.3s;
}

.title-cnt .more:hover .more-arrow {
  margin-right: 8px;
  margin-left: 0px;
}

.services-title .more {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-start;
  transition: all 0.3s;
  margin-top: 8px;
}

.services-title .more span {
  color: #fff;
  font-size: 14px;
}

.services-title .more .more-arrow {
  margin-right: 0;
  margin-left: 8px;
  transition: all 0.3s;
}

.services-title .more:hover .more-arrow {
  margin-right: 8px;
  margin-left: 0px;
}

.title-cnt .title-circles {
  height: 100%;
  width: 100%;
  right: 0px;
  top: 0;
  position: absolute;
  z-index: 0;
}

.title-cnt .title-circles .green-circle {
  background-color: #b1fed6;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  filter: blur(12px);
  position: absolute;
  top: 122px;
  right: 60px;
}

.title-cnt .title-circles .yellow-circle {
  background-color: #fff19d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: blur(18px);
  position: absolute;
  bottom: 8px;
  left: 30px;
}

.title-cnt .title-circles .bg-circle {
  background-color: var(--primary-color);
  height: 216px;
  width: 216px;
  filter: blur(304px);
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -25%);
  border-radius: 50%;
}

.title-cnt .title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.title-cnt .title h3 {
  color: var(--black-color);
  font-size: 32px;
  font-weight: 1000;

  position: relative;
}

.title-cnt .title span {
  color: var(--primary-color);
  font-size: 14px;

  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 21.6px;
}

.body-text {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  /* display: flex; */
}

.sec-title h4 {
  font-size: 16px;
  font-weight: 1000;
  color: var(--black-color);
}

.img-fluid {
  max-width: 100%;
}

/* Begin: header section */
.header-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  background-color: #fff;
  height: 104px;
}

.header-cnt.border-bottom {
  border-bottom: 1px solid #c5e0eb91;
}

.header-cnt .header-center .header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-cnt .header-menu .header-menu-item {
  display: flex;
  position: relative;
}

.header-cnt .header-menu .header-menu-item>.header-menu-text {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 4px;
  border-radius: 20px;
  transition: all 0.3s;
}

.header-cnt .header-menu .header-menu-item>.header-menu-text svg path {
  stroke: #777d91;
  transition: all 0.3s;
}

.header-cnt .header-menu .header-menu-item>.header-menu-text:hover svg path {
  stroke: var(--black-color);
}

.header-cnt .header-menu .header-menu-item>.header-menu-text svg {
  transition: all 0.3s;
}

.header-cnt .header-menu .header-menu-item>.header-menu-text:hover svg {
  rotate: 180deg;
}

.header-cnt .header-menu .header-menu-item>.header-menu-text:hover {
  background-color: rgba(223, 245, 255, 1);
}

.header-cnt .header-menu .header-menu-item>.header-menu-text:hover a.header-menu-link {
  color: var(--black-color) !important;
}

.header-cnt .header-menu .header-menu-item .header-menu-text a.header-menu-link {
  color: var(--text-color) !important;
}

.header-cnt .header-menu .sub-menu-cnt {
  position: absolute;
}

.header-cnt .contact-btn ,.back-btn span{
  border-radius: 20px;
  background-color: #c2ecff;
  transition: all 0.3s;
  padding: 6px 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
}

.header-cnt .contact-btn:hover, .back-btn:hover span{
  background-color: rgba(157, 225, 255, 1);
}

.header-cnt .header-right {
  width: 130px;
}

.header-cnt .header-right img {
  width: 100%;
}

.sub-nav-cnt {
  position: absolute;
  height: fit-content;
  max-height: 0;
  top: 57px;
  background-color: transparent;
  width: 340px;
  right: 0;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 24px;
}

.sub-nav-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 50%;
  z-index: 2;
}

.sub-nav-bg img {
  height: 100%;
  float: left;
  object-fit: contain;
}

.header-menu-item:hover .sub-nav-cnt {
  max-height: 600px;
}

.header-menu-item .sub-nav {
  height: 100%;
  width: 100%;
  top: -14px;
  right: 0;
  background-color: #dff5ff;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 24px;
}

.card {
  margin-bottom: 72px;
}

.card .card-body {
  display: flex;

  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card .card-body h5 {
  color: var(--black-color);
  font-weight: 1000;
  font-size: 16px;
}

.card:hover .btn-cnt {
  margin-left: 0;
}

.col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 24px;
}

.card .btn-cnt {
  background-color: transparent;
}

.card .btn-cnt span {
  background-color: #FFF;
}

.card:hover .btn-cnt .btn-arrow {
  margin-right: 6px;
  z-index: 0;
}

.sub-nav-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 430px;
  gap: 12px;
}

.sub-nav-list .sub-nav-item a {
  color: var(--text-color) !important;
  transition: all 0.3s;
  border-radius: 20px;
  font-size: 15px;
}

.sub-nav-list .sub-nav-item>div {
  padding: 6px 12px;
}

.sub-nav-list .sub-nav-item a:hover {
  color: var(--black-color) !important;
  background-color: rgba(223, 245, 255, 1);
  margin-right: 4px;
}

/* End: header section */

/* Begin: hero section */

.hero-cnt {
  position: relative;
  z-index: 1;
  margin-top: 104px;
}

/* .hero-cnt.margin-top {
  margin-top: 104px;
} */

.hero-arrow-bg {
  position: absolute;
  top: 50%;
  z-index: 2;
}

.hero-arrow-bg.next-arrow {
  right: -46px;
  transform: translateY(-50%);
}

.hero-arrow-bg.prev-arrow {
  left: -46px;
  rotate: 180deg;
  transform: translateY(50%);
}

.hero-arrow-bg img {
  width: 100%;
  object-fit: contain;
}

.hero-item {
  overflow: hidden;
  border-radius: 40px;
  height:650px;
}

.hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slick-arrow {
  position: absolute;
  top: 50%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
  border: 1px solid rgba(227, 230, 240, 1);
  transition: all 0.3s;
}

.hero-slider .slick-arrow:hover {
  background-color: #e5f2f8;
}

.hero-slider .slick-arrow svg path {
  fill: #29abe2;
}

.hero-slider .slick-arrow.slick-next {
  right: -26px;
  transform: translateY(-60%);
}

.hero-slider .slick-arrow.slick-prev {
  left: -26px;
  transform: translateY(-40%);
}

/* End: hero section */

/* Begin: response section */
.rsp-cnt {
  position: relative;
  z-index: 1;
}

.rsp-cnt .rsp {
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin: -105px auto 0 auto;
}

.rsp-cnt .rsp-item-cnt {
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  width: 34%;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
  overflow:hidden;
}

.rsp-cnt .rsp-item-cnt:hover {
  margin-top: -12px;
  margin-bottom: 12px;
}

.rsp-cnt .rsp-item {
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0px 1px 18.3px 0px rgb(0 0 0 / 12%);
  border: 1.5px solid;
  border-image-source: linear-gradient(270deg,
      #ffffff 0%,
      rgba(210, 212, 255, 0) 50%,
      #ffffff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  gap: 20px;
  backdrop-filter: blur(27.3px);
  width: 95%;
  margin: 12px auto;
  flex-wrap: wrap;
  /*overflow:hidden;*/
  position:relative;
}

/*.rsp-cnt .rsp-item-cnt .rsp-bg {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  bottom: 0px;*/
/*  left: 0;*/
/*  opacity: 0.1;*/
/*  filter: grayscale(1);*/
/*  z-index: 1;*/
/*    overflow:hidden;*/
/*}*/
.rsp-cnt .rsp-item-cnt .rsp-bg {
    position: absolute;
    top: -1.5px;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: calc(100% + 2.5px);
    opacity: 0.1;
    filter: grayscale(1);
    z-index: 1;
    border-radius: 16px; /* Make sure the background follows the border-radius */
    overflow: hidden; /* Ensure it doesn't overflow the parent */
}
.rsp-cnt .rsp-item-cnt .rsp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-cnt .rsp-item .rsp-item-img {
  position: relative;
  /* margin-top: -30px; */
  /* width: 50%; */
  z-index: 10;
  display: flex;
  background-color: #f2f1ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rsp-cnt .rsp-item .rsp-item-img.purple {
  background-color: #f2f1ff;
}

.rsp-cnt .rsp-item .rsp-item-img.yellow {
  background-color: #fbfcf2;
}

.rsp-cnt .rsp-item .rsp-item-img.green {
  background-color: #e3fef2;
}

.rsp-cnt .rsp-item .rsp-item-img img {
  position: relative;
  z-index: 2;
}

.rsp-cnt .rsp-item .rsp-item-context {
  display: flex;
  align-items: center;
  /* flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px; */
  gap: 15px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.rsp-item-img img {
  width: 32px;
  height: 32px;
}

.rsp-cnt .rsp-item .rsp-item-context h5 {
  font-size: 16px;
  font-weight: 1000;
  color: var(--black-color);
}

.btn-cnt {
  background-color: rgba(233, 248, 255, 1);
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 8px;
  transition: all 0.3s;
  border-radius: 8px;
}

.btn-cnt span {
  color: var(--primary-color);
  font-size: 12px;
}

.btn-cnt .btn-arrow {
  display: flex;
  margin-right: -20px;
  margin-left: 4px;
  z-index: -1;
  transition: all 0.3s;
}

.rsp-cnt .rsp-item-cnt:hover .btn-cnt .btn-arrow {
  margin-right: 6px;
  z-index: 0;
}

/* End: response section */

/* Begin: about section */

.about-cnt {
  display: flex;
  align-items: center;
}

.about-right {
  width: 50%;
}

.about-right .about-img img {
  width: 100%;
  height: 100%;
}

.about-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-left .about-title h1 {
  font-size: 36px;
  font-weight: 1000;
}

.about-records {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  padding: 8px 16px;
  width: fit-content;
  box-shadow: 0px 0px 9.5px 0px rgba(0, 0, 0, 0.05);
}

.about-records .record-line {
  background-color: rgba(119, 125, 144, 1);
  width: 2px;
  height: 22px;
  border-radius: 8px;
}

.about-records .records-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-records .records-item .honors_num {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: var(--primary-color);
}

.about-records .records-item span {
  color: var(--text-color);
  font-size: 12px;
  text-align: center;
}

.about-records .records-item .honors_num .honors_incr {
  font-weight: 1000;
  font-size: 20px;
}

.about-records .records-item .honors_num h3 {
  font-weight: 1000;
  font-size: 20px;
}

/* End: about section */

/* Begin: services section */

.services-cnt {
  position: relative;
  background-color: var(--primary-color);

  padding-top: 77px;
  padding-bottom: 77px;
  overflow: hidden;
}

.services-cnt .services-bg {
  position: absolute;
  width: 100%;
  bottom: 16px;
  height: 50%;
  left: -137px;
  /* mix-blend-mode: overlay; */
  opacity: 0.1;
}

.services-cnt .services-bg img {
  float: left;
}

.services-cnt .services {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 40px;
  position: relative;
}

.services-slider {
  direction: rtl;
}

.services-cnt .services .services-right {
  width: 20%;
}

.services-cnt .services .services-left {
  width: 78%;
  position: relative;
}

/* .services-gradient  {
  position: absolute;
  height: 100%;
  width: 10%;
  bottom: 0;

  z-index: 2;
}

.services-gradient.gradient-right {
  right: 0;
  background: linear-gradient(to left, var(--primary-color) 0%, transparent 100%);
}

.services-gradient.gradient-left {
  left: 0;
  background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
} */

.services .services-title h3 {
  font-weight: 1000;
  font-size: 32px;
  color: #fff;
}

.services .services-title-desc {
  color: #fff;
  font-size: 12px;
}

.services-item {
  border-radius: 40px;
  background-color: #ffffff36;
  /*border: 1px solid var(--Brand-White, rgba(255, 255, 255, 1));*/
  /* box-shadow: 0px 0px 32.7px 0px rgba(0, 0, 0, 0.06); */
  display: flex !important;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  gap: 8px;
  width: 90% !important;
  position: relative;
}

.services-slider .slick-slide>div {
  display: flex;
  justify-content: center;
}

.services-item .services-item-img-cnt {
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-item .services-item-img {
  height: 99px;
  width: 99px;
  background-color: rgba(233, 248, 255, 1);
  border-radius: 50%;
  display: flex;

  transition: all 0.3s ease;
}

.services-item:hover .services-item-img {
  width: 117px;
  height: 117px;
}

.services-item .services-item-title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-item .services-item-title h4 {
  font-weight: 1000;
  font-size: 20px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  text-align: center;
}

.services-item .services-item-img img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: auto;
}

.services-item:hover .services-item-img img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.services-item:hover .btn-cnt .btn-arrow {
  margin-right: 6px;
  z-index: 0;
}

.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s;
}

.services-slider .slick-arrow svg {
  stroke: #fff;
  transition: all 0.3s;
}

.services-slider .slick-arrow:hover svg {
  stroke: #c2ecff;
}

.services-slider .slick-next {
  right: -40px;
}

.services-slider .slick-prev {
  left: -40px;
}

/* End: services section */

/* Begin: gallery section */
.gallery-slider .slick-list {
  padding-left: 0 !important;
}

.gallery-slider .slick-slide>div {
  display: flex;
  justify-content: flex-end;
}

.gallery-slider .gallery-item {
  border-radius: 24px;
  box-shadow: 0px 0px 32.7px 0px rgba(0, 0, 0, 0.1);
  width: 90% !important;
  max-height: 268px;
  margin-top: 36px;
  margin-bottom: 36px;
  margin-left: 2px;
  overflow: hidden;
  transition: all 0.3s;
}

.gallery-slider .gallery-item:hover {
  box-shadow: 0px 0px 32.7px 0px rgba(0, 0, 0, 0.3);
}

.gallery-slider .gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* End: gallery section */

/* Begin: gallery section */

.faq-cnt {
  margin-bottom: 77px;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: -240px;
}

.faq-item {
  background-color: rgb(228 247 255 / 90%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 1);
  backdrop-filter: blur(8px);
  padding: 24px;
  width: 48%;
  height: fit-content;
  transition: all 0.3s;
}

.faq-item.open {
  background-color: rgba(226, 246, 255, 0.6);
}

.faq-item .faq-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item .faq-top h6 {
  color: var(--black-color);
  font-weight: 1000;
  font-size: 16px;
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis; */
}

.faq-item .faq-top .faq-btn {
  border-radius: 12px;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #fff;
  margin-right: 8px;
}

.faq-item.open .faq-top .faq-btn {
  background-color: rgba(191, 235, 255, 0.7);
}

.faq-item .faq-top .faq-btn img {
  transition: opacity 0.5s;
}

.faq-item .faq-top .faq-btn .faq-neg {
  opacity: 0;
  width: 0;
}

.faq-item .faq-answer {
  height: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  margin-left: 30px;
  margin-top: 6px;
}

.faq-item.open .faq-top .faq-btn .faq-neg {
  opacity: 1;
  width: 12px;
}

.faq-item.open .faq-top .faq-btn .faq-plus {
  opacity: 0;
  width: 0;
}

.faq-item.open .faq-answer {
  overflow: visible;

  max-height: 1000px;
}

.faq-item .faq-answer .body-text {
  margin-left: 16px;
}

.faq-img {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  margin-top: -100px;
}

.faq-img img {
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

/* End: gallery section */
/* Begin: reserve section */
.reserve-cnt {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}

.reserve-item-cnt {
  width: 49%;
  overflow: hidden;
  padding-top: 50px;
  position: relative;
  transition: all 0.3s !important;
}

.reserve-item-cnt:hover {
  margin-top: -12px;
  margin-bottom: 12px;
}

.reserve-item {
  position: relative;
  background: linear-gradient(90deg, #29abe2 0%, #0859d1 100%);
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  padding-top: 44px;
  padding-bottom: 44px;
}

.reserve-item-cnt .reserve-item-img {
  position: relative;
  z-index: 2;
  bottom: 0;
  position: absolute;
  display: flex;
  border-bottom-right-radius: 24px;
  overflow: hidden;
  margin-right: -1px;
  display: flex;
  margin-bottom: -1px;
}

.reserve-item-bg {
  position: absolute;
  width: 110%;
  height: 50%;
  right: 50%;
  transform: translateX(50%);
  bottom: -12px;
  /* mix-blend-mode: overlay; */
  opacity: 0.2;
}

.reserve-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserve-item-context {
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  gap: 16px;
  justify-content: center;
}

.reserve-item-context .reserve-item-title {
  font-weight: 1000;
  font-size: 24px;
  color: #fff;
}

.reserve-cnt .button-cnt .button-text {
  background-color: #fff;
  transition: all 0.3s;
  border: 1.2px solid #fff;
}

.reserve-cnt .reserve-item-cnt:hover .button-cnt .button-text {
  background-color: #eaf5fa;
}

.reserve-cnt .button-cnt .button-arrow-cnt>svg {
  fill: #fff;
  transition: all 0.3s;
}

.reserve-cnt .reserve-item-cnt:hover .button-cnt .button-arrow-cnt>svg {
  fill: #eaf5fa;
}

.reserve-cnt .button-cnt .button-arrow-cnt .button-arrow svg path {
  stroke: var(--primary-color);
}

.reserve-cnt .button-cnt .button-text span {
  color: var(--primary-color);
}

/* End: reserve section */

/* Begin: insurance section */

.insu-slider-top {
  margin-top: 79px;
}

.insu-slider-bottom {
  direction: ltr;
  margin-top: 32px;
}

.insu-slide {
  filter: grayscale(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  height:96px;
  width: 80% !important;
}

.insu-slide img {
  opacity: 0.3;
  margin: 0 auto;
  transition: all 0.3s;
  width: 100%;
  height:100%;
}

.insu-slide:hover {
  filter: grayscale(0);
}

.insu-slide:hover img {
  opacity: 1;
}

/* End: insurance section */

/* Begin: exprience section */

.xpr-cnt {
  position: relative;
  z-index: 2;
}

.xpr {
  padding-bottom: 0;
}

.xpr .xpr-top {
  margin-top: 80px;
  position: relative;
}

.xpr .xpr-top .xpr-top-quote {
  position: absolute;
  width: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.xpr .xpr-top .xpr-top-quote img {
  width: 100%;
}

.xpr .xpr-dots-slider .xpr-dots-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 72px;
}

.xpr .xpr-dots-slide .xpr-dots-img {
  border-radius: 50%;
  overflow: hidden;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border: 4px solid rgba(194, 236, 255, 1);
  transition: all 0.3s;
  cursor: pointer;
}

.xpr .slick-center .xpr-dots-slide .xpr-dots-img {
  border: 7px solid rgba(194, 236, 255, 1);
  width: 72px;
  height: 72px;
}

.xpr .xpr-dots-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.xpr .xpr-bottom {
  position: relative;
  margin-top: 12px;
}

.xpr .xpr-bottom .xpr-main-quote {
  position: absolute;
  width: 620px;
  height: 150px;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
}

.xpr .xpr-bottom .xpr-main-quote img {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.xpr .xpr-content-slide {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.xpr .xpr-content-slide .xpr-content-top {
  display: flex;
  flex-direction: column;
}

.xpr-content-slide {
  width: 620px !important;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  padding: 0 52px 28px 52px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.xpr-content-slide .xpr-content-top {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.xpr-content-slide .xpr-content-top .xpr-content-title {
  color: var(--black-color);
  font-weight: 1000;
  font-size: 16px;
}

.xpr-content-slide .xpr-content-top .xpr-stars {
  display: flex;
}

.xpr .xpr-content-slider {
  position: relative;
}

.xpr .xpr-content-slider .slick-arrow {
  position: absolute;
  top: 0;
  width: 33.33px;
  height: 33.33px;
  background-color: #d7f2ff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}

.xpr .xpr-content-slider .slick-arrow:hover {
  background-color: #c5e8fa;
}

.xpr-content-slider .slick-arrow svg path {
  fill: #29abe2;
}

.xpr .xpr-content-slider .slick-arrow.slick-next {
  right: calc(50% - 99.66px);
  transform: translate(100%, 9px);
}

.xpr .xpr-content-slider .slick-arrow.slick-prev {
  left: calc(50% - 99.66px);
  transform: translate(-100%, 9px);
}

.xpr .xpr-content-slider ul.slick-dots {
  display: flex !important;
  right: 50%;
  transform: translate(50%, 44px);
  margin: 0 auto;
  justify-content: center;
  position: absolute;
  gap: 8px;
  z-index: 5;
}
.hero-slider ul.slick-dots {
display: flex;
    position: absolute;
    right: 50%;
    background-color:#e9f8ff;
    transform: translate(50%, -15px);
    bottom: 0;
    gap: 4px;
      padding: 5px 10px;
    border-radius: 11px;
}
.hero-slider ul.slick-dots li{
   display:flex;
   align-items:center;
}
.xpr .xpr-content-slider ul.slick-dots li  {
  display: flex;
}

.xpr .xpr-content-slider ul.slick-dots li button,.hero-slider ul.slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  background-color: #d0dde3;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.xpr .xpr-content-slider ul.slick-dots li.slick-active button,.hero-slider ul.slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

/* End: exprience section */

/* Begin: news section */
.news {
  margin-top: 105px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 77px;
}

.news .news-item {
  width: 48%;
  display: flex;
  overflow: hidden;
  border-radius: 24px;
  background-color: #fff;
  height: 182px;
  box-shadow: 0px 0px 32.7px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.news .news-item:hover {
  box-shadow: 0px 0px 32.7px 0px rgba(0, 0, 0, 0.13);
}

.news .news-item .news-item-img {
  width: 30%;
  display: flex;
  overflow: hidden;
}

.news .news-item .news-item-img img {
  object-fit: cover;
  width: 100%;
  transition: all 0.3s;
}

.news .news-item:hover .news-item-img img {
  scale: 1.05;
}

.news .news-item .news-item-left {
  width: 70%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news .news-item .news-item-title h6 {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 1000;
  height: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  text-align: right;
  display: flex;
  align-items: center;
}

.news .news-item .news-item-left .news-item-text p {
  color: var(--text-color);
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  text-align: right;
}

.news .news-item .news-item-left .news-item-bottom {
  display: flex;
  justify-content: space-between;
}

.news .news-item .news-item-left .news-item-bottom .news-item-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news .news-item .news-item-left .news-item-bottom .news-item-date .news-date {
  color: var(--primary-color);
  font-size: 12px;
}

.news-item .btn-cnt {
  margin-left: 26px;
}

.news-item:hover .btn-cnt {
  margin-left: 0px;
}

.news-item:hover .btn-cnt .btn-arrow {
  margin-right: 6px;
  z-index: 0;
}

.news ul.slick-dots {
  display: flex !important;
  right: 50%;
  transform: translate(50%, -30px);
  margin: 0 auto;
  justify-content: center;
  position: absolute;
  gap: 8px;
}

.news ul.slick-dots li {
  display: flex;
}

.news ul.slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  background-color: #d0dde3;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}

.news ul.slick-dots li.slick-active button {
  background-color: var(--primary-color);
}

/* End: news section */

/* Begin: footer section */

.footer-cnt {
  background-color: var(--primary-color);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-radius: 40px;
  padding: 40px 60px 80px 60px;
  overflow: hidden;
}

.footer-cnt .footer-bg {
  position: absolute;
  bottom: -144px;
  left: -120px;
  width: 100%;
  /* mix-blend-mode: overlay; */
  opacity: 0.2;
}

.footer-cnt .footer-bg img {
  float: left;
}

.footer-cnt .footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.footer-list-title {
  color: #fff;
  font-size: 16px;
  font-weight: 1000;
}

.footer-cnt .footer-list-cnt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cnt .footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cnt .footer-list a {
  color: #fff !important;
  font-size: 14px;
  transition: all 0.3s;
  margin-right: 0px;
  margin-left: 4px;
}

.footer-cnt .footer-list a:hover {
  margin-right: 4px;
  margin-left: 0px;
}

.footer-cnt .footer-info {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cnt .footer-info .footer-info-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cnt .footer-info .footer-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-cnt .footer-info a.footer-info-row span {
  transition: all 0.3s;
  margin-right: 0px;
  margin-left: 4px;
}

.footer-cnt .footer-info a.footer-info-row:hover span {
  margin-right: 4px;
  margin-left: 0px;
}

.footer-cnt .footer-info .footer-info-row span {
  color: #fff;
  font-size: 14px;
}

.footer-cnt .footer-info .footer-social {
  /* border-top: 1px solid rgba(53, 183, 242, 1); */
  /* padding-top: 24px; */
  margin-top: 12px;
  gap: 16px;
  display: flex;
}

.footer-cnt .footer-info .footer-maps {
  gap: 16px;
  display: flex;
  align-items: center;
  padding-top: 5px;

}
.footer-cnt .footer-info .footer-maps a:hover{
  margin-top: -4px;
  margin-bottom: 4px;
}
.footer-cnt .footer-info .footer-maps a {
  width: 25px;
  height: 25px;
  transition: all .3s;
}

.footer-cnt .footer-info .footer-location {
  width: fit-content;
  /* padding: 12px; */
  border-radius: 16px;
  gap: 5px;
  display: flex;
  flex-direction: column;
  /* margin-top: 20px; */
}

.bg-dir {
  width: 267px;
  height: 133px;
  /*background-color: rgba(41, 171, 226, 0.2);*/
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  filter: blur(22px);
  POSITION: absolute;
  bottom: -16px;
  right: 50%;
  transform: translateX(50%);
  transition: all .3s;
}

.team {
  padding-top: 105px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.team-img {
  position: relative;
  width: 350px;
  overflow-y: hidden;
}

.team-peron-img {
  bottom: 0;
  display: flex;
  position: relative;
  justify-content: center;
  transition: all .3s;
  height: 230px;
}

.team-peron-img img {
  height: 75%;
  margin-top: 40px;
  transition: all .3s;
}

/*.team-person:hover .team-peron-img img {*/
/*  height: 108%;*/
/*}*/

.team-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-discription {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
}

.team-person:hover .bg-dir {
  bottom: -35px;
}

.team-discription h6 {
  font-weight: 1000;
  font-size: 20px;
  color: #283353;
}

.team-discription span {
  font-size: 16px;
  font-weight: 400;
  color: #777D90;

}

.footer-cnt .footer-info .footer-location h6 {
  font-size: 14px;
  font-weight: 1000;
  color: #0b7dad;
}

.footer-cnt .footer-info .footer-maps a img {
  height: 100%;
  width: 100%;
}

.footer-cnt .footer-info .footer-social-item {
  display: flex;
  transition: all 0.3s;
  margin-top: 0;
  margin-bottom: 0px;
}

.footer-cnt .footer-info .footer-social-item:hover {
  margin-top: -4px;
  margin-bottom: 4px;
}

.footer-cnt .footer-info .footer-social-item img {
  height: 100%;
  object-fit: contain;
}

/* End: footer section */

/* Begin: copyright section */

.copyright {
  display: flex;
  justify-content: space-between;
  padding: 32px 60px;
}

.copyright .copyright-right span {
  font-size: 12px;
  color: var(--black-color);
  font-weight: 400;
}

.copyright .copyright-adrian {
  display: flex;
  gap: 12px;
}

.copyright .copyright-adrian span {
  font-size: 12px;
  color: var(--black-color);
}

.copyright .copyright-adrian h5 {
  font-size: 12px;
  font-weight: 800;
  color: var(--black-color);
}

/* End: copyright section */

/* mobile menu */
.mobile-left {
  display: none;
}

.menu-btn-1 {
  height: 28px;
  width: 32px;
  cursor: pointer;
}

.menu-btn-1 span,
.menu-btn-1 span::before,
.menu-btn-1 span::after {
  background: var(--primary-color);
  border-radius: 3px;
  content: "";
  position: absolute;
  width: 32px;
  height: 3px;
  margin-top: 13px;

  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.menu-btn-1 span::before {
  margin-top: -10px;
}

.menu-btn-1 span::after {
  margin-top: 10px;
}

.menu-btn-1.active span {
  background: transparent;
}

.menu-btn-1.active span::before {
  margin-top: 0;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn-1.active span::after {
  margin-top: 0;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  overflow: hidden;
  height: 0;
  transition: all 0.3s;
  top: 103px;
  width: 100%;
  right: 0;
  background-color: #e9f8ff;
  z-index: 20;
}

.mobile-menu-bg {
  height: 40%;
  width: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
}

.mobile-menu-bg img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-top: auto;
}

.mobile-menu-content {
  position: relative;
  z-index: 16;
  height: calc(100dvh - 102px);
  overflow-y: auto;
}

.mobile-menu .mobile-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 16px;
}

.mobile-menu .mobile-list .mobile-list-li .chevron {
  transition: all 0.3s;
}

.mobile-menu .mobile-list .mobile-list-li.open .chevron {
  rotate: 180deg;
}

.mobile-menu .mobile-list .mobile-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-sub-nav {
  height: fit-content;
  max-height: 0;
  transition: all 0.3s;
  overflow: hidden;
}

.mobile-list-li.open .mobile-sub-nav {
  max-height: 300px;
}

.mobile-sub-nav .mobile-sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
}

.mobile-menu .mobile-list .mobile-list-item svg path {
  stroke: var(--black-color);
}

.mobile-menu-cnt.collapsible--expanded .mobile-menu {
  height: calc(100dvh - 102px);
}

/* bread crumb */

.bread-cnt {
  margin-top: 103px;
  height: 273px;
  margin-bottom: 72px;
}

.bread-cnt .bread-top {
  height: 158px;
  background-color: rgba(240, 249, 255, 1);

  padding-bottom: 75px;
}

.bread-cnt .bread-top .bread-list {
  display: flex;
  gap: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.bread-cnt .bread-top .bread-list li.active-pg {
  font-size: 12px;
  color: var(--black-color);
}

.bread-cnt .bread-top .bread-list li:not(.active-pg) {
  color: rgba(157, 182, 192, 1);
  font-size: 12px;
}

.bread-cnt .bread-top .bread-list li a {
  color: rgba(157, 182, 192, 1) !important;
  font-size: 12px;
}

.bread-cnt .bread-top .bread-list li a:hover {
  color: var(--black-color) !important;
}

.bread-cnt .bread-bottom {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 229px;
  transform: translateY(-50%);
}

.bread-cnt .bread-bottom .bread-bottom-context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.bread-cnt .bread-bottom .bread-bottom-context h1 {
  font-weight: 1000;
  font-size: 24px;
  color: #fff;
}

.bread-cnt .bread-bottom .bread-bottom-context span {
  font-size: 12px;
  color: #fff;
}

.bread-cnt .bread-bottom .bread-circle.right-circle {
  position: absolute;
  width: 241px;
  height: 241px;
  top: -116px;
  right: -127px;
  background-color: rgba(255, 255, 255, 0.7);
  filter: blur(70px);
  border-radius: 50%;
}

.bread-cnt .bread-bottom .bread-circle.left-circle {
  position: absolute;
  width: 527px;
  height: 209px;
  bottom: -156px;
  left: -261px;
  background-color: rgba(255, 255, 255, 0.7);
  filter: blur(50px);
  border-radius: 50%;
}

.bread-img {
  position: absolute;
  background-color: rgba(41, 171, 226, 1);
  z-index: 1;
}

.bread-img img {
  height: 100%;
  object-fit: cover;

  mix-blend-mode: soft-light;
}

/* contact us page */

.map-cnt {
  border-radius: 24px;
  width: 100%;
  height: 579px;

  overflow: hidden;
}

.map-cnt iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.contact-bottom {
  display: flex;
  gap: 24px;

  padding-left: 469px;
  padding-right: 469px;
  margin-top: -262px;
  align-items: flex-end;
  padding-bottom: 72px;
}

.contact-bottom .button-cnt {
  width: 100%;
}

.contact-bottom .button-cnt .button-text {
  width: 100%;
  justify-content: center;
}

.contact-bottom .contact-form-cnt {
  background-color: rgb(223 245 255 / 60%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 48px 36px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(237, 237, 237, 1);
  gap: 36px;
  border-radius: 24px;
  width: 50%;
}

.contact-bottom .contact-form-cnt .button {
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-bottom .contact-form-cnt .contact-form-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.location-icon {
  display: flex;
  height: 32px;
  width: 32px;
  padding: 0px;
  transition: all 0.3s;
}

.location-icon:hover {
  margin-top: -4px;
}

.location-icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.contact-bottom .contact-form-cnt .contact-form-top .contact-form-title h3 {
  color: var(--black-color);
  font-weight: 1000;
}

.contact-bottom .contact-form-cnt .contact-form .contact-form-inputs-cnt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-bottom .contact-form-cnt .contact-form .input-cnt {
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid rgba(237, 237, 237, 1);
  width: 100%;
  padding: 16px 24px;
}

.contact-bottom .contact-form-cnt .contact-form .input-cnt input {
  padding: 0;
  width: 100%;
  height: 20px;
}

.contact-bottom .contact-form-cnt .contact-form .input-cnt textarea {
  padding: 0;
  resize: none;
  font-family: var(--font-family);
  width: 100%;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-bottom .contact-form-cnt .contact-form ::placeholder {
  font-weight: 200;
  color: rgb(139, 139, 139);
  font-size: 14px;
}

.contact-bottom .contact-form-cnt .contact-form .button {
  background-color: var(--primary-color);
  width: 100%;
  justify-content: center;
}

.contact-bottom .contact-form-cnt .contact-form .button::before {
  background-color: #afc00c;
}

.contact-info-cnt {
  border: 1px solid rgba(237, 237, 237, 1);
  background-color: rgb(223 245 255 / 60%);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
  height: fit-content;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

::placeholder {
  font-family: var(--font-family);
}

.contact-info-cnt .contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info-cnt .contact-info-section .contact-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-cnt .contact-info-title {
  color: var(--primary-color);
  font-weight: 1000;
  letter-spacing: -0.5px;
}

.contact-info-cnt .contact-info-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-cnt .contact-icon {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-info-cnt .contact-info-bottom .contact-icon:hover {
  margin-top: -4px;
}

.contact-info-cnt .contact-icon svg {
  width: 32px;
  height: 32px;
}

.input-alert {
  background-color: rgb(252, 217, 217);
}

.input-alert input {
  background-color: rgb(252, 217, 217);
}

.input-alert textarea {
  background-color: rgb(252, 217, 217);
}

.contact-info-cnt .contact-info-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--primary-color);
  padding-top: 32px;
}

.contact-info-cnt .contact-info-bottom .contact-social {
  display: flex;
  gap: 12px;
}

.contact-info-cnt .phone-num {
  width: fit-content;
  direction: ltr;
}

.about-text {
  margin-top: 0px;
  margin-bottom: 77px;
}

/* xpr page */

.xpr-pg {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 77px;
}

.xpr-item-cnt {
  position: relative;
  width: 48%;
}

.xpr-item-cnt .xpr-item-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.xpr-item-cnt .xpr-item-bg img {
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}

.xpr-item-cnt .xpr-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 32px 24px 48px 24px;
}

.xpr-item-cnt .xpr-name {
  font-weight: 1000;
  color: var(--black-color);
}

.xpr-item-cnt .xpr-stars {
  display: flex;
}

.xpr-item-cnt .xpr-item .xpr-item-img {
  border-radius: 50%;
  border: 7px solid rgba(194, 236, 255, 1);
  overflow: hidden;
  width: 86px;
  height: 86px;
}

.xpr-item-cnt .xpr-item .xpr-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pgn-cnt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
  padding-top: 0px;
}

.pgn {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: fit-content;
  z-index: 1;
  gap: 16px;
}

.pgn .button {
  background-color: transparent;
  display: flex;
}

.pgn .button svg {
  fill: var(--black-color);
}

.pgn-cnt .pgn-list {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pgn-cnt .pgn-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: var(--black-color) !important;
  transition: all 0.3s;
}

.pgn-cnt .pgn-list a.active-page {
  background-color: #d7f2ff;
}

.pgn-cnt .pgn-list a:hover {
  background-color: #d7f2ff;
}

.pgn-cnt .button.next-page {
  opacity: 0.5;
  cursor: initial;
  display: none;
}

/* all insurance page */

.insu-pg {
  margin-bottom: 77px;
}

.insus-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 48px;
  row-gap: 36px;
  justify-content: center;
}

.insus-cnt .insu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14%;
}

.insus-cnt .insu-item img {
  width: 70%;
  height:70%;
}

.insus-cnt .insu-item span {
  color: var(--black-color);
  font-size: 14px;
  width: fit-content;
  text-align:center;
}

.news:not(.news1) {
  margin-top: 0;

  justify-content: center;
}

.faq-pg .faq-item {
  width: 100%;
}

.faq-pg .faq {
  margin-top: 0;
}

.gallery-cnt.gallery-pg {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center;
}

.gallery-cnt.gallery-pg .gallery-item {
  width: 23%;
  height: 200px;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-cnt.gallery-pg .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
  gap: 24px;
}

.single-service img {
  border-radius: 24px;
  margin: 24px;
  max-width: 100%;
}

.single-service .body-text {}

.services-pg {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.services-pg .services-item {
  width: 48% !important;
  box-shadow: 0px 0px 12px 0px #9493934d;
  flex-direction: row;
  justify-content: space-between;
}

.services-pg .services-item .btn-cnt {
  margin-right: 26px;
}

.services-pg .services-item:hover .btn-cnt {
  margin-right: 0;
}

/* quick menu */

.quick-menu {
  padding: 24px;
  border-radius: 20px;
  background-color: rgb(194 236 255);
  width: 240px;
  padding-bottom: 44px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 292px;
}

.quick-menu-vector {
  position: absolute;
  bottom: -20px;
  right: 0px;
  height: 26px;
  display: flex;
  width: 100%;
  padding-bottom: 5px;
}

.quick-menu-vector img {
  height: 100%;
  object-fit: contain;
  margin-right: 24px;
  margin-left: auto;
}

.quick-menu .quick-menu-item {
  color: var(--black-color) !important;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s;
}

.quick-menu .quick-menu-item:hover {
  margin-right: 8px;
}

.quick-menu .quick-menu-item.collapsible--expanded:hover {
  margin-right: 0px;
}

.chat-cnt {
  position: fixed;
  bottom: 45px;
  right: 12px;
  display: flex;
  flex-direction: column-reverse;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.6s, z-index 1s;
}

.chat-cnt .chat-icon {
  display: flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-radius: 16px;
  margin-left: auto;
  margin-right: 21px;
}

.chat-cnt .quick-menu-desc {
  position: absolute;
  transition: all 0.3s;
  opacity: 0;
  bottom: 90px;
  right: 0;
  visibility: hidden;

}

.chat-cnt .chat-icon span {
  color: var(--black-color);
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.chat-cnt .quick-access-icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-cnt .quick-access-icon img {
  height: 100%;
  width: 100%;
}

.quick-menu-item.direction {
  position: absolute;
  overflow: hidden;
  height: 44px;
  transition: all 0.3s;
  width: 100%;
  bottom: 0;
  left: 0;
}

.quick-menu-item.direction span {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}

.quick-menu-item.direction span svg {
  stroke: var(--secondary-color);
  transition: all 0.3s;

}

.quick-menu-item.direction:not(.collapsible--expanded) span svg {
  opacity: 0;
  visibility: hidden;
}


.quick-menu-item.direction.collapsible--expanded {
  height: 292px;
  background-color: rgb(194 236 255);
  width: 100%;
  left: 0;
  border-radius: 20px;
  padding: 20px;
  bottom: 0;
}

.quick-menu-item.direction:not(.collapsible--expanded) {
  padding: 0 20px;
}

.quick-menu-item.direction .direc-icons-cnt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  opacity: 0;
  transition: all 0.2s;
}

.quick-menu-item.direction.collapsible--expanded .direc-icons-cnt {
  opacity: 1;
}

.quick-menu-item.direction .direc-icons-cnt a {
  height: 38px;
  padding: 2px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a span {
  color: var(--black-color);
}

.quick-menu-item.direction .direc-icons-cnt a:hover {
  margin-right: 8px;
}

.quick-menu-item.direction .direc-icons-cnt a img {
  height: 100%;
  object-fit: contain;
}

.chat-cnt.hide {
  opacity: 0;
  z-index: -1;
}



.online {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;

}

.contact-form-input-container .row {
  display: flex;
  justify-content: space-around;
}

.blue-border {
  border: 1px solid rgb(212 212 212) !important;
}

.form-control {
  border: 0;
  border-radius: 4px;
  direction: rtl;
  padding: 10px 0.5rem 10px 0;
  width: 100%;
  font-family: var(--yekanbakh);
  border-radius: 12px !important;
}

.online-title {
  display: flex;
  gap: 5px;
  align-items: center;
}

.send-btn,
.sampling-send {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 26px;
}

.send-btn button,
.sampling-send a {
  border-radius: 20px;
  background-color: #c2ecff;
  transition: all 0.3s;
  padding: 6px 24px;
  cursor: pointer;
  font-size: 16px;
}

.send-btn button:hover,
.sampling-send a:hover {
  background-color: rgba(157, 225, 255, 1);
}

.contact-form.contact-us>h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  font-size: 1.5rem;
}

.send-massage textarea {
  width: 100%;
  resize: none;
  border: 1px solid 1px solid rgb(212 212 212) !important;
  border-radius: 12px;
  direction: rtl;
  padding: 10px 0.5rem 10px 0;
}


.contact-form-input-container.sampling-form .row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.sampling-form .row div {
  border-radius: 12px;
  border: 1px solid 1px solid rgb(212 212 212) !important;
  width: 33%;
  direction: rtl;
  padding: 10px 0.5rem 10px 0;
  background-color: white;
}

.list-search .col-12.text-center.flex-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.list-search .form-inline.text-center.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-search .form-inline.text-center.justify-content-center form {
  display: flex;
  justify-content: center;
  align-items: center;
  /*flex-direction: column;*/
  border: 1px solid #d7d7d7 !important;
  border-radius: 10px !important;
}

.list-search .form-inline.text-center.justify-content-center form input.form-control {
  width: 280px !important;
  /*margin-left: 10px;*/
  outline: none !important;
  box-shadow: none !important;

}

.list-search .form-inline.text-center.justify-content-center form button {
  background-color: #c2ecff;
  font-family: var(--font-family);
  /*padding-right: 0px !important;*/
  /*padding-left: 0px !important;*/
  /*padding-top: 10px;*/
  cursor: pointer;
  margin-left: 5px;
  padding: 4px;
  border-radius: 5px;
}
.error-page{
  display: flex;
  align-items: center;
  padding-bottom: 95px;
  flex-wrap: wrap;
}
.error-text{
  display: flex;
  flex-direction: column;

}
.error-code{
  display: flex;
  justify-content: center;
  font-size: 100px;
  font-weight: 700;
}
.error-code,.error-text{
  width: 50%;
}
.tab-content .row,
.list-search .row .result {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 36px;
}

.tab-content .row .col-6,
.testCat .row .col-6,
.list-search .row .col-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16%;
}

.testCat .row .col-6,
.testCat .row .col-6 .text-center,
.list-search .row .col-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-search .row .col-6 .text-white {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  transition: all .3s;
}

.list-search .row .col-6 .text-white:hover {
  transform: translateY(-6px);
}

.list-search .text-cyan {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.tab-content .row .col-6 .text-white,
.testCat .row .col-6 .decoration-none {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.alphabet-nav li a.active {
  background-color: var(--primary-color);
  color: #fff !important;
}

.alphabet-nav li a {
  color: #808080cc;
  border: 1px solid #80808057;
  text-decoration: none;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all .3s;
}

.alphabet-nav li a:hover {
  background-color: #dff5ff;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #80808057;
  margin-top: 16px;
  margin-bottom: 34px;
}

.testGap {
  display: flex;
  padding: 16px;
}

.testGap .testTitle {
  width: 20%;
  background-color: var(--primary-color);
  padding: 16px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;

}

.testGap .testDesc {
  width: 80%;
  background-color: #e7e7e7;
  padding: 16px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  text-align: justify;
}

.testCat .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 36px;
  padding-bottom: 53px;
}

.contact-form.contact-us.d-flex.flex-column {
  background-color: #dff5ff;
  padding: 40px 34px;
  border-radius: 32px;
  margin-bottom: 70px;
}

.contact-form-input-container.sampling-form input {
  background-color: transparent !important;
}

.galleri-all-img {
  width: 22%;
}
.hero-section-btn{
    display:flex;
    flex-direction:column;
    gap:24px;
}
.back-btn{    display: flex;
    justify-content: center;
    margin-top: 30px;
}
