@font-face {
  font-family: Yekanbakh;
  src: url("../font/YekanBakh/YekanBakh-Light.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Yekanbakh;
  src: url("../font/YekanBakh/YekanBakh-Medium.woff2");
  font-weight: 500;
  font-style: semibold;
  font-display: swap;
}

@font-face {
  font-family: Yekanbakh;
  src: url("../font/YekanBakh/YekanBakh-Regular.woff2");
  font-weight: 600;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: Yekanbakh;
  src: url("../font/YekanBakh/YekanBakh-Bold.woff2");
  font-weight: 700;
  font-style: bold;
  font-display: swap;
}

@font-face {
  font-family: Yekanbakh;
  src: url("../font/YekanBakh/YekanBakhFa07Heavy.woff");
  font-weight: 800;
  font-style: extraBold;
  font-display: swap;
}

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

@font-face {
  font-family: YekanbakhNum;
  src: url("../font/YekanBakh/YekanBakhFaNum-SemiBold.woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --yekanbakh: "Yekanbakh";
  --yekanbakh-num: "YekanbakhNum";
  --border-radius: 100px;
  --color-secondary: #ccecf9;
  --hover-shadow: #94d8f38a;
  --shadow-color: #daf1fc;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--yekanbakh);
  margin: 0;
}

h3 {
  font-family: var(--yekanbakh);
  font-size: 32px;
  font-weight: 800;
  margin-block-start: 0;
  margin-block-end: 0;
}

ul {
  list-style: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a {
  text-decoration: none;
}

:focus {
  outline: none;
}

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

.container {
  margin: 2rem 270px;
}

.container-title {
  padding: 0rem 270px 0 270px;
}

.flex {
  display: flex;
  flex-direction: row-reverse;
}

.grid {
  display: grid;
}

.button {
  font-family: var(--yekanbakh);
  border: 0;
  border-radius: var(--border-radius);
  background-color: var(--color-secondary);
  display: flex;
  padding: 5px 13px 3px 18px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  width: fit-content;
  cursor: pointer;
  position: relative;
  color: #434d61;
  transition: all 0.3s;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;

  transition: all 0.4s ease-in;
  background: linear-gradient(
    90deg,
    rgba(217, 217, 217, 0) 0%,
    rgba(245, 245, 245, 0) 27.27%,
    #fff 48.91%,
    rgba(254, 254, 254, 0.97) 48.92%,
    rgba(251, 251, 251, 0) 70.2%,
    rgba(217, 217, 217, 0) 100%
  );
}

.button:hover::after {
  transform: translate(200%, 0);
}

.section-title {
  color: #525252;
  margin-bottom: 23px;
  text-align: right;
  align-items: center;
}

.section-title h3 {
  margin-right: 11px;
}
.section-title-icon {
  height: 46px;
}

.section-description {
  margin-block-start: 17px;
  direction: rtl;
  text-align: justify;
  font-size: 16px;
  color: #9e9c9a;
}

/* top nav */
.top-nav {
  margin-top: 15px;
  margin-bottom: 5px;
  justify-content: space-between;
  align-items: center;
}

.top-nav .top-nav-content {
  gap: 10px;
  align-items: center;
}

.top-nav .top-nav-content .top-nav-num {
  font-family: var(--yekanbakh-num);
  align-items: center;
}

.top-nav .top-nav-content .top-nav-num svg {
  margin-left: 9px;
}

.top-nav .top-nav-content .top-nav-num .top-nav-num-context a {
  color: #525252;
  font-size: 15px;
  font-weight: 400;
}

.top-nav .top-nav-content p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.top-nav .top-nav-content .top-nav-num .top-nav-num-hyphen {
  color: #009fe3;
  font-weight: 700;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

.top-nav .top-nav-content .top-nav-add {
  align-items: center;
}

.top-nav .top-nav-content .top-nav-add svg {
  margin-left: 9px;
}

.top-nav .top-nav-content .top-nav-add p {
  color: rgba(0, 0, 0, 0.68);
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--yekanbakh-num);
}

.top-nav .top-nav-location {
  border-radius: var(--border-radius);
  background-color: var(--color-secondary);
  align-items: center;
  height: 30px;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.top-nav .top-nav-location:hover {
  box-shadow: 0px 0px 10px 0px var(--hover-shadow);
}

.top-nav .top-nav-location-img {
  height: 40px;
  align-self: flex-end;
}

.top-nav .top-nav-location h6 {
  margin-block-start: 0em;
  margin-block-end: 0em;
  color: #434d61;
  font-size: 13px;
  font-weight: 700;
}

/* nav */

.nav {
  justify-content: space-between;
  background: linear-gradient(180deg, #f7fafc 0%, #f7f8f8 50%, #f7fafc 100%);

  align-items: center;
  z-index: 30;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.fixed-nav {
  position: fixed;
  top: 0;
  margin: 0;
  width: 100%;
  padding: 5px 270px;
  border-radius: 0;
  right: 0;
}

.nav-logo {
  display: flex;
  padding: 5px 0;
}

.nav-logo img {
  height: 60px;
}

.nav .nav-list {
  background-color: #e8ebf2;
  padding: 5px;
  border-radius: var(--border-radius);
  gap: 10px;
  height: fit-content;
 align-items: center;

}

.nav .nav-list .nav-item {
  align-items: center;
  cursor: pointer;

  border-radius: var(--border-radius);
  transition: all 0.3s;
  padding: 0 0px 0px 5px;
}

.nav .nav-list .nav-item h6 {
  color: #2f2f2e;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-block-start: 0em;
  margin-right: 3px;
  margin-left: 3px;
  margin-block-end: 0em;
  white-space: nowrap;
}

.nav .nav-list .nav-item .nav-item-icon-container {
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.nav .nav-list .nav-item .nav-item-icon-container .nav-item-icon {
  stroke: #00adef;
}

/* .nav .nav-list .nav-item:hover .nav-item-icon {
  stroke: white;
} */
.nav .nav-list .nav-item:hover {
  background-color: #fff;
}

/* .nav .nav-list .nav-item:hover .nav-item-icon-container {
  background-color: #00adef;
} */

.nav-item:hover .sub-nav-container1 {
  height: 380px;
  opacity: 1;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.sub-nav-container1 {
  z-index: 29;
  position: absolute;
  top: 71px;
  cursor: auto;
  left: 0;
  opacity: 0;
  width: 100%;
  background-color: #f7f9fa;
  overflow-y: hidden;
  height: 0;
  transition: all 0.5s ease-in-out;

  display: flex;
  align-items: flex-end;
}

.sub-nav-container {
  height: 95%;
  width: 100%;
  background: linear-gradient(109deg, #fff 27.77%, #bbe6f7 118.2%);
  overflow-y: hidden;
  padding: 0 270px;
}

.sub-nav-list {
  margin: 2rem 0px 5rem 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  column-gap: 40px;
}

.sub-nav-item-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #009fe3;
}

.sub-nav-item {
  text-align: right;
  margin: 10px 0px;
  align-items: center;
  position: relative;
  font-size: 14px;
  width: 130px;
}

.sub-menu-img-container {
  position: absolute;
  left: 0px;

  bottom: 0;
  display: flex;
}

.sub-menu-img-container img {
  height: 230px;
}

.collapsible-content {
  max-height: 0;
  position: absolute;
  width: 100%;
  right: 0;
  top: 56px;
  overflow-y: hidden;

  transition: all 0.5s ease-in-out;
}

.collapsible--expanded .collapsible-content {
  max-height: 100vh;
}

.sub-nav-item a {
  color: #2f2f2e;
  margin-right: 15px;
  transition: margin 0.3s;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  min-width: 100px;
   max-width: fit-content;
  white-space:nowrap;
}

.sub-nav-item a:hover {
  margin-right: 20px;
}

.nav-list-mobile {
  background: linear-gradient(109deg, #fff 27.77%, #bbe6f7 118.2%);
  width: 100%;
  top: 10px;

  text-align: right;
  padding: 1rem;
  margin-top: 14px;
}

.nav-item-mobile {
  margin: 20px 0;
}

.nav-item-mobile a {
  color: #2f2f2e;
  margin-right: 5px;

  transition: margin 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav-info {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  right:0;
  flex-direction: column;
  /*margin-top: 2rem;*/
  margin-bottom: 0;
  /*position:absolute;*/
  /*bottom:6rem;*/
}

.footer-line {
  display: none;
}

.mobile-nav-info .top-nav-location {
  /* border: 2px solid #52cbfc; */
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius);
  background-color: var(--color-secondary);
  align-items: center;
  height: 30px;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.mobile-nav-info .top-nav-location h6 {
  margin-block-start: 0;
  margin-block-end: 0;
}

.mobile-nav-info .top-nav-location-img {
  height: 40px;
  align-self: flex-end;
}

.mobile-nav-info .top-nav-num-context {
  font-family: var(--yekanbakh-num);
  font-size: 14px;
}

.mobile-nav-info .top-nav-num svg {
  margin-left: 5px;
}

.mobile-nav-info p {
  margin-block-end: 0;
  margin-block-start: 8px;
  align-items: center;
  display: flex;
}

.mobile-nav-info a {
  color: #525252;
  line-height: 10px;
}

.mobile-nav-info .top-nav-add {
  font-size: 14px;
}

.mobile-nav-info .top-nav-add svg {
  margin-left: 5px;
}

.menu-icon-container {
  display: none;
}

/* main slider */

.main-slider {
  position: relative;
}

.main-slider .main-slider-item {
  height: auto;
  /*object-fit: cover;*/
}

.main-slider .main-dots {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
}

.main-slider .main-dots .slick-active button {
  background: url(../img/main-active-dot.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0;
  border: none;
  /*width: 17px;*/
  /*height: 50px;*/
  /* margin: 5px 0; */
      padding: 17px 9px;

}
.slick-vertical .slick-slide{
    border:unset!important;
}

.main-slider .main-dots ul {
}

.main-slider .main-dots li {
  display: flex;
  margin: 5px 0;
}

.main-slider .main-dots button {
    padding:0 7px;
  /*width: 16px;*/
  cursor: pointer;
  /*height: 16px;*/
  border: 2px solid #fff;
border-radius: 50%;
  text-indent: -9999px;
  background-color: #33bdf2;
}

/* result */
.result {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.result .result-item-container {
  column-gap: 13px;
  row-gap: 20px;
  justify-content: center;
  margin-top: 10px;
  /* flex-wrap: wrap; */
}

.result .result-item {
  flex-grow: 1;
  border-radius: 20px;
  height: 200px;

  flex-direction: row;
  background-image: url(../img/result-item-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* gap: 17px; */
  justify-content: space-between;
  align-items: flex-end;
  transition: all 0.3s;
}

.result .result-item:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 10px 0px var(--hover-shadow);
}

.result .result-item-img-container {
  display: flex;
  position: relative;
  height: 100%;
  width: fit-content;
  align-items: flex-end;
}

.result .result-item-img-container img {
  z-index: 3;

  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  height: 220px;
}

.result .result-item-content {
  margin-right: 22px;
  margin-bottom: 22px;
  z-index: 20;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.result .result-item-content .result-item-title {
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.result .result-item-content .result-item-title h5 {
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: 17px;
  text-align: right;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.68);
  white-space: nowrap;
}

.result .result-item-content .result-item-but {
  gap: 5px;
  background-color: #fff;
  width: fit-content;

  border-radius: var(--border-radius);
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 13px 10px 10px;
  transition: all 0.3s;
}

.result .result-item-content .result-item-but h6 {
  margin-block-start: 0;
  margin-block-end: 0;
  color: #434d61;
  font-size: 13px;
  white-space: nowrap;
  text-align: right;
  font-weight: 500;
  line-height: 17px;
}

.result .result-item .result-item-bubble {
  position: absolute;
  opacity: 0.6;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}

.result-item-bubble.size11 {
  width: 20px;
  height: 20px;
  left: 150px;
  top: 10px;
  animation: mymove11 10s infinite ease-in-out;
}

.result-item-bubble.size33 {
  width: 56px;
  height: 56px;
  left: 10px;
  bottom: 10px;
  animation: mymove33 10s infinite;
}

.result .result-item .result-item-bubble.size1 {
  width: 47px;
  height: 47px;
  left: 165px;
  top: 10px;
  animation: mymove1 4s infinite ease-in-out;
}

@keyframes mymove1 {
  0% {
    left: 165px;
  }
  50% {
    left: 185px;
  }
  100% {
    left: 165px;
  }
}

@keyframes mymove11 {
  0% {
    top: 10px;
    left: 105px;
  }
  30% {
    top: 10px;
    left: 195px;
  }

  60% {
    top: 60px;
  }

  100% {
    top: 10px;
    left: 105px;
  }
}

@keyframes mymove2 {
  0% {
    top: 10px;
  }
  50% {
    top: 30px;
  }
  100% {
    top: 10px;
  }
}

@keyframes mymove3 {
  0% {
    bottom: 30px;
    left: 120px;
  }
  20% {
    /* bottom: 30px;
    left: 120px; */

    bottom: 10px;
    left: 140px;
  }

  50% {
    bottom: 30px;
    left: 160px;
  }

  70% {
    bottom: 10px;
    left: 120px;
  }

  100% {
    bottom: 30px;
    left: 120px;
  }
}

@keyframes mymove33 {
  0% {
    bottom: 30px;
    left: 10px;
  }
  30% {
    bottom: 30px;
    left: 160px;
  }

  60% {
    bottom: 10px;
    left: 160px;
  }

  100% {
    bottom: 30px;
    left: 10px;
  }
}

.result .result-item .result-item-bubble.size2 {
  width: 114px;
  height: 114px;
  left: 5px;
  top: 10px;
  animation: mymove2 3s infinite;
}

.result .result-item .result-item-bubble.size3 {
  width: 76px;
  height: 76px;
  left: 140px;
  bottom: 10px;
  animation: mymove3 13s infinite;
}

/* about */

.about {
  align-items: center;
  justify-content: center;
  gap: 73px;
}

.about .about-img-container {
  display: flex;

  justify-content: center;
}

.about .about-img-container .about-img {
  width: 400px;
}

.about .about-content-container {
  align-items: flex-start;
}

.about .about-content-container .about-content .about-content-title {
  gap: 11px;
}

.about .about-content-container .about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* services */

.services {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.services-slider-container {
  margin-bottom: 1rem;
}

.services-slider {
  padding: 0 60px;
}

.services .slick-current .size1 {
  width: 30px;
  height: 30px;
  top: 10px;
  right: 25px;
  animation: mymove4 7s infinite;
  background-color: #d4f1fc;
}

.services .slick-current .size2 {
  width: 18px;
  height: 18px;
  top: 20px;
  background-color: #d4f1fc;
  right: 70px;
  animation: mymove6 3s infinite;
}

.services .slick-current .size3 {
  width: 33px;
  background-color: #eef9fe;
  height: 33px;
  bottom: 10px;
  left: 40px;
  animation: mymove5 5s infinite;
}

.services .slick-slider .slick-active + .slick-active:nth-child(even) .size1 {
  width: 30px;
  height: 30px;
  top: 10px;
  right: 25px;
  animation: mymove4 7s infinite;
  background-color: #d4f1fc;
}

.services .slick-slider .slick-active + .slick-active:nth-child(even) .size2 {
  width: 18px;
  height: 18px;
  top: 20px;
  background-color: #d4f1fc;
  left: 25px;
  animation: mymove6 3s infinite;
}

.services .slick-slider .slick-active + .slick-active:nth-child(even) .size3 {
  width: 33px;
  background-color: #eef9fe;
  height: 33px;
  bottom: 10px;
  left: 40px;
  animation: mymove5 5s infinite;
}

.services .slick-slider .slick-active + .slick-active:nth-child(odd) .size1 {
  width: 30px;
  height: 30px;
  top: 10px;
  right: 25px;
  animation: mymove7 7s infinite;
  background-color: #d4f1fc;
}

.services .slick-slider .slick-active + .slick-active:nth-child(odd) .size2 {
  width: 18px;
  height: 18px;
  top: 20px;
  background-color: #d4f1fc;
  left: 25px;
  animation: mymove9 3s infinite;
}

.services .slick-slider .slick-active + .slick-active:nth-child(odd) .size3 {
  width: 33px;
  background-color: #eef9fe;
  height: 33px;
  bottom: 10px;
  left: 40px;
  animation: mymove8 5s infinite;
}

.services-slider-item {
  border-radius: 20px;
  margin: 1rem auto;
  padding: 23px 0;
  justify-content: center;
  position: relative;
  display: flex !important;
  width: 90% !important;
  cursor: pointer;
  transition: box-shadow 0.3s;
  box-shadow: 0px 0px 10px 0px var(--shadow-color);
}

.services-slider-item:hover {
  box-shadow: 0px 0px 10px 0px var(--hover-shadow);
}

.services-slider-item-content {
  z-index: 20;
  position: relative;
}

.services-slider-item-content > img {
  margin: 0 auto;
}

.services-slider-item-content > h6 {
  color: #4a4b4d;
  font-size: 16px;
  font-weight: 500;
  margin-block-start: 11px;
  margin-block-end: 0;
  text-align: center;
}

.services-slider-item-drop {
  border-radius: 50%;
  z-index: 10;

  position: absolute;
}

@keyframes mymove4 {
  0% {
    top: 10px;
    right: 65px;
  }
  30% {
    top: 70px;
    right: 25px;
  }

  60% {
    top: 10px;
    right: 25px;
  }

  100% {
    top: 10px;
    right: 65px;
  }
}

@keyframes mymove5 {
  0% {
    left: 50px;
    bottom: 60px;
  }
  50% {
    left: 70px;
    bottom: 30px;
  }
  100% {
    left: 50px;
    bottom: 60px;
  }
}

@keyframes mymove6 {
  0% {
    top: 70px;
    left: 50px;
  }
  50% {
    top: 30px;
    left: 50px;
  }
  100% {
    top: 70px;
    left: 50px;
  }
}

@keyframes mymove7 {
  0% {
    top: 30px;
    right: 25px;
  }
  30% {
    top: 50px;
    right: 80px;
  }

  60% {
    top: 80px;
    right: 25px;
  }

  100% {
    top: 30px;
    right: 25px;
  }
}

@keyframes mymove8 {
  0% {
    left: 60px;
    bottom: 40px;
  }
  50% {
    left: 40px;
    bottom: 60px;
  }
  100% {
    left: 60px;
    bottom: 40px;
  }
}

@keyframes mymove9 {
  0% {
    top: 40px;
    left: 25px;
  }
  50% {
    top: 20px;
    left: 50px;
  }
  100% {
    top: 40px;
    left: 25px;
  }
}

.services .slick-next.slick-arrow {
  border-radius: 50%;
  background-color: #d4f1fc;
  position: absolute;
  display: flex;
  right: 0;
  cursor: pointer;
  top: 40%;
  padding: 10px 14px 10px 16px;
}

.services .slick-prev.slick-arrow {
  border-radius: 50%;
  background-color: #d4f1fc;
  position: absolute;
  display: flex;
  left: 0;
  top: 40%;
  padding: 10px 16px 10px 14px;
  cursor: pointer;
}

.services .slick-prev.slick-arrow img {
  width: 10px;
}

/* insurance */

.insu {
  flex-direction: row;
  justify-content: space-between;
  gap: 73px;
  /* height: 350px; */
  align-items: center;
  margin-bottom: 5rem;
}

.insu .insu-content-container .insu-content-title {
  gap: 11px;
}

.insu .insu-content-container {
  align-items: flex-start;
}

.insu .insu-slider-container {
  background-image: url("../img/bg-insu.png");
  background-repeat: no-repeat;
  position: relative;
  transform: translate(0, 10%);
  background-size: 100% 100%;
  min-height: 350px;
  width: 50%;
}

.insu .insu-slider-container .insu-slider {
  height: fit-content;
  display: flex;
  padding: 12% 10% 0 10%;
  position: static;
}

.insu .insu-slider-container .insu-slider .insu-slider-item {
  display: flex !important;
  background-image: url(/themes/rayan/img/insu-item-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 120px;
}

.insu .insu-slider-container .insu-slider .insu-slider-item > img {
  width: 80px;
  height: auto;
  margin: 10px 0 0 0;
}

.insu .insu-slider-container .insu-slider .insu-dots {
  list-style: none;
  display: flex;
  gap: 4px;
  right: 160px;
  position: absolute;
  bottom: 10px;
  overflow: hidden;
}


.insu .insu-slider-container .insu-slider .insu-dots button {
  border: none;
  width: 13px;
  cursor: pointer;
  height: 13px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  text-indent: -9999px;
  transition: all 0.3s;
  padding: 0;
}

.insu .insu-slider-container .insu-slider .insu-dots .slick-active button {
  background-color: #009fe3;
  width: 27px;
  height: 13px;
  border-radius: var(--border-radius);
}

/* Bootstrap-style v3 columns */
.gallery-cnt .column {
  position: relative;
  float: left;
  min-height: 1px;
  width: 33%;
  padding-left: 4px;
  padding-right: 4px;

  /* Space between tiles */
  margin-top: 8px;
}

.gallery-cnt .col-span {
  width: 50%;
}

.gallery-cnt .my-sizer-element {
  width: 0%;
}

/* default styles so shuffle doesn't have to set them (it will if they're missing) */
.gallery-cnt .my-shuffle {
  position: relative;
  overflow: hidden;
}

.gallery-cnt .aspect {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.gallery-cnt .aspect__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.gallery-cnt .aspect--16x9 {
  padding-bottom: 56.25%;
}

.gallery-cnt .aspect--9x80 {
  padding-bottom: calc(112.5% + 8px);
}

.gallery-cnt .aspect--32x9 {
  padding-bottom: calc(28.125% - 3px);
}

.gallery-cnt .container img {
  display: block;
  width: 100%;

  max-width: none;
  height: 100%;
  object-fit: cover;
}

.gallery-cnt .gallery-cnt {
  padding-bottom: 50px;
  padding-top: 50px;
  position: relative;
}

.gallery-cnt .grid-cnt {
  display: flex;
  justify-content: center;
  margin: 4px auto 0 auto;
}

.gallery-cnt .picture-item-cnt {
  padding: 4px;
  width: 33.33%;
}

.gallery-cnt .picture-item-cnt .picture-item {
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 16px;
  display: block;
  position: relative;
}

.gallery-cnt .picture-item-cnt .picture-item img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.gallery-cnt .picture-item-cnt .picture-item:hover img {
  scale: 1.05;
}


.blog .blog-items-container .blog-row {
  flex-direction: column;
  gap: 20px;
}

.blog .blog-items-container .blog-item {
  border-radius: 15px;
  border: 0.5px solid #e5e7eb;
  padding: 16px;
  gap: 18px;
  cursor: pointer;
  transition: box-shadow 0.3s;
  box-shadow: 0px 0px 5px 1px var(--shadow-color);
 
}

.blog .blog-items-container .blog-item img {
  object-fit: cover;
  border-radius: 12px;
  /*height: 510px;*/
  max-width: 400px;
}

.blog .blog-items-container .blog-item:hover {
  box-shadow: 0px 0px 5px 3px var(--hover-shadow);
}

.blog .blog-items-container .blog-item .blog-item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}

.blog .blog-items-container .blog-item .blog-item-content h4 {
  margin-block-start: 0px;
  margin-block-end: 0px;
  color: #253081;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
  margin-top: 20px;
}

.blog .blog-items-container .blog-item .blog-item-content h6 {
  margin-block-start: 12px;
  margin-block-end: 18px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  direction: rtl;
}

.blog
  .blog-items-container
  .blog-item
  .blog-item-content
  .blog-item-content-more {
  align-items: center;
  display: flex;
  justify-self: flex-end;
}

.blog
  .blog-items-container
  .blog-item
  .blog-item-content
  .blog-item-content-more:hover
  .blog-item-content-more-text {
  color: #006f9f;
}

.blog
  .blog-items-container
  .blog-item
  .blog-item-content
  .blog-item-content-more
  .blog-item-content-more-text {
  color: #009fe3;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.3s;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* footer */

.footer {
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  margin: 5rem 107px 0 107px;
  height: 100%;
  padding: 50px 160px 0px 160px;
  column-gap: 40px;
}

.footer .footer-img-container {
  /* margin-right: 100px; */
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  /* padding: 0 40px; */
  row-gap: 60px;
}

.footer .footer-content .footer-info {
  gap: 20px;
}

.footer .footer-content .footer-info .footer-info-item {
  align-items: center;
}

.footer .footer-content .footer-info .footer-info-item img {
  width: 46px;
  height: 46px;
}

.footer .footer-content .footer-info .footer-info-item h6 {
  color: #525252;
  margin-right: 5px;
  text-align: right;
  font-size: 12px;
  font-weight: 450;
  margin-block-start: 0px;
  margin-block-end: 0px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-family: var(--yekanbakh-num);
}

.footer .footer-content .footer-info .footer-info-item a {
  color: #525252;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--yekanbakh-num);
  margin-block-start: 0px;
  margin-block-end: 0px;
}

.footer .footer-content .footer-info .footer-info-item .footer-info-item-num {
  display: flex;
  flex-direction: column;
}

.footer .footer-content .footer-menu {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
  gap: 30px;
}

.footer .footer-content .footer-menu p {
  font-weight: 400;
  font-size: 16px;
}

.footer-lists-container {
  justify-content: space-evenly;
}

.footer .footer-menu .footer-list-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer .footer-menu .footer-list-container .footer-list {
  padding-inline-start: 0px;
}

.footer .footer-menu .footer-list-container .footer-list-heading {
  color: #253081;
  margin-block-start: 0em;
  margin-block-end: 0em;
  font-size: 18px;

  font-weight: 700;
}

.footer .footer-menu .footer-list-container .footer-list .footer-list-item h5 {
  display: flex;
  margin: 0.5rem 0;
  color: #525252;
  font-size: 16px;
  transition: margin 0.3s;
  font-weight: 500;
  margin-block-start: 0em;
  margin-block-end: 0rem;
}

.footer .footer-menu .footer-list-container .footer-list .footer-list-item a {
  display: flex;
  align-items: center;
  margin-bottom: 0.55rem;
}

.footer
  .footer-menu
  .footer-list-container
  .footer-list
  .footer-list-item:hover
  h5 {
  margin-right: 0.5rem;
}

.footer .footer-menu .footer-menu-about .footer-social-container {
  flex-direction: row;
  gap: 40px;
}

.footer .footer-menu .footer-menu-about .footer-social-container > div {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-social {
  height: fit-content;
  display: flex;
  transition: margin 0.2s;
}

.footer-social:hover {
  margin-bottom: 5px;
}

.footer-social-container h5 {
  color: #253081;
  margin-block-start: 0em;
  margin-block-end: 0em;
  font-size: 18px;

  font-weight: 700;
}

/* copyright */

.copyright {
  margin-top: 12px;
  justify-content: space-between;
}

.copyright-text {
  direction: rtl;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  font-weight: 500;
}

/* contact us */

.contact-us {
  /* align-items: center; */
  justify-content: center;
  gap: 50px;
  align-content: stretch;
}

.contact-info {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #ccecf9;
  padding: 1rem 2rem 3rem 2rem;
  flex-basis: 30%;
}

.contact-info-heading {
  text-align: center;
}

.contact-info svg {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.contact-info a {
  color: #2f2f2e;
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: 500;
  text-align: right;
  margin-top: 5px;
}

.contact-info-text {
  transition: margin 0.3s;
}

.contact-info-item:hover .contact-info-text {
  margin-right: 5px;
}

.contact-info p {
  color: #2f2f2e;
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: 500;
  text-align: right;
  margin-top: 5px;
}

.contact-info > div {
  align-items: center;
  margin-bottom: 10px;
}

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

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

.contact-info-phone p {
  font-family: var(--yekanbakh-num);
  opacity: 0.85;
}

.contact-form {
  background-color: #ccecf9;
  padding: 1rem 2rem 3rem 2rem;
  border-radius: 15px;
  flex-basis: 70%;
}

.contact-form-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form-input-container {
  margin-bottom: 20px;
  gap: 20px;
  width: 100%;
}

.contact-form-input-container input {
  border: 0;
  border-radius: 15px;
  direction: rtl;
  padding: 1rem 0.5rem 1rem 0;
  width: 100%;
}

.contact-us textarea {
  border: 0;
  border-radius: 15px;
  direction: rtl;
  padding: 0.5rem 0.5rem;

  width: 100%;
}

.contact-form .button {
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background-color: #009fe3;
}
.breadcrumb{
    height:300px;
    background-position: center;
}
textarea {
    resize: none;
}
.collapsible--expanded .nav-icon {
  display: none;
}

.nav-close-icon {
  display: none;
  position: absolute;
  left: 20px;
  top: 25px;

}

.collapsible--expanded .nav-close-icon {
  display: flex;
}
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.nav-tabs {
    border-bottom: none !important;
}

.text-left {
    text-align: left !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.alphabet-nav .nav-item {
    margin: 2px;
    height: 50px;
}



.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}



.nav-tabs .nav-link.active {
    background-color: #253081 !important;
    /* border: 1px solid var(--color-secondary) !important; */
    color: white!important;
}
.alphabet-nav .nav-item .nav-link:hover{
    background-color:var(--color-secondary) !important;
}
.btn-sm{
    cursor: pointer;
}
.btn-sm:hover{
    background-color:var(--color-secondary) !important;
    color: #000!important;
}
.alphabet-nav .nav-item .nav-link {
    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%;

}

.text-cyan {
    color: #253081;
    font-weight: bold;;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333% !important;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667% !important;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-9 {
        -ms-flex: 0 0 70%;
        flex: 0 0 70%;
        max-width: 75%;
    }

}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}


.tab-content>.tab-pane {
    display: none;
}

.fade:not(.show) {
    opacity: 0;
}

.fade {
    transition: opacity .15s linear;
}

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

.rounded {
    border-radius: 0.25rem !important;
}

.bg-cyan {
    background-color: var(--color-secondary);
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}



.text-decoration-none {
    text-decoration: none !important;
}

.text-white {
    color: #000 !important;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
.list-search input {
width: 280px!important;
margin-left: 10px;
outline: none!important;
box-shadow: none!important;
border: 1px solid #d7d7d7 !important;
border-radius: 20px;
}
.btn {
display: inline-block;
font-weight: 400;
color: #212529;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
/* border-radius: 0.25rem; */
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    direction: rtl;
}
.testTitle {
    background-color: #253080;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.testDesc {
    background-color: #e7e7e7;
    color: #000;
    display: flex;
    padding: 16px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;

}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
