@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Strider-Regular';
    src: url('../fonts/Strider-Regular.woff') format('woff'),
        url('../fonts/Strider-Regular.ttf') format('truetype'),
        url('../fonts/Strider-Regular.svg#Strider-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Strider';
    src: url('../fonts/Strider.eot');
    src: url('../fonts/Strider.woff2') format('woff2'),
        url('../fonts/Strider.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    max-width: 1366px;
    counter-reset: my-sec-counter;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.clear {
    clear: both;
}

h1 {
    font-size: 210%;
    font-family: 'Strider-Regular';
}

h2 {
    font-family: 'Strider-Regular';
    font-size: 170%;
}

h3 {
    font-size: 130%;
}

h4 {
    font-size: 120%;
}

h5 {
    font-size: 100%;
}

span.bold {
    font-weight: 600;
    color: #e74c3c;
    font-size: 100%;
}

.only-bold {
    font-weight: 600;
}

/************************************************************************************Header Section***************************************************/


.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
    animation: headerSlideDown 1s ease-out;
}

@-webkit-keyframes headerSlideDown {
    0% {
        transform: translateY(-8.33333em)
    }

    50% {
        transform: translateY(-8.33333em)
    }

    100% {
        transform: translateY(0)
    }
}

@-moz-keyframes headerSlideDown {
    0% {
        transform: translateY(-8.33333em)
    }

    50% {
        transform: translateY(-8.33333em)
    }

    100% {
        transform: translateY(0)
    }
}

@-o-keyframes headerSlideDown {
    0% {
        transform: translateY(-8.33333em)
    }

    50% {
        transform: translateY(-8.33333em)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-8.33333em)
    }

    50% {
        transform: translateY(-8.33333em)
    }

    100% {
        transform: translateY(0)
    }
}

header {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0px 0px 10px #ada4a4;
}

.header-top {
    background-color: #dfdfdf;
    transition: 0.5s ease-in;
}

.header-top .header-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.header-contact p.location:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    margin-left: -15px;
    position: relative;
    left: -5px;
    color: #000000;
    font-weight: 900;
}

.header-contact p.phone:before {
    font-family: "Font Awesome 5 Free";
    content: "\f095";
    margin-left: -15px;
    position: relative;
    left: -5px;
    color: #000000;
    font-weight: 900;
    display: inline-block;
    transform: rotate(90deg);
}

.header-contact p.mail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    margin-left: -15px;
    position: relative;
    left: -5px;
    color: #000000;
    font-weight: 900;
}

.header-contact p {
    padding: 20px 0;
    margin: 0 20px;
    font-size: 95%;
}

.logo {
    width: 15%;
}

.logo img {
    width: 100%;
}

.og{
    object-fit: contain;
}

.opportunities {
      float: left;
    width: 30%;
    border: 2px solid #fec200;
    box-shadow: 0 0 10px 0 #fec200;
    padding: 40px 30px;
}

#ows{
    float: left;
    width: 100%;
}

.car-op{
    float: left;
    width: 65%;
    margin-left: 5%;
}

.car-op img{
    float: left;
    width: 100%;
}

.logo-right {
    width: 7%;
}

.logo-right img {
    width: 100%;
    padding: 10px 0;
}

.header-bottom {
    background-color: #ffffff;
}

.header-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-bottom-inner .menu li {
    float: left;
    padding-top: 30px;
    margin: 0 15px;
    border-bottom: 20px solid #ffffff;
    color: #6d6d6d;
    transition: 0.2s ease-in;
    font-size: 95%;
    font-weight: 600;
}

.header-bottom-inner .menu li a {
    padding: 50px 10px 20px 10px;
}

.header-bottom-inner .menu li a:hover {
    color: #e74c3c;
    border-bottom: 20px solid #e74c3c;
}

.header-bottom-inner .menu li a.active {
    color: #e74c3c;
    border-bottom: 20px solid #e74c3c;
}

/************************************************************************************Banner Section***************************************************/
.banner-outer {
    height: 550px;
    overflow: hidden;
}

.banner-inner {
    position: relative;
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 62%, 50% 75%, 0 62%);
    clip-path: polygon(0% 0%, 100% 0, 100% 62%, 50% 75%, 0 62%);
}

.banner-inner .banner-image {
    width: 100%;
}

.banner-inner .banner-image img {
    width: 100%;
}

.sliders {
    position: relative;
}

.slider-text {
    position: absolute;
    top: 55%;
    bottom: 25%;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #00000095;
}

.slider-text h1 {
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    font-size: 210%;
    text-align: center;
    margin-bottom: 35px;
}

