
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

html,body{
    direction: rtl;
}
html[lang=en-GB],html[lang=en-GB] body{
    direction: ltr;
}
/* Let's get this party started */

::-webkit-scrollbar {

    width: 6px;

    background: #f6f6f6 ;

}
/* Track */

::-webkit-scrollbar-track {

    border-radius: 0px;

}

/* Handle */

::-webkit-scrollbar-thumb {

    background: #628291;

}
::-webkit-scrollbar-thumb:window-inactive {

    background: #628291;

}
*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    margin:0px;
    padding:0px;
    border:none;
    outline:none;
}
body{
    font-family: 'Tajawal', sans-serif;
    background-color: #fff;
    font-size:18px;
    font-weight:500;
}
p{
    font-weight: 400;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}
p{
    margin:0;
}
html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

p{
    margin: 0;
}
a {
    cursor: pointer !important;
    text-decoration: none !important;
}
a:hover,a:active,a:focus,a:visited{
    text-decoration: none !important;
}

input, textarea, a, button {
    outline: none !important;
    text-decoration: none;
}

.margin-auto{
    margin: 0 auto;
    float: none !important;
}

/* img hover */
.img-hover {
    overflow: hidden;
    display: block;
}

.img-hover > img {
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

img{
    max-width: 100%;
}
/* end img hover */
.main-wrapper {
    position: relative;
    min-height: 100%;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    overflow: hidden;
}

header{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 100;
}
.inner-page header{
    position: relative;
    background: #0A336F;
}
.home-section{
    position: fixed;
    z-index: 1;
    width: 100%;
}
.home-section .item{
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}
.home-section .item:after{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: rgba(0,0,0,0.05);

    width: 100%;
    height: 100%;
    z-index: 1;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6a6a6a+0,6a6a6a+100&1+0,0+100 */
    /*background: -moz-linear-gradient(top,  rgba(106,106,106,1) 0%, rgba(106,106,106,0) 100%); !* FF3.6-15 *!*/
    /*background: -webkit-linear-gradient(top,  rgba(106,106,106,1) 0%,rgba(106,106,106,0) 100%); !* Chrome10-25,Safari5.1-6 *!*/
    /*background: linear-gradient(to bottom,  rgba(106,106,106,1) 0%,rgba(106,106,106,0) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a6a6a', endColorstr='#006a6a6a',GradientType=0 ); !* IE6-9 *!*/

}

.home-section .item > div{
    z-index: 2;
    position: relative;
}
.home-section .item .video-area {
    position: absolute !important;
    left: 0;
    top:0;
    z-index: 15 !important;
    /*display: none;*/
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}
.home-section .item .video-area.active{
    visibility: visible;
    opacity: 1;
}
.home-section .item .video-area video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section h2{
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    /*padding: 20px;*/
    text-shadow: 0 3px 13px rgba(0,0,0,0.16);
    margin-bottom: 20px;
}
.home-section p{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 13px rgba(0,0,0,0.16);
}
.close-video{
    visibility: hidden;
    opacity: 0;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease-out;
}
.mobile-menu-icon{
    transition: all 0.3s ease-out;
    visibility: visible;
    opacity: 1;

}
.mobile-menu-icon2{
    transition: all 0.3s ease-out;
    visibility: visible;
    opacity: 1;

    width: 26px;
    /*height: 18px;*/
    position: relative;
    /*transform: rotate(0deg) translateY(-50%);*/
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 0 !important;
    background: transparent !important;
    outline: none !important;
    z-index: 10;
    margin-left: 10px;

}
.close-menu{
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
    width: 26px;
    /*height: 18px;*/
    position: relative;
    /*transform: rotate(0deg) translateY(-50%);*/
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 0 !important;
    background: transparent !important;
    outline: none !important;
    z-index: 10;
    margin-left: 10px;
    position: relative;
    display: none;

}
.menu-toggle2 .close-menu{
    opacity: 1;
    visibility: visible;
    display: flex;
}
.menu-toggle2 .mobile-menu-icon2{
    opacity: 0;
    visibility: hidden;
    display: none !important;

}
.video-active .mobile-menu-icon{
    visibility: hidden;
    opacity: 0;
}
.video-active .close-video{
    visibility: visible;
    opacity: 1;
}
.slider-data{
    text-align: center;
}
.slider-data .btn{
    margin-top: -15px;
}
.btn-primary{
    background: #0A336F;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-color: #0A336F;
    border-radius: 0;

}
.modal .btn-primary{
    font-weight: 400;
    font-size: 1rem;
}
.header-lines > div{
    height: 8px;
}
.header-lines .c1{
    background: #ECA017;
}
.header-lines .c2{
    background: #D40048;
}
.header-lines .c3{
    background: #27B4E7;
}
.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    position: relative;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav li.current_page_item >.nav-link
{
    color: #ffffff;
    font-weight: 700;
}
.navbar-light .navbar-nav .nav-link.active:after,
.navbar-light .navbar-nav .show>.nav-link:after,
.navbar-light .navbar-nav li.current_page_item>.nav-link:after
{
    background-color: #ffffff;
    height: 5px;
    width: 50px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.inner-page .navbar-light .navbar-nav .nav-link{
    color: #ffffff
}
.inner-page .navbar-light .navbar-nav li.current_page_item >.nav-link{
    color: #ffffff
}
.inner-page .navbar-light .navbar-nav .nav-link.active:after,
.inner-page .navbar-light .navbar-nav .show>.nav-link:after,
.inner-page .navbar-light .navbar-nav li.current_page_item>.nav-link:after {
    background-color: #ffffff;
}
.main_menu .dropdown-menu {
    display: block;
    position: absolute;
    top: -webkit-calc(100% + 15px) !important;
    top: -moz-calc(100% + 15px) !important;
    top: calc(100% + 15px) !important;
    min-width: 220px;
    white-space: nowrap;
    padding: 20px;
    opacity: 0;
    z-index: 555;
    visibility: hidden;
    text-align: left;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    transition: all .3s ease-in;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 12px 46px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 12px 46px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 12px 46px 0px rgba(0, 0, 0, 0.07);
    margin-top: 5px;
    transform: none !important;
    background-color: #FFFFFF;
}

.main_menu li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100% !important;
}


/*mobile menu*/
/*menu*/
.menu-mobile {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0;
    height: 100%;
    width: 250px;
    background: #ffffff;
    z-index: 1001;
    overflow-y: auto;
    -webkit-transform: translateX(-275px);
    -moz-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    -o-transform: translateX(-275px);
    transform: translateX(-275px);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.2);
    box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.2);
}

