@font-face {
    font-family: 'Yekta';
    src: url(assets/fonts/yekta/yekta.ttf) format("truetype"),
    url(assets/fonts/yekta/yekta.woff) format("woff"),
    url(assets/fonts/yekta/yekta.woff2) format("woff2");
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/light.ttf);
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/bold.ttf);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/black.ttf);
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Peyda';
    src: url(assets/fonts/peyda/black.ttf);
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/light.ttf) format("truetype"),
    url(assets/fonts/estedad/light.ttf) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/regular.ttf) format("truetype"),
    url(assets/fonts/estedad/regular.woff2) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/bold.ttf) format("truetype"),
    url(assets/fonts/estedad/bold.woff2) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/extra-bold.ttf) format("truetype"),
    url(assets/fonts/estedad/extra-bold.woff2) format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: estedad;
    src: url(assets/fonts/estedad/black.ttf) format("truetype"),
    url(assets/fonts/estedad/black.woff2) format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.f-peyda {
    font-family: 'Peyda', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Yekta, serif;
    background-color: #eeeeee;
    direction: rtl;

    width: 100%;
}

.container-sm {
    max-width: 1200px !important;
}

.container-md {
    max-width: 1400px !important;
}

.container-lg {
    max-width: 1600px !important;
}

.container-xl {
    max-width: 1800px !important;
}