.slider-content button.slick-prev {
    font-size: 200%;
    position: absolute;
    top: 25%;
    left: 60px;
    border: 2px solid;
    outline: none;
    background: transparent;
    color: #e74c3c;
    cursor: pointer;
    z-index: 9;
    padding: 0px 12px;
}

.slider-content button.slick-next {
    font-size: 200%;
    position: absolute;
    top: 25%;
    right: 60px;
    border: 2px solid;
    outline: none;
    background: transparent;
    color: #e74c3c;
    cursor: pointer;
    z-index: 9;
    padding: 0px 12px;
}

.slider-content button.slick-next:hover {
    border: 2px solid #e74c3c;
    outline: none;
    background: grey;
    color: #ffffff;
}

.slider-content button.slick-prev:hover {
    border: 2px solid #e74c3c;
    outline: none;
    background: #797979;
    color: #ffffff;
}


/************************************************************************************IPS1***************************************************/
.ips1 {
    padding: 20px 0;
}

.ips1 .left-outer {
    width: 45%;
}

.ips1 .right-outer {
    width: 45%;
    color: #797979;
    line-height: 28px;
}

.ips1 .left-outer h3 {
    text-transform: uppercase;
    text-align: center;
    margin: 20px 0;
}

.ips1 .left-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.ips1 .left-inner .box img {
    width: 100%;
}

.ips1 .left-inner .box {
    width: 28%;
    text-align: center;
    font-size: 90%;
    font-weight: 600;
    margin: 3% 0px;
    cursor: pointer;
}

.ips1 .left-inner .box:hover {
    transform: scale(1.2);
    transition: 0.3s ease-in;
}

.ips1 .right-outer h2 {
    text-transform: uppercase;
    padding-left: 30px;
    border-left: 5px solid #e74c3c;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px 0;
}

.ips1 .right-outer h4 {
    margin: 10px 0;
}

.ips1 .right-inner p {
    margin: 10px 0;
    text-align: justify;
    font-size: 95%;
}

.ips1-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/************************************************************************************IPS2***************************************************/

.ips2-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #ffffff50;
    color: #ffffff;
    padding: 20px 20px 20px 20px;
    border: 1px solid gainsboro;
}

.ips2-inner p {
    line-height: 28px;
    margin: 10px 0;
    font-size: 95%;
    text-align: justify;
}

.ips2 {
    padding: 20px 0 70px 0;
    background: url(../images/who-bg.jpg);
    background-size: cover;
}

.ips2 h2 {
    text-transform: uppercase;
    padding-left: 30px;
    border-left: 5px solid #e74c3c;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px 0;
    color: #ffffff;
}

.ips2 .left-outer {
    width: 45%;
    line-height: 28px;
}

.ips2 .right-outer {
    width: 45%;
    line-height: 28px;
}

.ips2-inner .left-inner h5 {
    color: #e74c3c;
    font-size: 120%;
}

.ips2-inner .right-inner h5 {
    color: #e74c3c;
    font-size: 120%;
}

.ips2-inner .left-inner .bullets:before {
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    margin-left: 15px;
    position: relative;
    left: -13px;
    color: #e74c3c;
    font-weight: 900;
    font-size: 10px;
    top: -2px;
}


.ips2-inner .left-inner ul li {
    font-size: 95%;
}

/************************************************************************************IPS3***************************************************/

/*span.border-left:before {
    content: '';
    height: 25px;
    width: 5px;
    background: #ff0000;
    position: absolute;
    top: 0;
}*/

.ips3 {
    color: #797979;
    padding: 30px 0;
}


.ips3 h2 {
    text-transform: uppercase;
    padding-left: 10px;
    border-left: 5px solid #e74c3c;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 20px auto;
    text-align: center;
    position: relative;
    width: 200px;
}

.ips3 .ips3-inner .top {
    text-align: center;
}

.ips3 .ips3-inner .top h5 {
    font-size: 150%;
    text-transform: uppercase;
    color: #ff0000;
}

.ips3 .ips3-inner .top p {
    font-size: 100%;
    font-weight: 600;
    line-height: 25px;
    margin: 10px 0;
}

.ips3 .ips3-inner .top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    line-height: 28px;
}

.ips3 .ips3-inner .top-inner .box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0px 0px 50px #7979799c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2%;
}

.ips3 .ips3-inner .top-inner .box:nth-child(even) {
    margin-top: 5%;
}

.ips3 .ips3-inner .top-inner .box img {
    width: 100%;
    transform: scale(0.7);
}

.ips3 .ips3-inner .bottom {
    text-align: center;
    line-height: 28px;
    margin-top: 3%;
}

.ips3 .ips3-inner .bottom h5 {
    font-size: 150%;
    text-transform: uppercase;
    color: #ff0000;
}

