:root {
  --org-color: #1956b1;
  --threshold: 0.5;
  --border-threshold: 0.8;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  --text-color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
}


/* ============== Loading Fonts =================== */
@font-face {
  font-family: "Vazirmatn";
  src: url('../fonts/vazir/Vazirmatn-RD-FD-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url('../fonts/vazir/Vazirmatn-RD-FD-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url('../fonts/vazir/Vazirmatn-RD-FD-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==============  general styles =================== */
* {
  font-family: Vazirmatn;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

a,
a:hover {
  text-decoration: none;
  color: unset;
}

main {
  overflow-x: hidden;
  min-height: 60vh;
}

.offcanvas.show {
  visibility: visible;
}


.text-justify {
  text-align: justify;
}

.text-org-color {
  color: var(--org-color);
}
.bg-org-color {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
}

.btn-org-color {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  --border-alpha: calc((var(--perceived-lightness) - var(--border-threshold)) * 100);
  border-color: rgba(calc(var(--r) - 50), calc(var(--g) - 50), calc(var(--b) - 50), var(--border-alpha));

}

.btn-org-color:hover {
  --border-alpha: calc((var(--perceived-lightness) - var(--border-threshold)) * 100);
  background-color: rgba(calc(var(--r) - 20), calc(var(--g) - 20), calc(var(--b) - 20), 0.8);
  color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));

}

.btn-org-color-outline {
  background-color:transparent;
  border: 2px solid;
  border-color: var(--org-color);
  color: var(--org-color);
}

.btn-org-color-outline:hover {
  background-color:var(--org-color);
  border-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
}


.pt-20 {
  padding-top: 20px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}


.pb-100 {
  padding-bottom: 100px;
}

.ptb-20 {
  padding-bottom: 20px;
  padding-bottom: 20px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}


.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}


@media(max-width: 500px) {
  .ptb-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .ptb-sm-1 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  .ptb-sm-2 {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .ptb-sm-3 {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

.h-700 {
  height: 700px;
}


*[data-background-image],
.background-img-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.bg-img-2 {
  background-image: url("../images/mainpage/slide2.webp");
}

.bg-img-1 {
  background-image: url("../images/mainpage/slide1.webp");
}


.search-input-icon {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  border-radius: inherit;
  background-color: transparent;
  border-width: 0;
  color: var(--org-color);
}

.search-info input {
  border-color: #d8d8d8;
}


.search-info input::placeholder {
  color: #a1a1a1;
  font-size: 14px;
}


.sepretor {
  height: 2px;
  width: 5rem;
  background-color: var(--org-color);
  margin: 1em 0;
}

.hasBackgroundimg {
  background-size: cover;
  width: 100%;
  height: 100%;
}

.paginationList {
  padding: 0;
  display: flex;
  direction: ltr;
}

.paginationList .pageItem {
  margin: 0 0.2em;
  border-radius: 2px;
}

.paginationList .pageItem .page-link:link,
.paginationList .pageItem .page-link:visited {
  color: var(--org-color);
  background-color: #fff;
}

.paginationList .pageItem .page-link:hover {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
}

.paginationList .pageItem.active a {
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)) !important;
  background-color: var(--org-color) !important;
}

/* ==============  reset liberies styles =================== */
.text-primary {
  color: var(--org-color);
}

.btn {
  border-radius: 0;
}

.btn-primary {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  padding: 0.7em 0.5em;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-color: var(--org-color);
}

.btn-primary:hover {
  background-color: #fff;
  text-decoration: none;
  color: #000;
  border-color: var(--org-color);
}

.btn-primary:focus {
  background-color: var(--org-color);
  box-shadow: 0 0 0 0.25rem rgba(214, 94, 60, 0.5);
  text-decoration: none;
  color: #fff;
  border-color: var(--org-color);
}

.btn-outline-primary {
  border-color: var(--org-color);
  color: var(--org-color);
}

.btn-outline-primary:hover {
  background-color: var(--org-color);
  border-color: var(--org-color);
}

.form-control,
.form-select {
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--org-color);
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000;
}

.accordion-button:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  /* number of lines to show */
  line-height: 1.5;
  /* fallback */
  max-height: 6;
  /* fallback */
}

