@font-face {
    font-family: 'RB-Regular';
    src: url('../fonts/RB-Regular.ttf');
}

@font-face {
    font-family: 'RB-Bold';
    src: url('../fonts/RB-Bold.ttf');
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

body {
    color: #0f0d1d;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    font-family: 'RB-Regular';
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin: 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%;
}

.no-padding {
    padding: 0;
}

/* -- search -- */
#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands';
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header input[type="search"],
#search-header .search-submit {
    color: #fff;
}

/**********************************/
/***********  main-link  **********/
/**********************************/
.main-link {
    position: relative;
    background-color: #37485e;
    border: 1px solid #37485e;
    color: #fff;
    display: inline-block;
    font-family: 'RB-Bold';
    width: 150px;
    height: 40px;
    line-height: 40px;
    border-radius: 35px;
    text-align: center;
    transition: all linear .5s;
    overflow: hidden;
}

.main-link:after {
    content: "\f053";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    top: 0px;
    position: relative;
    opacity: 1;
    transition: all linear .5s;
}

.main-link:hover {
    color: #fff;
}

.main-tittle {
    margin: 0 auto 50px;
    display: table;
    position: relative;

}

.main-tittle span {
    font-size: 28px;
    font-weight: bold;
}

.main-tittle:before {
    content: " ";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    height: 4px;
    border-radius: 5px;
    animation-duration: 50s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: slidetounlock;
    animation-timing-function: linear;
    background: linear-gradient(to right, #ceebfa 0%, #3fb883 100%);
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes slidetounlock {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100em 0;
    }
}

.ins-link {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.ins-link:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3fb883;
    border: 1px solid #3fb883;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.ins-link:active, .ins-link:focus, .ins-link:hover {
    color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .32);
    border: 1px solid #3fb883;

}

.ins-link:active:before, .ins-link:focus:before, .ins-link:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

/**********************************/
/***********    header   **********/
/**********************************/
.head-home {
    background: #fff;
    padding: 25px 0;
}

#logo {
    position: absolute;
     z-index: 1;
    top: -20px;
    height: 110px;
    width: 90%;
    border-radius: 0 0 10px 10px;
    text-align: center;
    padding: 8px 0 0 0;


}

.top-icons .main-but {
    position: relative;
    background-color: #37485e;
    border: 1px solid #37485e;
    color: #fff;
    display: inline-block;
    font-family: 'RB-Bold';
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: all linear .5s;
    overflow: hidden;
}

.top-icons .main-but:hover {
    background-color: #3fb883;
    border: 1px solid #3fb883;
    color: #fff;
}

.top-icons .lang {
    background-color: transparent;
    display: inline-flex;
    border: 1px solid transparent;
}

.top-icons .lang img {
    width: 40px;
    height: 40px;
    line-height: 40px;

}