.container-xxl {
    max-width: 1900px !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.flash-nav {
    background-color: #00023D;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 4px 30px;
    height: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.flash-nav span {
    color: #fff;
    font-weight: 120;
    font-size: 16px;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: scroll-right 20s linear infinite;
}

.flash-content img {
    height: 33px;
    width: auto;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

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

.header {
    height: 64px;
    background-color: #fff;
    padding: 0px;
    margin: 0px;
}

.mobile-nav {
    width: 100%;
    background: #fff;
    transition: top 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        box-shadow: none;
    }
    to {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    animation: slideDown 0.8s ease forwards;
}


.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    background: #e0e0e0;
    border-radius: 50px;
    width: 50px;
    height: 30px;
    padding: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-circle {
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-wrapper.active {
    background: #333;
}

.toggle-wrapper.active .toggle-circle {
    background: #474747;
}

.toggle-wrapper.active .toggle-circle {
    transform: translateX(-20px);
}

.toggle-circle svg {
    width: 16px;
    height: 16px;
    fill: #535353;
    transition: transform 0.3s;
}

.toggle-wrapper.active .toggle-circle svg {
    transform: rotate(180deg);
    transition: transform 0.3s;
    fill: #e7e4e4;
}

.header-last {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0px;
}

.head-logo {
    height: 54px;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    padding-right: 13px !important;
    padding-left: 13px !important;
    cursor: pointer;
}

.navbar-nav .nav-link:hover {
    color: #164893 !important;
    background-color: #daebf8;
    border-radius: 15px;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.header-first {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
}

.enter {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background-color: #0a53be;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    height: 36px;
}

.enter-left {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2px;
    padding-left: 10px;
    border-left: #fff 1px solid;
}

.enter-left img {
    height: 22px;
}

.enter-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 5px;
}

.download {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    height: 36px;
    background-color: #98b8e0;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.download img {
    height: 22px;
}

.language {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    height: 30px;
    border: 1px solid #444;
    background-color: #fff;
}

.language svg {
    height: 20px;
    flex-shrink: 0;
}

.theme img {
    height: 40px;
}

.hero-background {
    display: block;
    background: #e1e1e1 no-repeat center;
    background-size: cover;
}

.hero {
    background: linear-gradient(to left, #3939dd 22%, rgba(0, 100, 225, 0) 50%);
    color: #ffffff;
    padding: 170px 80px;
}

.hero-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.hero-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 24;
    border: #fff 1px solid;
    border-radius: 10px;
    padding: 6px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hero-links a:hover {
    background: #f4db00;
    color: #000000;
}

.hero img {
    height: 222px;
    margin-right: 10px;
}

.btn-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0px 7px 11px rgba(0, 0, 0, 0.3);
    border-radius: 22px;
    height: 85px;
    margin-top: -22px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    background: #ffffff;
}

.btn-options.option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 22px 20px;
    text-align: center;
}

.btn-options .option:hover {
    background: #f4db00;
    padding: 13px 3px;
    border-radius: 13px;
    cursor: pointer;
}

.option span {
    padding: 22px 22px;
    font-weight: 400;
    font-size: 18px;
}

.option svg {
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.services {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px 50px;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-decoration: none;
    color: #000;
    transition: 0.2s all;
    padding: 10px 0;
    height: 147px;
}

.service > img {
    height: 60px;
    filter: invert(27%) sepia(87%) saturate(6604%) hue-rotate(236deg) brightness(90%) contrast(100%);
}

.service .img-low {
    padding-top: 13px;
}

.service p {
    text-decoration: none;
    color: #3939dd;
    font-size: 14px;
    margin-top: -10px;
}

.service span {
    font-weight: 400;
    font-size: 16px;
}

.service-hover {
    display: none;
    flex-direction: row;
    align-items: center;
}

.service-hover span {
    color: #3939dd;
    font-size: 14px;
    font-weight: 500;
}

.service-hover svg {
    height: 20px;
    width: 20px;
    flex-shrink: 0;
    fill: #3939dd;
}

.service:hover {
    background: #fff;
    border-radius: 18px;
    transition: 0s all;
}

.service:hover .service-hover {
    display: flex;
}

.btn-contact-service {
    position: absolute;
    bottom: -10px;
    left: 10px;
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 70px;
    padding: 10px;
    background: #ffffff;
}

.about-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    justify-content: center;
}

.about-top > img {
    height: 500px;
    width: 500px;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    justify-content: center;
    padding: 10px;
}

.al-top {
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.al-top span {
    font-size: 20px;
    font-weight: normal;
    color: #1a1d20;
}

.al-top h2 {
    font-weight: bold;
    color: #3939dd;
}

.al-top p {
    justify-content: flex-end;
    /*width: 500px;*/
    line-height: 30px;
    font-size: 18px;
    text-align: right;
}

.alt-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: start;
}

.btn-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 11px;
    padding: 6px 20px;
}

.btn-more:hover {
    color: #7b7777;
    border: 1px solid #827f7f;
}

.btn-more svg {
    height: 28px;
    width: 30px;
    flex-shrink: 0;
}

.btn-blue {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    background-color: #3939dd;
    border-radius: 11px;
    padding: 6px 20px;
}

.btn-blue:hover {
    color: #7f8bf5;
    background-color: #1c1c72;
}

.al-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 2px;
    padding: 6px;
    justify-content: center;
    margin-top: 30px;
}

.alb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.albr {
    gap: 5px;
    padding: 5px;
}

.albr b {
    font-weight: bold;
    font-size: 18px;
}

.alb img {
    height: 80px;
    width: 80px;
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    background: #ffffff;
}

.sct {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-top: 40px;
}

.sc-top {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    background: #3939dd;
    padding: 40px 20px;
    border-radius: 22px;
    position: relative;
    width: 100%;
}

.sc-top > img {
    width: 136px;
    position: absolute;
    top: -30px;
    left: 30px;
}

.sc-s a img {
    height: 48px;
}

.sc-top span {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.sc-s {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.sc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
}

.sc b {
    font-weight: 1000;
    font-size: 24px;
}

.scf {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.scs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.scl {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.sc img {
    border-radius: 10px;
}

.sc-more {
    text-decoration: none;
    color: #444444;
    font-size: 16px;
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 4px 14px;
    background-color: #ffffffa3;
}

.sponsers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 30px;
}

.sponsers-titr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 30px;
}

.sponsers-titr b {
    font-weight: 1000;
    font-size: 24px;
}

.sponser-img {
    height: auto;
    width: 160px;
}

.sponsers-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.lisence {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding-top: 30px;
}

.lisence-titr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 30px;
}

.lisence-titr b {
    font-weight: 1000;
    font-size: 24px;
}

.lisence img {
    height: auto;
    width: 150px;
}

.lisence-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

footer {
    background-color: #f3f3ff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    justify-content: center;
    padding: 20px;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 45px;
    justify-content: center;
}

.footer-first {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    justify-content: flex-end;
}

.footer-first img {
    width: 220px;
    margin-right: 11px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.footer .info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.footer .info img {
    width: 32px;
}

.footer-second {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 45px;
}

.footer-second .input-group-prepend span {
    font-size: 16px;
    font-weight: 600;
    background: #02357d;
    border-radius: 15px;
    color: #fff;
}

.newsletter-input {
    border: 1px solid #02357d;
    border-radius: 15px;
    border-left: none;
}

.newsletter {
    border: 1px solid #02357d;
    border-radius: 15px;
}

.fs-first {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.fs-first p {
    font-weight: 400;
    font-size: 16px;
}

.fsf-links {
    display: flex;
    flex-direction: row-reverse;
    align-items: self-start;
    gap: 15px;
    justify-content: flex-end;
}

.fsf-links img {
    width: 32px;
    margin-left: 11px;
}

.fs-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.fss-links {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 11px;
    justify-content: flex-end;
}

.fss-links img {
    width: 24px;
    margin-left: 11px;
}

.footer-third {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 45px;
}

.ft-titr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 2px #3939dd solid;
    padding: 2px 0;
}

.ft-titr b {
    font-weight: 600;
    font-size: 16px;
}

.ft-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: flex-end;
}

.ft-links a {
    text-decoration: none;
    color: #000000;
    display: flex;
    justify-content: flex-end;
}

.footer-last {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.about-input {
    display: flex;
    align-items: center;
    justify-content: center;
}

.a-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    background-image: url("assets/img/input.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding: 20px 40px 20px 300px;
    width: 800px;
}

.a-input > span {
    color: #ffffff;
}

.about .input-group {
    display: flex;
    width: 400px;
    border: 1px #ffffff solid;
    border-radius: 16px;
    background: #071d5f;
}

.about .input-group-prepend {
    display: flex;
    background: #f1f1f1;
    align-items: center;
    border-radius: 16px;
}

.about .input-group-prepend span {
    font-size: 14px;
    font-weight: 600;
    color: #071e61;
}

.about .input-group input {
    border-radius: 16px;
    border: none;
    background: #071d5f;
    fill: #fff;
    padding: 11px;
}

.parts {
    overflow-x: hidden;
    background: #ffffff;
}

.parts-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 50px 20px 200px;
}

.parts-top span {
    font-size: 20px;
    font-weight: 400;
}

.parts-top b {
    font-weight: 1000;
    font-size: 24px;
}

.parts-top p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    /*width: max(400px, 800px);*/
    line-height: 2;
}

