/*  general styling */

@import url('https://fonts.googleapis.com/css?family=Cairo:400,600,700');
@font-face {
    font-family: 'industryincw00-baseregular';
    src: url('../../fonts/industry_inc_w00_base-webfont.woff2') format('woff2'), url('../../fonts/industry_inc_w00_base-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 100%;
    font-family: 'Cairo', sans-serif;
}

body {
    min-width: 320px;
    -ms-overflow-style: scrollbar;
    background: #fff;
    color: #1a191a;
    font-family: 'Cairo', sans-serif;
    font-size: 100%;
}


/* ucg colors */

.red {
    color: #b72d26;
}

.blue {
    color: #2b65a5;
}

.black {
    color: #1a191a;
}

.white {
    color: #fff;
}

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


/* end of general */


/* menu */

.main-menu {
    margin-bottom: 120px;
}

.main-menu .menu-items {
    padding-top: 40px;
    font-weight: 600;
}

.main-menu .menu-items li {
    padding-left: 10px;
    padding-right: 10px;
}

.main-menu .menu-items li>a {
    color: black;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    -webkit-transition: 0.5s color ease;
    transition: 0.5s color ease;
    -moz-transition: 0.5s color ease;
}

.main-menu .menu-items li>a:before,
.main-menu .menu-items li>a:after {
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.main-menu .menu-items li>a:after {
    content: "";
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    bottom: -0.25em;
    height: 2px;
    width: 100%;
    background: transparent;
}

.main-menu .menu-items li>a:hover:after {
    content: "";
    width: 100%;
    background: black;
}

.main-menu .logo img {
    width: 80%;
    padding-top: 15px;
}


/* end of menu */


/* header */

.header-wrapper {
    background-image: url('../images/header.jpg');
    height: 568px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.header-wrapper h2 {
    text-align: left;
    font-weight: bold;
    font-size: 39px;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #2b65a5;
}

.header-wrapper a {
    margin: auto;
}

.header-wrapper h4 {
    font-size: 20px;
    text-align: justify;
    margin-top: 5px;
    margin-bottom: 0px;
    vertical-align: middle;
    margin: auto;
    line-height: unset;
    color: black;
}

.header-wrapper hr {
    border-width: 1px;
    border-top: 1px solid #000;
    margin-top: 35px;
}

.header-wrapper h6 {
    font-size: 20px;
    text-align: justify;
    margin-top: 5px;
    margin-bottom: 0px;
    vertical-align: middle;
    margin: auto;
    line-height: 40px;
    color: black;
    display: inline-block;
}

.header-wrapper .header-row img {
    min-height: 40px;
    max-height: 40px;
    height: 40px;
}


/* end of header */


/* products */

.products h3 {
    margin: 40px 0;
    margin-top: 50px;
}

.products .product {
    border: 1.1px solid;
    border-radius: 10px;
    padding: 15px;
    margin: 1.65%;
    padding-bottom: 0px;
    min-height: 190px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
}

.products .product img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    margin: 15px auto 20px auto;
    height: 70px;
    width: 100%;
}

.products p {
    line-height: 28px;
}

.products .product:hover>img {
    -webkit-animation: bounceIn 1s ease;
    animation: bounceIn 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-filter: grayscale( 0%);
    filter: grayscale( 0%);
}

.products .product:hover>h4 {
    display: none;
}

.products .product:hover>.btn-shopnow {
    display: block;
    -webkit-animation: slideInDown 1s ease;
    animation: slideInDown 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.products .product:hover {
    border-color: #2b65a5;
}

.products .product h4 {
    text-align: center;
    font-weight: bold;
    color: #999;
}

.products .btn-shopnow {
    border: solid;
    border-color: #2b65a5;
    background: #2b65a5;
    border-width: 1.5px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    margin-top: 30px;
    display: none;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.products .btn-shopnow:hover i {
    transform: translateX(1em);
}

.products .btn-shopnow i {
    padding-left: 5px;
    color: #fff;
    vertical-align: middle;
    display: inline-block;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateZ(0)
    }
}


/* end of products */


/* contact */


/* contact */

.contact {
    background-image: url('../images/contact-bg.jpg');
    height: 320px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.moreInfo {
    margin: auto;
    color: #fff;
}

.moreInfo h2,
.moreInfo h3 {
    margin-bottom: 50px !important;
    margin-top: 0px;
}

.indexpage .moreInfo h2 {
    margin-bottom: 50px !important;
    margin-top: 50px;
}

.contact .btn-contact {
    border: solid;
    border-color: #fff;
    border-width: 1px;
    padding: 10px 80px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.34 ease;
    -moz-transition: all 0.34 ease;
    font-weight: bold;
    text-transform: uppercase;
}

.contact .btn-contact i {
    color: #fff;
    padding-left: 10px;
    vertical-align: middle;
    transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.contact .btn-contact:hover {
    color: #fff;
    background: #2b65a5;
    border-color: #2b65a5;
}

.contact .btn-contact:hover i {
    transform: translateX(1.2em);
}


/* end of contact */


/* visitshop */

.visitshop {
    margin-bottom: 70px;
}

.visitshop .rawvisitshop {
    background-image: url('../images/eshop-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: none;
    margin: 5px;
    border-radius: 10px;
    padding: 25px;
    margin-top:25px;
}

.visitshop img {
    max-height: 55px;
}

.visitshop h3 {
    margin-top: 35px;
}

.btn-shopnow {
    border: solid;
    border-color: #b72d26;
    background: rgba(44, 102, 166, 0);
    border-width: 2px;
    /* padding: 5px 35px; */
    color: #b72d26;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
    /* margin: 20px; */
    margin-bottom: 0;
    margin-top: 25px;
}

.visitshop .btn-shopnow {
    border: solid;
    border-color: #2b65a5;
    background: #2b65a5;
    border-width: 1px;
    padding: 0px 45px;
    line-height: 40px;
    color: white;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
    /* margin: 20px; */
    margin-bottom: 0;
    margin-top: 25px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
}

.visitshop .btn-shopnow:hover {
    color: #fff;
    background: #b72d26;
    border-color: #b72d26;
}


/* end of visitshop */


/* logos slider */

.logos {
    margin-top: 55px;
    margin-bottom: -20px;
    margin-left: -5px;
    margin-right: -5px;
}

.productslogo .logo-img {
    margin: 15px;
    margin-bottom: 0;
    min-height: 70px;
    max-height: 70px;
    height: 70px;
    max-width: 60%;
    margin: auto;
}

.productslogo h4 {
    text-align: center;
    font-weight: bold;
    color: #828282;
    padding: 5px 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.productslogo div {
    text-align: center
}

.productslogo div>img {
    -webkit-filter: grayscale( 0%);
    filter: grayscale( 0%);
}

.productslogo div:hover>h4 {
    display: none;
}

.productslogo div .btn-shopnow {
    width: 60%;
    margin: auto;
    margin-top: 30px;
}

.productslogo div:hover>.btn-shopnow {
    display: block;
}

.slick-slide h4,
.slick-slide .btn-shopnow {
    margin-top: 30px;
}

.slick-dots {
    margin-bottom: 10px !important;
}

.slick-prev,
.slick-next {
    z-index: 999;
}


/* end of logos slider */


/* mobile menu */

.header-wrapper .open {
    position: fixed;
    top: 22px;
    right: 15px;
    z-index: 99;
    width: 50px;
    height: 50px;
    display: block !important;
    cursor: pointer;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.header-wrapper .open:hover {
    opacity: 0.8;
}

.header-wrapper .open span {
    display: block;
    float: left;
    clear: both;
    height: 4px;
    width: 36px;
    border-radius: 40px;
    background-color: #336ba9;
    position: absolute;
    right: 3px;
    top: 3px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.open span:nth-child(1) {
    margin-top: 9px;
    z-index: 9;
}

.open span:nth-child(2) {
    margin-top: 18px;
}

.open span:nth-child(3) {
    margin-top: 27px;
}

.sub-menu {
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: 0;
    width: 0;
    right: 6px;
    top: 7px;
    position: absolute;
    background-color: rgba(51, 107, 169, 0.64);
    border-radius: 50%;
    z-index: 18;
    overflow: hidden;
}

.sub-menu li {
    display: block;
    float: right;
    clear: both;
    height: auto;
    margin-right: -160px;
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sub-menu li:first-child {
    margin-top: 203px;
}

.sub-menu li:nth-child(1) {
    -webkit-transition-delay: 0.05s;
}

.sub-menu li:nth-child(2) {
    -webkit-transition-delay: 0.10s;
}

.sub-menu li:nth-child(3) {
    -webkit-transition-delay: 0.15s;
}

.sub-menu li:nth-child(4) {
    -webkit-transition-delay: 0.20s;
}

.sub-menu li:nth-child(5) {
    -webkit-transition-delay: 0.25s;
}

.sub-menu li a {
    color: #fff;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 16px;
    width: 100%;
    display: block;
    float: left;
    line-height: 40px;
}

.oppenned .sub-menu {
    opacity: 1;
    height: 443px;
    width: 422px;
    z-index: 98;
}

.oppenned span:nth-child(2) {
    overflow: visible;
}

.oppenned span:nth-child(1),
.oppenned span:nth-child(3) {
    z-index: 100;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
}

.oppenned span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(12px) translateX(12px);
    transform: rotate(45deg) translateY(12px) translateX(12px);
}

.oppenned span:nth-child(2) {
    height: 429px;
    width: 409px;
    right: -160px;
    top: -160px;
    border-radius: 50%;
    background-color: hsl(212, 54%, 43%);
}

.oppenned span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-10px) translateX(10px);
    transform: rotate(-45deg) translateY(-10px) translateX(10px);
    margin-top: 40px;
}

.header-wrapper .oppenned li {
    margin-right: 168px;
}


/* end of menu */


/* footer */

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

.middle-logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: -10px;
}

.middle-logo img {
    width: 105px;
    height: 105px;
}

.links .text {
    color: #fff;
    font-weight: 400;
}

.links .icon-phone i {
    display: inline-block;
    font-size: 16px;
}

.links .icon-mail i {
    font-size: 13px;
}

.links .icon-text {
    display: inline-block;
    color: #8f8f8f;
}

.links h3 {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    line-height: 20px;
}

.links li {
    line-height: 25px;
}

.links i {
    color: #fff;
    font-size: 10px;
}

.links a {
    text-decoration: none;
    color: #8f8f8f;
    font-size: 14px;
}

.footer {
    background: #353535;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 5px;
    margin: 0px;
    font-size: 13px;
}

.social i {
    color: #fff;
    margin-right: 10px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer .social i:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    color: #ccc;
}

.footer p {
    padding: 0px;
    color: #fff;
}

.links .border-right {
    padding-right: 0px;
    border-right: 1px solid #8f8f8f;
}

.links .dropdown {
    display: inline-block;
}

.links .dropdown-menu {
    border-radius: 0px;
    min-width: auto;
}

.links .dropdown-menu>li>a {
    font-weight: bold;
}

.dropdown-menu>li>a {
    text-align: center;
    font-size: 17px;
    padding: 3px 13px;
}

.links .dropdown-menu>li>a:focus,
.links .dropdown-menu>li>a:hover {
    background: #1a191a;
    color: #fff;
}

.links .lang-btn {
    margin-top: -8px;
    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: 41px;
}

.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: 41px;
}

.links .support-btn i {
    vertical-align: baseline;
    font-size: 24px;
}


/* end footer */


/* 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 */
}


/* ----------- iPad Pro 10.5" ----------- */

@media only screen and (min-width: 834px) and (max-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
    /* styles */
}


/* iPads (portrait) ----------- */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Styles */
    .header-wrapper h2 {
        font-size: 30px;
    }
    .main-menu {
        margin-bottom: 65px;
    }
    .header-wrapper {
        height: 470px;
    }
    .products .product img {
        height: 48px;
    }
    .products .product {
        min-height: 165px;
        padding: 10px;
    }
    .products .product h4 {
        font-size: 17px;
    }
}


/* iPads (landscape) ----------- */

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* Styles */
}


/* iPhone X Portrait */

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation:portrait) {
    /* Styles */
    .main-menu .logo img {
        width: 30%;
    }
    .main-menu {
        margin-bottom: 40px;
    }
    .header-wrapper h2 {
        font-size: 23px;
        text-align: center;
    }
    .header-wrapper {
        height: auto;
        padding-bottom: 25px;
    }
    .header-nav-links {
        margin-top: 20px;
    }
    .header-nav-links img {
        margin-bottom: 15px;
    }
    .header-nav-links a {
        margin-top: 10px;
    }
    .header-wrapper h4 {
        font-size: 18px;
    }
    /* footer */
    .footer .copyright,
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .pre-footer {
        padding-top: 0px;
    }
    span.links-text {
        width: 109px;
        text-align: left;
        display: inline-block;
        padding-left: 5px;
    }
    .mobile-footer ul li {
        display: inline-block;
    }
    .mobile-footer ul li {
        padding-left: 35px;
    }
    .mobile-footer {
        padding-top: 15px;
    }
    .mobile-footer .links h3 {
        display: none;
    }
    .mobile-footer .links {
        width: 100%;
    }
    .links .dropdown {
        display: block;
    }
    .links .dropdown-menu {
        width: 100%;
        margin-top: -9px;
    }
    .links .dropdown-menu li {
        display: block;
        width: 100%;
        padding-left: 0px;
    }
    .links .lang-btn {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .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;
    }
    /* end of footer */
}


/* iPhone X Landscape */

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
    /* Styles */
}