/**********************************/
/************ slideshow ***********/
/**********************************/
.slider {
    background-image: url("../images/slide-back.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 150px 0 180px;
    position: relative;
}

.slider:before {
    content: " ";
    position: absolute;
    bottom: -25px;
    right: 0;
    left: 0;
    background-image: url("../images/wave-slide.png");
    background-size: cover;
    width: 100%;
    height: 180px;
    z-index: 1;
    animation: wave 10s infinite linear;
    background-repeat: no-repeat;
}

.main-slider {
    direction: ltr;
}

.slid-container {
    position: relative;
    z-index: 5;
    text-align: center;
}

.main-slider .mainItem {
    position: relative;
    overflow: hidden;
}

.main-slider .slid-overlay {
    /*direction: rtl;*/
    /*position: absolute;*/
    /*align-items: center;*/
    /*width: 100%;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*right: 0;*/
    /*left: 0;*/
    /*color: #fff;*/
    /*height : 100%;*/
}

.main-slider img {
    position: relative;
}

.main-slider img {
     /*padding-bottom: 25px;*/
    animation: colors 4s infinite ease-in-out;
}

@keyframes colors {
    50% {
        transform: translateY(25px);
    }
}

.slid-des {
    margin-bottom: 35px;
    text-align: right;
}

.slid-des h3 {
    color: #3eb982;
    font-size: 36px;
    margin-bottom: 15px;
}

.slid-des div {
    color: #fff;
    font-size: 18px;
}

.main-slider .owl-nav button {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    text-align: center;
    background: #37485e;
    transition: all ease-in-out .5s;
}

.main-slider .owl-nav .owl-next {
    left: 50px;
}

.main-slider .owl-nav .owl-prev {
    right: 50px;
}

.main-slider .owl-nav button:hover {
    background: #3fb883;
    color: #fff;
    transition: all ease-in-out .5s;
}

.slider-link {
    width: 160px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;

}

.slider-link:hover {
    background-color: #3fb883;
    border: 1px solid #3fb883;
}

/**********************************/
/************   about   ***********/
/**********************************/
.about {
    padding: 50px 0;
}

.about-head {
    font-size: 24px;
    color: #37485e;
    font-weight: bold;
    margin-bottom: 25px;
}

.about-paragraph {
    color: #8f8f8f;
    font-size: 14px;
    text-align: justify;
    margin-bottom: 25px;
    line-height: 30px;
}

.about-img img {
    padding-bottom: 25px;
    animation: colors 3.5s infinite ease-in-out;
}

@keyframes colors {
    50% {
        transform: translateY(25px);
    }
}

/**********************************/
/*********** services    **********/
/**********************************/
.services .main-tittle span {
    color: #fff;
}

.services {
    background-image: url("../images/serv-back.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 75px 0;
}

.services-content {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .2);
    transition: all linear .5s;
}

.services-head {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.services-title {
    color: #fff;
    font-size: 18px;
    margin-inline-start: 25px;
    font-weight: bold;
    transition: all linear .5s;

}

.services-paragraph {
    color: #fff;
    text-align: justify;
    flex-grow: 1;
    margin-bottom: 25px;
    transition: all linear .5s;

}

.services-icon {
    background: #fff;
    border-radius: 50%;
    border: 1px solid #2b89ba;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;

}

.services-content:hover {
    background: rgba(255, 255, 255, 1);
    border: 1px solid #3fb883;
    transition: all linear .5s;

}

.services-content:hover .services-paragraph {
    color: #000;
    transition: all linear .5s;

}

.services-content:hover .services-title {
    color: #3fb883;
    transition: all linear .5s;

}

.services-content:hover .ins-link {
    color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .3);
    border: 1px solid #3fb883;
    transition: all linear .5s;

}

.services-content:hover .ins-link:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: all linear .5s;

}

/**********************************/
/***********   leaders   **********/
/**********************************/
.leaders{
    padding: 50px 0  ;
}
.leaders-content {
    background: #ceebfa;
     display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all linear .5s;
}
.leaders-content:hover{
    box-shadow: 0 0 27px rgba(0,0,0,.18);
    transition: all linear .5s;

}
.leader-item-header .leaders-title{
    color: #000;
    font-weight: bold;
    font-size: 20px;
}
.leader-item-bottom .leaders-title{
    color: #3fb883;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
}
.leaders-content:hover .leader-item-bottom .leaders-title{
animation: leaders-title 3.5s infinite ease-in-out;
}

@keyframes leaders-title {
    50% {
        transform: translateY(-10px);
    }
}
.leaders-content:hover .ins-link {
    color: #fff;
    box-shadow: 0 0 9px rgba(0, 0, 0, .3);
    border: 1px solid #3fb883;
    transition: all linear .5s;

}

.leaders-content:hover .ins-link:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: all linear .5s;

}
.leader-item-header .leaders-img{
    margin-bottom: 25px;
}
.leaders-content .leader-item-header {
    opacity: 1;
    transform: translateY(35px);
    transition: all linear .5s;
}
.leaders-content:hover .leader-item-header {
    opacity: 0;
     transition: all linear .5s;
}
.leaders-content .leader-item-bottom{
    transform: translateY(-50px);
    opacity: 0;
    transition: all linear .5s;

}
.leaders-content:hover .leader-item-bottom{
     opacity: 1;
    transition: all linear .5s;

}