/* .swiper-pagination .swiper-pagination-bullet {
  background: var(--org-color) !important;
  width: 20px;
  height: 4px;
  border-radius: 0;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--org-color) !important;
  opacity: 1;
} */

/* ==============  loader styles =================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border: 2px solid #c9c9c9;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s ease-in-out infinite;
}
.loader::after {
  border-color: var(--org-color);
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
    

/* ==============  header styles =================== */

@keyframes slide-in-out {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(200%);
  }

  100% {
    transform: translateX(0%);
  }
}

header {
  display: flex;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logoContainer {
  margin: auto 0;
  padding: 0.2em 3em;
}

header .logoContainer .LogoImg {
  width: 6rem;
  height: auto;
}

header .centerNavList {
  display: flex;
  align-items: center;
}

header .centerNavList nav .navbarList {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}

header .centerNavList nav .navbarList .navLink {
  display: block;
  color: #000;
  padding: 0.25em 0;
}

header .centerNavList nav .navbarList .navListItem {
  padding: 0.5em 1em;
  font-weight: 400;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;

}

header .centerNavList nav .navbarList .navListItem i {
  display: none;
}

header .centerNavList nav .navbarList .navListItem .submenuList {
  display: none;
  position: absolute;
  top: 100%;
  right: 0%;
  width: 100%;
  background-color: #fff;
  padding: 0;
  width: 220px;
  text-align: start;
  border: 0.08em solid #d8d8d8
}

header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2,
.navbarList .hasSubMenu3 {
  position: relative;
}

header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 {
  display: none;
  position: absolute;
  top: calc(0% - 00.04em);
  right: calc(100% + 0.04em);
  width: 100%;
  background-color: #fff;
  padding: 0;
  width: 220px;
  text-align: start;
  border: 0.08em solid #d8d8d8
}


header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3 .submenuList3 {
  display: none;
  position: absolute;
  top: calc(0% - 0.04em);
  right: 100%;
  width: 100%;
  background-color: #fff;
  padding: 0;
  width: 220px;
  text-align: start;
  border: 0.08em solid #d8d8d8
}



@media (min-width: 992px) {
  header .centerNavList nav .navbarList .navListItem:hover > a {
    color: var(--org-color);
  }

  header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2:hover .submenuList2 {
    display: block;
    /* border-bottom: 4px solid var(--org-color); */

  }

  header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3:hover .submenuList3 {
    display: block;
    /* border-bottom: 4px solid var(--org-color); */

  }
}

.submenuList li>a,
.submenuList2 li>a,
.submenuList3 li>a {
  /* border-bottom: 1px solid #f5f5f5; */
  padding: 0.5em;
}

iconify-icon.submenu-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
}


@media only screen and (max-width: 62em) {
  header .centerNavList nav .navbarList .navListItem .submenuList {
    width: 100%;
  }
}

header .centerNavList nav .navbarList .navListItem .submenuList .subListItem {

  text-transform: capitalize;
  font-size: 0.9rem;
}

.subListItem:hover>a,
.subListItem2:hover>a,
.subListItem3:hover>a,
.subListItem:hover>.submenu-icon,
.subListItem2:hover>.submenu-icon,
.subListItem3:hover>.submenu-icon {
  background-color: var(--org-color);
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color: hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%)) !important;
}

@media (min-width: 62em) {
  header .centerNavList nav .navbarList .navListItem:hover .submenuList {
    display: block;
    /* border-bottom: 4px solid var(--org-color); */
  }
}

header .centerNavList nav .navbarList .navListItem.active .submenuList,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2.active .submenuList2,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3.active .submenuList3 {
  display: block;
  width: 100%;
  margin-top: 0.3em;
}

header .centerNavList nav .navbarList .navListItem.active .submenuList {
  background-color: #f9f9f9;
}

header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2.active .submenuList2 {
  background-color: #f2f2f2;
}

header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3.active .submenuList3 {
  background-color: #e6e6e6;
}

header .centerNavList nav .navbarList .navListItem.active>a,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2.active>a,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3.active>a {
  color: var(--org-color);
}

