@import url(../fonts/fontiran.css);

* {
    font-family: var(--font-reg);
    cursor: default;
    box-sizing: unset;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
address {
    font-family: var(--font-reg) !important;
    text-align: start;
    margin: 0;
}

p {
    margin: 0;
    line-height: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-clr);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

img,
video {
    object-fit: cover;
    object-position: center;
}

img {
    width: 100%;
}

input,
textarea {
    cursor: text;
}

a {
    display: block;
    text-decoration: solid;
    cursor: pointer;
    color: var(--primary-clr);
}

    a * {
        cursor: pointer;
    }

label {
    display: block;
}

button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

    button i,
    button span {
        cursor: pointer;
    }

main > *:not(:last-child) {
    margin-bottom: 100px;
}

section .title-sec {
    color: var(--black-clr);
}

section .title-sec-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

    section .title-sec-wrapper h3 {
        margin-bottom: 0;
    }

section .desc-sec {
    text-align: center;
    color: var(--black-clr);
}

section .section-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

address {
    color: var(--light-clr-10);
}

textarea,
textarea:focus,
textarea:visited,
textarea:active,
input,
input:focus,
input:visited,
input:active,
select {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
}

input,
select,
textarea{
    width: 100%;
}

::placeholder {
    color: var(--light-clr-5);
}

::-ms-input-placeholder {
    color: var(--light-clr-5);
}

.owl-carousel {
    direction: ltr !important;
}

    .owl-carousel .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .owl-carousel .owl-dots .owl-dot {
            width: 12px;
            height: 12px;
            border: 1px solid var(--primary-clr);
            border-radius: 12px;
            margin-inline: 4px;
        }

            .owl-carousel .owl-dots .owl-dot.active {
                background-color: var(--primary-clr);
            }

.w-100 {
    width: 100%;
}

.w-fit {
    width: fit-content;
}

.flex-j-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-j-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-j-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-j-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-auto-lg,
.flex-auto-xl {
    flex-wrap: wrap;
    align-items: center;
}

    .flex-auto-lg > *,
    .flex-auto-xl > * {
        margin-bottom: 20px;
    }

.flex-wrap {
    flex-wrap: wrap;
}

.vertical-stretch {
    align-items: stretch;
}

.vertical-center {
    align-items: center;
}

.pos-rel {
    position: relative;
}

.bg-view {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.bg-contain {
    background-size: contain;
}

.full-size {
    width: 100%;
    height: 100%;
}

.mask-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.gold-clr {
    color: var(--gold-clr);
}

.silver-clr {
    color: var(--silver-clr);
}

.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    main > *:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 420px) {
    .read-more {
        font-size: 0.9rem;
    }

        .read-more > i {
            width: 16px;
            height: 16px;
        }
}



/* --------------------
    shourt cut styles
-------------------- */

.m-0 {
    margin: 0px !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-l-0 {
    margin-left: 0px !important;
}

.m-r-0 {
    margin-right: 0px !important;
}

/* -------- */

.m-8 {
    margin: 8px !important;
}

.m-t-8 {
    margin-top: 8px !important;
}

.m-b-8 {
    margin-bottom: 8px !important;
}

.m-l-8 {
    margin-left: 8px !important;
}

.m-r-8 {
    margin-right: 8px !important;
}

/* -------- */

.f-w-500 {
    font-weight: 500;
}

.f-w-600 {
    font-weight: 600;
}

.f-w-700 {
    font-weight: 700;
}

/* --------- */

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column
}

.nowrap {
    text-wrap: nowrap;
}
.cursor-pointer {
    cursor: pointer;
}

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 100px;
    left: 20px;
    border-radius: 5px;
    background-color: var(--primary-clr);
    color: #fff;
    z-index: 999;
    width: 40px;
    text-align: center;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    font-size: 25px;
    -webkit-transition: var(--transition);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}

    .go-top i {
        position: absolute;
        right: 0;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }

    .go-top * {
        cursor: pointer;
    }

    .go-top:hover {
        color: #fff;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
        background-color: var(--primary-clr);
        border: 1px solid var(--primary-clr)
    }

    .go-top.active {
        opacity: 1;
        visibility: visible;
        bottom: 25px;
        -webkit-animation: top-bottom 5s infinite linear;
        animation: top-bottom 5s infinite linear
    }
@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    50% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
}