/**********************************/
/*********** investments **********/
/**********************************/
.investments{
    background-image: url("../images/serv-back.png");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.investments .main-tittle span{
    color: #fff;
}
.investments .main-investments{
    padding-bottom: 75px;
}
.investments .main-investments .item{
    margin: 10px 0;
}
.investments .main-investments img{
    border: 2px solid #257097;
    border-radius: 100%;
    transform: scale(1);
    transition: all linear .5s;
}
.investments .main-investments img:hover{
    border: 2px solid #3fb883;
    transform: scale(1.05);
    transition: all linear .5s;

}
.main-investments .owl-nav button {
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #37485e;
    transition: all ease-in-out .5s;
}

.main-investments .owl-nav .owl-next {
    left: 45%;
}

.main-investments .owl-nav .owl-prev {
    right: 45%;
}

.main-slider .owl-nav button:hover {
    background: #3fb883;
    color: #fff;
    transition: all ease-in-out .5s;
}

/**********************************/
/***********    why-us   **********/
/**********************************/
.why-us{
    padding: 50px 0;
    background-image: url("../images/why-back.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}
.why-us-content{
    background-image: url("../images/back-i.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    margin-bottom: 50px;

}
.why-us-content:hover{
    animation: slide 5s linear infinite;
}
@-webkit-keyframes slide {
    0% {
        background-size: 0%;
    }
    50% {
        background-size: 100%;
    }
    100% {
        background-size: 0%;
    }
}
.why-us-content:hover .why-us-icon img{
animation: why-us 2s infinite ease-in-out;
}

@keyframes why-us {
    50% {
        margin-top: -15px ;
    }
}
.why-us-icon {
    margin-bottom: 15px;
}
.why-us-item .why-us-title{
    color: #37485e;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;

}
.why-us-item .why-us-paragraph{
    color: #929292;
    font-size: 16px;
 }

/**********************************/
/*********** contact-us **********/
/**********************************/
.contact-us{
    background-image: url("../images/serv-back.png");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.contact-us .main-tittle span{
    color: #fff;
}
.contact-us .contact-form form input {
    width: 100%;
    overflow: visible;
}
 
.uploadfile label{
        top: unset !important;
          left: unset !important;
          right: unset !important;
    position: relative !important;
    display: block; 
}















.contact-us-content{
    margin-top: 50px;
}
.contact-us .form-control {
    height: 45px;
    border-radius: 35px;
    background: transparent ;
    color: #fff;
    border: 1px solid #fff;
    margin-bottom: 40px;

}
.contact-us .form-control:focus{
    border: 1px solid #fff;
    box-shadow: none;

}
.contact-us textarea.form-control {
    height: 220px;
    border-radius: 20px;
    border: 1px solid #fff;

}
.form-focused {
    position: relative;
    margin-bottom: 30px;
}

.form-focused label {
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 15px;
    color: #fff;
    transition: all .5s ease-in-out;
}

.focused label {
    top: -30px;
    right: 0;
    font-size: 18px;
    color: #fff;
}
.contact-us-content .main-link{
    margin: 0 15px  ;
}



/**********************************/
/***********   footer    **********/
/**********************************/
.footer{
    padding: 50px 0  ;
}
.info-text-footer {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
.info-text-footer i {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    background-color: transparent;
    text-align: center;
    border: 1px solid #37485e;
    color: #37485e;
    display: inline-block;
    transition: all linear .5s;
}
.info-text-footer i:hover{
    background-color: #3fb883;
     border: 1px solid #3fb883;
    color: #fff;
    transition: all linear .5s;
}
.footer-info-content {
    margin-right: 15px;
    width: calc(100% - 55px );
}
.footer-info-content h6 {
    color: #37485e;
    margin-bottom: 10px;
}
.footer-info-content a, .footer-info-content span {
    color: #7e7e7e;
}
.footer-iframe iframe{
    width: 100%;
    height: 300px;
    border-radius: 20px;
    display: block;
}
.social-media{
    margin-top: 30px;
}
.social-media i {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    margin-left: 10px;
    background-color: transparent;
    text-align: center;
    border: 1px solid #37485e;
    color: #37485e;
    display: inline-block;
    transition: all linear .5s;
}
.social-media i:hover{
    background-color: #3fb883;
    border: 1px solid #3fb883;
    color: #fff;
    transition: all linear .5s;
}
.footer-bay {
    margin : 65px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bay .img-bay{

}
.footer-bay .img-bay img{
    border-radius: 10px;
    box-shadow: 0 0 27px rgba(0,0,0,.18);
}
.end-footer{
    background: #333333;
    padding: 25px 0;
}
.powerd h6{
    color: #fff;
    font-family: 'RB-Regular';
    font-weight: initial;
    font-size: 15px;

}
.powerd a{
    color: #37485e;
    font-family: 'RB-Regular';
    font-weight: initial;

}
.end-footer .powerd{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.powerd-ltf{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.powerd-ltf {
    color: #fff;
}
.footer-link{
    display: flex;
}
.footer-link a{
    color: #fff;
    margin-right: 25px;
}
/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

@media (min-width: 992px) {
    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .nav-list {
        display: flex;
        margin-bottom: 0;
        list-style: none;
    }

    .nav-list > .link {
        display: flex;
        align-items: center;
        position: relative;
        margin-inline-start: 30px;
    }

    .nav-list > .link > a {
        display: block;
        color: #000;
        position: relative;
        font-size: 14px;
        font-weight: bold;
        transition: all ease-in-out .5s;
    }

    .nav-list > .link:hover a, .nav-list > .link.active a {
        color: #3fb883;
        transition: all ease-in-out .5s;
    }

    .nav-list > .link > a:before {
        /*content: '';*/
        /*position: absolute;*/
        /*top: 50%;*/
        /*width: 12px;*/
        /*right: -15px;*/
        /*height: 3px;*/
        /*background-color: transparent;*/
        /*transition: all ease-in-out .5s;*/
    }

    .nav-list > .link:hover a:before,
    .nav-list > .link.active a:before {
        /*height: 3px;*/
        /*background-color: #3fb883;*/
        /*transition: all ease-in-out .5s;*/

        /*animation-name: flash;*/
        /*animation-duration: 3s;*/
        /*animation-iteration-count: infinite;*/
        /*animation-timing-function: linear;*/
    }

    .nav-list > .link {
        text-transform: capitalize;
    }

    .has_sub_menu ~ i {
        width: 15px;
        display: inline-block;
        text-align: center;
        color: #3fb883;
    }

    .sub-list {
        background-color: #fff;
        padding: 10px;
        list-style: none;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        position: absolute;
        top: 100%;
        min-width: 230px;
        display: none;
        z-index: 4;
    }

    .sub-list li {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cacaca;
    }
    .sub-list li:last-child{
        border-bottom: 0px solid #cacaca;

    }

    .sub-list li a {
        display: block;
        width: 100%;
        position: relative;
        color: #000;
    }

    .sub-list li a.has_sub_menu {
        width: calc(100% - 30px);
        display: inline-block;
    }

    .sub-list li:hover {
        border-bottom: 1px solid #3fb883;
    }

    .sub-list li a:hover {
        color: #3fb883;
    }

    .sub-list li:last-child > a {
        margin-bottom: 0;
    }

    .sub-list .sub-link {
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        transition: all .5s linear;
    }

    .sub-list .sub-link:hover {
        background-color: #3fb883;
    }

    .sub-list .sub-link:last-child {
        border-bottom: 0;
    }

    .nav-list .link:hover > .sub-list {
        display: block;
    }

    .sub-list .sub-list {
        top: 0;
    }

    .nav-list .link .sub-list .sub-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list .link .sub-list .sub-link:hover > .sub-list {
        display: block;
    }

    .nav-btn,
    .mobile-nav-list {
        display: none;
    }

    .has_sub_menu {
        margin-left: 5px;
    }

    .sub-list {
        right: 0;
    }

    .sub-list li a.has_sub_menu {
        margin-right: 5px;
    }

    .sub-list .sub-list {
        right: 100%;
    }
}

@media (max-width: 1024px) {
    .nav-list > .link{
        margin-inline-start: 5px;
    }
    #search-header .search-form{
        top: 25%;
    }
    .nav-list > .link > a{
        font-size: 12px;
    }
    .slider{
        padding: 50px 0 180px;
    }
    .main-slider .owl-nav .owl-next {
        left: 25px;
    }
    .main-slider .owl-nav .owl-prev {
        left: 25px;
    }
    .services-title{
        font-size: 28px;
    }
    .powerd h6 ,.powerd a{
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .main-nav {
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*align-items: center;*/
        /*justify-content: space-between;*/
    }

    .nav-btn {

        color: #fff;
        font-size: 20px;
        background: transparent;
    }

    .nav-btn i {
        font-size: 25px;
        color: #fff;
        background: #3fb883;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        outline: none;
    }

    .nav-btn i:hover {
        color: #fff;
        background: #000;
    }

    .nav-btn:focus {
        outline: none !important;
        border: 0 !important;
    }

    .mobile-nav-list {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        height: 100%;
        width: 300px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        transform: translateX(100%);
        transition: all .5s linear;
    }

    .mobile-nav-list .link {
        font-size: 18px;
        position: relative;
        font-weight: bold;

    }

    .mobile-nav-list .link a {
        border-bottom: 2px solid rgb(0, 0, 0);
        color: #3fb883;
        display: block;
        width: 100%;
        padding: 5px 15px;
        margin-bottom: 40px;
    }

    .mobile-nav-list .link a.has_sub_menu {
        display: inline-block;
        width: calc(100% - 40px);
    }

    .mobile-nav-list .link a:hover,
    .mobile-nav-list .link.active a {
        color: #3fb883;
    }

    .mobile-nav-list .link i {
        color: #fff;
        background-color: #3fb883;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .link i.open {
        transform: rotate(180deg);
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 4;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }

    .mobile-nav-list {
        right: 0;
        background-color: #fff;
        overflow-y: scroll;
        display: block;
    }

    .mobile-nav-list .link a.has_sub_menu {
        margin-left: 5px;
    }

    .logo-mob {
        text-align: center;
        margin-bottom: 25px;
    }

    .sub-list .sub-list a {
        padding-right: 15px;
    }

    .sub-list {
        box-shadow: none;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
    }

    .sub-list.open {
    }

    .sub-list a {
        display: block;
        position: relative;
    }

    .sub-list .sub-link {
        border: 0;
        padding: 5px 20px;
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        white-space: nowrap;
    }

    .sub-list .sub-list a {
        display: block;
        position: relative;
    }

    .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }
}

@media (max-width: 768px){
    .head-home{
        padding: 5px 0 ;
    }
    #logo{
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 95px;

    }
    .top-icons .main-but{
        margin-right: 30px;
    }

    .services-content{
        margin-bottom: 50px;
    }
    .services .h-100{
        height: auto !important;
    }
    .footer-bay .img-bay{
        margin:5px;
    }
    .footer-bay{
        flex-wrap: wrap;
        justify-content: center;
    }
    .end-footer .powerd{
        justify-content: center;
        margin-bottom: 25px;
    }
    .powerd-ltf{
        justify-content: center;

    }
}
@media (max-width: 460px){
    .mainItem img{
        max-width: 200px;
        max-height: 200px;
        margin: 0 auto;
    }
    .main-slider .slid-overlay{
        position: static;
    }
    .slid-container{
        margin-top: 25px;
    }
    .slider-link{
         margin: 0 auto;
    }
    .slid-des{
        text-align: center;
    }
    .top-icons .main-but{
        margin-right: 10px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    .top-icons .lang img {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    #logo{
        padding: 0 ;
    }
    #logo img{
        max-width: 150px;
    }
    .about {
        padding: 15px 0 50px;
    }
    .about .row{
        flex-direction: column-reverse;
    }
    .powerd h6, .powerd a{
        font-size: 12px;
    }
    .footer-iframe{
        margin-top: 35px;
    }
    .services-head{
        flex-direction: column;

    }
}

/**********************************/
/***********    404      **********/
/**********************************/
@-webkit-keyframes rotate {
    25% {
        -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    75% {
        -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
        transform: rotate(28deg);
    }
}
@-moz-keyframes rotate {
    25% {
        -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    75% {
        -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
        transform: rotate(28deg);
    }
}
@-o-keyframes rotate {
    25% {
        -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    75% {
        -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
        transform: rotate(28deg);
    }
}
@keyframes rotate {
    25% {
        -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
        transform: rotate(-28deg);
    }
    75% {
        -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
        transform: rotate(28deg);
    }
}
@-webkit-keyframes msg_first {
    0%, 25%, 75.001%, 100% {
        opacity: 1;
    }
    25.001%, 75% {
        opacity: 0;
    }
}
@-moz-keyframes msg_first {
    0%, 25%, 75.001%, 100% {
        opacity: 1;
    }
    25.001%, 75% {
        opacity: 0;
    }
}
@-o-keyframes msg_first {
    0%, 25%, 75.001%, 100% {
        opacity: 1;
    }
    25.001%, 75% {
        opacity: 0;
    }
}
@keyframes msg_first {
    0%, 25%, 75.001%, 100% {
        opacity: 1;
    }
    25.001%, 75% {
        opacity: 0;
    }
}
@-webkit-keyframes msg_second {
    0%, 25%, 75.001%, 100% {
        opacity: 0;
    }
    25.001%, 75% {
        opacity: 1;
    }
}
@-moz-keyframes msg_second {
    0%, 25%, 75.001%, 100% {
        opacity: 0;
    }
    25.001%, 75% {
        opacity: 1;
    }
}
@-o-keyframes msg_second {
    0%, 25%, 75.001%, 100% {
        opacity: 0;
    }
    25.001%, 75% {
        opacity: 1;
    }
}
@keyframes msg_second {
    0%, 25%, 75.001%, 100% {
        opacity: 0;
    }
    25.001%, 75% {
        opacity: 1;
    }
}
.error{
    height: 350px;
}
.error .container {
    position: absolute;
    left: 50%;
    top: 88%;
    width: 36vmin;
    height: 77.94vmin;
    margin-left: -18vmin;
    margin-top: -38.97vmin;
}
.error .container:first-child {
    transform-origin: 50% 100%;
    -webkit-animation: rotate 9s infinite linear;
    -moz-animation: rotate 9s infinite linear;
    -o-animation: rotate 9s infinite linear;
    animation: rotate 9s infinite linear;
}
.error .container:last-of-type {
    pointer-events: none;
}
.error .container #switch {
    display: none;
}
.error .container #switch:checked ~ .ellipse, .error .container #switch:checked ~ .ray {
    opacity: 0;
}
.error .container .ellipse {
    position: relative;
    width: 36vmin;
    height: 27vmin;
    background: #000;
    border-radius: 50%;
    z-index: 1;
}
.error .container .ray {
    position: relative;
    border-top: 36vmin solid #8d8e7e;
    border-left: 11.7vmin solid transparent;
    border-right: 11.7vmin solid transparent;
    margin-top: -12.6vmin;
}
.error .container .head {
    position: relative;
    width: 14.4vmin;
    height: 1.8vmin;
    margin-left: 10.8vmin;
    background: #ffab2b;
}
.error .container .neck {
    position: relative;
    width: 7.38vmin;
    margin-left: 10.8vmin;
    border-top: 4.32vmin solid #333333;
    border-left: 3.6vmin solid transparent;
    border-right: 3.6vmin solid transparent;
}
.error .container .body {
    position: relative;
    width: 7.308vmin;
    margin-left: 14.4vmin;
    height: 21.6vmin;
    background: #646464;
}
.error .container label {
    position: absolute;
    top: 3.6vmin;
    left: 2.628vmin;
    width: 1.44vmin;
    height: 3.6vmin;
    border: 0.432vmin solid #333333;
    background: #ffab2b;
    border-radius: 10px;
    cursor: pointer;
}
.error .msg {
    position: absolute;
    width: 36vmin;
    margin-left: -18vmin;
    left: 50%;
    text-align: center;
    font-family: "Fjalla One", sans-serif;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
}
.error .msg.msg_1 {
    color: #fff;

    top: 6.3vmin;
    font-size: 12vmin;
    -webkit-animation: msg_first 9s infinite linear;
    -moz-animation: msg_first 9s infinite linear;
    -o-animation: msg_first 9s infinite linear;
    animation: msg_first 9s infinite linear;
}
.error .msg.msg_2 {
    color: #fff;

    top: 10.8vmin;
    font-size: 4.2vmin;
    -webkit-animation: msg_second 9s infinite linear;
    -moz-animation: msg_second 9s infinite linear;
    -o-animation: msg_second 9s infinite linear;
    animation: msg_second 9s infinite linear;
}
/**********************************/
/***********    sec      **********/
/**********************************/
.sec-padding {
    padding: 50px 0;
}

.sec-bg:nth-of-type(odd) {
     color: #000;
}

.sec-bg:nth-of-type(even) {
    background-color: #fff;
}

.content-block-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #0000003D;
    box-shadow: 0 0 12px rgba(0, 0, 0, .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 #0000003D;
    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: #f2674a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #f2674a;
}

.timeline-item:after {
    position: absolute;
    content: '';
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: #fff;
}

.blogs {
    padding: 50px 0;
}
.blogs-title{
    color: #257097;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
@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;
}
/**/
.timeline-item:after {
    border-right: 1px dotted #f2674a;
}

@media all and  (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-left: 40px;
    }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-right: 40px;
    }

}

@media all and  (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-right: 25px;
    }

    .timeline-item:before {
        right: -5px;
    }
}

/**/

.timeline-item:after {
    border-left: 1px dotted #f2674a;
}
@media all and  (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-right: 40px;
    }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-left: 40px;
    }
}

@media all and  (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-left: 25px;
    }

    .timeline-item:before {
        left: -5px;
    }
}
/**********************************/
/***********    inside   **********/
/**********************************/
.inside-header{
    background: #fff;
    padding: 25px 0;
 }
.breadcrumbs{
     padding: 50px 0;
    color: #fff;
    background-image: url(../images/serv-back.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.breadcrumbs span{
    color: #fff;
    font-size: 18px;
    font-weight: bold;

}
.breadcrumbs a span{
    color: #0A9BD6;
    font-size: 18px;
    font-weight: bold;

}


.content-about{
    margin-top: 50px;
}
.archive-services{
    margin-top: 50px;
}
.archive-leaders{
    margin-top: 50px;

}
.archive-services .services-content{
    background: rgba(0, 0, 0, .2);
}
.archive-services .services-all{
    margin-bottom: 25px;

}
.archive-services .services-content:hover{
    background: #fff;
}
.footer-co{
    background: rgba(0, 0, 0, .1);
     padding: 50px 0 ;

}
.footer-co .footer-iframe iframe{
    border: 1px solid #37485e !important;
}
.inside-page-services .page-content-main{
    text-align: center;
    padding: 25px 0;
}
.inside-page-leaders .page-content-main{
    text-align: center;
    margin: 25px 0;
}
.inside-page-services .page-content-main h3{
    color: #37485e;
}
.page-content-main{
    text-align: center;
    margin: 25px 0;
}
.archive-services .services-paragraph {
    color: #000;
}
.page-forms{
    margin: 50px 0;
}
.page-forms .form-focused label{
    color: #000; 
}
.page-forms .form-focused .form-control{
    border-radius: 35px;
}
.page-forms  textarea {
    border-radius: 10px !important;
}
.footer-tit{
    margin: 50px auto;
}
.mercha-content-item{
    margin-bottom: 50px;
}
.mercha-content .main-link:after{
    content: none;
}
.mercha-content-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}