.ips3 .ips3-inner .bottom h6 {
    font-size: 110%;
    text-transform: uppercase;
}

.ips3 .ips3-inner .bottom p {
    font-size: 90%;
    margin: 10px 0;
}

.ips3-inner .bottom .bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
}

.ips3-inner .bottom .bottom-inner .box {
    height: 210px;
    width: 210px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 35px 30px;
}

.ips3-inner .bottom .bottom-inner .box:nth-child(2) {
    margin-left: 4%;
}

.font-weight {
    font-weight: 400;
    margin-left: 10px;
}

/************************************************************************************IPS4***************************************************/

.ips4 {
    background: url(../images/mgmnt-bg.jpg);
    background-size: cover;
    padding: 30px 0;
}

.ips4 .ips4-inner {
    background: #ffffff;
    padding: 40px 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #797979;
}

.ips4 .panel2 {
    margin: 30px 0;
}

.ips4 .ips4-inner h2 {
    text-transform: uppercase;
    padding-left: 10px;
    border-left: 5px solid #e74c3c;
    font-weight: 400;
    letter-spacing: 1px;
    width: 200px;
    text-align: center;
}

.ips4 .ips4-inner .row {
    display: block;
    /* flex-wrap: wrap;
  justify-content: center;
  align-items: center;*/
    padding: 15px;
    border: 1px solid gainsboro;
    position: relative;
    box-shadow: 0px 0px 10px gainsboro;
}

.ips4 .panel1 .row {
    width: 31%;
    min-height: 450px;
}

.ips4 .panel2 .row {
    min-height: unset;
}



.ips4 .ips4-inner .row .leader-image {
    width: 70%;
    margin: 0 auto;
}

.ips4 .ips4-inner .row .leader-desc {
    width: 100%;
    margin: 0 auto;
}

.ips4 .ips4-inner .row .leader-desc p {
    line-height: 26px;
    margin: 5px 0;
    font-size: 120%;
    text-align: center;
}

.ips4 .ips4-inner .row .leader-image img {
    width: 100%;
}

.ips4-inner .promoters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.panel1 p.promoters-desc {
    line-height: 27px;
    font-size: 100%;
    margin: 15px 0;
    padding: 0 50px;
    text-align: left;
}


.ips4 .ips4-inner .row .leader-desc p:nth-child(1) {
    font-weight: 600;
    color: #e74c3c;
}

.ips4 .ips4-inner .row .leader-desc p:nth-child(2) {
    font-weight: 600;
    font-size: 92%;
}

.ips4 .ips4-inner .row .leader-desc p:nth-child(3) {
    font-weight: 600;
    font-size: 100%;
    text-transform: uppercase;
    line-height: 10px;
}

.ips4 .panel2 h3 {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Strider-Regular';
    margin: 20px 0px;
    position: relative;
    height: unset;
}

/*.ips4 .panel2 .row-outer:nth-child(3) h3,
.ips4 .panel2 .row-outer:nth-child(4) h3 {
  height: 50px;
}*/

.ips4 .panel2 .row-outer:nth-child(3) h3 span.under-line-dark:before,
.ips4 .panel2 .row-outer:nth-child(4) h3 span.under-line-dark:before {
    content: '';
    width: 50px;
    height: 5px;
    background: #e74c3c;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
}

span.under-line-dark:before {
    content: '';
    width: 50px;
    height: 5px;
    background: #e74c3c;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
}

.row-outer {
    width: 31%;
}

.ips4 .panel2 .row .leader-desc p:nth-child(2) {
    font-weight: 400;
    font-size: 95%;
    font-style: normal;
    text-align: justify;
    line-height: 25px;
}

.panel2 .promoters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: baseline;
    padding: 0 20px;
}

.ips4 .panel2 .row .leader-image {
    width: 55%;
    margin: 0 auto;
}

.ips4 .panel2 .row .leader-desc {
    width: 100%;
    margin: 0 auto;
    min-height: 270px;
}

/*.ips4 .ips4-inner .row:nth-child(2),
.ips4 .ips4-inner .row:nth-child(3) {
  border-bottom: 1px solid gainsboro;
}*/

/************************************************************************************IPS5***************************************************/

.ips5 {
    background: #e74c3c;
    color: #ffffff;
    padding: 50px 0;
}

.ips5 h2 {
    text-transform: uppercase;
    padding-left: 25px;
    border-left: 5px solid #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    width: 250px;
    color: #ffffff;
}

.ips5 .ips5-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    margin: 20px 0;
}

.ips5 .ips5-inner .box {
    width: 30%;
    text-align: left;
    padding: 0 15px;
}

