@font-face {
    font-family: 'RB-Bold';
    src: url('../fonts/RB/RB-Bold/RB-Bold.eot');
    src: url('../fonts/RB/RB-Bold/RB-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RB/RB-Bold/RB-Bold.woff2') format('woff2'),
    url('../fonts/RB/RB-Bold/RB-Bold.woff') format('woff'),
    url('../fonts/RB/RB-Bold/RB-Bold.ttf') format('truetype'),
    url('../fonts/RB/RB-Bold/RB-Bold.svg#RB-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RB-Regular';
    src: url('../fonts/RB/RB-Regular/RB-Regular.eot');
    src: url('../fonts/RB/RB-Regular/RB-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RB/RB-Regular/RB-Regular.woff2') format('woff2'),
    url('../fonts/RB/RB-Regular/RB-Regular.woff') format('woff'),
    url('../fonts/RB/RB-Regular/RB-Regular.ttf') format('truetype'),
    url('../fonts/RB/RB-Regular/RB-Regular.svg#RB-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    /*overflow: hidden;*/
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

body {
    font-family: 'RB-Regular';
    color: #8f8f8f;
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    /*list-style: none;*/
    /*padding: 0;*/
}

ul li {
}

.form-control {
    border-radius: 0;
}

textarea.form-control {
    height: 200px;
}

.form-control:focus {
    border-color: #305fac;
    box-shadow: 0 0 0 0.2rem rgba(172, 124, 75, .25);
}

.sec-tit {
    color: #000;
    margin-bottom: 50px;
    padding-bottom: 10px;
    position: relative;
}

.sec-tit:before,
.sec-tit:after {
    content: '';
    height: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.sec-tit:before {
    width: 50px;
    background-color: #14366d;
}

.sec-tit:after {
    width: 20px;
    background-color: #305fac;
}

.sec-slogan {
    position: relative;
}

html[dir="rtl"] .main-btn {
    padding: 10px 25px 10px 45px;
}

html[dir="ltr"] .main-btn {
    padding: 10px 45px 10px 25px;
}

.main-btn {
    color: #fff;
    background-color: #14366d;
    position: relative;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

html[dir="rtl"] .main-btn:before {
    right: 0;
}

html[dir="ltr"] .main-btn:before {
    left: 0;
}

.main-btn:before {
    content: '';
    width: 11px;
    height: 100%;
    background-color: #305fac;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .main-btn:after {
    content: "\f053";
    left: 10px;
}

html[dir="ltr"] .main-btn:after {
    content: "\f054";
    right: 10px;
}

.main-btn:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main-btn:hover {
    color: #fff;
    background-color: #305fac;
}

.main-btn:hover:before {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.main-btn span {
    position: relative;
}

/******************************/
header {
    background-color: #fff;
    padding:15px 0;
}

.head-home {
}

.menu-logo img {
    height: 100%;
    max-width:130px;
}

.lang {
    font-weight: bold;
    color: #305fac;
    transition: all 0.5s ease-in-out;
}

.lang:hover {
    
}

@media (min-width: 992px) {
    header .container-fluid {
         
    }
}

@media (max-width: 992px) {  }
/******************************/
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
        font-weight: bold;
    }

    .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 20px;
    }

    .nav-list > .menu-item > a {
        display: block;
        color: #089bde;
        padding: 10px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        margin-inline-start: 5px;
        color: #fff;
        transition: all .5s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: #305fac;
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: #305fac;
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: #e1e7f6;
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: center top;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.6s ease;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: #0e185f;
        padding-bottom: 10px;
        border-bottom: 1px solid #0e185f;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f30a";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f30b";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 5 Pro";
        color: #0e185f;
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: #000;
        border-bottom: 1px solid #000;
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: #000;
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-logo {
        height: 100px;
        width: 100%;
        justify-content: center;
        display: flex;
        margin-bottom: 30px;
    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: inline-block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .menu-icons {
        display: flex;
        align-items: center;
    }

    .menu-icons a {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lang {
        border: 1px solid #14366d;
        background-color: #f1f1f1;
    }

    .nav-btn {

        color: #fff;
        border: 1px solid #14366d;
        /*border-radius: 100%;*/
        background-color: #305fac;
        margin-inline-start: 10px;
        transition: all 0.5s ease-in-out;
    }

    html[dir="ltr"] .mobile-nav-list {
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: #040201;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 6;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid #626672;
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item a {
        display: block;
        color: #fff;
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item a:hover,
    .mobile-nav-list .menu-item.active a {
        color: #626672;
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid #362e5f;
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid #362e5f;
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: #fff;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: #fff;
    }

    .sub-menu {
        list-style: none;
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        padding: 15px 25px;
        background-color: #362e5f;
    }

    .sub-menu .sub-menu a {
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }

    /**/
    html[dir="ltr"] .mobile-nav-list {
        left: 0;
    }

    html[dir="rtl"] .mobile-nav-list {
        right: 0;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }
}

/******************************/
.slider {
}

.mainItem {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mainItem img.slid-thumb {
    width: 100%;
    position: relative;
    transition: all 25s ease;
    transform-style: preserve-3d;
}

.main-slider .active img {
    transform: scale(1.3);
}

.mainItem-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    background-color: rgba(23, 23, 82, .4);
}

.slid-body {
}

.slid-tit {
    margin-bottom: 30px;
}


.slid-des {
}

.main-slider .owl-nav div {
    text-align: center;
    color: #fff;
    background-color: #305fac;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ease-in-out;
}

.main-slider .owl-nav div.owl-next {
    right: 10px;
}

.main-slider .owl-nav div.owl-prev {
    left: 10px;
}

.main-slider .owl-nav div:hover {
    background-color: #171752;
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border: 1px solid #305fac;
    transition: all .5s ease-in-out;
}

.main-slider .owl-dots .owl-dot:not(:last-of-type) {
    margin-inline-end: 15px;
}

.main-slider .owl-dots .owl-dot:hover,
.main-slider .owl-dots .owl-dot.active {
    border-color: transparent;
    background-color: #305fac;
}

@media (min-width: 992px) {
    .mainItem img.slid-thumb {
        height: 100vh;
    }

    .slid-tit {
        font-size: 45px;
    }

    .main-slider .owl-nav div {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 992px) {
    .mainItem img.slid-thumb {
        height: 375px;
    }

    .slid-body {
        padding: 0 35px;
    }

    .slid-tit {
        font-size: 18px;
    }

    .main-slider .owl-nav div {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

/******************************/
.about {
    padding: 70px 0;
}

.about-des {
    margin-bottom: 35px;
}

.about-info {
    margin-bottom: 35px;
}

.about-img {
    position: relative;
}

.about-img:before {
    content: '';
    width: 100%;
    height: 77%;
    border: 15px solid #305fac;
    position: absolute;
    top: 50%;

    z-index: -1;
}

@media (min-width: 992px) {
    .about-img img {
        width: 90%;
    }

    .about-img:before {
        left: 0;
        transform: translateY(-50%);
    }
}

@media (max-width: 992px) {
    .about-img {
        text-align: center;
    }

    .about-img:before {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .about-img img {
        width: 70%;
    }
}

/******************************/
.services {
    padding: 55px 0;
    position: relative;
    background-image: url("../images/bg-serv.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.services:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(20, 54, 109, .6);
}

.ser-item {
    margin-bottom: 30px;
}

.ser-item-url {
    color: #14366d;
    background-color: #fff;
    padding: 30px;
    transition: all .5s ease-in-out;
}

.ser-item-icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    margin-inline-end: 10px;
}

.ser-item-icon img {
    max-height: 100%;
    object-fit: contain;
    transition: all .5s ease-in-out;
}

.ser-item-tit {
    margin-bottom: 0;
}

.ser-item:hover .ser-item-url {
    color: #fff;
    background-color: #305fac;
}

.ser-item:hover .ser-item-icon img {
    filter: brightness(0) invert(1);
}

/******************************/
.headquarters {
    padding: 50px 0;
}

.headquarter-item {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.headquarter-item:before {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(255, 255, 255, 0.0) 100%);
}

.headquarter-item-url {
    display: block;
}

.headquarter-item:hover:before {
    opacity: 1;
    top: -20%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: linear;
}

/******************************/
.team {
    position: relative;
    background-color: #f1f1f1;
}

.team-sec-head {
    color: #fff;
    background-image: url("../images/bg-team.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    transition: all .5s ease-in-out;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 50px 30px;
}

.team-sec-head:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(33, 81, 159, .9);
}

.team-member {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.team-member-avatar {
    height: 275px;
}

.team-member-avatar img {
    height: 100%;
    width: 100%;
}

.team-member-info {
    color: #fff;
    padding: 15px;
    background-color: #14366d;
    flex-grow: 1;
    transition: all .3s ease-in-out;
}

.team-member-name {
    margin-bottom: 15px;
}

.team-member:hover .team-member-info {
    background-color: #305fac;
}


@media (min-width: 992px) {

    .team-member-avatar img {
        object-fit: contain;
    }

    .team-members {
        padding: 30px;
    }

    .team-member-info {
        position: absolute;
        width: 100%;
        bottom: 0;
        right: 0;
        left: 0;
        transition: all .3s ease-in-out;
    }

    .team-member-extra-data {
        margin-bottom: -140px;
        height: 125px;
        overflow-y: auto;
        transition: all .3s ease-in-out;
    }

    .team-member-extra-data::-webkit-scrollbar {
        width: 3px;
    }

    .team-member-extra-data::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
        border-radius: 3px;
    }

    .team-member-extra-data::-webkit-scrollbar-thumb {
        border-radius: 3px;
        -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
    }

    .team-member:hover .team-member-info {
    }

    .team-member:hover .team-member-extra-data {
        margin-bottom: 0;
    }

}

@media (max-width: 992px) {
    .team-sec-head {
        position: relative;
        margin-bottom: 50px;
        padding: 50px;
    }
}

/******************************/
.clients {
    padding: 70px 0;
}

.client-logo {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 100%;
    object-fit: contain;
}

html[dir="rtl"] .clients-carousel .owl-nav {
    flex-direction: row-reverse;
}

.clients-carousel .owl-nav {
    margin: 35px 0;
    display: flex;
    justify-content: center;
}

.clients-carousel .owl-nav div {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    background-color: #305fac;
    margin: 0 5px;
}

.clients-carousel .owl-nav div:hover {
    color: #fff;
    background-color: #171752;
}

/******************************/
footer {
    padding: 50px 0;
    color: #fff;
    background-image: url(../images/bg-footers.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

footer:before {
    content: '';
    background-color: rgba(20, 54, 109, .9);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.foot-main {
    position: relative;
}

.site-name a {
    display: block;
    width: 100%;
    white-space: initial;
    color: #fff;
}

.foot-contact-item-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #305fac;
    border: 1px solid #305fac;
    margin-inline-end: 10px;
}

.foot-contact-item-info {
    width: calc(100% - 60px);
}

.foot-contact-item-tit {
    color: #305fac;
}

.foot-contact-item-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

.foot-contact-item-data,
.foot-contact-item-data a {
    color: #fff;
}
.foot-contact-item-data a span{
        direction: ltr;
    display: block;
}

.foot-contact-item-data a:not(:last-of-type) {
    display: flex;
    align-items: center;
    margin-inline-end: 5px;
}

.foot-contact-item-data a:not(:last-of-type):after {
    content: ' - ';
    margin-inline-start: 5px;
}

.foot-upper {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #fff;
}

.foot-widgets {
    margin-bottom: 30px;
}

.foot-widget-tit {
    color: #305fac;
    margin-bottom: 25px;
}

.map iframe {
    display: block;
    width: 100%;
    height: 200px;
}

.foot-list {
        list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.foot-list li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    font-size: 14px;
    margin-bottom: 20px;
}

.foot-list li a {
    color: #fff;
    display: flex;
    align-items: center;
}

html[dir="rtl"] .foot-list li a:before {
    content: "\f323";
}

html[dir="ltr"] .foot-list li a:before {
    content: "\f324";
}

.foot-list li a:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-inline-end: 5px;
}

.newsletter {
    margin-bottom: 50px;
}

.newsletter-des {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form input[type='email'] {
    width: calc(100% - 40px);
    height: 40px;
    padding: 5px;
    text-indent: 15px;
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #305fac;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media a:not(:last-of-type) {
    margin-inline-end: 10px;
}

.social-media a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #14366d;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

.social-media a:hover {
    color: #fff;
    background-color: #305fac;
}

.foot-copyright {
    padding: 20px 0;
    color: #fff;
    background-color: #122547;
}

.foot-copyright a {
    color: #305fac;
}

/******************************/
.news-item {
    box-shadow: 1px 0 27px rgba(0, 0, 0, .14);
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 30px;
}

.news-item-thumb {
    height: 250px;
    overflow: hidden;
}

.news-item-thumb img {
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: all 2500ms ease-in-out;
}

.news-item-body {
    padding: 30px;
}

.news-item-tit {
    margin-bottom: 25px;
}

.news-item-tit a {
    color: #757575;
    transition: all 0.5s ease-in-out;
}

.news-item-des {
    margin-bottom: 35px;
    transition: all 0.5s ease-in-out;
}

.news-item:hover .news-item-tit a,
.news-item:hover .news-item-des {
    color: #000;
}

.news-item:hover .news-item-thumb img {
    transform: scale(1.3) rotate(-3deg);
}

/******************************/
.services-page .ser-item,
.clients-page .client-item {
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}

/******************************/
.breadcrumb-area {
    background-color: #305fac;
    padding: 10px 0;
    font-weight: 500;
}

.breadcrumb-area,
.breadcrumb-area a {
    color: #fff;
}

.sec-padding {
    padding: 70px 0;
}

/******************************/
.sec-bg:nth-child(odd) {
    background-color: #fff;
}

.sec-bg:nth-child(even) {
    color: #000;
    background-color: #f9f9f9;
}

.content-block-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #b5a78a;
    box-shadow: 0 0 12px rgba(249, 249, 249, .24);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .3s ease-in-out;
}

.content-block-item-icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    margin: 0 auto 15px auto;
    border: 1px solid #b5a78a;
    display: flex;
    align-content: center;
    align-items: center;
}

.content-block-item-icon img {
    max-height: 100%;
    margin: auto;
    transition: all .3s ease-in-out;
}

.content-block-item-tit {
    color: #000;
    transition: all .3s ease-in-out;
}

.content-block-item-exp {
    color: #ababab;
}

.timeline {
}

.timeline-item {
    position: relative;
}

.timeline-item:nth-of-type(even) .row {
    flex-direction: row-reverse;
}

.timeline-item:before {
    position: absolute;
    content: '';
    top: 5px;
    width: 15px;
    height: 15px;
    z-index: 2;
    background: #b5a78a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #b5a78a;
}

.timeline-item:after {
    position: absolute;
    content: '';
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: #fff;
}

@media all and  (min-width: 991px) {

    .timeline-item:before,
    .timeline-item:after {
        left: 50%;
        transform: translateX(-50%);
    }

}

.gallery-item-image img {
    height: 150px;
    width: 300px;
}


@media all and  (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-inline-end: 40px;
    }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-inline-start: 40px;
    }
}

@media all and  (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-inline-start: 25px;
    }

    html[dir="ltr"] .timeline-item:before {
        left: -5px;
    }

    html[dir="rtl"] .timeline-item:before {
        right: -5px;
    }
}

html[dir="ltr"] .timeline-item:after {
    border-right: 1px dotted #b5a78a;
}

html[dir="rtl"] .timeline-item:after {
    border-left: 1px dotted #b5a78a;
}

html[dir="rtl"] .wpcf7,
html[dir="rtl"] .wpcf7 input[type="url"],
html[dir="rtl"] .wpcf7 input[type="email"],
html[dir="rtl"] .wpcf7 input[type="tel"] {
    direction: rtl;
}

html[dir="ltr"] .wpcf7,
html[dir="ltr"] .wpcf7 input[type="url"],
html[dir="ltr"] .wpcf7 input[type="email"],
html[dir="ltr"] .wpcf7 input[type="tel"] {
    direction: ltr;
}

/******************************/
.case-wrap:not(:last-of-type){
    border-bottom: 1px solid #305fac;
    margin-bottom: 50px;
}
.case-wrap{

}
.case-item{
    padding: 30px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
    margin-bottom: 30px;
    color: #000;
}
.case-item-tit{
    color: #305fac;
}
.case-item-date{
    color: #14366d;
}
/******************************/
.user-list {
    position: relative;
}

.user-list-item {
}

.user-list-item a {
    display: block;
    color: #08a0df;
}
.sub-user-list{
    text-align: center;
}
.sub-user-list li:not(:last-of-type) {
    border-bottom: 1px solid rgba(172,124,75,0.3 );
}

.sub-user-list li a{
    color: #305fac;
    padding: 15px ;
    transition: all linear .4s;
}

.sub-user-list li:hover a {
    color:#14366d ;
}

.sub-user-list {
    background-color: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 0%);
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    z-index: 6;
    transition: all 0.5s linear;
    transform-style: preserve-3d;
    transform: rotateX(-60deg);
    transform-origin: center top;
}

.user-list-item:hover .sub-user-list {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg);
}
/******************************/