.brand-area {
    position: relative;
    padding-top: 20px;
}

.close_menu {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 24px;
    cursor: pointer;
    color: #363636;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.close_menu:hover {
    background-color: #767676;
    color: #fff;
}

.brand-area a {
    width: 80%;
    height: auto;
    display: block;
    background-size: contain;
    margin: 0px auto 0 auto;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.brand-area a > img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.mmenu > ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mmenu > ul > li > a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #000000;
    font-size: 15px;
    padding: 10px;
    transition: all .3s;
    font-weight: 700;
    text-transform: uppercase;
}

.mmenu > ul li a > i {
    margin-left: 5px;
}

.mmenu > ul > li > a:hover {
    background: #19398E;
    color: #ffffff;
    border-color: #19398E;
}

.m-overlay {
    position: fixed;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.menu-toggle {
    overflow: hidden;
}

.menu-toggle .m-overlay {
    opacity: 0.6;
    visibility: visible;
}

.menu-toggle .menu-mobile {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

}

.menu-toggle .main-wrapper {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -ms-transform: translate3d(250px, 0, 0);
    -o-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}

html.menu-toggle {
    overflow: hidden;
}

/*.bk_mobile {*/
/*    display: none;*/
/*}*/

/* Mobile Menu */
.mobile-menu-icon {
    width: 26px;
    /*height: 18px;*/
    position: relative;
    /*transform: rotate(0deg) translateY(-50%);*/
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 0 !important;
    background: transparent !important;
    outline: none !important;
    z-index: 10;
    margin-left: 10px;
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #19398E;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) {
    top: 0;
}

.mobile-menu-icon span:nth-child(2) {
    top: 9px;
}

.mobile-menu-icon span:nth-child(3) {
    top: 18px;
}

.mobile-menu-icon.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.mobile-menu-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-icon.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}
.to-animate, .to-animate2, .to-animate3, .to-animate4, .to-animate5, .to-animate6 {
    opacity: 0;
}

