@import url('https://fonts.googleapis.com/css?family=Cairo');

/*  general styling */

html,
body {
    width: 100%;
    height: 100%;
}

body {
    color: #5a5a5a;
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
}

p {
    text-align: justify;
    color: #000;
}

.mask {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* ucg colors */

.red {
    color: #b72d26;
}

.blue {
    color: #2b65a5;
}

.black {
    color: #1a191a;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

#header {
    position: relative;
    height: 100vh;
    text-align: center;
    color: #fff;
    width: 100%;
    background-color: #c9c9c9;
    margin-bottom: 10px;
}

.background-video {
    background-position: top center;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    overflow: hidden;
    right: 0;
    top: 0;
}

video,
source {
    bottom: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
}

.placeholder-image {
    left: 0;
    width: 100%;
    position: absolute;
    top: -40;
    z-index: 1;
}

.main-header {
    position: absolute;
    z-index: 9997;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition-property: background, padding, z-index;
    -webkit-transition-duration: 300ms;
    -webkit-transition-timing-function: ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-property: background, padding, z-index;
    -moz-transition-duration: 300ms;
    -moz-transition-timing-function: ease;
    -moz-transition-delay: 0ms;
    -ms-transition-property: background, padding, z-index;
    -ms-transition-duration: 300ms;
    -ms-transition-timing-function: ease;
    -ms-transition-delay: 0ms;
    -o-transition-property: background, padding, z-index;
    -o-transition-duration: 300ms;
    -o-transition-timing-function: ease;
    -o-transition-delay: 0ms;
    transition-property: background, padding, z-index;
    transition-duration: 300ms;
    transition-timing-function: ease;
    transition-delay: 0ms;
}

.logo {
    position: relative;
    z-index: 9990;
    float: left;
    padding: 20px 20px;
    width: 21%;
    -webkit-transition-property: height, width;
    -webkit-transition-duration: 0.5s;
    -moz-transition-property: height, width;
    -moz-transition-duration: 0.5s;
    transition-property: height, width;
    transition-duration: 0.5s;
}

.logo img {
    height: 100%;
    width: 100%;
}

.menu-btn {
    width: 45px;
    height: 37px;
    right: 12px !important;
    left: auto;
    top: 3em;
    display: inline-block;
    position: fixed;
    cursor: pointer;
    padding: 0;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .3s ease;
    /* background: #1a191a; */
    z-index: 9999999;
}

#nav-icon2 {
    width: 31px;
    height: 30px;
    position: relative;
    margin: 9px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    /* box-shadow: 1px 1px 0 rgba(0,0,0,0.2); */
}

#nav-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 50%;
    background: #000;
    opacity: 1;
    box-shadow: 1px 1px 0 #525252;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

body.pushy-open-right .menu-btn {
    top: 1em;
}

#nav-icon2.open span {
    background: #fff !important;
    box-shadow: 1px 1px 0 #000;
    width: 36%;
}

#nav-icon2 span:nth-child(even) {
    left: 50%;
    border-radius: 0 0 0 0;
}

#nav-icon2 span:nth-child(odd) {
    left: 0px;
    border-radius: 0 0 0 0;
}

#nav-icon2 span:nth-child(1),
#nav-icon2 span:nth-child(2) {
    top: -2px;
}

#nav-icon2 span:nth-child(3),
#nav-icon2 span:nth-child(4) {
    top: 8px;
}

#nav-icon2 span:nth-child(5),
#nav-icon2 span:nth-child(6) {
    top: 18px;
}

#nav-icon2.open span:nth-child(1),
#nav-icon2.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),
#nav-icon2.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
    left: 8px;
    top: 7px;
    box-shadow: none;
}

#nav-icon2.open span:nth-child(2) {
    left: calc(50% - 0px);
    top: 7px;
}

#nav-icon2.open span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
    left: 8px;
    top: 15px;
    box-shadow: none;
}