/* 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) {
    /* Styles */
}


/* 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) {
    /* Styles */
    .nopadding {
        padding-right: 0px;
    }
    .main-menu .logo img {
        width: 30%;
        padding-top: 10px;
    }
    .header-wrapper h2 {
        font-size: 28px;
    }
    .main-menu {
        margin-bottom: 40px;
    }
    .header-wrapper {
        height: auto;
        padding-bottom: 25px;
    }
    .header-nav-links {
        margin-top: 20px;
    }
    .header-nav-links img {
        margin-bottom: 15px;
    }
    .header-nav-links a {
        margin-top: 10px;
    }
    .header-wrapper h4 {
        font-size: 18px;
    }
    .header-wrapper h6 {
        font-size: 18px;
    }
    /* footer */
    .pre-border {
        margin-top: 0px;
    }
    .footer .copyright,
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .mobile-footer .links h3 {
        margin-top: 15px;
    }
    .pre-footer {
        padding-top: 20px;
    }
    .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 .dropdown-menu {
        width: 100%;
        margin-top: -8px;
    }
    .links .support-btn {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 34px;
        width: 32%;
        float: left;
        margin-top: 5px;
    }
    .links .client-btn i,
    .links .support-btn i {
        vertical-align: middle;
        padding-right: 8px;
    }
    span.links-text {
        width: 109px;
        text-align: left;
        display: inline-block;
        padding-left: 5px;
    }
    /* end of footer */
}


