﻿@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_UltraLight_FaNum.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Light_FaNum.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_FaNum.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Medium_FaNum.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Bold_FaNum.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Iran1";
  src: url("/styles/webfonts/IRANSansWeb_Black_FaNum.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
.bg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    gap: 8px;
    border-radius: 8px;
    padding: 4px;
}

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  display: block;
  line-height: 1.6;
  text-align: right;
  min-height: 100vh;
  overflow-x: hidden;
  color: #232c39;
  font-family: "Iran1", "Vazirmatn", sans-serif;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  text-wrap: balance;
  line-height: 1.1;
}

p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}


@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

::-webkit-scrollbar-thumb {
  background: radial-gradient(circle, #066899 0%, rgba(0, 0, 0, 0) 100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  width: 24px;
  height: 2px;
  background-color: #374151;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



.top-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 576px) {
  .top-bar__wrapper {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
/*.top-bar__item img {
  width: 18px;
}*/
.top-bar__item img :hover {
  filter: brightness(0) invert(1);
}
.top-bar__item.highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gray {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 16px;
}

.blue {
  color: #5075ae;
  font-weight: 500;
  font-size: 16px;
}

/* --- Header --- */
.header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
/*@media (max-width: 992px) {
  .header {
    padding: 8px 0;
  }
}*/
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.header__nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    display: none;
  }
}
.header__nav ul a {
  color: #555;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}
.header__nav ul a:hover {
  color: #13558d;
}
.header__logo img {
  height: 50px;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 40px;
  }
}
.header__actions {
  display: flex;
  gap: 16px;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 992px) {
  .header__actions {
    gap: 12px;
  }
}

/* --- Hamburger Menu --- */
.hamburger {
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 1.5px solid #ddd;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: #13558d;
  transition: all 0.2s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */

.hero{
    padding:0 !important;
}
.hero__wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: row !important;
    text-align: center;
    gap: 48px;
  }
}
.hero__image-side {
  flex: 1;
}
    .hero__image-side .video-box {
        border-radius: 0 !important;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }
.hero__image-side .video-box img {
  width: 100%;
  display: block;
  /*aspect-ratio: 16/10;*/
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__image-side .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hero__image-side .video-box .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 768px) {
  .hero__image-side .video-box .play-btn {
    width: 50px;
    height: 50px;
  }
}
.hero__content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero__content-side {
    align-items: center;
  }
}
.hero__title {
  font-size: 42px;
  font-weight: 900;
  color: #222;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
    line-height: 44px;
  }
}
.hero__subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #444;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
.hero__description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 18px;
    line-height: 28px;
  }
}
.hero__description .blue-text {
  color: #13558d;
  font-weight: bold;
}
.hero__btns {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero__btns {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Buttons --- */
.btn {
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 15px;
  }
}
.btn--primary, .btn--primary-large {
  background: #13558d;
  color: #fff;
}
.btn--primary:hover, .btn--primary-large:hover {
  background: #05577f;
  transform: translateY(-2px);
  box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, 0.12), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}
