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

:root {
    --primary-color: #941822;
    --warning: #EEA400;
    --danger: #941822;
}

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: 'Cairo', sans-serif;
    background-color: #fff;
    font-size: 18px;
    font-weight: 400;
}

p {
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 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, :after, header {
    -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-hover:hover > img{
    transform: scale(1.2);
}
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;
}

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

.header .logo_site {
    text-align: center;
}

.header .logo_site img {
    height: 182px;
    margin: auto;
}

.main_menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu li {
}

.main_menu li a {
    color: #fff;
    position: relative;
    display: block;
    padding: 10px;
    text-shadow: 0 0 6px black;
}

.inner-page .main_menu li a, .fixed-header .header .main_menu li a {
    text-shadow: none;
}

.main_menu li a:after {
    position: absolute;
    bottom: 0px;
    height: 0px;
    /*border-radius: 5px;*/
    background: #941822;
    width: 100%;
    opacity: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    z-index: -1;

}

.main_menu li.active a:after {
    height: 4px;
    opacity: 1;
    border-radius: 5px;
    width: 80%;
    bottom: 5px;
}

.main_menu li:hover a:after, .main_menu li.active:hover a:after {
    height: 100%;
    opacity: 1;
    border-radius: 0px;
    width: 100%;
    bottom: 0px;

}

.home-section .item {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/bg2.png);
    background-position: center;
}

.home-section .item > div {
    z-index: 2;
    position: relative;
    height: calc(100vh - 209px);
    display: flex;
    align-items: flex-start;
}

.home-section h2 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    /*padding: 20px;*/
    text-shadow: 0 0px 6px rgba(0, 0, 0, 1);
    margin-bottom: 20px;
    width: 100%;

}

.home-section h3 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    /*padding: 20px;*/
    text-shadow: 0 0px 6px rgba(0, 0, 0, 1);
    margin-bottom: 20px;
    width: 100%;

}

.home-section p {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0px 6px rgba(0, 0, 0, 1);
    width: 100%;
}

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

}

.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;

}

.slider-data {
    text-align: center;
}

.slider-data .btn {
    margin-top: -15px;
}

.btn-primary {
    background: var(--danger);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-color: var(--danger);
    border-radius: 0;

}

.btn-primary:hover {
    background: var(--danger);
    border-color: var(--danger);

}

.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;
}

.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: var(--danger);
    color: #ffffff;
    border-color: var(--danger);
}

.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: #ffffff;
    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: #ededed;
}

.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;
    line-height: 35px;
    font-size: 16px;
}

.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: 80px 0;
    position: relative;
    background-size: cover;
    background: #FCFCFC;
}

.partners .container {
    position: relative;
    z-index: 2;

}

.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;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);


}

.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: var(--danger);
    color: #fff;
}

.partners-slider.owl-carousel .owl-nav button.owl-next {
    margin-right: 5px;
}

.partners-slider.owl-carousel .owl-stage-outer {

    padding: 15px 0;
}

.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: 70px;
    margin: auto;
    text-align: left !important;
    width: 100%;
    padding-right: 10%;
    padding-left: 10%;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    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;
}


/**********Site***/


.slide-data {
    /*background: rgba(12,12,12,0.2);*/
    position: relative;
    /*padding: 20px 20px 20px 20px;*/
    margin-bottom: 90px;
    width: 100%;
}

.min-h-400 {
    min-height: 400px;
}

.home-slider .item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom;
}

.slider-box {
    position: relative;
    z-index: 2;
}


/*************/


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: right !important;
    padding-right: 10%;
    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;
}

.nav-link:focus, .nav-link:hover {
    color: #fff;
}

.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-left: 20px;*/
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    list-style: square;
    /*list-style-position: inside;*/
}