/* Smartphones ----------- */

@media only screen and (max-width: 480px) {
    /* Styles */
    .contact .btn-contact {
        width: 260px;
        padding: 8px 0px;
    }
    .main-menu .logo img {
        width: 50%;
        padding-top: 16px;
    }
    .header-wrapper h2 {
        font-size: 28px;
    }
    .main-menu {
        margin-bottom: 40px;
    }
    .header-wrapper {
        height: auto;
        padding-bottom: 25px;
    }
    .header-nav-links {
        margin-top: 20px;
    }
    .header-nav-links img {
        margin-bottom: 15px;
    }
    .header-nav-links a {
        margin-top: 10px;
    }
    .header-wrapper h4 {
        font-size: 18px;
    }
    .header-wrapper h6 {
        font-size: 18px;
    }
    /* footer */
    .footer .copyright,
    .footer .social {
        float: none !important;
        text-align: center;
    }
    .pre-footer {
        padding-top: 0px;
    }
    span.links-text {
        width: 109px;
        text-align: left;
        display: inline-block;
        padding-left: 5px;
    }
    .mobile-footer ul li {
        display: inline-block;
    }
    .mobile-footer ul li {
        padding-left: 35px;
    }
    .mobile-footer {
        padding-top: 15px;
    }
    .mobile-footer .links h3 {
        display: none;
    }
    .mobile-footer .links {
        width: 100%;
    }
    .links .dropdown {
        display: block;
    }
    .links .dropdown-menu {
        width: 100%;
        margin-top: -9px;
    }
    .links .dropdown-menu li {
        display: block;
        width: 100%;
        padding-left: 0px;
    }
    .links .lang-btn {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 22px;
    }
    .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;
    }
    /* end of footer */
}


/* small smartphones */

@media only screen and (max-width: 340px) {
    .header-wrapper h2 {
        font-size: 24px;
    }
    .indexpage .moreInfo h2 {
        margin-bottom: 26px !important;
        margin-top: 33px;
    }
    .contact {
        height: 280px;
    }
    /* Styles */
}