/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,28): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(48,17): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(53,17): run-time error CSS1039: Token not allowed after unary operator: '-text-primary-color'
(97,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(98,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(99,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(100,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(101,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(102,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(103,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(104,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(105,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(106,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(107,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(108,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(137,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(139,28): run-time error CSS1039: Token not allowed after unary operator: '-bg-gray'
(140,25): run-time error CSS1039: Token not allowed after unary operator: '-border'
(159,25): run-time error CSS1039: Token not allowed after unary operator: '-text-primary-color'
(173,25): run-time error CSS1039: Token not allowed after unary operator: '-text-primary-color'
(186,29): run-time error CSS1039: Token not allowed after unary operator: '-text-primary-color'
(206,17): run-time error CSS1039: Token not allowed after unary operator: '-text-primary-color'
(211,29): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(215,25): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary-color'
(233,25): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(241,29): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(247,40): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(256,25): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary-color'
(262,25): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
 */
:root {
    --text-primary-color: #000000;
    --white: #fff;
    --text-secondary-color: #AAAAAA;
    --border-color: #DDDDDD;
    --border: 1px solid var(--border-color);
    --transition: .3s;
    --radius: 8px;
    --main-color: #01007F;
    --second-color: #2321FF;
    --icon-color: #000000;
    --bg-gray: #F8F9FB;
    --main-light-color: #f4f4ff;
}

.country-list {
    list-style: none;
    width: 100%;
}

.trn-content > .trn-default-content > .images {
    background-color: var(--bg-gray);
    padding: 20px;
}

.country-list li {
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    width: 33%;
    text-align: left;
}

@media screen and (max-width:768px) {
    .country-list li {
        width: 49%;
    }
}

@media screen and (min-width:769px) {
    .country-list li {
        width: 33%;
    }
}


.country-list a:hover {
    color: var(--main-color);
}

.country-list li a {
    display: block;
    color: var(--text-primary-color);
    padding: 10px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .0625em;
    white-space: nowrap;
    text-rendering: optimizeLegibility;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.country-list li .country-flag {
    font-size: 0;
    line-height: 0;
    margin-right: 10px;
    padding: 0 5px;
}

.custom-list li .county-flag image {
    vertical-align: middle;
    outline: 0;
    border: 0;
}

.country-list li span {
    display: inline-block;
    vertical-align: middle;
}

body[dir='rtl'] .country-list {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between !important;
}

    body[dir='rtl'] .country-list li a {
        display: flex !important;
        align-items: center !important;
    }

:root {
    --text-primary-color: #000000;
    --white: #fff;
    --text-secondary-color: #AAAAAA;
    --border-color: #DDDDDD;
    --border: 1px solid var(--border-color);
    --transition: .3s;
    --radius: 8px;
    --main-color: #01007F;
    --second-color: #2321FF;
    --icon-color: #000000;
    --bg-gray: #F8F9FB;
    --main-light-color: #f4f4ff;
}


@media screen and (max-width:768px) {
    .trn-flight-col6 {
        width: 99%;
        margin-right: 0;
        float: none;
        display: inline-block;
    }
}

@media screen and (min-width:769px) {
    .trn-flight-col6 {
        width: 49.25%;
        margin: 0 1.5% 0 0;
        float: left;
        display: block;
    }

    .margin-right-0 {
        margin-right: 0;
    }
}


.trn-flight-col6 {
    margin-bottom: 1.5%;
    background-color: var(--white);
    border-radius: .17647059em;
    background-color: var(--bg-gray);
    border-bottom: var(--border);
    padding: 12px 0;
    position: relative;
}

    .trn-flight-col6 > .trn-flight-airways {
        width: 20%;
        float: left;
        display: block;
        text-align: center;
    }

        .trn-flight-col6 > .trn-flight-airways img {
            width: 48px;
            height: auto;
        }

        .trn-flight-col6 > .trn-flight-airways > label {
            font-size: 10px;
            color: var(--text-primary-color);
            display: inline-block;
            width: 100%;
            margin-top: 0px;
        }

    .trn-flight-col6 > .trn-flight-info {
        width: 39%;
        float: left;
        display: block;
        padding: 0 4%;
    }

        .trn-flight-col6 > .trn-flight-info > .trn-flight-ways {
            color: var(--text-primary-color);
            font-size: 16px;
            text-decoration: none;
            white-space: nowrap;
            font-weight: 600;
            width: 400px;
            display:flex;
            align-items: center;
           
        }

            .trn-flight-col6 > .trn-flight-info > .trn-flight-ways a.trn-flight-ways-link {
                text-decoration: none;
                color: var(--text-primary-color);
                display: flex;
              
            }
            .trn-flight-col6 > .trn-flight-info > .trn-flight-ways  a .truncate {
                white-space: nowrap ;
                overflow: hidden ;
                text-overflow: ellipsis ;
                display: inline-block ;
                max-width: 225px;
            }
            .trn-flight-col6 > .trn-flight-info > .trn-flight-ways  .truncate {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                display: inline-block;
                max-width: 225px;
            }

.trn-flight-col6 > .trn-flight-info > .trn-flight-time {
    color: var(--text-primary-color);
    font-size: 12px;
}

            .trn-flight-col6 > .trn-flight-info > .trn-flight-time > i {
                color: var(--main-color);
            }

        .trn-flight-col6 > .trn-flight-info > .trn-flight-date {
            color: var(--text-secondary-color);
            font-size: 11px;
            margin-top: 18px;
            white-space: nowrap;
        }

    .trn-flight-col6 > .trn-flight-price {
        width: 40%;
        display: block;
        text-align: right;
        padding-right: 2%;
        position: absolute;
        right: 8px;
        top: 50px;
    }

        .trn-flight-col6 > .trn-flight-price > div.flight-search-over-link {
            font-size: 20px !important;
            color: var(--main-color) !important;
            margin-top: 10px;
            display: block;
            font-weight: 600;
        }

            .trn-flight-col6 > .trn-flight-price > div.flight-search-over-link > .currency {
                font-size: 14px !important;
                color: var(--main-color);
            }

            .trn-flight-col6 > .trn-flight-price > div.flight-search-over-link > img {
                border-radius: 50px;
                width: 25px;
                background-color: var(--main-color);
                display: inline-block;
                vertical-align: middle;
            }

        .trn-flight-col6 > .trn-flight-price > a:link,
        .trn-flight-col6 > .trn-flight-price > a:visited,
        .trn-flight-col6 > .trn-flight-price > a:active {
            font-size: 11px;
            color: var(--text-secondary-color);
            text-decoration: none;
            letter-spacing: 0.0325em;
        }

        .trn-flight-col6 > .trn-flight-price > a:hover {
            color: var(--main-color);
        }

.flight-search-over:after {
    content: "";
    position: absolute;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
}

.trn-flight-col6:hover {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
    top: -1px;
}

body[dir='rtl'] .domestic__flight {
    display:flex;
    flex-wrap:wrap;
    
}


body[dir='rtl'] .domestic__flight__ticket {
    margin: 5px auto;
    display: flex;
    justify-content: space-between;
}


body[dir='rtl'] .domestic__flight__ticket .trn-flight-price{
    position: relative;   
    top: 15%;
    
}


body[dir='rtl'] .trn-flight-col6 > .trn-flight-price > div.flight-search-over-link > img{
    transform: scale(-1);
}
#section-about > .trn-default-content > .about-content {
    position: relative;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

    #section-about > .trn-default-content > .about-content > li {
        background-color: #F8F9FB;
        border-radius: 5px;
        padding: 0 1%;
    }

    #section-about > .trn-default-content > .about-content > .last-li {
        margin-right: 0;
    }

@media only screen and (min-width: 1024px) {
    #section-about > .trn-default-content > .about-content > li {
        width: 23.4%;
        float: left;
        text-align: center;
        min-height: 245px;
    }
}

@media only screen and (max-width: 1025px) {
    #section-about > .trn-default-content > .about-content > li {
        min-height: 285px;
        width: 21.4%;
        float: left;
        text-align: center;
    }
}

@media only screen and (max-width: 800px) {
    #section-about > .trn-default-content > .about-content > li {
        width: 21.4%;
        float: left;
        text-align: center;
        min-height: 250px;
    }

        #section-about > .trn-default-content > .about-content > li img {
            width: 100px;
            height: 100px;
        }
}

#section-about > .trn-default-content > .about-content > li img {
    width: 150px;
    max-width: 100%;
}

#section-about > .trn-default-content > .about-content > li p {
    width: 100%;
    float: none;
    text-align: center;
    display: inline-block;
}

    #section-about > .trn-default-content > .about-content > li p > strong {
        font-weight: 600;
        font-size: 15px;
        color: #000000;
        padding-bottom: 5px;
        display: block;
    }

    #section-about > .trn-default-content > .about-content > li p > span {
        font-size: 12px;
        color: #AAAAAA;
        display: block;
        margin-bottom: 10px;
    }

#section-about > .trn-default-content > .about-content > li:hover {
    -webkit-box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 25px -12px rgba(0, 0, 0, 0.75);
    border-radius: 4px;
}

#section-about .link-wrapper {
    text-align: center;
}

    #section-about .link-wrapper .link {
        font-size: 15px;
        font-weight: 600;
        color: #2321FF;
        text-decoration: none;
    }

        #section-about .link-wrapper .link:after {
            content: "\2192";
            margin-left: 5px;
            font-size: 14px;
            font-family: sans-serif;
        }