header .centerNavList nav .navbarList .navListItem.active .submenuList>.submenu-icon,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2.active>.submenu-icon,
header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3.active>.submenu-icon {
  color: var(--org-color);
  transform: rotateZ(-90deg);
}

header .rightContainer {
  margin-right: auto;
  display: flex;
  align-items: center;
  padding: 0em 3em;
}

header .rightContainer .languageSwitcher {
  padding: 1em;
  position: relative;
}

header .rightContainer .languageSwitcher iconify-icon {
  color: var(--org-color);
}

header .rightContainer .languageSwitcher .languageList {
  position: absolute;
  top: 75%;
  left: 10%;
  width: fit-content;
  background-color: #ededed;
  padding: 0.5em 1em;
  display: none;
  z-index: 10;
}

header .rightContainer .languageSwitcher .languageList .languageItem:hover {
  text-decoration: underline;
}

header .rightContainer .languageSwitcher .languageList .languageItem:hover a {
  color: #000;
}

header .rightContainer .languageSwitcher:hover .languageList {
  display: block;
}

header .rightContainer .contactUsContainer {
  height: 100%;
  border-right: 1px solid #ededed;
  padding: 0 1em;
}

header .rightContainer .contactUsContainer a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
}

header .rightContainer .contactUsContainer a:hover p {
  text-decoration: underline;
  padding: 0.2em;
}

header .rightContainer .contactUsContainer a:hover .box iconify-icon {
  animation: slide-in-out 0.8s forwards;
}

header .rightContainer .contactUsContainer p {
  margin: 0 1em;
  padding: 0.2em;
}