.pdetails ul li::marker {
    color: var(--danger);
}
.tooltip-html-text ul li {
    /*padding-left: 20px;*/
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 25px;
    list-style: square;
    /*list-style-position: inside;*/
}
.tooltip-html-text  ul li::marker {
    color: #fff;
}
.tooltip-html-text p{
    font-size: 14px;
    font-weight: 400;
}
.tooltip-html-text h2{
    font-size: 18px;
    font-weight: 700;
}
.tooltip-html-text h3{
    font-size: 16px;
    font-weight: 700;
}
.tooltip-html-text h4{
    font-size: 14px;
    font-weight: 700;
}

.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: #3E3E3E;
}

.breadcrumb {
    color: #3E3E3E;
    font-weight: 700;
    font-size: 20px;
}

.breadcrumb-item a {
    color: #3E3E3E;
}

.breadcrumb-item.active {
    color: var(--danger);

}

.breadcrumb-item + .breadcrumb-item::before {
    color: #3E3E3E;
}

.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;
}

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

.owl-carousel .owl-item img {
    width: auto;
    margin: auto;
}

.home-slider img {
    max-height: 450px;
}

.section-title {
    font-size: 69px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-title span {
    font-weight: 400;
}

.home-about-us {
    padding: 80px 0;
}

.home-about-us2 {
    overflow: hidden;
    padding: 15px 0;
}

.home-about-us p {
    color: #707070;
    font-size: 24px;
    font-weight: 400;

}

.btn {
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16)
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-warning {
    color: var(--warning);
    border-color: var(--warning);
}

.btn-danger {
    background-color: var(--danger);
    border-color: var(--danger);
}

.text-primary {
    color: var(--primary-color) !important;
}

.home-our-products {
    padding: 80px 0;
    background: #F6F6F6;
}

.inner-page .home-our-products {
    background: #ffffff;
}

.grid-item img {
    height: 300px;
}

.grid-item a {
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
}

.products-cats {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.products-cats .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 24px;
    font-weight: 400;
    position: relative;
    box-shadow: none;
}

.text-secondary.active {
    color: var(--warning) !important;
}

.products-cats .btn.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    height: 4px;
    background-color: var(--warning);
}


.btn-link {
    text-decoration: none;
}

.partners .section-title {
    margin-bottom: 80px;
}

.contact-sc {
    padding: 80px 0;
    background: #fff url("../images/contact-bg.png") center top no-repeat;
}

.find-us {
    background: var(--warning);
    color: #fff;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.find-us h2 {
    font-size: 35px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 15px;
}

.c-item {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.c-item a {
    color: #fff;
}

.c-item a i {
    font-size: 24px;
    width: 30px;
}

.social {
    background: #fff;
    text-align: center;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 15px;
    padding: 15px;
}

.social a {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    color: #000;
}
.agree-lbl a{
    color: var(--danger);
    margin-right: 5px;
    margin-left: 5px;
}
.form-control {
    background: #fff;
    border: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 15px;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
}
.tooltip-btn{
    padding: 0;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
}

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

.contact-sc .btn {
    border-radius: 15px;
}

.copyright {
    padding: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(112, 112, 112, 0.42);
    font-size: 14px;
    font-weight: 400;
    color: rgba(80, 80, 80, 0.55);
}

.fixed-header header, .inner-page header {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.inner-page header {
    position: relative !important;
}

.fixed-header .header, .inner-page .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.fixed-header .header ul a, .inner-page .header ul a {
    color: #3E3E3E;
}

.fixed-header .header ul li:hover a, .inner-page .header ul li:hover a {
    color: #ffffff;
}

.fixed-header .header .logo_site img, .inner-page .header .logo_site img {
    max-height: 80px;
}

.fixed-header .white-logo, .inner-page .white-logo {
    display: none;
}

.color-logo {
    display: none;
}

.fixed-header .color-logo, .inner-page .color-logo {
    display: block;
}

.fixed-header .mobile-menu-icon span, .inner-page .mobile-menu-icon span {
    background: #000000;
}

.about-text img {
    height: auto;
}

.page-img img {
    height: auto;
}

.page-img > div {
    /*padding: 5px;*/
    border: 1px solid #ddd;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.16);
}

.pdetails {
    min-height: 300px;
}

.wr-modal h2 {
    font-size: 20px;
    text-align: center;
}

.wr-modal .form-control {
    border: 1px solid #ddd;
}

.flex-wrap-0 {
    flex-wrap: nowrap;
}

label.error {
    color: var(--danger) !important;
}

.form-control.error {
    border-color: var(--danger);
    color: var(--danger);
}

.wr-notes {
    padding: 20px;
    margin-top: 30px;
}

.wr-notes h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.wr-notes ul li {
    font-size: 14px;
    list-style-position: inside;
}

.wr-btn {
    height: 60px;
    width: 230px;
    white-space: nowrap;
}

.codes {
    justify-content: center;
    align-items: center;
    display: flex;
    direction: ltr;
}

.codes input.form-control {
    width: 55px;
    height: 55px;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--warning);
    margin-left: 5px;
    margin-right: 5px;
}

.hint {
    font-size: 14px;
    text-align: center;
}

.pdetails h2 {
    font-size: 30px;
    color: var(--danger);
    line-height: 45px;
    margin-bottom: 15px;
}

.wr-form {
    background: #FCFCFC;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 20px;

}

.wr-form h2 {
    text-align: center;
}

.wr-form p {
    text-align: center;
}

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    position: relative;
}

