/* font styling start */
@font-face {
    font-family: "IRANSansXV";
    font-style: normal;
    font-weight: 100 900;
    src: url(../fonts/iransansXV/woff/IRANSansXV.woff);
    src: url(../fonts/iransansXV/woff2/IRANSansXV.woff2);
}

@supports (font-variation-settings: normal) {
    body {
        font-family: "IRANSansXV";
        font-variation-settings: "dots" 4;
    }
}

/* font styling end */

/* global styling start */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "IRANSansXV" !important;
    direction: rtl;
    color: #101828;
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: #101828;
}

ul,
li {
    list-style-type: none;
}

.dir-ltr {
    direction: ltr;
}

input::placeholder {
    font-family: 'IRANSansXV' !important;
    font-variation-settings: "dots" 4 !important;
}

/* global syling end */

/* dots grid background styling start */
.trst-dots-grid {
    background: url('../images/global-images/dot-grid-y.png') repeat-x;
    align-items: center;
    width: 100%;
    height: 440px;
    position: absolute;
    z-index: -3;
    opacity: 25% !important;
    top: 11%;
}

.trst-dots-grid-box {
    -webkit-box-shadow: inset 0px 2px 50px 16px rgba(255, 255, 255, 0.38);
    box-shadow: inset 0px 2px 61px 24px #fff;
    width: 100%;
    height: 440px;
    position: absolute;
    z-index: -2;
    top: 11%;
}

/* dots grid background styling end */

/* trst blue shadow styling start */

.blue-shadow {
    position: relative;
}

.blue-shadow-right {
    background: #080FBE;
    position: absolute;
    filter: blur(100px);
    height: 50px;
    width: 70px;
    margin-right: 18%;
    margin-top: 12%;
    -webkit-box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.071);
    box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.099);
}

.blue-shadow-left-top {
    background: #080FBE;
    position: absolute;
    filter: blur(100px);
    height: 50px;
    width: 70px;
    margin-right: 83%;
    margin-top: 10%;
    -webkit-box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.071);
    box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.099);
}

.blue-shadow-left-bottom {
    background: #080FBE;
    position: absolute;
    filter: blur(100px);
    height: 50px;
    width: 70px;
    margin-right: 75%;
    margin-top: 19%;
    -webkit-box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.071);
    box-shadow: 5px 6px 50px 30px rgba(153, 150, 255, 0.099);
}

/* trst blue shadow styling end */

.main-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* header style start */
.trst-burger-menu-items {
    z-index: 1;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 24px 12px !important;
}