#nav-icon2.open span:nth-child(6) {
    left: calc(50% - 0px);
    top: 15px;
    box-shadow: none;
}

#header .header-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 4;
    background: rgba(0, 0, 0, 0.3);
}

.services {
    height: 120px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.headericon img {
    max-height: 100%;
    max-width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.headericon img:after {
    clear: both;
}

.se-title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}

.serv {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}

.serv>[class*='col-'] {
    display: block;
    position: relative;
}

.serv img {
    max-width: 60%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.serimage {
    width: 70%;
    margin: auto;
}

.sertitle {
    color: #000;
    font-weight: bold;
    font-size: 2.5rem;
}

.pre-border {
    height: 2px;
    border-top: 4px solid #444444;
    margin-bottom: 4px;
    margin-top: 50px;
}

.pre-footer {
    background-color: #444444;
    padding-top: 35px;
    padding-bottom: 10px;
    position: relative;
    margin: 0px;
}

.links .dropdown {
    display: inline-block;
}

.links .dropdown-menu {
    border-radius: 0px;
    min-width: auto;
    width: 35px;
    margin-bottom: 8px;
}

.dropdown-menu>li>a {
    text-align: center;
    font-size: 13px;
    padding: 3px 0px;
}

.links .dropdown-menu>li>a:focus,
.links .dropdown-menu>li>a:hover {
    background: #1a191a;
    color: #fff;
}

.links .lang-btn {
    margin-top: -10px;
    padding-left: 10px;
    border-radius: 0px;
    background: #1a191a;
    color: #fff;
    font-weight: bold;
    width: 35px;
    height: 35px;
    margin-right: 7px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 24px;
}

.links .client-btn {
    background: #b72d26;
    color: #fff;
    font-weight: bold;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    line-height: 44px;
}

.links .client-btn i {
    vertical-align: baseline;
    font-size: 24px;
}

.links .support-btn {
    display: inline-block;
    background: #2b65a5;
    color: #fff;
    font-weight: bold;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 44px;
}

.links .support-btn i {
    vertical-align: baseline;
    font-size: 24px;
}

.middle-logo img {
    width: 105px;
    height: 105px;
}

.links .text {
    color: #fff;
    font-weight: 400;
}

.links h3 {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}

.links img {
    margin: 20px auto;
}

.links li {
    line-height: 25px;
}

.links i {
    color: #fff;
    font-size: 10px;
}

.links a {
    text-decoration: none;
    color: #8f8f8f;
    font-size: 13px;
}

.footer {
    background: #353535;
    color: #fff;
    padding-top: 13px;
    padding-bottom: 5px;
    margin: 0px;
    font-size: 13px;
}

.menusocila .social i {
    margin-right: 5px;
}

.social i {
    color: #fff;
    margin-right: 10px;
    transition: all .3s ease-in-out;
}

.footer .social i:hover {
    transform: scale(1.5);
    color: #ccc;
}

.footer p {
    padding: 0px;
    color: #fff;
}

.middle-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: -10px;
}

.bordered-right {
    border-right: 1px solid #9d9d9d;
    padding-right: 45px;
}

.btn-langs {
    border-radius: 0px;
    border-radius: 0px;
    width: 100px;
    padding-top: 2px;
    padding-bottom: 3px;
    background: #eee;
    font-weight: bold;
}

.langs-dropdown {
    background: #eee;
    border-radius: 0px;
}

.firstlvl {
    font-size: 1.1em;
    border-bottom: 2px solid #5f5f63;
    font-weight: bold;
    margin: 0px 20px;
    padding: 0.5em 0.1em 0.1em !important;
    text-align: left;
}

.pushy-link>a {
    border-bottom: 1px solid #5f5f63;
    margin: 10px 20px;
    padding: 0.1em 0.1em 0.1em;
    font-size: 1em;
}

.pushy ul:first-child {
    margin-top: 10px;
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
    z-index: 99999;
}

.pushy-content {
    margin-top: 40px;
}

.pushy ul {
    padding: 0px;
}

.pushy-content>ul>li {
    padding-bottom: 20px;
}

.menusocila {
    text-align: center;
    padding-top: 0px;
}

.menusocila a {
    display: inline-block;
    padding: 10px;
}

.social {
    text-align: left !important;
    padding-left: 15px;
}

.pushy {
    height: 100%;
    max-height: 100%;
}

.pushy-submenu>a::after {
    transform: translateY(-50%) rotate(90deg);
}

.pushy-submenu-open a::after {
    transform: translateY(-50%) rotate(270deg);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
    overflow: auto;
    right: -1.3em;
    direction: rtl;
}

.pushy::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #999;
}

