html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 1rem !important;
}

* {
    font-family: IRANSans;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.floatingButtonsContainer {
    position: fixed;
    right: 0;
    top: 180px;
    z-index: 10;
    pointer-events:none;
}

    .floatingButtonsContainer .floatingButton {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        text-decoration: none;
        color: white;
        box-shadow: 5px 0 15px 0 rgba(0, 0, 0, 0.1);
        transition: 0.5s ease-in-out;
        position: relative;
        background-color: var(--blue);
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        right: calc(45px - 100%);
        pointer-events: auto;
    }

        .floatingButtonsContainer .floatingButton:hover {
            right: 0;
        }

        .floatingButtonsContainer .floatingButton .iconContainer {
            background-color: var(--yellow);
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            height: 45px;
            width: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulseAnimation 1s infinite;
        }

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.floatingButtonsContainer .floatingButton .iconContainer img {
    height: 25px;
    width: 25px;
    background-color: var(--yellow);
}

.floatingButtonsContainer .floatingButton .textContainer {
    background-color: var(--blue);
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
    position: relative;
    white-space: nowrap;
}

header {
    border-bottom: 2px solid var(--yellow);
    background-color: #034ea2;
    color: #fff;
}


.defaultButton {
    background-color: var(--yellow);
    font-family: IRANSansBold;
    color: black;
    border-radius: 100000px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14pt;
    margin-bottom: 80px;
}

    .defaultButton:hover {
        background-color: #c4900d;
    }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    left: 15px;
    bottom: 15px;
    z-index: 99999;
}

    .back-to-top i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        background: #f31948;
        color: #fff;
        transition: all 0.4s;
    }

        .back-to-top i:hover {
            background: #6bc08e;
            color: #fff;
        }

input {
    font-family: IRANSans;
}

:root {
    --cream: #eeeeee;
    --yellow: #eeb111;
    --darkGrey: #707070;
    --cream2: #f2f2f2;
    --grey: #adb5bd;
    --blue: #034ea2;
}

#backgroundGrey {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 4;
    opacity: 0.5;
    display: none;
    background-color: black;
}

#sideBar {
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    width: 0px;
    height: 100vh;
    background-color: white;
    z-index: 5;
    transition: 0.3s;
    visibility: hidden;
}

#sideBarLinks {
    overflow-y: auto;
}

.simpleCardContainer {
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 0 20px 0 rgba(0, 0, 0, 0.1);
}

    .simpleCardContainer .imageContainer {
        padding: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .simpleCardContainer .imageContainer h3 {
            position: absolute;
            color: var(--yellow);
        }

        .simpleCardContainer .imageContainer img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

    .simpleCardContainer div {
        width: 100%;
        background-color: var(--blue) !important;
        padding: 15px;
        text-align: right;
        color: white;
    }

        .simpleCardContainer div h6 {
            font-family: Baloo;
            font-size: 14pt;
            color: var(--grey);
        }

        .simpleCardContainer div p {
            font-size: 10pt;
            margin-top: 9px;
            margin-bottom: 9px;
        }

#menu {
    height: 40px;
    width: 40px;
    float: right;
    margin-left: 15px;
    transition: 0.5s;
    border-radius: 8px;
}

    #menu:hover {
        background-color: var(--yellow);
        border: none;
        cursor: pointer;
    }

#closeMenu {
    margin: 20px;
    color: black;
    display: none;
}

    #closeMenu:hover {
        cursor: pointer;
    }

#logo {
    height: 40px;
    float: right;
}

#mainTitle {
    font-family: IRANSansBold;
}

.searchCol {
    display: flex;
    align-items: center;
}

.searchContainer {
    display: block;
    width: 100%;
}

.search {
    height: 40px;
    background-color: var(--cream);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}



#searchIconLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    outline: none;
}

#searchIcon {
    color: var(--yellow);
    margin-left: 5px;
}