header .rightContainer .contactUsContainer .box {
  height: 100%;
  background-color: var(--org-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
  position: relative;
}

header .rightContainer .contactUsContainer .box iconify-icon {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease-out;
}

header .rightContainer .smsContainer__number {
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

header .rightContainer .menu-btn {
  display: none;
  border-width: 0;
  background-color: transparent;
  outline-width: 0;
  padding: 0.8em;
  font-size: 1.2rem;
  color: var(--org-color);
}

.img__test {
  width: 50%;
  float: left;
  padding-right: 2.5rem;
}

@media (max-width: 1200px) {
  header .rightContainer {
    padding: 0;
  }

  header .rightContainer .contactUsContainer {
    padding: 0;
  }

  header .rightContainer .contactUsContainer p {
    display: none;
  }

  header .rightContainer .menu-btn {
    display: block;
  }
}

@media (max-width: 992px) {
  header .logoContainer {
    padding: 0.2em 0.5em;
  }

  header .logoContainer .LogoImg {
    width: 5rem;
  }

  header .centerNavList {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  header .centerNavList nav {
    display: none;
  }

  header .centerNavList nav .navbarList {
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    padding: 0;
    align-items: flex-start;
    z-index: 10;
  }

  header .centerNavList nav .navbarList .navLink {
    display: block;
    width: 100%;
  }

  header .centerNavList nav .navbarList .navListItem {
    display: flex;
    width: 100%;
    padding: 0.8em;
    border-bottom: 1px solid #ededed;
    position: relative;
    height: auto;
  }

  header .centerNavList nav .navbarList .navListItem i {
    display: block;
    float: left;
  }

  header .centerNavList nav .navbarList .navListItem .submenuList,
  header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2,
  header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3 .submenuList3 {
    position: static;
    
  }
  
  header .centerNavList nav .navbarList .navListItem.active .submenuList, header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2.active .submenuList2, header .centerNavList nav .navbarList .navListItem .submenuList .hasSubMenu2 .submenuList2 .hasSubMenu3.active .submenuList3 {
    margin-top: 0.8em;
  }

  header .centerNavList nav .navbarList .navListItem .submenuList .subListItem {
    padding: 0;
  }

  header .centerNavList nav .navbarList .navListItem.active {
    display: block;
  }

  header .centerNavList nav .navbarList .navListItem.active i {
    transform: rotateX(180deg);
  }

  header .centerNavList nav.active {
    display: block;
  }

  header .rightContainer {
    padding: 0 0em;
  }

  header .rightContainer .contactUsContainer {
    padding: 0;
  }

  header .rightContainer .contactUsContainer p {
    display: none;
  }

  header .rightContainer .menu-btn {
    display: block;
  }
}

/* ==============  footer styles =================== */
footer {
  background-color: #1c1c1c;
  padding: 3em 0.2em;
  padding-bottom: 0;
}

footer .footerMenuTitle {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid var(--org-color);
  padding-bottom: 0.5em;
  width: fit-content;
  width: -moz-fit-content;
  margin-bottom: 0.5em;
}

footer .footerMenu {
  color: #fff;
}

footer .footerMenu .footerMenuItem {
  padding: 0.3em 0;
  border-bottom: 1px solid transparent;
  font-weight: 300;
  width: fit-content;
  width: -moz-fit-content;
}

footer .footerMenu .footerMenuItem:hover {
  border-bottom: 1px solid var(--org-color);
}

footer .footerMenu .footerMenuItem:hover a {
  color: #fff;
}

footer .socialIconsSec {
  margin-top: 1em;
}

footer .socialIconsSec .socialIcons {
  padding: 0.5em 0;
}

footer .socialIconsSec .socialIcons .iconify-icon {
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s;
}

footer .socialIconsSec .socialIcons .iconify-icon:hover {
  color: var(--org-color);
}

footer .copyrightSec {
  border-top: 1px solid rgba(255, 255, 255, 0.4);

  text-align: center;
}

footer .copyrightSec small {
  margin: auto 1em;
  color: rgba(255, 255, 255, 0.568627451);
}

footer .copyrightSec small a:link,
footer .copyrightSec small a:visited {
  color: var(--org-color);
  transition: all 0.3s ease-out;
}

footer .copyrightSec small a:hover,
footer .copyrightSec small a:visited {
  color: rgba(255, 255, 255, 0.568627451);
}

@media only screen and (max-width: 37.5em) {
  .copyrightSec small {
    font-size: 0.75rem;
  }
}

/* ==============  main page styles =================== */


.heroSection .heroImg {
  transform: skew(5deg);
  position: relative;
  left: -5px;
  transform-origin: bottom right;
  width: 100%;
  height: 100%;
}

.heroSection .subTitle {
  color: #878786;
  font-weight: 500;
  text-transform: uppercase;
}

.heroSection .heroTitle {
  font-size: 3rem;
  font-weight: 700;
}

.heroSection p {
  font-size: 1.1rem;
  width: 90%;
  font-weight: 500;
}

.heroSection .herobtn {
  width: 25%;
}

.bg-gray {
  background-color: #ededed;
}

.section .sectionContext {
  padding: 0 0.5em;
  width: 85%;
  margin: 0 auto;
}

.section .sectionTitle {
  font-size: 2.3rem;
  font-weight: 600;
}

.section .sectionBodyText p {
  font-size: 1rem;
  text-align: justify;
}

.cardsSec .backSec {
  position: absolute;
  width: 90%;
  height: 100%;
  right: 0;
  top: -0.8em;
}

.RegionSec i,
.RegionSec a {
  color: var(--org-color);
}

.RegionSec strong {
  padding: 0 0.5em;
}

@media (max-width: 999px) {
  .heroSection .heroImg {
    transform: skew(0);
    right: 0;
  }

  .heroSection .heroTitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1em;
  }

  .heroSection p {
    font-size: 1.1rem;
    width: 100%;
    font-weight: 500;
  }

  .heroSection .herobtn {
    width: 50%;
  }

  .section .sectionContext {
    padding: 0 0.5em;
    width: 100%;
    margin: 0 auto;
  }

  .section .sectionTitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1em;
  }

  .section .sectionBodyText p {
    font-size: 1.1rem;
  }
}

/* ============== sevice boxs styles =================== */


.sevice-box {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  border: 1px solid #f2f2f2;

}

.sevice-box .icon {
  position: relative;
  padding: 0.2em;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--org-color);

}