@-webkit-keyframes half-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: center;
        transform-origin: center
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transform-origin: center;
        transform-origin: center
    }
}

@keyframes half-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: center;
        transform-origin: center
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transform-origin: center;
        transform-origin: center
    }
}

@-webkit-keyframes video-play {
    0% {
        width: 50%;
        height: 50%
    }

    100% {
        width: 100%;
        height: 100%
    }
}

@keyframes video-play {
    0% {
        width: 50%;
        height: 50%
    }

    100% {
        width: 100%;
        height: 100%
    }
}

.sidebar-body ul {
    margin-top: 1.38rem;
}

.main-footer {
    background-color: var(--bg-clr-2);
    padding: 40px;
    padding-top: 160px;
    position: relative;
}

    .main-footer .footer-sec {
        width: calc(25% - 40px);
        margin-inline: 20px;
    }

    .main-footer .footer-about-sec p, .main-footer span {
        color: var(--light-clr-9);
        line-height: 28px;
    }

    .main-footer .footer-about-sec ul li {
        margin-inline: 6px;
        background-color: var(--white-clr);
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

        .main-footer .footer-about-sec ul li a {
            width: 100%;
            height: 100%;
        }

        .main-footer .footer-about-sec ul li a,
        .main-footer .footer-about-sec ul li p {
            /* font-size: 0.8125rem; */
        }

    .main-footer .footer-contact-sec ul li i {
        margin-inline-end: 6px;
    }

    .main-footer .footer-contact-sec ul li > * {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .main-footer .footer-contact-sec ul li {
        margin-bottom: 16px;
    }

    .main-footer .footer-fl-sec ul li a {
        margin-bottom: 14px;
        color: var(--light-clr-10);
    }

    .main-footer .footer-cert-sec p {
        color: var(--light-clr-11);
    }

    .main-footer a {
        color: var(--black-clr);
    }

    .main-footer address {
        display: flex;
        align-items: flex-start;
    }


.fa-custom {
    font-size: 0.78rem;
    padding: 0.05rem;
}

.position-relative {
    position: relative;
}

.top-0 {
    top: 0px;
}

.bottom-0 {
    bottom: 0px;
}

.left-0 {
    left: 0px;
}

.right-0 {
    right: 0px;
}

.footer-bg-atr {
    width: 12rem;
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}



@media screen and (max-width: 575px) {

    .footer-bg-atr {
        width: 22vw;
    }
}

.form-bg-atr {
    width: 31.83013rem;
    position: absolute;
}

.z-1 * {
    z-index: 1;
}

.z-2 * {
    z-index: 2;
}

.z-3 * {
    z-index: 3;
}

.p-b-3r {
    padding-bottom: 3rem;
}

.p-b-5r {
    padding-bottom: 5rem;
}

.p-b-10r {
    padding-bottom: 10rem;
}

.p-b-20r {
    padding-bottom: 20rem;
}

.p-b-30r {
    padding-bottom: 30rem;
}

@media screen and (max-width: 575px) {

    .p-b-m-0 {
        padding-bottom: 0rem;
    }

}

.p-t-0 {
    padding-top: 0px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-tb-0, .p-t-b-0, p-bt-0, p-b-t-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.space-between {
    justify-content: space-between !important
}


.public-main-header .image-hero {
    width: 50%;
}

/*mobile size*/

@media screen and (max-width: 990px) {

    .hero-address {
        display: none !important;
    }

    .public-main-header .header-line {
        display: block;
        height: 1rem;
        background: none;
        margin-bottom: .8rem;
    }

    .public-main-header .ap-container > div {
        flex-wrap: wrap-reverse;
    }

    .public-main-header .ap-container > div {
        flex-wrap: wrap-reverse;
    }

    .public-main-header .image-hero {
        width: 100%;
    }

        .public-main-header .image-hero img {
            width: 100%;
        }
}

strong {
    color: var(--primary-clr)
}

.ap-card form {
    flex-wrap: wrap;
    width: 100%;
}

.section-secund {
    background-color: var(--bg-clr-2);
    padding-block: 40px;
}

.cell, .columns, x-grid * {
    box-sizing: border-box;
}

.ap-card hr {
    margin-bottom: 1.5rem;
    opacity: 0.2;
    background: #E6E8EC;
}

.fintecha-logo {
    margin-bottom: 1rem;
    margin-top: .5rem;
    width: 15rem;
}

.justify-self-center {
    justify-self: center;
}