.pushy::-webkit-scrollbar {
    width: 10px;
    background-color: #999;
}

.pushy::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.pushy-content {
    direction: ltr;
}

.btn-visit {
    color: #fff;
    background: #2b65a5;
    border-radius: 0px;
    padding: 8px 55px;
    font-size: 18px;
}


/* end of general */


/* responsive */


/* 4k screens */

@media screen and (min-width: 2560px) {
    /* styles */
}


/* large or wide screens */

@media screen and (min-width: 1920px) {
    /* styles */
}


/* medium laptop screens */


/* this might change to max-1366 according to the testing */

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    /* styles */
}

@media screen and (min-width: 1024px) {
    .se-title {
        font-size: 11px;
    }
    .headericon img {
        max-height: 90%;
        max-width: 90%;
    }
}


/* ----------- iPad Pro 10.5" ----------- */

@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    #header {
        height: 74%;
    }
}

@media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    #header {
        height: 74%;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
    #header {
        height: 42%;
    }
    .menu-btn {
        top: 2em;
    }
}


/* iPads (portrait) ----------- */

@media only screen and (device-width: 768px) and (device-height: 1024px) {
    .menu-btn {
        top: 2em;
    }
    .se-title {
        font-size: 11px;
    }
    #header {
        height: 42%;
    }
    .mask {
        height: 100%;
    }
    #header .header-content {
        display: none;
    }
    .pre-footer .links {
        height: 180px;
    }
}


/* iPads (landscape) ----------- */

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
    #header {
        height: 65%;
    }
    .menu-btn {
        top: 2em;
    }
}


/* iPhone 6+/6s+/7+/8+ */

@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (-webkit-device-pixel-ratio: 3) and (orientation:landscape) {
    .serv {
        display: flex;
        flex-flow: column;
        font-size: 1.2em;
    }
    .serv img {
        width: 25%;
        max-height: 100%;
        max-width: 50%;
        position: relative;
    }
    .serv .sertitle {
        text-align: center !important;
    }
    .wow {
        animation-name: none !important;
        visibility: visible !important;
        border-left: none !important;
        border-right: none !important;
    }
    .item {
        margin-top: 20px;
    }
    .one {
        order: 1;
    }
    .two {
        order: 2;
    }
    .three {
        order: 3;
    }
    .four {
        order: 4;
    }
    .pre-footer {
        padding-top: 0;
    }
    .footer p {
        text-align: center !important;
    }
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .pre-border {
        margin-top: 5px;
    }
}


/* iPhone X Portrait */

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) {
    #header .header-content {
        display: none;
    }
}


/* iPhone X Landscape */

@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
    .pre-footer .links {
        height: 180px;
    }
    .serv .col-sm-4,
    .serv .col-sm-8 {
        width: 100%;
    }
    .pre-border {
        margin-top: 50px !important;
    }
    .serv img {
        width: 17%;
    }
    #header {
        height: 100%;
    }
    .menu-btn {
        top: 2em;
    }
}


/* iphone 7, 8 */

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (-webkit-device-pixel-ratio: 2) and (orientation:landscape) {
    /* Styles */
}


/* smartphones landscape */