.sevice-box .icon::before {
  position: absolute;
  /* background-color: #f2f2f2; */
  border-radius: 5px;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.sevice-box:hover {
 background-color: #fafafa;
}

.sevice-box:hover .buttons a {
  gap: 1em;
  color: var(--org-color);
 }




/* ============== project gallery styles =================== */
.project-carousel,
.f-carousel {
  max-height: 800px;
  overflow: hidden;
  margin: 2em;
}

.project-carousel .f-carousel__slide {
  max-height: 600px;
}

.project-carousel .f-carousel__slide img {
  max-height: 600px;
  display: block;
}

.galleryHeroSection {
  background-image: linear-gradient(245deg,
      #ededed max(460px, 60%),
      #fff max(460px, 60%));
}

.galleryContents .filterSection .heroContainer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}

.galleryContents .filterSection button {
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 1em;
}

.galleryContents .filterSection label {
  font-size: 1rem;
  font-weight: 600;
}

.galleryContents .filterSection .searchbar {
  display: flex;
  border: 1px solid #ededed;
  padding: 0.3em;
  width: 18rem;
}

.galleryContents .filterSection .searchbar input {
  border: 0;
}

.galleryContents .filterSection .searchbar input::placeholder {
  color: #878786;
}

.galleryContents .filterSection .searchbar .searchIcon {
  display: flex;
  align-items: center;
  color: #878786;
}

#offcanvasFilters {
  width: 35%;
}

#offcanvasFilters .offcanvas-header {
  box-shadow: 0 8px 4px -4px #ededed;
  padding: 3em 2em;
}

#offcanvasFilters .filterList .filterItem {
  font-size: 1.2rem;
}

#offcanvasFilters .accordion-item {
  padding: 0.5em;
}

#offcanvasFilters .accordion-item .accordion-button {
  font-weight: 700;
  font-size: 1.1rem;
}

.ProjectCard {
  overflow: hidden;
}

.ProjectCard .subTitle {
  text-transform: uppercase;
  color: #878786;
  font-weight: 600;
}

.ProjectCard img {
  transition: transform 0.4s ease;
  transform-origin: 50% 50%;
  height: 250px;
}

.ProjectCard:hover img {
  transform: scale(1.02);
  width: 100%;
}

.ProjectCard__link:link,
.ProjectCard__link:visited {
  transition: all 0.3s;
}

.ProjectCard__link:hover,
.ProjectCard__link:active {
  color: var(--org-color);
  transition: all 0.3s;
}

#myCarousel {
  margin: 0 auto;
}

#myCarousel .f-carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 999px) {
  #offcanvasFilters {
    width: 65%;
  }

  .galleryHeroSection {
    background-image: linear-gradient(98deg,
        #ededed 100%,
        #fff max(460px, 60%));
  }
}

@media (max-width: 600px) {
  #offcanvasFilters {
    width: 100%;
  }

  .project-carousel .f-carousel__slide img {
    height: auto;
    max-height: unset;
    display: block;
    width: 100%;
  }
}

/* ============== Blogs styles =================== */
.BlogHeroSection p {
  font-weight: 400;
}

.BlogHeroSection .heroContainer {
  width: 75%;
}

.BlogHeroSection .heroTitle {
  margin: 0.5em 0;
}

.BlogsSec .tagsSec .tagsList,
.BlogsSec .blogTags .tagsList {
  padding: 0.5em 0;
  display: flex;
  gap: 0.8em;
  flex-wrap: wrap;
}

.BlogsSec .tagsSec .tagsList .tagItem,
.BlogsSec .blogTags .tagsList .tagItem {
  flex-shrink: 0;
}

.BlogCard {
  transition: all 0.5s;
}

.BlogCard a:hover {
  color: var(--org-color);
  text-decoration: none;
  transition: all 0.5s;
}

.fullscreenMediaTitle {
  position: relative;
}

.fullscreenMediaTitle .imgContainer img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  display: block;
}

.fullscreenMediaTitle .overly {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.05));
  position: absolute;
  top: 0;
}

.fullscreenMediaTitle .Title {
  color: #fff;
  font-weight: 700;
  white-space: pre-line;
  font-size: 2.8rem;
  line-height: 1.3;
}

.blogMoreIcon {
  position: absolute;
  bottom: 1em;
  left: 48%;
  font-size: 50%;
  color: #fff;

}

.blogBody {
  padding: 3em 0em;
  margin: auto;
}

.blogBody p {
  white-space: pre-line;
  font-size: 1.1rem;
}