@keyframes ttb-animate {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.trst-burger-menu-items>li>ul {
    display: none;
    border-radius: 12px !important;
    background: var(--Colors-Surface, #FFF);
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    padding: 12px !important;
    overflow: hidden;
    animation-name: ttb-animate;
    animation-duration: 0.4s;
    border: 1px solid var(--Colors-Neutural-n200, #EDEFF2) !important;
}

.trst-burger-menu-items>li>ul>li {
    transition: 0.3s all ease;
    border-radius: 16px;
}

.trst-burger-menu-items li ul li {
    padding: 7px 15px !important;
}

.is-open>ul {
    display: block !important;
}

.is-open>div>svg {
    transform: rotate(180deg);
}

.item-has-children svg {
    transition: 0.3s all ease;
}

.trst-site-logo {
    width: 165px;
    height: 47px;
}

.trst-site-header {
    height: 80px;
    position: fixed;
    width: 100%;
    max-width: 1176px;
    margin: 0 auto;
    top: 0;
    transition: 0.3s all ease;
    z-index: 50;
}

.scrooled {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(10px);
}

.trst-site-main-menu>ul {
    gap: 40px;
}

.trst-site-main-menu>ul>li>a {
    color: #4E5867;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    padding: 4px 8px;
}

.trst-has-sub-menu > a{
    display: flex;
    align-items: center;
}

.trst-sub-menu li a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.trst-has-sub-menu {
    position: relative;
    display: block;
}

.trst-site-main-menu>ul>:nth-child(2) .trst-sub-menu {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.trst-has-sub-menu:hover .trst-sub-menu {
    display: block !important;
}

.trst-sub-menu {
    display: none !important;
    animation: slide-down 0.4s ease-in;
    background-color: #FFF;
    padding: 12px;
    position: absolute;
    top: 100%;
    min-width: 280px;
    max-width: 680px;
    height: auto;
    z-index: 1;
    border-radius: 12px;
    border: 1px solid var(--colors-neutural-n-200, #EAECF0);
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

#trst-departman-sub-menu {
    max-width: 280px !important;
}

#trst-departman-sub-menu>ul>li {
    width: 256px;
}

.trst-sub-menu>li {
    width: 326px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 8px;
    transition: 0.4s all ease;
}

.trst-sub-menu>li:hover {
    background-color: #F9FAFB;
}

.trst-sub-menu li:hover span,
.sub-menu-color a:hover span span {
    color: #155EEF;
}

.trst-sub-menu>li>a {
    gap: 16px;
    width: 100%;
}

.trst-sub-menu>li>a>span {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    color: #131A28;
    transition: 0.4s all ease;
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trst-has-sub-menu>a {
    position: relative;
    gap: 8px;
}

.trst-has-sub-menu>a::after {
    content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 7.5L10 12.5L15 7.5" stroke="%23475467" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    margin-top: 8px;
}

.trst-call-number {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    padding: 10px 18px 6px 18px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #131A28;
    color: #fff;
    direction: ltr;
}

.trst-burger-menu-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.trst-burger-menu-icons>svg:nth-child(2) {
    display: none;
}

.active-togeeler>svg:first-child {
    display: none !important;
}

.active-togeeler>svg:nth-child(2) {
    display: block !important;
}

/* header style end */

/* footer start */

.trst-main-footer {
    padding: 64px 0px 48px 0px;
    border-top: 1px solid var(--Colors-Neutural-n100, #F5F6F7);
}

.trst-footer-identity {
    gap: 32px;
}

.trst-footer-item-explaination {
    color: #475467;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 320px;
}

.trst-footer-item-email,
.trst-footer-item-call-number {
    color: #475467;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.trst-footer-our-business>span {
    color: #4E5867;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.trst-footer-our-business>ul>li>a {
    color: #4E5867;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.trst-footer-our-business>ul>li>a:hover {
    color: #2970FF;
}

.trst-footer-our-branches>span {
    color: #4E5867;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.trst-footer-our-branches>ul {
    list-style-type: disc !important;
    padding-right: 25px;
    padding-left: 0;
}

.trst-footer-our-branches>ul>li {
    list-style-type: disc !important;
    color: #4E5867;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    max-width: 188px;
}

.trst-footer-fast-links>ul>li>a:hover {
    color: #2970FF;
}

.trst-footer-fast-links>span {
    color: #4E5867;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.trst-footer-fast-links>ul>li>a {
    color: #4E5867;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.trst-copy-right-part {
    background-color: #F9F9FB;
    padding: 24px 0;
}

p.trst-copy-right-content {
    color: #667085;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    max-width: 1080px;
}

.copy-right-section {
    gap: 64px !important;
}

/* footer end */

/* tablet header footer style start here */

@media screen and (max-width: 1199.98px) {

    .blue-shadow-left-bottom {
        display: none;
    }

    /* header style start here */
    .trst-site-main-menu {
        display: none !important;
    }

    .trst-burger-menu-icons {
        display: block !important;
    }

    .trst-dots-grid {
        height: 395px;
    }

    .trst-site-header {
        flex-direction: row-reverse !important;
        position: absolute;
        width: 97%;
    }

    .trst-dots-grid-box {
        -webkit-box-shadow: inset 0px -30px 16px 50px #FFFFFF;
        box-shadow: inset 0px 0px 99px 80px #FFFFFF;
        top: 3%;
    }

    .trst-call-number {
        margin-right: 60px;
    }

    .trst-site-header .trst-site-logo>span {
        color: #10196F;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
    }

    #menu_button img {
        opacity: 1;
        -webkit-transition: opacity .25s;
        -moz-transition: opacity .25s;
        transition: opacity .25s;
    }

    #menu_button img.fade {
        opacity: 0;
    }

    .menu-item {
        position: absolute;
        top: 60px;
        width: 100%;
        list-style: none;
    }

    .trst-site-header {
        height: 80px;
        position: fixed;
        width: 96.9%;
        max-width: 1175px;
        margin: 0 auto;
        top: 0;
        transition: 0.3s all ease;
        z-index: 50;
    }

    .scrooled {
        background: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(10px);
    }

    .menu-item li {
        transition: all linear 0.25s;
    }

    .menu-item li ul li:hover,
    .menu-item li:hover {
        background-color: #ebebebc2;
    }

    .menu-item li ul li:hover,
    .menu-item li:hover a {
        color: #155EEF !important;
    }

    .menu-item li a:hover span {
        color: #155EEF !important;
    }

    .menu-item li.is-open:hover {
        background-color: transparent;
    }

    #vertical_menu {
        transition: all linear .25s;
    }

    .trst-burger-menu-items {
        display: block;
        margin-top: 10px;
    }
    
    /* header style end here */

    /* trst footer tablet style start */
    .trst-footer-fast-links,
    .trst-footer-our-branches {
        margin-top: 40px;
    }

    .trst-footer-our-branches>ul>li {
        max-width: 325px;
    }

    .trst-copy-right-part {
        padding: 24px 0;
    }

    /* trst footer tablet style end */
}

@media screen and (max-width: 767.98px) {

    .trst-dots-grid-box {
        -webkit-box-shadow: inset 0px -30px 16px 50px #FFFFFF;
        box-shadow: inset 0px 0px 99px 60px #FFFFFF;
    }

    .blue-shadow-right {
        height: 40px;
        width: 50px;
        margin-right: 15%;
        margin-top: 60%;
    }

    .blue-shadow-left-top {
        margin-right: 70%;
        height: 50px;
        width: 60px;
    }


    /* trst header mobile style start*/
    .trst-call-number {
        display: none;
    }

    #trst_header_table {
        border: none !important;
    }

    .trst-site-header {
        width: 93.5%;
    }

    .menu-item {
        width: 96.5%;
    }

    /* trst header mobile style end */

    /* trst footer mobile start */
    .trst-footer-items {
        gap: 64px;
    }

    .trst-footer-identity {
        gap: 20px;
    }

    .trst-footer-fast-links,
    .trst-footer-our-branches {
        margin-top: 0px;
    }

    .trst-footer-last-section {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        gap: 88px;
    }

    p.trst-copy-right-content {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
    }

    .copy-right-logo {
        align-self: center;
    }

    .copy-right-section {
        gap: 32px !important;
    }

    .trst-copy-right-part {
        padding: 24px 0px;
    }

    /* trst footer mobile end */
}