.parts-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    background: none;
    margin-top: -150px;
}

@media (min-width: 1000px) {
    .parts-bottom {
        transform: translateX(-11%);
    }
}

@media (min-width: 1200px) {
    .parts-bottom {
        transform: translateX(-12%);
    }
}

@media (min-width: 1400px) {
    .parts-bottom {
        transform: translateX(-13%);
    }
}

@media (min-width: 1600px) {
    .parts-bottom {
        transform: translateX(-13%);
    }
}

@media (min-width: 2000px) {
    .parts-bottom {
        transform: translateX(-15%);
    }
}

.dr-bottom {
    margin-top: 33px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dr-bottom span {
    font-size: 10px;
}

.part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 10px 10px 15px;
    background: #f1f2f3;
    border-radius: 20px;
    z-index: 3;
    position: relative;
}

.part-img {
    width: 99%;
}

.part span {
    font-size: 18px;
    font-weight: 600;
}

.part .border-line {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.parts-bottom .part span {
    padding: 20px 2px;
    font-size: 23px;
}

.downloads {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding-top: 300px;
    margin-top: -160px;
    background: #ffffff;
}

.downloads-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloads-left img {
    width: 500px;
}

.downloads-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 500px;
}

.dr-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.swiper {
    width: 100%;
}

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

.fs-5-5 {
    font-size: 1.1rem !important;
}

.bg-input {
    background: #071e61;
    border-radius: 35px;
}

.placeholder-light::placeholder {
    color: #737fa0 !important;
}

.w-35 {
    width: 35% !important
}

.w-40 {
    width: 40% !important
}

.w-45 {
    width: 45% !important
}

.news-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px;
    justify-content: center;
}

.news-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-top b {
    font-weight: 1000;
    font-size: 24px;
}

.news-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.news-part {
    padding: 10px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: relative;
}

.np-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 4px;
}

.np-top img {
    width: 100%;
}

.np-bottom {
    padding: 4px 8px;
    text-align: justify;
}

.news-part > img {
    position: absolute;
    right: 30px;
    bottom: 181px;
}

.projects-background {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3939dd;
    padding: 60px 20px 40px;
}