input[type=checkbox]:checked:after {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--warning);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    z-index: 11;
    position: absolute;
}

.register-wr-form label {
    font-size: 18px;
    color: #A8A8A8;
}

.cert {
    background: var(--danger);
    color: #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    padding: 30px;
    flex-direction: row-reverse;
}

.cert:after {
    position: absolute;
    z-index: 0;
    border: 8px solid rgba(255, 255, 255, 1);
    border-radius: 20px;
    left: 15px;
    top: 15px;
    right: 15px;
    height: calc(100% - 30px);
    content: '';
}

.cert .img {
}

.cert .img > div {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-data {
    width: 100%;
}

.cert-id {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 5px;
    color: var(--danger);
    background: #fff;
    margin: auto;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 30px;
}

.table > :not(caption) > * > * {
    border: none !important
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.table {
    color: #fff;
}

.user-menu {
    list-style: none !important;
}

.user-menu li {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0 !important;
    list-style: none !important;

}

.user-menu li a {
    display: block;
    background: #f7f7f7;
    color: #000;
    padding: 5px;
    border-radius: 5px;
}

.logout_ {
    position: absolute;
    left: 15px;
    top: 15px;

}

.visa_ {
    width: 600px;
    background: url(../images/visa.svg) center no-repeat;
    height: 373.77px;
    background-size: cover;
    border-radius: 10px;
    color: #fff;
    direction: ltr;
    padding: 20px 60px;
    position: relative;
    margin: auto;
}

.v-logo img {
    height: 70px;
}

.v-title {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.v-number {
    font-size: 30px;
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
}

.v-number span {
}

.v-device {
    font-size: 16px;
    text-transform: uppercase;
}

.v-date {
    position: absolute;
    right: 60px;
    bottom: 60px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.v-date span {
    font-weight: 400;
    font-size: 15px;
}

.v-date i {
    margin-left: 5px;
    margin-right: 5px;
}

.v-name {
    text-transform: uppercase;
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 18px;
    font-weight: 600;

}

.f-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.f-menu li a {
    display: block;
    padding: 0 15px;
    color: #000;
    font-size: 12px;
}

.products-list h3{
    font-size: 16px;
    font-weight: 700;
}
.products-list h3 a{
   color: #000;
    padding: 10px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

}

/***
====================================================================
  Loading Transition
====================================================================
 ***/

.spn{
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 30px;
}
.load-img{
    position: absolute;
    left: 15px;
    top: 13px;
    width: 70px;
    height: 70px;
    text-align: center;
    background: url("../images/logo-color.svg") center no-repeat;
    background-size: cover;
}

/* Preloader */
.ctn-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
}

.txt-loading {
    direction: ltr;
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 1px solid rgba(98, 130, 145, 0.15);
    border-top-color: #941822;
    height: 100px;
    margin: 0 auto 45px auto;
    width: 100px;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    color: #941822;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    line-height: 60px;
    position: absolute;
    letter-spacing: 1px;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    font-weight: bold;
    letter-spacing: -8px;
    display: inline-block;
    color: rgba(98, 130, 145, 0.15);
    position: relative;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 1px;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
}

.ctn-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}



@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}


.wpb_wrapper iframe{
    max-width: 600px;
    max-height: 400px;
    width: 100%;
    margin: 15px auto;
}

@media screen and (max-width: 767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 100px;
        width: 100px;
    }
}