@media only screen and (max-width: 767px) and (orientation:landscape) {
    .pushy-open-left .pushy,
    .pushy-open-right .pushy {
        right: 0;
        width: 50%;
    }
    .logo {
        width: 27%;
        padding: 15px;
    }
    .main-header {
        background: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid;
    }
    .menu-btn {
        top: 1.5em;
    }
    .serv img {
        width: 20%;
        max-height: 100%;
        max-width: 50%;
        position: relative;
    }
    .pre-footer .links {
        height: auto;
        padding-top: 15px;
    }
    .wow {
        animation-name: none !important;
        visibility: visible !important;
        border-left: none !important;
        border-right: none !important;
    }
    .sertitle {
        text-align: center !important;
    }
    .serv {
        display: flex;
        flex-flow: column;
        font-size: 1.2em;
    }
    .item {
        margin-top: 20px;
    }
    .one {
        order: 1;
    }
    .two {
        order: 2;
    }
    .three {
        order: 3;
    }
    .four {
        order: 4;
    }
    .pre-footer .links {
        height: auto;
    }
    .links .dropdown {
        display: block;
    }
    .links .lang-btn {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .links .dropdown-menu {
        width: 100%;
        margin-top: -9px;
    }
    .links .dropdown-menu li {
        display: block;
        width: 100%;
        padding-left: 0px;
    }
    .links .client-btn,
    .links .support-btn {
        width: 100%;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 34px;
    }
    .links .client-btn i,
    .links .support-btn i {
        vertical-align: middle;
        padding-right: 8px;
    }
    .footer p {
        text-align: center !important;
    }
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .pre-border {
        margin-top: 5px;
    }
    .pre-footer {
        padding-top: 10px;
    }
    span.links-text {
        width: 109px;
        text-align: left;
        display: inline-block;
        padding-left: 5px;
    }
    .links .dropdown {
        display: block;
        width: 32%;
        float: left;
    }
    .links .lang-btn {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .links .client-btn {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 34px;
        width: 32%;
        margin-left: 2%;
        float: left;
        margin-top: 5px;
    }
    .links .support-btn {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 34px;
        width: 32%;
        float: left;
        margin-top: 5px;
    }
}


/* Smartphones ----------- */

@media only screen and (max-width: 480px) {
    .logo {
        width: 63%;
        padding: 10px 15px;
    }
    .pushy-open-left .pushy,
    .pushy-open-right .pushy {
        right: 0;
        width: 100%;
    }
    .main-header {
        background: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid;
    }
    .menu-btn {
        top: 1.9em;
    }
    .serv {
        display: flex;
        flex-flow: column;
        font-size: 1.2em;
    }
    .serv img {
        width: 33%;
        max-height: 100%;
        max-width: 50%;
        position: relative;
    }
    .serv .sertitle {
        text-align: center !important;
    }
    .wow {
        animation-name: none !important;
        visibility: visible !important;
        border-left: none !important;
        border-right: none !important;
    }
    .item {
        margin-top: 20px;
    }
    .one {
        order: 1;
    }
    .two {
        order: 2;
    }
    .three {
        order: 3;
    }
    .four {
        order: 4;
    }
    .pre-footer .links {
        height: auto;
    }
    .links .dropdown {
        display: block;
    }
    .links .lang-btn {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .links .dropdown-menu {
        width: 100%;
        margin-top: -9px;
    }
    .links .dropdown-menu li {
        display: block;
        width: 100%;
        padding-left: 0px;
    }
    .links .client-btn,
    .links .support-btn {
        width: 100%;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 34px;
    }
    .links .client-btn i,
    .links .support-btn i {
        vertical-align: middle;
        padding-right: 8px;
    }
    .footer p {
        text-align: center !important;
    }
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .pre-border {
        margin-top: 5px;
    }
    .pre-footer {
        padding-top: 10px;
    }
    span.links-text {
        width: 109px;
        text-align: left;
        display: inline-block;
        padding-left: 5px;
    }
}


/* small smartphones */

@media only screen and (max-width: 340px) {
    /* Styles */
    .menu-btn {
        top: 1.7em;
    }
}