.projects-top {
    display: flex;;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.projects-top h2 {
    font-size: 26px;
    font-weight: bolder;
    color: #ffffff;
}

.projects-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.projects-part {
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    max-width: 360px !important;
}

.projects-part .img {
    min-width: 320px;
}

.projects-part h5 {
    text-align: center;
    font-weight: bolder;
    margin-top: 15px;
    margin-bottom: 15px;
}

.projects-part .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.projects-part .buttons a {
    text-decoration: none;
    padding: 5px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.projects-part .buttons .more {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #267bf3;
    color: #fff;
    box-shadow: inset 0 0 6px 2px #c7dcf9
}

.projects-part .buttons .invest {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdd70f;
    color: #000;
    box-shadow: inset 0px 0px 6px 3px #f8f3d7
}

.projects-p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.projects-p .p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 5px;
}

.projects-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.projects-more a {
    background: #fff;
}

.projects-part .progress {
    height: 10px;
}

.projects-part .progress-bar {
    background-color: #3030ee;
    height: 6px;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 5px;
}

.projects-part .p-circle {
    background: #0549b1;
    padding: 2px 5px;
    border-radius: 50%;
    margin-left: -4px;
    box-shadow: inset 0 0 0 2px #5477ee;
}

.equal-height {
    display: flex;
}

.equal-height > [class*='col-'] {
    display: flex;
    align-items: stretch;
}

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

.side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;
    width: 100%;
    background-color: #eeeeee;
    margin-top: 60px;
}

.side-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-top b {
    font-weight: 600;
    font-size: 18px;
}

.side-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 10px;
    gap: 7px;
    min-width: 220px;
    max-width: 200px;
}

.sb:hover {
    background: #0a53be;
}

.sb:hover .img {
    background-color: #ffffff;
}

.sb:hover span {
    color: #ffffff;
}

.sb span {
    text-align: center;
    margin-top: 8px;
}

.sb .img {
    padding: 5px;
    background: rgba(0, 100, 225, 0.2);
    border-radius: 12px;
}

.sb .img svg {
    width: 40px;
    height: 40px;
}

.internal-pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-p h1, .internal-pages h1 {
    font-weight: 1000 !important;
    font-size: 36px;
    color: #000369;
}

.contact-p p {
    color: #303030;
    font-size: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000369;
    min-width: 250px;
    padding: 40px 10px 10px;
    border-radius: 20px;
    position: relative;
    color: #ffffff;
    gap: 5px;
    justify-content: center;
    height: 130px;
}

.internal-pages .content {
    font-size: 19px;
    letter-spacing: 2px;
    line-height: 30px;
    width: 100%;
}

.internal-pages .content p {
    padding-top: 2px;
}

.contact-info .svg {
    position: absolute;
    top: -40px;
}

.contact-info .svg img {
    width: 100px;
}

.contact-info b {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.contact-info span {
    text-decoration: none;
    text-align: center;
    color: #e1e1e1;
    text-effect: none;
    font-size: 12px;
    font-weight: 500;
}

.contact-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.contact-socials img {
    width: 30px;
}

.img-head-l {
    margin-top: -50px;
    margin-bottom: -165px;
    max-width: 440px;
}

.q-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.btn-rezvan {
    border: 1px solid #afbacf;
    color: #7689b0;
    font-size: 16px;
    border-radius: 22px;
    text-align: center;
    width: fit-content;
    padding: 3px 16px;
    min-width: 130px;
}

.btn-rezvan:hover {
    cursor: pointer;
    border: 1px solid #939caf;
    color: #ffffff;
    background: #6a769d;
}

.btn-rezvan.active {
    background: #08163f;
    color: #fff;
}

.btn-rezvan.active:hover {
    cursor: pointer;
    color: #c2cdee;
    background: #071e61;
}

.content .accordion {
    --bs-accordion-bg: none !important;
}

.accordion-item {
    position: relative;
    border: none;
}

.accordion-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 11px;
    right: 11px;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
    padding: 20px 0;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.accordion-button:hover {
    background-color: #dddfe4 !important;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed):hover {
    background-color: #dddfe4 !important;
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    color: #333;
    background-color: transparent;
    box-shadow: none;
}

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

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
    font-size: 18px;
    padding: 13px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: none;
    border-bottom: 1px solid #dee2e6;
}