.ips5 .ips5-inner .box h3 {
    text-transform: uppercase;
    font-size: 100%;
    margin: 15px 0;
    position: relative;
}

.ips5 .ips5-inner .box p {
    line-height: 20px;
    font-size: 90%;
    margin-top: 10px;
}

.ips5 .ips5-inner .box span.under-line {
    position: relative;
}

.ips5 .ips5-inner .box span.under-line:before {
    content: '';
    width: 50px;
    height: 3px;
    background: #ffffff;
    position: absolute;
    bottom: -15px;
    left: 20px;
    right: 0;
}

.ips5 .support {
    text-transform: uppercase;
    font-size: 100%;
    font-weight: 600;
    border: 1px solid gainsboro;
    padding: 20px;
    text-align: justify;
    width: 26%;
}

.ips5 .support a:hover {
    color: #ffca03;
    transition: 0.2s ease-in;
}

/************************************************************************************ IPS6 ***************************************************/

.ips6 {
    padding: 20px 0 0px 0;
    position: relative;
    background: #e74c3c;
}

.ips6 .hiring-content .box {
    display: flex;
    justify-content: center;
    align-items: center;
    /*    transform: rotate(315deg);
    margin-left: -70px;*/
}

.ips6 .hiring-content .box .inner-box {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    margin-left: 50px;
    transition: 0.2s ease-in;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: rotate(315deg);
}

.ips6 .hiring-content .box .inner-box:hover {
    box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.45), 0 6px 20px 0 rgba(0, 0, 0, 0.37);

}

.ips6 .hiring-content .box .inner-box p {
    color: #e74c3c;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.ips6 .hiring-content {
    width: 100%;
    height: 240px;
    background: transparent;
    /*    padding: 20px;*/
    /*    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.hiring-content-inner {
    display: flex;
    justify-content: flex-start;
    height: 150px;
    margin-left: -35px;
    flex-wrap: wrap;
    /*  margin-left: 20%;
  margin-top: 30px;*/
}

.ips6 h2 {
    text-transform: uppercase;
    padding-left: 25px;
    border-left: 5px solid #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    width: 250px;
    color: #ffffff;
    text-align: center;
    margin: 20px 0;
}

.ips6 .wrapper p {
    color: #ffffff;
    text-align: justify;
    margin: 20px auto;
    line-height: 30px;
}

.ips6 .hiring-content h2 {
    text-transform: uppercase;
    padding-left: 25px;
    border-left: 5px solid #e74c3c;
    font-weight: 400;
    letter-spacing: 1px;
    width: 250px;
    color: #e74c3c;
}

.ips6 .hiring-content .hiring-content-inner p {
    font-weight: 600;
    font-size: 90%;
    margin: 30px 0;
    color: #ffffff;
}

.ips6 .hiring-content p a {
    color: #ffffff;
}

.ips6 .hiring-content p a:hover {
    color: #ffcb06;
}

.ips6-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.ips6-inner .left {
    width: 55%;
}

.ips6-inner .right {
    width: 45%;
    margin-top: 20px;
}



.ips6 .address {
    top: 250px;
    right: 0;
    width: 70%;
    background: #ffffff;
    /*    padding: 30px 30px 10px 30px;*/
    padding: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0 auto 50px auto;
}


.ips6 .address h4 {
    color: #e74c3c;
}

.ips6 .address p {
    font-weight: 600;
    font-size: 90%;
    line-height: 23px;
    margin-top: 10px;
    color: #000000;
}

.ips6 .address p:before {
    font-family: "Font Awesome 5 Free";
    content: "\f3c5";
    margin-left: 5px;
    position: relative;
    left: -5px;
    color: #e74c3c;
    font-weight: 900;
}

a.mail:before {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    margin-left: 5px;
    position: relative;
    left: -5px;
    color: #e74c3c;
    font-weight: 900;
}

a.mail {
    margin-top: 10px;
    display: block;
}

a.mail:hover {
    margin-top: 10px;
    display: block;
    color: #ffcb06;
}

/************************************************************************************IPS7 ***************************************************/

.ips7 {
    background: url("../images/contact.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.ips7-inner {
    position: relative;
}

.ips7 .hiring-bg {
    background: #f4f5f9;
    display: block;
    text-align: right;
    width: 100%;
    margin: 0 0 0 auto;
}

.ips7 .hiring-bg img {
    width: 100%;
    display: block;
}

#ows h2, h3, p, li{
    color: black !important;
}

.iso{ float:right; text-align:center; margin-top:5px!important; margin-right:90px;}

.iso img{ width:170px; margin-top: 10px;}

