html, body {
    direction: rtl;
    min-height: 100%;
    margin: 0;
}

/*----------------------------Print-------------------------------------*/
@media print {
    .np, .np * {
        display: none;
    }

    .pNeedTable td {
        border: 1px solid #000;
    }
}

/*-----------------------------Font-------------------------------------*/
@font-face {
    font-family: iransans;
    src: url("../fonts/IRANSansWeb.ttf");
}

@font-face {
    font-family: yekan;
    src: url("../fonts/yekan.ttf");
}

* {
    font-family: iransans, yekan, sans-serif, 'Ubuntu', Tahoma;
}

img {
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
}

a {
    text-decoration: none
}

/*----------------------------------------------------------------------*/
.db {
    display: block
}

.dib {
    display: inline-block
}

.dn {
    display: none
}

.df {
    display: flex
}

.op1 {
    opacity: 0.1
}

.op2 {
    opacity: 0.2
}

.op3 {
    opacity: 0.3
}

.op4 {
    opacity: 0.4
}

.op5 {
    opacity: 0.5
}

.op6 {
    opacity: 0.6
}

.op7 {
    opacity: 0.7
}

.op8 {
    opacity: 0.8
}

.op9 {
    opacity: 0.9
}

.op10 {
    opacity: 1
}

.fs11 {
    font-size: 11px
}

.fs12 {
    font-size: 12px
}

.fs13 {
    font-size: 13px
}

.fs14 {
    font-size: 14px
}

.fs15 {
    font-size: 15px
}

.fs16 {
    font-size: 16px
}

.fs17 {
    font-size: 17px
}

.fs18 {
    font-size: 18px
}

.fs20 {
    font-size: 20px
}

.fs22 {
    font-size: 20px
}

.fs25 {
    font-size: 25px
}

.fs30 {
    font-size: 30px
}

.fs35 {
    font-size: 35px
}

.fwb {
    font-weight: bold
}

.taj {
    text-align: justify
}

.tac {
    text-align: center
}

.clearB {
    clear: both
}

.w-45 {
    width: 45% !important;
}

.w-40 {
    width: 40% !important;
}

.w-35 {
    width: 35% !important;
}

.w-30 {
    width: 30% !important;
}

.w-15 {
    width: 15% !important;
}

.drtl {
    direction: rtl
}

.dltr {
    direction: ltr
}

.grayScale {
    filter: grayscale(100%)
}

/*----------------------------------------------------------------------*/
.c-white {
    color: #fff !important;
}

.c-blue {
    color: #12182b !important;
}

.c-green {
    color: #3cab49 !important;
}

.c-gray {
    color: #8f8f8f
}

.bg-blue {
    background-color: #12182b !important;
}

.bg-green {
    background-color: #3cab49 !important;
}

.bg-gray {
    background-color: #8f8f8f !important;
}

/*----------------------------------------------------------------------*/
.mb50 {
    margin-bottom: 50px
}

/*----------------------------------------------------------------------*/
.text-justify {
    text-align: justify !important
}

/*----------------------------------------------------------------------*/
body {
    background: url('../img/mainBack.webp') fixed center center;
    background-size: cover;
}

h1, h2, h3 {
    margin-bottom: 30px;
    color: #12182b;
}

h1 span, h2 span, h3 span {
    display: inline-block;
    padding-bottom: 10px;
    font-weight: bold;
    border-bottom: 3px solid #12182b;
}

fieldset {
    background: #f5f5f5;
    border: 1px solid #12182b;
    border-radius: 10px;
    margin: 10px
}

fieldset legend {
    padding: 5px 15px 7px;
    background: #12182b;
    border-radius: 20px;
    color: #fff;
}

/*-----------------------sub menu animation------------------------------*/
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }

    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0 0;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

/*-------------------------------NAVBAR----------------------------------*/
.nav-link:hover, footer a:hover {
    color: #3cab49 !important;
}

/*----------------------------------------------------------------------*/
#load {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    padding: 13% 0 0 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 5000;
}

.headLogo {
    width: 70px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .headLogo {
        width: 50px;
    }

    .mobile-banner {
        min-height: 170px;
    }

    .alert-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
    }

    body {
        padding-top: 45px;
    }
}

/*----------------------------  Loading   ------------------------------*/
.loader,
.loader:before,
.loader:after {
    background: #050c42;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader {
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

.errorInForm {
    border-color: #fba8a8 !important;
}

/*--------------------------------------------------------------------------*/
.mainTableC {
    width: 100%;
    border-spacing: 0 5px;
    font-size: 13px;
    text-align: center;
}

.mainTableC td {
    padding: 5px;
}

.mainTableC tr td:first-child {
    border-radius: 5px 0 0 5px;
}

.mainTableC tr td:last-child {
    border-radius: 0 5px 5px 0;
}

.mainTableC tr:nth-child(even) {
    background: #f5f5f5;
}

.mainTableC tr:nth-child(odd) {
    background: #f9f9f9;
}

.mainTableC tr:first-child {
    background: #323b5b;
    color: #fff;
    font-size: 15px;
}

.mainTableC tr:first-child td {
    padding: 10px;
}

/*-----------------------------------------------------------------------*/
.footerScrollIcon {
    display: inline-block;
    position: fixed;
    bottom: -250px;
    left: 20px;
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    text-decoration: none;
    color: #333;
    z-index: 30;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: all .4s;
}

/*---------------------------------------------------------------------------*/
.needShake {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg)
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg)
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg)
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg)
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg)
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg)
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg)
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg)
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg)
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg)
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg)
    }
}