@media (max-width: 1100px) {
  .fullscreenMediaTitle .Title {
    font-size: 2.1rem;
  }

  .blogBody {
    padding: 1.5em 0em;
    margin: auto;
  }

  .blogBody p {
    white-space: pre-line;
    font-size: 1rem;
  }
}

@media (max-width: 770px) {
  .BlogHeroSection .heroContainer {
    width: 100%;
  }

  .fullscreenMediaTitle {
    position: relative;
  }

  .fullscreenMediaTitle .imgContainer img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .fullscreenMediaTitle .Title {
    font-size: 1.2rem;
  }

  .blogBody {
    padding: 1.5em 0.5em;
    width: 100%;
    margin: auto;
  }

  .blogBody p {
    white-space: pre-line;
    font-size: 0.95rem;
  }
}

/* ============== pages styles =================== */
.PageTitle {
  padding-top: 1em;
  font-size: 2.7rem;
  font-weight: 700;
}

.aboutText {
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

.aboutText ul li {
  list-style: disc;
}

.BrochureSection ul {
  list-style: square;
}

.BrochureSection ul li {
  list-style: square;
  padding: 0.5em 0;
  font-size: 1.1rem;
}

.ExploreSec {
  background-image: url("../images/about-img.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

.ExploreSec .overly {
  padding: 3em;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0,
      rgba(0, 0, 0, 0.5) 45%,
      rgba(0, 0, 0, 0.05));
}

.ExploreSec .overly h6 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 999px) {
  .aboutText {
    width: 100%;
    font-size: 1rem;
  }
}

/* ============== Contact-us styles =================== */
.socialmdia__link:link,
.socialmdia__link:visited {
  transition: all 0.3s;
}

@media only screen and (min-width: 48em) {

  .socialmdia__link:link i,
  .socialmdia__link:visited i {
    font-size: 3em;
  }
}

.socialmdia__link:hover,
.socialmdia__link:active {
  color: var(--org-color);
}

.contactus__link:link,
.contactus__link:visited {
  transition: all 0.3s;
}

.contactus__link:hover,
.contactus__link:active {
  color: var(--org-color);
}

/* ============== Links styles =================== */
.links__link:link,
.links__link:visited {
  transition: all 0.3s;
}

.links__link:hover,
.links__link:active {
  color: var(--org-color);
}

.footerLogoContainer {
  padding-right: 5px;
}

.fontsize {
  font-size: 14px !important;
}


.h_iframe-aparat_embed_frame {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.h_iframe-aparat_embed_frame iframe,
.h_iframe-aparat_embed_frame object,
.h_iframe-aparat_embed_frame emmet {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}



.richtext-sec img {
  max-width: 100%;
  height: auto;
  margin: 0.2em auto;
  display: block;
}

.richtext-sec ul li {
  list-style: disc !important;
  text-align: justify;
  margin-bottom: 0.5em;
}
.richtext-sec h1 {
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  font-weight: bold;
  font-size: 2.00em !important;

}

.richtext-sec h2 {
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  font-weight: bold;
  font-size: 1.50em !important;

}

.richtext-sec h3 {
  margin-block-start: 1.00em;
  margin-block-end: 1.00em;
  font-weight: bold;
  font-size: 1.17em !important;

}

.richtext-sec h4 {
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  font-weight: bold;
  font-size: 1.00em !important;

}

.richtext-sec h5 {
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  font-weight: bold;
  font-size: 0.83em !important;

}

.richtext-sec h6 {
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  font-weight: bold;
  font-size: 0.67em !important;

}

.richtext-sec p {
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  font-size: 1rem !important;
  text-align: justify;
  line-height: 2;

}





.pagination-box .page-item.active .page-link {
  border-color: var(--org-color);
  background-color: var(--org-color) !important;
  --sum: calc(var(--r) * 0.2126 + var(--g) * 0.7152 + var(--b) * 0.0722);
  --perceived-lightness: calc(var(--sum) / 255);
  color : hsl(0, 0%, calc((var(--perceived-lightness) - var(--threshold)) * -10000000%));
  
}

.pagination-box .page-link:hover {
  color: var(--org-color);
  background-color: transparent;
}

.pagination-box .page-link {
  color: #0c0032;
    border-color: transparent;
    border-radius: 10px;
    padding: 0.5em 0.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.page-item.disabled .page-link {
  background-color: transparent;
  color: #c8c8c8;
  pointer-events: none;
  background-color: #fff;
  border-color: transparent;
}



.swiper-number-pagination .swiper-number {
  text-align: left;
  bottom: 70px
}

.swiper-number-pagination .swiper-number .swiper-pagination-bullet {
  position: relative;
  padding-right: 10px;
  padding-left: 8px;
  margin: 0;
  color: #fff;
  opacity: .7;
  width: auto;
  -webkit-transition: .5s;
  transition: .5s;
  height: auto;
  background: 0 0;
  border-radius: 0;
  outline: 0
}

.swiper-number-pagination .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1
}

.swiper-number-pagination .swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 70px
}

.swiper-number-pagination .swiper-number .swiper-pagination-bullet:after {
  width: 0;
  height: 1px;
  content: "";
  margin-right: 15px;
  display: inline-block;
  background: #fff;
  vertical-align: middle;
  -webkit-transition: .5s;
  transition: .5s
}


/* ================ Mobile Navbar ================== */

.header-section .mobile-menu-btn {
  color: #fff;
}

.header-section.scrolled .mobile-menu-btn {
  color: #0c0032;
}

#offcanvasMobileMenu {
  width: 80%;
  max-width: 400px;
}