.accordion-body {
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #000;
    font-size: 16px;
    padding: 13px;
}

.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 1.1rem;
    font-weight: 400;
    transform: none !important;
    transition: all 0.2s ease;
    color: #737fa0;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: #737fa0;
}

.banner-rez {
    padding: 25px 20px 25px 40px;
    max-width: 970px;
    margin: 20px auto;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    background-size: cover !important;
}

.btn-call-text {
    border-radius: 15px !important;
    z-index: 1;
}

.btn-call {
    background-color: #cfe2fe;
    color: #071e61;
    width: 55px;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    margin-right: -13px !important;
    z-index: 0;
}

.content-white {
    background-color: #fff;
    margin: 0 auto;
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 12px;
}

.fund-img-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;
}

.fund-img-list img {
    width: 175px;
}

.timeline {
    position: relative;
    margin: 20px auto;
    padding: 20px 20px;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #d0d7de;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 22px;
}

.timeline-item .timeline-content {
    background: #edf4fc;
    border-radius: 23px;
    padding: 16px 16px;
    position: relative;
    width: 46%;
    color: #626263;
    font-size: 14px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-item::after {
    content: attr(data-step);
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    z-index: 1;
    border: 2px solid #ebeff1;
}

.timeline-item h5 {
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #dfe7ef;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item .timeline-content {
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    top: 22%;
    right: -22px;
    transform: translateY(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent transparent #eef3f8;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.03));
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    top: 22%;
    left: -22px;
    transform: translateY(-50%);
    border-width: 12px;
    border-style: solid;
    border-color: transparent #eef3f8 transparent transparent;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.03));
}

.timeline, .timeline-item, .timeline-item .timeline-content {
    overflow: visible !important;
}

.btn-support {
    position: fixed;
    left: 20px;
    bottom: 2%;
    background-color: #3939dd;
    color: #fff;
    border: none;
    border-radius: 13px;
    padding: 8px 22px;
    font-size: 17px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-support:hover {
    background-color: #0b146f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-support i {
    font-size: 18px;
}
.tp-50pr{
    bottom: unset;
    top: 50% !important;
}
@media (max-width: 991px) {
    .fund-img-list img {
        width: 150px;
    }

    .mobile-nav {
        display: flex;
        flex-direction: row-reverse;

    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        right: -12px;
        width: 100vw;
        background: #fff;
        z-index: 1000;
        padding: 2rem;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .contact-info {
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .timeline::before {
        left: 8px;
        transform: none;
    }

    .timeline-item .timeline-content::after {
        display: none;
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin-left: 30px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-item::after {
        left: 8px;
        transform: translateY(-50%);
    }

    .timeline-item .timeline-content {
        width: 100%;
        margin: 0 0 30px 30px;
    }

    .hero {
        padding: 155px 12px;
    }

    .hero-links a {
        padding: 6px 10px;
    }

    .btn-options {
        flex-direction: column;
        padding-top: 22px;
        padding-bottom: 22px;
        height: auto;
        gap: 28px;
    }

    .option span {
        padding: 22px 4px;
    }

    .btn-contact-service {
        bottom: -44px;
    }

    .sb {
        width: 160px;
        min-width: 160px;
    }

    .sc-top > img {
        top: 71px;
        left: -11px;
        width: 121px;
    }

    .sc-top {
        align-items: flex-start;
    }

    .btn-blue, .btn-more {
        padding: 6px 4px;
    }

    .about .input-group {
        width: 100%;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }

    .parts-top span {
        text-align: center;
    }

    .swiper-slide {
        padding: 14px;
    }

    .downloads {
        margin-top: -240px;
    }

    .downloads h2 {
        text-align: center;
    }

    .drt-links, .dr-bottom, .footer-first, .footer-second, .ft-links, .footer-third {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .news-top h2 {
        padding-top: 0 !important;
        margin-bottom: -22px !important;
    }

    .projects-part {
        margin-top: 12px;
    }

    .news-part {
        margin-top: 12px;
    }

    .news-background {
        padding: 1px;
    }

    .sponser-img {
        width: 150px;
    }

    .contact-info {
        margin-top: 50px
    }
}

@media (max-width: 550px) {
    .sponser-img {
        width: 140px;
    }
}

@media (max-width: 400px) {
    .sponser-img {
        width: 125px;
    }
}