.white_contents { width: 38%; height:auto; margin:0px auto;padding:20px 30px;background:rgba(255,255,255,0.9); text-align:center;border:solid 1px #525051; border-radius:7px; position:relative; display: table; }
.white_contents img{ width:100%; height:inherit; float:left;}
.black_overlay{display: block;position:fixed;top: 0%;left: 0%;width: 100%; height:100%;background: rgba(0,0,0,0.5);z-index:999999;}

.black_overlay *{ box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -o-box-sizing: border-box; font-family: 'Arimo', sans-serif;}

.close{position:absolute;width:34px;height:22px;float:right;margin:0px 0px 0 0px;padding:10px 0 0 0; right:0;}


/************************************************************************************Footer Section***************************************************/

footer {
    background: #e2e1e6;
    float: left;
    width: 100%;
}

footer .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

footer .footer-inner p {
    padding: 15px 0;
    font-size: 85%;
}

footer .footer-inner p a {
    color: #e74c3c;
}

footer .footer-inner p a:hover {
    color: #ffcb06;
}

.active {
    color: #e74c3c;
}


/************************************************************************************Mobile Responsive Section*************************************************************/



.button_container {
    position: absolute;
    top: 10px;
    right: 15px;
    height: 30px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    visibility: hidden;
}

.button_container:hover {
    opacity: .7;
}

.button_container.active .top {
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    transform: translateY(10px) translateX(0) rotate(45deg);
    background: #e74c3c;
}

.button_container.active .middle {
    opacity: 0;
    background: #ffffff;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: #e74c3c;
}

.button_container span {
    background: #e74c3c;
    border: none;
    height: 3px;
    width: 90%;
    position: absolute;
    top: 0px;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
    transform: translateY(0px) translateX(0) rotate(0deg);
}

.button_container span:nth-of-type(2) {
    top: 10px;
}

.button_container span:nth-of-type(3) {
    top: 20px;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

/*************  CSS 041219  ************/

.ips6 .opportunities h2 {
    width: 100%;
    text-align: left;
}

.ips6 .wrapper .opportunities p {
    text-align: left;
}

.ips6 .wrapper .opportunities h3 {
    font-size: 150%;
    font-family: 'Strider-Regular';
    padding-left: 30px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ips6 .opportunities ul li {
    color: #ffffff;
    padding-left: 50px;
    margin-bottom: 20px;
}

.ips6 .opportunities ul li:before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter) ".";
    position: absolute;
    margin-left: -20px;
}

.row {
    border-top: 1px solid #ffffff;
    padding: 40px 0px 20px 0px;
}



@media(min-width:100px) and (max-width:1024px) {

    .button_container {
        visibility: visible;
        top: 30%;
    }

    .logo-right {
        width: 7%;
        display: none;
    }

    .overlay {
        position: fixed;
        top: 35px;
        right: -50%;
        width: 50%;
        height: 100%;
        /* opacity: 1;
 visibility: hidden;*/
        transition: opacity .35s, visibility .35s, width .35s;
        z-index: 99;
        padding-top: 0px;
        animation: fadeInRight;
    }

    /*.overlay:before {
 content: '';
 background: transparent;
 left: -55%;
 top: 0;
 width: 50%;
 height: 200%;
 position: fixed;
 transition: left .35s ease;
}*/
    .overlay:after {
        content: '';
        background: #ffffff;
        right: -55%;
        top: 0;
        width: 51%;
        height: 200%;
        position: fixed;
        z-index: -1;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .overlay.open {
        /* opacity: 1;
 visibility: visible;*/
        height: 100%;
        display: block;
        overflow-y: auto;
        right: 0;
        transition: 0.3s ease-in;
    }

    .overlay.open:before {
        left: 0;
    }

    .overlay.open:after {
        right: 0;
    }

    .overlay nav {
        position: relative;
        height: 100%;
        top: 0;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        z-index: 100;
        width: 100%;
        margin: 0 0 0 auto;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        height: 100%;
        text-align: center;
    }

    .overlay ul li {
        display: block;
        height: 10%;
        height: calc(100% / 10);
        min-height: 50px;
        position: relative;
        /* opacity: 1;*/
        text-transform: uppercase;
    }

    .overlay ul li a {
        display: block;
        position: relative;
        color: #e74c3c;
        text-decoration: none;
        overflow: hidden;
    }

    .overlay ul li a:hover:after,
    .overlay ul li a:focus:after,
    .overlay ul li a:active:after {
        width: 100%;
    }

    .overlay ul li a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 3px;
        background: transparent;
        transition: .35s;
    }


    .logo {
        width: 150px;
        padding-left: 15px;
    }

    footer .footer-inner p {
        padding: 15px 0;
        font-size: 85%;
        width: 100%;
        text-align: center;
    }

    .sticky {
        position: fixed;
    }

    .header-bottom-inner .menu li {
        border-bottom: 20px solid transparent;
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .header-bottom-inner .menu li a {
        padding: 0;
    }

    .header-bottom-inner .menu li a.active {
        color: #e74c3c;
        border-bottom: 20px solid transparent;
    }

}

@media(min-width:769px) and (max-width:1024px) {

    .ips4-inner .promoters {
        align-items: baseline;
        justify-content: space-evenly;
    }

    .ips1 {
        padding: 0 20px;
    }

    .ips1 .right-inner p {
        margin: 10px 0;
        text-align: justify;
        font-size: 90%;
    }

    .ips3 {
        color: #797979;
        padding: 30px 20px;
    }

    .ips1 .left-inner .box {
        width: 28%;
        text-align: center;
        font-size: 75%;
        font-weight: 600;
        margin: 3% 0px;
        cursor: pointer;
    }

    .ips2 {
        padding: 1px 20px 40px 20px;
        background: url(../images/who-bg.jpg);
        background-size: cover;
    }

    .slider-text h1 {
        text-transform: uppercase;
        color: #ffffff;
        font-size: 160%;
        text-align: center;
        margin-bottom: 13px;
    }

    .banner-outer {
        height: 380px;
        overflow: hidden;
    }

    .ips1 .left-outer {
        width: 70%;
        margin: 0 auto;
    }

    .ips1 .right-outer {
        width: 100%;
    }

    .ips2 .left-outer {
        width: 45%;
        line-height: 28px;
    }

    .ips2 .right-outer {
        width: 45%;
        line-height: 28px;
    }

    .ips4 .panel2 h3 {
        width: 100%;
        height: initial;
    }

    .ips3 h2 {
        text-transform: uppercase;
        padding-left: 10px;
        border-left: 5px solid #e74c3c;
        font-weight: 400;
        letter-spacing: 1px;
        margin: 10px 0;
        text-align: center;
        position: relative;
        width: 200px;
    }

    .ips3 .ips3-inner .top h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .top p {
        font-size: 90%;
        font-weight: 600;
        line-height: 25px;
        margin: 10px 0;
    }

    .ips3 .ips3-inner .top-inner .box:nth-child(even) {
        margin: 2%;
    }

    .ips3 .ips3-inner .top-inner .box {
        width: 120px;
        height: 120px;
        margin: 2% 5%;
    }

    .ips3 .ips3-inner .bottom h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .bottom h6 {
        font-size: 90%;
    }

    .panel1 p.promoters-desc {
        padding: 0 0px;
        font-size: 90%;
    }

    .ips4 .panel1 .row {
        width: 53%;
        min-height: initial;
        margin: 15px 0;
    }

    .ips6 .hiring-content .box {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .row-outer {
        width: 40%;
    }

    .ips4 .panel2 .row .leader-desc p:nth-child(2) {
        font-weight: 400;
        font-size: 90%;
    }

    .ips4 .panel2 .row {
        min-height: initial;
    }

    .ips4 .panel2 .row .leader-desc {
        width: 100%;
        margin: 0 auto;
        min-height: 306px;
    }

    .ips6-inner .left {
        width: 50%;
    }

    .ips6 .wrapper p {
        color: #ffffff;
        text-align: justify;
        margin: 20px auto 20px auto;
        line-height: 30px;
    }

    .ips6-inner .right {
        width: 50%;
        margin-top: 0px;
    }

    .ips6 .right .address p {
        font-weight: 600;
        font-size: 90%;
        line-height: 23px;
        margin-top: 10px;
        color: #000000;
    }

    .ips6 .address {
        width: 85%;
        background: #ffffff;
        /* padding: 30px 30px 10px 30px; */
        padding: 10px 20px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin: 20px auto 20px auto;
    }

    .ips6 .hiring-content .box {
        margin-bottom: 50px;
        width: initial;
    }

    .ips6 .hiring-content .box .inner-box {
        z-index: initial;
    }

    .slider-text {
        top: 45%;
    }

    .ips1 .left-outer h3 {
        font-size: 100%;
    }

    .ips4 .ips4-inner {
        padding: 20px 20px;
    }

    .panel2 .promoters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: baseline;
        padding: 0;
    }

    .ips6 {
        padding: 0px 20px 0px 20px;
    }

    .hiring-content-inner {
        display: flex;
        justify-content: flex-start;
        height: initial;
        margin-left: -35px;
        flex-wrap: wrap;
    }

    .ips6 .hiring-content {
        width: 100%;
        height: initial;
        background: transparent;
        /* padding: 20px; */
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }

    .ips4 {
        background: url(../images/mgmnt-bg.jpg);
        background-size: cover;
        padding: 30px 0 0px 0;
    }

    .ips2-inner .left-inner ul li {
        font-size: 90%;
    }

    .ips4 .ips4-inner .row .leader-image {
        width: 50%;
        margin: 0 auto;
    }
}

@media(min-width:481px) and (max-width: 768px) {


    .ips4-inner .promoters {
        align-items: baseline;
    }

    .ips1 {
        padding: 0 20px;
    }

    .ips1 .right-inner p {
        margin: 10px 0;
        text-align: justify;
        font-size: 90%;
    }

    .ips3 {
        color: #797979;
        padding: 30px 20px;
    }

    .ips1 .left-inner .box {
        width: 28%;
        text-align: center;
        font-size: 75%;
        font-weight: 600;
        margin: 3% 0px;
        cursor: pointer;
    }

    .ips2 {
        padding: 1px 20px 40px 20px;
        background: url(../images/who-bg.jpg);
        background-size: cover;
    }

    .slider-text h1 {
        text-transform: uppercase;
        color: #ffffff;
        font-size: 160%;
        text-align: center;
        margin-bottom: 13px;
    }

    .banner-outer {
        height: 300px;
        overflow: hidden;
    }

    .ips1 .left-outer {
        width: 100%;
    }

    .ips1 .right-outer {
        width: 100%;
    }

    .ips2 .left-outer {
        width: 100%;
        line-height: 28px;
    }

    .ips2 .right-outer {
        width: 100%;
        line-height: 28px;
    }

    .ips4 .panel2 h3 {
        width: 100%;
        height: initial;
    }

    .ips3 h2 {
        text-transform: uppercase;
        padding-left: 10px;
        border-left: 5px solid #e74c3c;
        font-weight: 400;
        letter-spacing: 1px;
        margin: 10px 0;
        text-align: center;
        position: relative;
        width: 200px;
    }

    .ips3 .ips3-inner .top h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .top p {
        font-size: 90%;
        font-weight: 600;
        line-height: 25px;
        margin: 10px 0;
    }

    .ips3 .ips3-inner .top-inner .box:nth-child(even) {
        margin: 2%;
    }

    .ips3 .ips3-inner .top-inner .box {
        width: 120px;
        height: 120px;
        margin: 2% 5%;
    }

    .ips3 .ips3-inner .bottom h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .bottom h6 {
        font-size: 90%;
    }

    .panel1 p.promoters-desc {
        padding: 0 0px;
        font-size: 90%;
    }

    .ips4 .panel1 .row {
        width: 53%;
        min-height: initial;
        margin: 15px 0;
    }

    .ips6 .hiring-content .box {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .row-outer {
        width: 55%;
    }

    .ips4 .panel2 .row .leader-desc p:nth-child(2) {
        font-weight: 400;
        font-size: 90%;
    }

    .ips4 .panel2 .row {
        min-height: initial;
    }

    .ips4 .panel2 .row .leader-desc {
        width: 100%;
        margin: 0 auto;
        min-height: initial;
    }

    .ips6-inner .left {
        width: 100%;
    }

    .ips6 .wrapper p {
        color: #ffffff;
        text-align: justify;
        margin: 20px auto 20px auto;
        line-height: 30px;
    }

    .ips6-inner .right {
        width: 100%;
        margin-top: 0px;
    }

    .ips6 .right .address p {
        font-weight: 600;
        font-size: 90%;
        line-height: 23px;
        margin-top: 10px;
        color: #000000;
    }

    .ips6 .address {
        width: 85%;
        background: #ffffff;
        /* padding: 30px 30px 10px 30px; */
        padding: 10px 20px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin: 20px auto 20px auto;
    }

    .ips6 .hiring-content .box {
        margin-bottom: 50px;
        width: 100%;
    }

    .ips6 .hiring-content .box .inner-box {
        z-index: initial;
    }

    .slider-text {
        top: 45%;
    }

    .ips1 .left-outer h3 {
        font-size: 100%;
    }

    .ips4 .ips4-inner {
        padding: 20px 20px;
    }

    .panel2 .promoters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: baseline;
        padding: 0;
    }

    .ips6 {
        padding: 0px 20px 0px 20px;
    }

    .hiring-content-inner {
        display: flex;
        justify-content: flex-start;
        height: initial;
        margin-left: -35px;
        flex-wrap: wrap;
    }

    .ips6 .hiring-content {
        width: 100%;
        height: initial;
        background: transparent;
        /* padding: 20px; */
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }

    .ips4 {
        background: url(../images/mgmnt-bg.jpg);
        background-size: cover;
        padding: 30px 0 0px 0;
    }

    .ips2-inner .left-inner ul li {
        font-size: 90%;
    }
	
	
}







@media(min-width:150px) and (max-width: 480px) {

    .ips1 {
        padding: 0 20px;
    }

    .ips1 .right-inner p {
        margin: 10px 0;
        text-align: justify;
        font-size: 90%;
    }

    .ips3 {
        color: #797979;
        padding: 30px 20px;
    }

    .ips1 .left-inner .box {
        width: 28%;
        text-align: center;
        font-size: 75%;
        font-weight: 600;
        margin: 3% 0px;
        cursor: pointer;
    }

    .ips2 {
        padding: 1px 20px 40px 20px;
        background: url(../images/who-bg.jpg);
        background-size: cover;
    }

    .slider-text h1 {
        text-transform: uppercase;
        color: #ffffff;
        font-size: 95%;
        text-align: center;
        margin-bottom: 13px;
    }

    .banner-outer {
        height: initial;
        overflow: hidden;
    }

    .ips1 .left-outer {
        width: 100%;
    }

    .ips1 .right-outer {
        width: 100%;
    }

    .ips2 .left-outer {
        width: 100%;
        line-height: 28px;
    }

    .ips2 .right-outer {
        width: 100%;
        line-height: 28px;
    }

    .ips4 .panel2 h3 {
        width: 100%;
        height: initial;
    }

    .ips3 h2 {
        text-transform: uppercase;
        padding-left: 10px;
        border-left: 5px solid #e74c3c;
        font-weight: 400;
        letter-spacing: 1px;
        margin: 10px 0;
        text-align: center;
        position: relative;
        width: 200px;
    }

    .ips3 .ips3-inner .top h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .top p {
        font-size: 90%;
        font-weight: 600;
        line-height: 25px;
        margin: 10px 0;
    }

    .ips3 .ips3-inner .top-inner .box:nth-child(even) {
        margin: 2%;
    }

    .ips3 .ips3-inner .top-inner .box {
        width: 120px;
        height: 120px;
        margin: 2% 5%;
    }

    .ips3 .ips3-inner .bottom h5 {
        font-size: 120%;
        text-transform: uppercase;
        color: #ff0000;
    }

    .ips3 .ips3-inner .bottom h6 {
        font-size: 90%;
    }

    .panel1 p.promoters-desc {
        padding: 0 0px;
    }

    .ips4 .panel1 .row {
        width: 100%;
        min-height: initial;
        margin: 15px 0;
    }

    .row-outer {
        width: 100%;
    }

    .ips4 .panel2 .row .leader-desc p:nth-child(2) {
        font-weight: 400;
        font-size: 90%;
    }

    .ips4 .panel2 .row {
        min-height: initial;
    }

    .ips4 .panel2 .row .leader-desc {
        width: 100%;
        margin: 0 auto;
        min-height: initial;
    }

    .ips6-inner .left {
        width: 100%;
    }

    .ips6 .wrapper p {
        color: #ffffff;
        text-align: justify;
        margin: 20px auto 20px auto;
        line-height: 30px;
    }

    .ips6-inner .right {
        width: 100%;
        margin-top: 0px;
    }

    .ips6 .right .address p {
        font-weight: 600;
        font-size: 90%;
        line-height: 23px;
        margin-top: 10px;
        color: #000000;
    }

    .ips6 .address {
        width: 85%;
        background: #ffffff;
        /* padding: 30px 30px 10px 30px; */
        padding: 10px 20px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin: 20px auto 20px auto;
    }

    .ips6 .hiring-content .box {
        margin-bottom: 50px;
    }

    .ips6 .hiring-content .box .inner-box {
        z-index: initial;
    }

    .slider-text {
        top: 45%;
    }

    .ips1 .left-outer h3 {
        font-size: 100%;
    }

    .ips4 .ips4-inner {
        padding: 20px 20px;
    }

    .panel2 .promoters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: baseline;
        padding: 0;
    }

    .ips6 {
        padding: 0px 20px 0px 20px;
    }

    .hiring-content-inner {
        display: flex;
        justify-content: flex-start;
        height: initial;
        margin-left: -35px;
        flex-wrap: wrap;
    }

    .ips6 .hiring-content {
        width: 100%;
        height: initial;
        background: transparent;
        /* padding: 20px; */
        /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    }

    .ips4 {
        background: url(../images/mgmnt-bg.jpg);
        background-size: cover;
        padding: 30px 0 0px 0;
    }

    .ips2-inner .left-inner ul li {
        font-size: 90%;
    }
}
@media (min-width: 100px) and (max-width: 479px){
.black_overlay {position:absolute}
.white_contents{ width:100%;}	

}

@media (min-width: 480px) and (max-width: 767px){

.white_contents{ width:70%;}