body[dir='rtl'] #section-about .link-wrapper .link::after {
    content: "\2190";
}

.dynamic-content-wrapper {
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dynamic-content-wrapper *,
.dynamic-content-wrapper *:before,
.dynamic-content-wrapper *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .dynamic-content-wrapper {
    font-size: 16px;
    color: #000000;
  }
}
.dynamic-content-wrapper p {
  margin-bottom: 15px;
}
.desktop .dynamic-content-wrapper p {
  color: #000000;
  font-size: .9em;
}
.desktop .dynamic-content-wrapper p span {
  font-weight: bold;
  color: #000000;
}
.mobile .dynamic-content-wrapper p span {
  font-weight: bold;
}
.dynamic-content-wrapper a {
  color: #000000;
}
.desktop .dynamic-content-wrapper a {
  font-weight: bold;
}
.dynamic-content-wrapper a .mobile {
  font-weight: bold;
  text-decoration: underline;
}
.dynamic-content-wrapper .list-wrapper {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .dynamic-content-wrapper .list-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 50px 50px 0;
    padding: 0;
  }
  .dynamic-content-wrapper .list-wrapper > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - (2 - 1) * 50px) / 2);
            flex: 0 0 calc((100% - (2 - 1) * 50px) / 2);
    margin-bottom: 50px;
  }
  .dynamic-content-wrapper .list-wrapper > *:not(:last-child) {
    margin-right: 50px;
  }
  .dynamic-content-wrapper .list-wrapper > *:nth-child(2n) {
    margin-right: 0;
  }
}
.dynamic-content-wrapper .list-wrapper .list-item {
  padding: 0;
}
.mobile .dynamic-content-wrapper .list-wrapper .list-item {
  margin-bottom: 20px;
}
.dynamic-content-wrapper .list-wrapper .list-item .item-title {
  margin-bottom: 10px;
}
.desktop .dynamic-content-wrapper .list-wrapper .list-item .item-title {
  color: #000000;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.4em;
}
.mobile .dynamic-content-wrapper .list-wrapper .list-item .item-title {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.2;
}
.dynamic-content-wrapper .list-wrapper .list-item .item-description {
  font-size: .9em;
}
.mobile .dynamic-content-wrapper .list-wrapper .list-item .item-description ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 5px;
}

body[dir='rtl'] .trn-content.desktop .list-wrapper .list-item {
  margin-right: 0px !important;
}