.to-animate.fadeInLeft,
.to-animate2.fadeInLeft,
.to-animate3.fadeInLeft,
.to-animate4.fadeInLeft,
.to-animate5.fadeInUp,
.to-animate6.fadeInUp {
    opacity: 1 !important;
}

.to-animate.fadeInLeft {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.to-animate2.fadeInLeft {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.to-animate3.fadeInLeft {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.to-animate4.fadeInLeft {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.to-animate5.fadeInUp {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.to-animate6.fadeInUp {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.page-header{
    padding: 40px 0;
    background: #0A336F;
}

.inner-content{
    padding: 40px 0;
}
.pdetails img{
    height: auto;
}
.pdetails h2{
    margin-top: 15px;
    margin-bottom: 10px;
}
.pdetails h3{
    margin-top: 15px;
    margin-bottom: 10px;
}
.pdetails h4{
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
}
.pdetails h5{
    margin-top: 15px;
    margin-bottom: 10px;
}
.pdetails p{
    margin-bottom: 15px;
}
.wp-block-cover{
    margin-bottom: 15px;
}

.home-section{
    position: fixed;
    z-index: 1;
    width: 100%;
}
.content-after-slier{
    position: relative;

    background: #fff;
    z-index: 3;
    margin-top: 100vh;

}
.about-section{
    padding: 50px 0;
    background-image: url("../images/about.png");
    background-position: center;
    background-size: cover;
}
.about-section .sec-head h3{
    color: #fff !important;
}
.about-section .sec-head h3.text-dark{
    color: #0A336F !important;
}

.about-imgs{
    height: 100%;
    padding-bottom: 50px;
    position: relative;
    padding-right: 50px;
}
.about-imgs .about-img1{
    position: relative;
    z-index: 1;
}
.about-imgs .about-img2{
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 50%;
    z-index: 2;
}
.sec-head{
    position: relative;
    /*padding-top: 50px;*/
    margin-bottom: 30px;
}
.text-bg{
    position: absolute;
    top:0;
    right: 0;
    font-size: 160px;
    color: rgba(206,206,206,0.36);
    z-index: 0;
    line-height: 120px;
    text-align: center;
    width: 100%;
    display: none !important;
}
.sec-head h3{
    font-size: 60px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-align: center;
}
.sec-head p{
    text-align: center;

}
.about-text{
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}
.about-text p{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.partners{
    padding: 100px 0;
    position: relative;
    background-size: cover;
}
.partners .container{
    position: relative;
    z-index: 2;
}
.partners:after{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    content: '';
}
.partners .sec-head h3{
    color: #fff;
}
.vc_col-has-fill>.vc_column-inner, .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner, .vc_row-has-fill>.vc_column_container>.vc_column-inner{
    padding-top: 0 !important;
}
.partners-slider .item{
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    overflow: hidden;

}
.partners-slider .item img{
    object-fit: cover;
    height: 90%;
    opacity: 0.2;
    filter: grayscale(1);
    transition: all 0.3s ease-out;
}
.partners-slider .item:hover img{
    opacity: 1;
    filter: grayscale(0);

}

.partners-slider  .owl-nav{
    position: absolute;
    top: -50px;
    left: 0;
    display: flex;
}
.partners-slider.owl-carousel .owl-nav button,
.partners-slider.owl-carousel .owl-nav button{
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.partners-slider.owl-carousel .owl-nav button:hover{
    background: #0A336F;
    color: #fff;
}
.partners-slider.owl-carousel .owl-nav button.owl-next{
    margin-right: 5px;
}


.testimonials{
    padding: 100px 0;
    position: relative;
    background: url(../images/testimonials.jpg) center;
    background-size: cover;
}
.testimonials:after{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(18,0,84,0.80);
    content: '';
    z-index: 2;
}
.testimonials .container{
    position: relative;
    z-index: 3
}
.testimonials .sec-head h3{
    color: #fff;

}
.testimonials .sec-head h2{
    color: #fff;
}
.testimonials-slider{
    /*color: #fff;*/
    background: #fff;
}
.testimonials-slider .item{
    padding: 20px;
}
.testimonials-slider .item .t-user{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.testimonials-slider .item .t-user .t-user--img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.testimonials-slider .item .t-user .t-user--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials-slider .item .t-user h3 {
    font-size: 24px;
    font-weight: 500;
}

.testimonials-slider .item .t-user h4 {
    font-size: 14px;
    font-weight: 500;
}

.testimonials-slider:after {
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    content:'';
    border-left: 30px solid #fff;
    position: absolute;
    right: -30px;
    bottom: 30px;
}

.dott{
    font-size: 210px;
    line-height: 50;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.owl-dots{
    position: absolute;
    right: 0;
    bottom: 15px;
    margin: 0;
    text-align: right !important;
    width: 100%;
    padding-right: 10%;
}
.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 6px;
    margin: 5px 7px;
    background: rgba(255, 255, 255 ,0.2)
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #ffffff;
}


footer{
    background-color: #132C51;
    width: 100%;
    padding: 15px 0 0 0;
}

.copy{
    text-align: center;
    color: #393939;
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0 3px 6px rgba(0,0,0,0.16);

}

/**********Treed***/
.home-item{
    width: 100%;
    color: #fff;
}
.clr-1{
    background: #132c51;
}
.clr-2{
    background: #1f447b;
}
.clr-3{
    background: #3661a2;
}
.home-icons{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.home-item{
    padding: 35px 20px;
    height: 100%;
}
.home-item h3{
    font-size: 20px;
    font-weight: 700;
}
.home-item .ic{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.home-item .ic img{
    max-height: 100%;
}
.slide-data{
    background: rgba(12,12,12,0.2);
    position: relative;
    padding: 20px 20px 20px 20px;
    text-align: center;
}
.home-slider .item{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom ;
}
.slider-box{
    position: relative;
    z-index: 2;
}

.serv-item{
    text-align: center;
    height: 100%;
    box-shadow: 0 0 6px rgba(0, 0, 0,0.16);
    border-radius: 5px;
    background: #fff;
    padding: 10px;

}
.serv-item .img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
}
.serv-item .img img{
    max-height: 90px;
}
.serv-item h3{
    font-size: 30px;
    font-weight: 700;
    position: relative;
    color: #0A336F;
    margin-top: 15px;
}

.serv-item h3 span{
    font-size: 160px;
    color: rgba(57,57,57,0.03);
    position: absolute;
    right: 0;
    bottom: -40px;
    z-index: -1;
}

.b-data{
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0A336F+0,1254b4+49,1254b4+100&0+0,1+49,1+100 */
    background: -moz-linear-gradient(left,  rgba(18,84,180,0) 0%, rgba(18,84,180,1) 49%, rgba(18,84,180,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(18,84,180,0) 0%,rgba(18,84,180,1) 49%,rgba(18,84,180,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(18,84,180,0) 0%,rgba(18,84,180,1) 49%,rgba(18,84,180,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001254b4', endColorstr='#0A336F',GradientType=1 ); /* IE6-9 */
    width: 60%;

}
.b-img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.footer-about h3{
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;

}
.footer-about p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.footer-menu h3{
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;

}
.footer-menu p{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.footer-menu ul{
    padding: 0;
    margin: 0;
}
.footer-menu li{
    /*margin-bottom: 5px;*/
}
.footer-menu li a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;

}

.footer-2{
    background: #fff;
    padding: 15px 0;

}
/*************/



html[lang=en-GB] .fa-arrow-left:before {
    content: "\f061";
}
html[lang=en-GB] .fa-arrow-right:before {
    content: "\f060";
}

html[lang=en-GB] .about-imgs {
    padding-right: 0;
    padding-left: 50px;
}
html[lang=en-GB] .about-imgs .about-img2 {
    right: auto;
    left: 0;
}
html[lang=en-GB] .text-bg {
    left: 0;
    right: auto;
    text-transform: uppercase;
    font-size: 90px;
    font-weight: 700;
}

html[lang=en-GB] .partners-slider .owl-nav {
    left: auto;
    right: 0;
}
html[lang=en-GB] .partners-slider.owl-carousel .owl-nav button.owl-next {
    margin-left: 5px;
    margin-right: 0;
}
html[lang=en-GB] .dott {
    left: 0;
    right: auto;
}
html[lang=en-GB] .owl-dots {

    text-align: left !important;
    padding-right: 0;
    padding-left: 10%;
}
html[lang=en-GB] .serv-item h3 span {

    left: 0;
    right: auto;

}
html[lang=en-GB] .b-data {
    left: 0;
    right: auto;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0A336F+0,1254b4+49,1254b4+100&1+0,1+49,0+100 */
    background: -moz-linear-gradient(left,  rgba(18,84,180,1) 0%, rgba(18,84,180,1) 49%, rgba(18,84,180,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(18,84,180,1) 0%,rgba(18,84,180,1) 49%,rgba(18,84,180,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(18,84,180,1) 0%,rgba(18,84,180,1) 49%,rgba(18,84,180,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0A336F', endColorstr='#001254b4',GradientType=1 ); /* IE6-9 */


}
html[lang=en-GB] .testimonials-slider:after {
    border-right: 30px solid #fff;
    border-left: none;
    right: auto;
    left: -30px;
}

.social a{
    color: #0A336F;
    font-size: 25px;
    margin-left: 5px;
    margin-right: 5px;
}

.about-us-section{
    padding: 80px 0;
}
.about-us-section .sec-head{
    text-align: center;
}
.about-us-section .sec-head p{
    text-align: center;
    color: #0A336F;
    margin-top: 15px;
    font-size: 25px;
    font-weight: 700;
}
.about-us-section .sec-head h3{
    text-align: center;
}
.home-about-us--content{
    height: 100%;
    display:flex;
    align-items: center;
    text-align: justify;
}
.alignleft{
    float: left;
    margin-right: 15px;
}
.alignright{
    float: right;
    margin-left: 15px;
}
.aligncenter{
    margin: 15px auto;
    display: block;
}
.pdetails ul li{
    padding-right: 40px;
    background: url(../images/check.svg) calc(100% - 10px) 0px no-repeat;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.serv-item .num{
    font-size: 100px;
    color: #cdcdcd;
    font-weight: 700;
}
.case-study .serv-item h3{
    background: #0A336F;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 30px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.page-title{
    font-size: 40px;
    color: #fff;
}
.breadcrumb{
    color: rgba(255,255,255,0.7);
}
.breadcrumb-item a{
    color: rgba(255,255,255,0.7);
}
.breadcrumb-item.active{
    color: rgba(255,255,255,0.7);

}
.breadcrumb-item+.breadcrumb-item::before{
    color: rgba(255,255,255,0.7);
}

.order-section{
    padding: 40px 0;
}
.form-group label{
    font-size: 14px;
    margin-bottom: 5px;
}
.home-about-us--content h3{
    color: #0A336F;
    font-size: 36px;
    margin-bottom: 20px;
}
.modal-footer , .modal-header{
    border: none !important
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
    color:#f0f0f0;
}
.c-menu-header{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding-top: 10px;
}
.c-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0,0,0,.9);
    -webkit-transition: opacity .5s,visibility .5s;
    transition: opacity .5s,visibility .5s;
    padding-top: 150px;

}
.c-menu.active {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
.c-menu ul {
    display: block;
    position: relative;
    max-width: 90%;
    margin: 0 auto 0;
    overflow: hidden;
}
.c-menu ul li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 1s,opacity 1.5s;
    text-transform: uppercase;
    background-image: none;
    padding: 15px;
    margin: 0;
    box-shadow: none;
    float: right;
}
.c-menu ul li a{
    color: #fff;
    /*border: 1px solid #fff;*/
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.c-menu ul li a:hover{
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.c-menu ul li:nth-child(1) {
    -webkit-transform: translateY(-70vh);
    transform: translateY(-70vh);
    color: #fff;
    width: 33%;
    height: 335px;
}

.c-menu ul li:nth-child(2) {
    -webkit-transform: translateX(70vw);
    transform: translateX(70vw);
}
.c-menu ul li:nth-child(2), .c-menu ul li:nth-child(5) {
    min-width: 66%;
}
.c-menu ul li:nth-child(3){
    width: 33%;
}

.c-menu ul li:nth-child(2), .c-menu ul li:nth-child(3), .c-menu ul li:nth-child(5) {
    height: calc(335px / 2);
}
.c-menu ul li:nth-child(4) {

    -webkit-transform: translateY(-70vh);
    transform: translateY(-70vh);
    color: #fff;
    width: 33%;
    height: 335px;
}
.c-menu ul li:nth-child(1) a {
    background-color: #1254B4;
        font-size: 40px;
    font-weight: bold;
}
.c-menu ul li:nth-child(2) a {
    background-color: #ffffff;
    color: #000;
    font-size: 40px;
    font-weight: bold;
}
.c-menu ul li:nth-child(3) a {
    background-color: #000000;
    color: #ffffff;
        font-size: 40px;
    font-weight: bold;
}
.c-menu ul li:nth-child(4) a{
    background-color: #1254B4;
        font-size: 40px;
    font-weight: bold;
}
.c-menu ul li:nth-child(5) a{
    background-color: #ffffff;
    color: #000;
        font-size: 40px;
    font-weight: bold;
}

.c-menu ul li:nth-child(5) {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(-70vw);
    transform: translateX(-70vw);
    min-width: 66%;

}
.c-menu ul li:nth-child(6),
.c-menu ul li:nth-child(7),
.c-menu ul li:nth-child(8),
.c-menu ul li:nth-child(9),
.c-menu ul li:nth-child(10),
.c-menu ul li:nth-child(11){
    display: none;
}
.c-menu.active ul li {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 767px) {
    .serv-list > div{
        margin-bottom: 30px;
    }
    header .collapse:not(.show){
        position: absolute;
        left: 0;
        display: flex !important;
    }
    .bk_mobile{
        display: block;
    }
    .navbar-brand{
        margin: 0;
    }
    .navbar-brand img{
        max-height: 65px;
    }
    .home-section .item:after{
        /*height: 25%;*/
    }
    .home-section h2 {
        font-size: 40px;
    }
    .play-vid img{
        height: 80px;
    }
    .text-bg {
        font-size: 70px;
    }
    .b-img .img{
        height: 250px;
    }
    .b-img .img img{
        object-fit: cover;
        height: 100%;
    }
    footer .row > div{
        margin-bottom: 30px;
    }
    .footer-2 .row > div{
        margin-bottom: 5px;
    }

}

@media (max-width: 640px) {
    .partners .sec-head{
        margin-bottom: 50px;
    }
    .social{
        margin-top: 25px;
    }
    footer{
        text-align: center;
    }
}


select.form-control{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