.search input {
    font-family: IRANSans;
    font-size: 10pt;
    margin-right: 10px;
    margin-left: 10px;
    width: 100%;
    direction: rtl;
    background-color: var(--cream);
    border: none;
}

    .search input:focus {
        outline: none;
    }

.signButtonCol {
    float: left;
}

/*-----------------------
    bottomSlideShowCard
-----------------------*/

.sliderBottom {
    margin-top: -55px;
    background-color: white;
    position: relative;
    z-index: 4;
    box-shadow: 5px 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
}

.copyrights {
    margin-top: 40px;
    background-color: var(--blue);
    color: white;
    font-size: 15px;
}

    .copyrights p {
        font-family: Baloo;
        text-align: center;
    }

.bottomCardText {
    display: inline-block;
    border-radius: 10000px;
    padding-right: 7px;
    padding-left: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
    transition: 0.5s;
    background-color: var(--cream);
}

    .bottomCardText:hover {
        background-color: var(--yellow);
    }

.sliderBottomContainer {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

    .sliderBottomContainer div:first-child {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        border: 2px solid var(--blue) !important;
        border-radius: 99999px;
    }

    .sliderBottomContainer div img {
        height: 30px;
        width: 30px;
    }

    .sliderBottomContainer div:nth-child(2) {
        direction: rtl;
        margin-right: 16px;
    }

    .sliderBottomContainer div p:first-child {
        text-align: right;
        font-family: IRANSansBold;
        font-size: 14pt;
        line-height: 12pt;
        margin-top: 10px;
        color: var(--blue);
    }

    .sliderBottomContainer div p:nth-child(2) {
        text-align: right;
        font-size: 10pt;
        color: var(--blue);
    }

.sliderBottomColOne {
    border-left: 1px solid var(--cream);
}

.sliderBottomColTwo {
    border-left: 1px solid var(--cream);
}

.sliderBottomColThree {
    border-left: 1px solid var(--cream);
}

.nav-item {
    transition: 0.5s;
    padding-right: 8px;
    padding-left: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .nav-item:hover {
        background-color: var(--yellow);
        box-shadow: -5px 0 20px 0 rgba(0, 0, 0, 0.1);
    }

.nav-link {
    color: white !important;
    font-size: 10pt;
}

.bannerContainer img {
    width: 100%;
    border-radius: 8px;
    margin-top: 60px;
    margin-bottom: 44px;
    box-shadow: 5px 0 20px 0 rgba(0, 0, 0, 0.1);
}

.customDropDownMenu {
    background-color: white !important;
    overflow: hidden;
    font-size: 10pt;
    padding-right: 0;
}

.nav-item:hover > .customDropDownMenu {
    display: block;
}

.customDropDownMenu .dropdown-item {
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.5s;
    padding-right: 15px;
}

    .customDropDownMenu .dropdown-item:hover {
        background-color: var(--yellow);
    }



.newsLogo {
    height: 55px;
    width: 55px;
    border-radius: 50%;
}

.newsTitleContainer {
    width: 220px;
}

.newsTitle {
    font-family: IRANSansBold;
    text-align: center;
}

.newsDottedLine {
    width: 100%;
    height: 1px;
    border-top-style: dashed;
    border-top-color: var(--grey);
    border-top-width: 1px;
    border-image-slice: 20px;
}

.newsContainerr {
    width: 100%;
    height: 300px;
    background-color: var(--cream);
    margin-top: 20px;
    margin-bottom: 100px;
}

.footer {
    width: 100%;
    background-color: var(--cream);
    overflow-x: hidden;
}

.socialLink {
    transition: 0.5s;
}

    .socialLink:hover {
        background-color: var(--yellow);
    }

.footerTitles {
    font-family: IRANSansBold;
    margin-bottom: 20px;
}

.footerLinks {
    text-decoration: none;
    color: #5b5b5b;
    transition: 0.3s;
    margin-top: 10px;
    display: block;
    font-size: 10pt;
}

    .footerLinks:hover {
        text-decoration: none;
        color: var(--yellow);
    }

.cardTextContainer {
    border-radius: 8px;
}

.simpleCardContainer div h6 {
    margin-top: 10px;
}

.expandedCard {
    width: 100%;
    height: 320px;    
    background-image: url(../Images/service.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    direction: rtl;
    padding: 30px;
    transition: 1.5s;
    border-radius: 8px;
}

    .expandedCard h1 {
        color: var(--yellow);
    }

.expandedCardTextContiner {
    text-align: center;
    color: white;
    direction: rtl;
}

    .expandedCardTextContiner h6 {
        margin-top: 20px;
        font-size: 10pt !important;
        color: white;
    }

    .expandedCardTextContiner p {
        color: white;
        font-size: 16pt;
        margin-top: 10px;
    }

    .expandedCardTextContiner i {
        color: white;
        direction: ltr;
        margin-right: 5px;
        vertical-align: middle;
    }

.expandedCardMoreInfo i {
    transition: 0.5s;
    font-size: 9pt;
}

.expandedCardMoreInfo {
    transition: 0.5s;
}

.expandedCard:hover .expandedCardMoreInfo i {
    color: var(--yellow);
}

.expandedCard:hover .expandedCardMoreInfo {
    color: var(--yellow);
}




.popOverContainer {
    width: 200px;
    margin-top: -10px;
    direction: rtl;
}

.triangle-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    margin: 0 auto;
}

.contentContainer {
    border-radius: 10px;
    background-color: white;
}

    .contentContainer a {
        text-decoration: none;
        color: black;
    }




.mainContainer {
    direction: rtl;
    position: relative;
}

.imageContainer {
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .imageContainer img {
        position: absolute;
        z-index: 1;
    }

    .imageContainer h1 {
        font-family: IRANsansBold;
        font-size: 75pt;
        color: var(--yellow);
        z-index: 2;
    }

h4 {
    font-family: IRANSansBold;
}

h6 {
    font-family: IRANSansBold;
    color: var(--grey);
}

.errorBtn {
    background-color: var(--yellow);
    font-family: IRANSansBold;
    color: black;
    border-radius: 100000px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 12pt;
    margin-bottom: 80px;
}

    .errorBtn:hover {
        background-color: #c4900d;
    }



/*--------------------------------------------------------------
# SignIn
--------------------------------------------------------------*/


.devider {
    height: 20px;
    width: 1px;
    background-color: black;
    margin-left: 10px;
    margin-right: 10px;
}

.signButtonCol {
    display: inline-block;
}

#login {
    text-decoration: none;
}

.signButton {
    height: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-decoration: none;
    color: black;
    transition: 0.5s;
    direction: rtl;
    background-color: var(--cream2);
    white-space: nowrap;
}

    .signButton:hover {
        background-color: var(--yellow);
        text-decoration: none;
    }

    .signButton p {
        font-family: IRANSansBold;
        font-size: 8pt;
    }

.signedIn {
    font-size: 1em !important;
}

.dropdown-menu {
    border: none;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: transparent;
}

.popOverContainer {
    width: 200px;
}


.triangle-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    margin: 0 auto;
}

.contentContainer {
    border-radius: 10px;
    background-color: white;
    border-width: 1px;
    border-style: solid;
    border-color: var(--grey);
    text-align: right;
    direction: rtl;
}

    .contentContainer a {
        text-decoration: none;
        color: black;
    }



/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/

.downloadCol h5 span {
    font-family: IRANSansBold;
    display: inline-block;
}

    .downloadCol h5 span::after {
        margin-top: 5px;
        content: "";
        height: 5px;
        background: var(--yellow);
        border-radius: 1000px;
        display: block;
    }

.downloadCol a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

    .downloadCol a:hover {
        color: var(--yellow);
    }
/*--------------------------------------------------------------
#FAQ
--------------------------------------------------------------*/
.accordion-item button {
    width: 100%;
    padding: 17px;
    margin: 10px 0;
    background-color: #e7e23d00;
    display: flex;
}

    .accordion-item button:before {
        font-family: "boxicons";
        content: "\ea4a";
        font-size: 18px;
        padding-left: 10px;
    }

.accordion-item h5 {
    color: #000 !important;
    font-size: 14px;
}

 .accordion-item h3 {
    font-size: 18px !important;
    color: #000;
    display: none;
}

.accordion-collapse h5 {
    line-height: 31px;
    padding: 5px 0;
    text-align: justify;
}

.editableText {
    margin-top: 18px;
}
/*--------------------------------------------------------------
# About US
--------------------------------------------------------------*/
.topTitleContainer {
    position: relative;
    background-image: url("/User Files/About Us/aboutUsBack.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}

.topTitleChildsContainer {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

    .topTitleChildsContainer h4 {
        font-family: IRANSans;
        color: white;
        line-height: 25px;
    }

        .topTitleChildsContainer h4 span {
            display: inline-block;
        }

            .topTitleChildsContainer h4 span::after {
                margin-top: 5px;
                content: "";
                height: 5px;
                background: var(--yellow);
                border-radius: 1000px;
                display: block;
            }

    .topTitleChildsContainer h1 {
        font-family: IRANSansBold;
        text-align: center;
        color: white;
        margin-top: 15px;
    }

    .topTitleChildsContainer h3 {
        font-family: Baloo;
        color: white;
        margin-top: 20px;
    }

.topMore {
    height: 80px;
    position: absolute;
    bottom: 0;
    text-align: center;
    cursor: pointer;
}

    .topMore:hover h6 {
        color: white;
    }

    .topMore:hover div i {
        color: white;
    }

    .topMore h6 {
        color: var(--yellow);
        transition: 0.3s;
    }

    .topMore div {
        color: var(--yellow);
        animation: topMoreAnimantion 2s ease-in-out 0.5s both infinite;
    }

        .topMore div i {
            font-size: 20pt;
            transition: 0.3s;
        }

@keyframes topMoreAnimantion {
    0% {
        margin-top: 0px;
        opacity: 0;
    }

    100% {
        margin-top: 20px;
        opacity: 1;
    }
}

.image2 {
    object-fit: cover;
    border-radius: 15px;
    width: 100%;
    height: 250px;
}

@media only screen and (max-device-width: 768px) {


    .sliderBottomContainer {
        justify-content: end;
        padding-right: 20px;
    }

    .sliderBottomColOne {
        border-left: 1px solid var(--cream);
        border-bottom: 1px solid var(--cream);
    }

    .sliderBottomColTwo {
        border-left: none !important;
        border-bottom: 1px solid var(--cream);
    }

    .nav-link.active {
        border-radius: 8px;
    }
}

.noHover {
    pointer-events: none;
}

.no-border.container-noborder-header {
    font-weight: bold;
}

.paneBox.tuba-container.boxedContainer .container-header {
    font-weight: bold;
}

@media (max-width: 576px) {

    .bannerContainer img {
        height: 70px;
        object-fit: cover;
    }

    .sliderBottomContainer {
        justify-content: end;
        padding-right: 20px;
    }

    .sliderBottomColOne {
        border-left: none !important;
        border-bottom: 1px solid var(--cream);
    }

    .sliderBottomColThree {
        border-left: none !important;
        border-bottom: 1px solid var(--cream);
    }

    .nav-item {
        border-radius: 8px;
    }

    #logo {
        float: left;
    }

    .popOverContainer {
        margin-top: 10px;
    }

    .searchCol {
        display: flex;
        flex-direction: row-reverse;
    }

    .search {
        margin-right: 20px;
        margin-left: 0;
    }

    .no-border.container-noborder-header {
        margin-top: 25px;
        text-align: center;
    }

    .paneBox.tuba-container.boxedContainer {
        margin-top: 25px;
        text-align: center;
    }
}