@media screen and (max-width: 500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 100px;
        width: 100px;
    }

    .ctn-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 50px;
        line-height: 50px;
    }

    .ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
        font-size: 50px;
        line-height: 50px;
    }
}





@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }

    .home-slider img {
        max-height: 450px;
    }

    .grid-item img {
        height: 300px;
    }
}

@media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1600px;
    }

    .home-slider img {
        max-height: 520px;
    }

    .grid-item img {
        height: 400px;
    }
}

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


@media (max-width: 767px) {
    .f-menu {
        justify-content: center;
    }

    .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;
    }

    .home-section h3 {
        font-size: 24px;
    }

    .play-vid img {
        height: 80px;
    }

    .text-bg {
        font-size: 70px;
    }

    .b-img .img {
        height: 250px;
    }

    .b-img .img img {
        object-fit: cover;
        height: 100%;
    }


    .alignright {
        margin-bottom: 15px;
    }

    .alignleft {
        margin-bottom: 15px;
    }

    .partners .sec-head {
        margin-bottom: 50px;
    }

    .social {
        margin-top: 25px;
    }

    footer {
        text-align: center;
    }

    .main_menu {
        display: none;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo_site img {
        max-height: 80px;
    }

    .home-section .item > div {
        height: calc(100vh - 100px);
    }

    .home-slider img {
        max-height: 300px;
    }

    .section-title {
        font-size: 40px;
    }

    .home-about-us p {
        font-size: 20px;

    }

    .grid-item img {
        height: 165px;
    }

    .pdetails h2 {
        font-size: 25px;
    }

    .logout_ {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 15px;
        text-align: center;
    }

    .visa_ {
        width: 320px;
        height: 200px;
        padding: 15px 28px;

    }

    .v-logo img {
        height: 50px;
    }

    .v-number {
        font-size: 20px;
        margin-top: 20px;
    }

    .v-date {
        right: 28px;
        bottom: 35px;
    }

    .v-date span {
        font-size: 12px;
    }

    .v-name {
        text-transform: uppercase;
        position: absolute;
        bottom: 20px;
        left: 28px;
        font-size: 16px;
    }

    .v-device {
        font-size: 14px;
    }

    .v-title {
        font-size: 18px;
    }

    .wr-modal h2 {
        font-size: 15px;
        text-align: center;
    }

    .products-list h3 a{
        text-overflow: unset;
        white-space: normal;
        overflow: visible;

    }

}
.tooltip_templates { display: none; }
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.images_slider1 .owl-dots {
    position: relative;
    text-align: center !important;
    bottom: 0;
}

.owl-theme .owl-dots .owl-dot span{
    background: #ddd;

}

.images_slider1.owl-theme .owl-dots .owl-dot.active span, .images_slider1.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--danger);
}


.slider-imgs .item a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:300px;
}

.slider-imgs .item a img{

    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flags a {
    display: flex;
    height: 100%;
    padding: 5px;
    border: 1px solid #ddd;
}
@media( max-width: 640px){
    .cont-f iframe{
        width: 100%;
    }
}