.btn--outline, .btn--outline-large {
  border: 1.5px solid #13558d;
  color: #13558d;
  background: transparent;
}
.btn--outline:hover, .btn--outline-large:hover {
  background: rgba(7, 122, 178, 0.08);
  transform: translateY(-2px);
}
.btn--primary-large {
  padding: 15px 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btn--primary-large {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.btn--outline-large {
  padding: 15px 40px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .btn--outline-large {
    padding: 12px 24px;
    font-size: 18px;
  }
}
.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hide-mobile {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 992px) {
  .show-mobile {
    display: flex;
  }
}




.hero__wrapper {
  flex-direction: unset;
}
.hero__image-side .video-box {
  border-radius: 0;
}
.hero__image-side .video-box img {
  aspect-ratio: 11/10;
}

/*.video-box {
    position: relative;
    background: url(/images/FAQCOVER.png) bottom left/cover no-repeat;
    min-height: 497px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
    .video-box::after {
        transform: scaleX(-1);
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.6);
        z-index: 1;
    }
*/
.video-box {
    position: relative;
    min-height: 497px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .video-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("/images/FAQCOVER.png") bottom left / cover no-repeat;
        transform: scaleX(-1);
        z-index: 0;
    }

    .video-box > * {
        position: relative;
        z-index: 1;
    }
.hero__content-side {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100% !important;
  padding: 40px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 560px;
}
/*.search-box input {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 48px 16px 16px;
  border: none;
  outline: none;
}

.search-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}*/
    .search-box input {
        width: 100%;
        height: 56px;
        background: #ffffff;
        border-radius: 12px;
        padding: 16px 48px 16px 16px;
        border: none;
        outline: none;
    }
.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

    .search-icon img {
        width: 24px;
        height: 24px;
        display: block;
        object-fit: contain;
    }

@media (max-width: 1024px) {
  .video-box {
    min-height: 400px;
  }
  .hero__content-side {
    padding: 40px 32px;
  }
}
@media (max-width: 768px) {
  .video-box {
    min-height: 320px;
    background-position: center;
  }
  .hero__content-side {
    padding: 24px 16px;
    text-align: center;
    align-items: center;
  }
  .search-box {
    max-width: 100%;
  }
}


.lists-wrapper {
    border-radius: 16px;
    padding: 42px 32px 32px;
    position: relative;
    background: #ffffff;
}

.list {
    position: relative;
}


.list-title {
    display: flex;
    align-items: center;
    background: #ffffff;
    width: 233px;
    height: 64px;
    gap: 8px;
    padding: 16px;
    position: absolute;
    top: -75px;
    right: 0;
    border-radius: 12px;
    z-index: 10;
    cursor: default;
    user-select: none;
}

    .list-title img {
        width: 32px;
        height: 32px;
    }

    .list-title span {
        color: #13558d;
        font-weight: 700;
        font-size: 20px;
        line-height: 32px;
        text-align: right;
        white-space: nowrap;
    }

    .list-title .chevron-down {
        display: none;
    }

.list-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 64px;
    row-gap: 26px;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding: 0;
    margin: 0;
    transition: none;
}
.list.toc-box--open .list-items {
    max-height: none;
    opacity: 1;
    padding: 0;
}

.list.toc-box--open .chevron-down {
    transform: none;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.list-item-num {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff6ff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
}

    .list-item-num span {
        color: #13558d;
        font-weight: 700;
        font-size: 20px;
        line-height: 32px;
        text-align: right;
    }

.list-item > span {
    color: #101828;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: right;
    flex: 1;
}

.list-item.sub-item {
    padding-right: 20px;
}

    .list-item.sub-item .list-item-num {
        background: transparent;
        width: 42px;
        height: 42px;
    }

        .list-item.sub-item .list-item-num span {
            color: #94a3b8;
            font-size: 18px;
        }

    .list-item.sub-item > span {
        color: #475569;
        font-weight: 600;
    }

@media (max-width: 1200px) {

    .list-items {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 840px) {

    .list-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .lists-wrapper {
        padding: 32px 16px 20px;
    }
    .list-title {
        width: auto;
        height: 56px;
        padding: 12px 16px;
        top: -68px;
        gap: 6px;
        cursor: pointer;
    }

        .list-title img:not(.chevron-down) {
            width: 24px;
            height: 24px;
        }

        .list-title span {
            font-size: 16px;
            line-height: 24px;
        }
        .list-title .chevron-down {
            display: block;
            width: 24px;
            height: 24px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
    .list-items {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
        margin: 0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.3s ease;
    }


    .list.toc-box--open .list-items {
        max-height: 800px;
        opacity: 1;
        padding: 16px 0 0;
    }

    .list.toc-box--open .chevron-down {
        transform: rotate(180deg);
    }


    .list-item > span {
        font-size: 14px;
        line-height: 22px;
    }

    .list-item-num {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

        .list-item-num span {
            font-size: 16px;
            line-height: 24px;
        }

    .list-item.sub-item {
        padding-right: 12px;
    }

        .list-item.sub-item .list-item-num {
            width: 34px;
            height: 34px;
        }

            .list-item.sub-item .list-item-num span {
                font-size: 14px;
            }

    .lists {
        margin: 31px auto !important;
    }
}


@media (max-width: 480px) {

    .lists-wrapper {
        padding: 28px 12px 16px;
    }

    .list-title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        padding: 16px;
        gap: 8px;
        width: max-content;
        margin-right: auto;
        margin-left: auto;
    }

        .list-title span {
            font-size: 14px;
            line-height: 20px;
        }

        .list-title img:not(.chevron-down) {
            width: 20px;
            height: 20px;
        }

        .list-title .chevron-down {
            width: 20px;
            height: 20px;
        }

    .list-items {
        row-gap: 8px;
    }

    .list-item {
        gap: 8px;
    }

        .list-item > span {
            font-size: 13px;
            line-height: 20px;
        }

    .list-item-num {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

        .list-item-num span {
            font-size: 14px;
            line-height: 20px;
        }

    .list-item.sub-item .list-item-num {
        width: 28px;
        height: 28px;
    }

    .list.toc-box--open .list-items {
        padding: 12px 0 0;
    }
}



.lists {
    margin: 45px auto !important;
}

@media (max-width: 768px) {

    .lists {
        margin: 54px auto !important;
    }
}


.faq {
    width: 100%;
    margin: 80px auto;
}

.faq-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 52px;
}

.faq .branches-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faq .branches-title-te {
    color: var(--Color-Primary, #13558D);
    font-weight: 900;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
}

.faq__container {
    width: 100%;
    /*max-width: 1200px;*/
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    /*padding: 4px 24px;*/
    box-sizing: border-box;
}


.faq__item {
    width: 100%;
    overflow: hidden;
    box-shadow: 0px 1px 10px 0px #00000026;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 16px;
    gap: 10px;
    padding: 24px;
}

    .faq__item:last-child {
        border-bottom: none;
    }


.faq__question {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 16px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
}


.faq__question-text {
    min-width: 0;
    flex: 1;
    font-family: "Iran1", "Vazirmatn", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: #232c39;
    text-align: right;
    overflow-wrap: break-word;
}

.faq__arrow {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faq__item--active .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: none;
    padding: 16px;
    background-color: #f3f4f6;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}


.faq__item--active .faq__answer {
    display: block;
}

.faq__answer p {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Iran1", "Vazirmatn", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25.2px;
    color: #4b5563;
    text-align: right;
    overflow-wrap: break-word;
}
.faq-wrappers {
    display: flex;
    flex-direction: column;
    gap: 128px;
       margin:137px auto;
}
@media (max-width: 768px) {

    .faq {
        margin: 48px auto;
    }
    .faq-wrapper {
        gap: 40px;
    }
    .faq .branches-title-te {
        font-size: 24px;
    }
    .faq__container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 4px 16px;
    }
    .faq__question {
        gap: 12px;
    }
    .faq__question-text {
        font-size: 16px;
        line-height: 1.8;
    }
    .faq__answer {
        padding: 12px;
    }
        .faq__answer p {
            font-size: 12px;
            line-height: 19px;
        }
    .faq__arrow {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }
    .faq-wrappers {
        margin: 55px auto;
        gap: 64px
    }
}

@media (max-width: 480px) {

    .faq {
        margin: 40px auto;
    }
    .faq-wrapper {
        gap: 32px;
    }
    .faq .branches-title-te {
        font-size: 20px;
    }
    .faq__container {
        padding: 4px 12px;
    }
    .faq__question {
        gap: 10px;
    }
    .faq__question-text {
        font-size: 14px;
    }
    .faq__answer {
        padding: 10px;
    }
        .faq__answer p {
            font-size: 12px;
            line-height: 20px;
        }
    .faq__arrow {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }
}
.faq-wrapper:nth-child(even) .faq__item {
    background: #EFF6FF;
}


/*time box*/

.branches {
    margin: 185px auto
}

@media (max-width:768px) {
    .branches {
        margin: 45px auto
    }
}

.branches-wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center
}

.branches-title {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

@media (max-width:768px) {
    .branches-title {
        flex-direction: column
    }
}

.branches-title img {
    width: 48px;
    height: 48px
}

@media (max-width:768px) {
    .branches-title img {
        width: 40px;
        height: 40px
    }
}

.branches-title-te {
    font-weight: 900;
    font-size: 32px;
    color: #313131
}

@media (max-width:768px) {
    .branches-title-te {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width:480px) {
    .branches-title-te {
        font-size: 20px
    }
}

.box-branches {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    width: 100%;
    align-items: stretch
}

@media (max-width:786px) {
    .box-branches {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

.big-branches {
    box-shadow: 0px 0px 20px 0px #00000026;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 16px;
    gap: 16px;
    padding: 32px;
}

@media (max-width:768px) {
    .big-branches {
        padding: 24px;
        gap: 16px
    }
}

.location {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0
}

    .location img {
        width: 22px;
        height: 22px
    }

.branch {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px
}

.branch-title {
    color: #101828;
    font-weight: 700;
    font-size: 20px;
    line-height: 29.75px;
    text-align: right;
    margin: 0
}

@media (max-width:768px) {
    .branch-title {
        font-size: 18px
    }
}

.branch-sub {
    color: #4a5565;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: right;
    margin: 0;
    padding-right: 0
}

@media (max-width:706px) {
    .branch-sub {
        font-size: 16px;
        line-height: 28px
    }
}

.line-branch {
    border: 1px solid rgba(54,133,198,0.3);
    margin: 8px 0
}

.loc-apps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px
}

@media (max-width:706px) {
    .loc-apps {
        display: grid;
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:476px) {
    .loc-apps {
        grid-template-columns: 1fr
    }
}

.loc-app {
    border: 1px solid #066899;
    display: flex;
    border-radius: 16px;
    gap: 8px;
    padding: 8px 16px;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff
}

    .loc-app:hover {
        background-color: #066899
    }

        .loc-app:hover span {
            color: #ffffff
        }

        .loc-app:hover img {
            filter: brightness(0) invert(1)
        }

    .loc-app img {
        width: 20px;
        height: 20px;
        -o-object-fit: cover;
        object-fit: cover;
        transition: all 0.2s ease
    }

    .loc-app span {
        font-weight: 700;
        font-size: 15px;
        text-align: center;
        color: #066899;
        transition: all 0.2s ease;
        white-space: nowrap
    }

@media (max-width:480px) {
    .loc-app span {
        white-space: normal;
        font-size: 12px
    }
}

.small-branches {
    display: flex;
    gap: 24px;
    flex-direction: column;
    height: 100%
}

@media (max-width:786px) {
    .small-branches {
        gap: 16px
    }
}

/*.s-top-branches {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px
}

@media (max-width:480px) {
    .s-top-branches {
        grid-template-columns: 1fr
    }
}
*/
.s-top-branche {
    display: flex;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.2s ease;
    min-height: 120px
}

    .s-top-branche:hover {
        transform: translateY(-3px);
        box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15)
    }

    .s-top-branche .num {
        color: #066899;
        font-weight: 700;
        font-size: 28px;
        line-height: 34px;
        text-align: center
    }

@media (max-width:768px) {
    .s-top-branche .num {
        font-size: 24px
    }
}

.s-top-branche span {
    color: #4a5565;
    font-weight: 400;
    font-size: 18px;
    text-align: center
}

@media (max-width:768px) {
    .s-top-branche span {
        font-size: 16px
    }
}

.s-bottombranch {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    gap: 12px;
    flex: 1;
    justify-content: center
}

@media (max-width:768px) {
    .s-bottombranch {
        padding: 24px;
        gap: 12px
    }
}

.s-bottombranch .branch-title {
    margin-top: 0
}

.s-bottombranch .branch-sub {
    line-height: 28px
}

    .s-bottombranch .branch-sub:last-child {
        margin-top: -4px
    }



@media (max-width:786px) {
    .box-branches {
        /*grid-template-columns: 1fr*/
        display: flex;
        flex-direction: column;
    }

    .big-branches {
        order: 2
    }

    .small-branches {
        order: 1
    }

 /*   .s-top-branches {
        grid-template-columns: repeat(2,1fr)
    }*/
}

@media (max-width:480px) {
  /*  .s-top-branches {
        grid-template-columns: 1fr
    }*/

    .loc-apps {
        grid-template-columns: 1fr
    }
}

.pro-img img {
    width: 410px;
    max-height: 288px
}

.dep-multi-locs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

@media (max-width:768px) {
    .dep-multi-locs {
        grid-template-columns: 1fr
    }
}

.dep-multi-loc {
    border: 1px solid #13558d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 16px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    border-width: 1px
}

    .dep-multi-loc img {
        width: 24px;
        height: 24px
    }

    .dep-multi-loc span {
        color: #13558d;
        font-weight: 700;
        font-size: 16px;
        text-align: center
    }

.map-add1 {
    border-radius: 24px;
    -o-object-fit: contain;
    object-fit: contain
}
.branch-content-bottom{
    display:flex;
    flex-direction:column;
    gap:5px
}
.big-branches{
    display:flex;
    flex-direction:column;
    gap:16px
}

/*service-infos*/
.service-infos {
    margin: 185px auto;
    box-shadow: 0px 0px 40px 0px #00000026;
    background: #FFFFFF;
    background: url(/images/Topology-1.png);
    opacity: 1;
    border-radius: 32px;
    padding: 73px 153px;
    display: flex;
    flex-direction: column;
    gap: 66px;
    background-repeat: no-repeat;
}
@media(max-width:1198px){
    .service-infos {
        padding: 73px;
    }
}

.service-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.ser-info {
    box-shadow: 0px 0px 32px 0px #00000026;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 20px;
  
}
.ser-info-con {
    display: flex;
    gap: 32px;
    padding: 16px;
    flex-direction: column
}
    .ser-info-con p {
        font-weight: 700;
        font-size: 20px;
        line-height: 32px;
        text-align: right;
        color: #313131;
       
    }
.ser-arrows {
    display:flex;
    align-items: end;
    justify-content:flex-end
}
.ser-arrow {
    width: max-content;
    background: #13558D;
    border-radius: 16px;
    gap: 12px;
    padding: 12px;
}
.ser-img {
    display: flex;
    flex-direction: column;
    padding: 16px;
    overflow:hidden
}
    .ser-img img{
        border-radius:8px
    }
    @media(max-width:768px) {
        .ser-info-con p {
            font-size: 16px;
        }
        .service-infos {
            margin: 64px auto;
        }
}
@media(max-width:927px) {
    .service-info {
        grid-template-columns: repeat(2,1fr);
       
    }
    .service-infos{
        gap:24px
    }

    .ser-info-con {
        gap: 8px
    }
    .service-infos {
        padding: 40px 36px;
    }
}

@media(max-width:568px) {
    .service-info {
        grid-template-columns: 1fr;
    }

  
}