.list-group-item {
  position: unset !important;
}
.mobile-menu-item.list-group-item {
  border-color: #f8f8f8;

}
.mobile-menu-item, .mobile-menu-item .nav__link {
  font-size: 0.9rem;
}

.mobile-menu-item.has-submenu .nav__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.nav,
.nav__sub {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.nav__link {
  font-weight: 500;
  text-decoration: none;
}

.nav__sub {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  transform: translateX(100%);
  
}

.nav__sub.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.gallary-item img {
  border-radius: 3px;
}


.gallary-item .gallary-img a:hover:before {
  border-radius: 3px;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 1;
}

.gallary-item .gallary-img a .iframe-btn {
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 2;
  top: 42%;
  left: 42%;
}

.gallary-item .gallary-img a:hover .iframe-btn {
  display: flex;
}

.gallary-item .gallary-img a:hover .iframe-btn:hover {
  background-color: var(--org-color);
  color: var(--text-color);
}

.gallary-item.video-gallery a:before {
  border-radius: 3px;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  z-index: 1;
}

.gallary-item.video-gallery .iframe-btn {
  z-index: 2;
  top: 42%;
  left: 42%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.icon-carbon--image-search {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M24 14a5.99 5.99 0 0 0-4.885 9.471L14 28.586L15.414 30l5.115-5.115A5.997 5.997 0 1 0 24 14m0 10a4 4 0 1 1 4-4a4.005 4.005 0 0 1-4 4m-7-12a3 3 0 1 0-3-3a3.003 3.003 0 0 0 3 3m0-4a1 1 0 1 1-1 1a1 1 0 0 1 1-1'/%3E%3Cpath fill='%23000' d='M12 24H4v-6.003L9 13l5.586 5.586L16 17.168l-5.586-5.585a2 2 0 0 0-2.828 0L4 15.168V4h20v6h2V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v20a2 2 0 0 0 2 2h8Z'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.icon-ph-play-fill {
  display: inline-block;
  width: 24px;
  height: 24px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M240 128a15.74 15.74 0 0 1-7.6 13.51L88.32 229.65a16 16 0 0 1-16.2.3A15.86 15.86 0 0 1 64 216.13V39.87a15.86 15.86 0 0 1 8.12-13.82a16 16 0 0 1 16.2.3l144.08 88.14A15.74 15.74 0 0 1 240 128'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.gallary-item.video-gallery a:hover:before {
  background: rgba(0, 0, 0, 0.3);
}

.gallary-item.video-gallery a:hover .iframe-btn {
  background-color: var(--org-color);
  color: var(--text-color);
}

.iframe-btn {
  position: absolute;
  background-color: #212124cc;
  border-radius: 50%;
  width: 15%;
  aspect-ratio: 1 / 1;
  font-size: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 40%;
  left: 40%;
  border: none;
  outline: none;
  transition: background-color 0.2s, color 0.2s;
}