/* Public Classes------------------------------------------------------------*/
.mainSlides {
    padding: 100px 0;
}

.mainContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}

/* Head Style----------------------------------------------------------------*/
.mainMenuPlace {
}

.mainMenuPlace ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: right;
}

.mainMenuPlace ul li {
    margin: 0 0 0 20px;
    color: #fff;
}

.mainMenuPlace ul li:hover {
    color: #3cab49;
}

.mainMenuPlace ul li a {
    color: inherit;
    text-decoration: none;
}

.headButton {
    padding: 8px 15px;
    background: linear-gradient(#3cab49, #2c8f38);
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.headButton:hover {
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.headButton .bi-search {
    position: relative;
    top: 2px;
    margin-right: 3px;
}

.headPhone {
    /*padding: 4px 7px;*/
    /*background: linear-gradient(#3cab49, #2c8f38); !*#ffe400*!*/
    /*color: #fff; !*#12182b*!*/
    font-size: 20px !important;
    font-weight: bold !important;
    letter-spacing: 0.1rem !important;
    /*border-radius: 5px;*/
    /*border: 1px solid #f8f9fa;*/
    /*text-decoration: none !important;*/
}

/* Main Page-----------------------------------------------------------------*/
.sloganPlace {
    position: relative;
    padding: 200px 0;
    text-align: center;
    background: url('../img/ersalIran.webp') center center no-repeat;
    background-size: cover;
    color: #fff;
}

.sloganPlace:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.sloganPlace div {
    position: relative;
    z-index: 2
}

.sloganPlace div p {
    font-size: 45px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4)
}

.whyKbkPlace .df {
    flex-wrap: wrap;
    justify-content: center;
}

.whyKbkPlace .whyKbkItems {
    display: flex;
    justify-content: right;
    width: 25%;
    white-space: nowrap;
    min-width: 300px;
    margin: 20px;
    border: 3px solid #12182b;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.whyKbkPlace .whyKbkItems div {
    width: 60px;
    height: 60px;
    text-align: center;
    background: #fff center center no-repeat;
    background-size: 60%;
    border-radius: 50%;
}

.whyKbkPlace .whyKbkItems p {
    margin: 0;
    font-size: 17px;
    line-height: 60px;
    padding-right: 20px;
}

.kbkServices {
    background: rgba(0, 0, 0, 0.2)
}

.kbkServices .mainContainer {
    justify-content: center;
    flex-wrap: wrap
}

.kbkServices .kbkServiceItems {
    display: flex;
    justify-content: right;
    width: 45%;
    min-width: 300px;
    margin: 20px;
    white-space: nowrap;
    background: #fff url('../img/mainBack.webp') fixed center center;
    background-size: cover;
    border-radius: 50px;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.kbkServices .kbkServiceItems div {
    width: 80px;
    height: 80px;
    text-align: center;
    background: #ddd center center no-repeat;
    background-size: 60%;
    border-radius: 50%;
}

.kbkServices .kbkServiceItems p {
    margin: 0;
    padding-right: 20px;
    line-height: 80px;
    font-size: 20px;
}

.kbkPartners {
    background: rgba(0, 0, 0, 0.1)
}

.kbkPartners .mainContainer {
    flex-wrap: wrap;
    justify-content: center;
}

.kbkPartners .mainContainer img {
    width: 170px;
    max-width: 40%;
    margin: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.kbkArticles {
    background: rgba(250, 250, 250, 0.9);
}

.kbkArticlesPlace {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(250, 250, 250, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Tracking -----------------------------------------------------------------*/

.kbkItems {
    display: flex;
    justify-content: right;
    white-space: nowrap;
    margin: 10px;
    border: 3px solid #12182b;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.kbkItems.bg-green {
    border: 3px solid #3cab49;
}

.kbkItems.bg-white {
    color: #222;
}

.kbkItems div {
    min-width: 100px;
    height: 50px;
    padding: 0 10px;
    line-height: 50px;
    text-align: center;
    color: #222;
    background: #fff center center no-repeat;
    background-size: 60%;
    border-radius: 50px;
}

.kbkItems p {
    margin: 0;
    line-height: 50px;
    padding-right: 10px;
}

.trackingImg {
    width: 85%;
}

/* Agency Page---------------------------------------------------------------*/
.agencyListTbl {
    width: 100%;
    font-size: 14px;
    text-align: center;
    border-spacing: 0 5px;
}

.agencyListTbl td {
    padding: 10px 5px;
}

.agencyListTbl tr:nth-child(even) {
    background: #f5f5f5;
}

.agencyListTbl tr:nth-child(odd) {
    background: #ddd;
}

#IranMap .map {
    display: block;
    text-align: right;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#IranMap .map svg {
    height: 500px;
    width: 500px;
}

#IranMap .map .border path, #IranMap .map .island path {
    fill: transparent;
}

#IranMap .map .province path {
    fill: #c1c1c1;
}

#IranMap .map .sea path, #IranMap .map .lake path {
    fill: #5aa7d8;
}

#IranMap .map .province path:hover,
    /*#IranMap .map .island path:hover*/
#IranMap .map .province path.hover
    /*#IranMap .map .island path.hover*/
{
    fill: #222 !important;
    cursor: pointer;
}

.ostanList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ostanList ul li {
    display: inline-block;
    min-width: 200px;
    margin: 0 0 5px;
    padding: 7px 10px;
    box-sizing: border-box;
    background: #ddd;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    text-align: center;
}

.ostanList ul li:hover {
    background: #555;
    color: #eee;
}

.ostanList ul li a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* About Page-----------------------------------------------------------*/
.aboutItems {
    margin: 20px;
    border: 3px solid #12182b;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.aboutItems div {
    width: 60px;
    height: 60px;
    text-align: center;
    background: #fff center center no-repeat;
    border-radius: 50%;
    vertical-align: middle;
}

.aboutItems div i {
    color: #222;
    font-size: 35px;
    line-height: 70px;
}

.aboutItems p {
    padding-right: 5px;
    margin: 0px;
}

/* Gallery Page-----------------------------------------------------------*/
.portfolio-menu {
    text-align: center;
}

.portfolio-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all .5s ease;
}


.portfolio-item .item {
    /*width:303px;*/
    float: right;
    margin-bottom: 10px;
}

.mfp-counter {
    direction: ltr;
}

/* bus departure Page-----------------------------------------------------------*/
.busListTbl {
    font-size: 14px;
    text-align: center;
    border-spacing: 0 5px;
}

.busListTbl th {
    position: sticky;
    top: 0;
    background-color: #12182b;
    padding: 10px 5px;
}

.busListTbl td {
    padding: 10px 5px;
}

.busListTbl tr:nth-child(even) {
    background: #f5f5f5;
}

.busListTbl tr:nth-child(odd) {
    background: #ddd;
}

/*FAQ PAGE---------------------------------------------------------------------*/
.faqQuestionCard {
    margin-right: 10px;
    padding: 10px 100px 10px 20px;
    cursor: pointer;
}

.faqQuestionCard.activeQCard {
    color: #fff;
    background-color: #323b5b;
}

.faqQuestionCard p {
    margin: 0;
    line-height: 40px;
}

.faqQuestionCard .zmdi {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
}

.faqQuestionContainer {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0 10px 10px 0;
    border: 1px solid rgba(100, 100, 100, 0.4);
}

.faqQuestionLine,
.faqAnswerLine {
    padding: 15px 10px;
}

.faqQuestionLine {
    background: #c3c7d6;
    border-left: 5px solid #5d6588;
    font-weight: bold;
}

.faqAnswerLine {
    background: #fff;
    border-left: 5px solid #bbbbbb;
}

.faqQuestionLine div,
.faqAnswerLine div {
    position: relative;
    padding-left: 5px;
    /*font-size: 18px;*/
}

.boxStMP {
    margin-bottom: 20px;
    padding: 10px 20px;
}

.boxesSt,
.boxesStb {
    border-radius: 10px;
}

.boxesStb {
    background: #fff;
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
.mv {
    display: none
}

@media (max-width: 800px) {
    .mvn {
        display: none !important
    }

    .mv {
        display: block
    }

    .mainMenuPlace {
        position: absolute;
        top: -200px;
        left: 0;
        background: #000;
        width: 100%;
        padding: 0 20px;
        transition: all .3s;
    }

    .mainMenuPlace.activeMenu {
        top: 90px;
    }

    .mainMenuPlace ul {
        display: block !important;
    }

    .mainMenuPlace ul li {
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .agencyListTbl tr {
        display: block;
        border-radius: 20px;
        margin-bottom: 5px;
        padding: 0 0 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .3);
        overflow: hidden;
    }

    .agencyListTbl td:first-child {
        background: #3cac4a;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .agencyListTbl td {
        display: block;
        padding: 2px 35px 2px 0;
        text-indent: -20px;
        text-align: right;
    }

    .trackingImg {
        width: 95%;
    }

}

.newsBody *:not(h1,h2,h3.h4) {
    font-size: 0.9rem !important;
}

.newsBody p {
    line-height: 2;
}