@font-face {
 font-family: "Poppins-Bold";
 src: url("../fonts/Poppins-Bold.ttf") format("truetype");
}
@font-face {
 font-family: "Poppins-Medium";
 src: url("../fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
 font-family: "Poppins-Light";
 src: url("../fonts/Poppins-Light.ttf") format("truetype");
}
@font-face {
 font-family: "Poppins-Regular";
 src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}
@charset "utf-8";
/* CSS Document */
body, html{
    height: 100%;
}
body{
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Poppins-SemiBold', sans-serif;
}
p{
    font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, ul, li{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a {
    text-decoration: none !important;
    transition: all 0.5s;
}
.carousel-item img {
    width: 100%;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}

/*Header Css Start*/

section.Header {
    position: absolute;
    width: 100%;
    z-index: 9999;
    padding: 50px 0 0 0;
}

.head-1 {
    position: relative;
    bottom: 10px;
    right: 60px;
}

.head-1 img {
    width: 75%;
}

.head-2 {
    padding: 0 0 0 220px;
}

.head-2 ul li a {
    color: #fff;
    font-size: 15px;
    font-family: Poppins-Medium;
    margin: 0 45px 0 0;
}

.head-2 ul li a:hover {
    color: #ff8f00;
}

.dropdown-1st .dropdown-item {
    font-size: 12px;
    margin: 0px;
    padding: 5px 0 5px 10px;
    width: 100%;
    font-family: 'Poppins-Medium';
    color: #011c40;
}

.dropdown-1st .dropdown-menu.show {
    padding: 0px 0 0 0px;
    margin: 0;
    width: 105%;
}

.dropdown-1st span a {
    background-color: #011c40;
    color: #fff !important;
}

.dropdown-2nd .dropdown-item {
    font-size: 12px;
    margin: 0px;
    padding: 5px 0 5px 10px;
    width: 100%;
    font-family: 'Poppins-Medium';
    color: #011c40;
}

.dropdown-2nd .dropdown-menu.show {
    padding: 0px 0 0 0px;
    margin: 0;
    width: 195%;
}

.dropdown-2nd span a {
    background-color: #011c40;
    color: #fff !important;
}

/*Header Css End*/
/*Banner Css Start*/

section.Banner {
    background: url(../images/Bytes.gif);
    background-size: cover;
    padding: 150px 0 90px 0;
}

section.Banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: -1000px;
    width: 80%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    animation-name: slide;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: linear-gradient(to right, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 13%) 88%, rgb(132 132 132 / 50%) 94%, rgb(60 60 60 / 0%) 100%);
    z-index: 1;
}

@keyframes slide {
  0% {
    left: -500;
    top: 0;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}

.ban-1 {
    padding: 60px 0 0 0;
    width: 110%;
    position: relative;
    right: 30px;
}

.ban-1 h1 {
    color: #ff8f00;
    font-family: 'Poppins-Bold';
    font-size: 50px;
}

.ban-1 h2 {
    color: #ffff;
    font-size: 35px;
    font-family: 'Poppins-Medium';
    padding: 0 0 15px 0;
}

.ban-1 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
    padding: 0 0 10px 0;
}

.ban-1 a {
    border: 1px solid #ff8f00;
}

.main-btn {
    display: inline-block;
    text-align: center;
    font-family: 'Poppins-Bold';
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 20px;
    font-size: 14px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: #ff8f00;
    position: relative;
    z-index: 10;
    overflow: hidden;
    letter-spacing: 1.5px;
}

.main-btn:before {
    position: absolute;
    content: '';
    background-color: #ff8f00;
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 33px;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 1;
}

.main-btn:hover {
    background-color: #fff;
    color: #ff8f00;
    border-color: #ff8f00;
}

.main-btn:hover:before {
    height: 400px;
    opacity: 0;
}

/*Banner Css End*/
/*Home-Sec-1 Css Start*/

section.Home-Sec-1 {
    padding: 70px 0 70px 0;
}

.home-s-1 {
    background-color: #011c40;
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    position: relative;
    top: 60px;
    width: 120%;
    z-index: 1;
}

.home-s-1 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 40px;
}

.home-s-1 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    padding: 10px 0 0 0;
}

.home-s-1 span {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    position: relative;
    bottom: 5px;
}

.home-s-1 a {
    padding: 0 45px 0 40px;
}


.home-s-2 img {
    width: 100%;
}

/*Home-Sec-1 Css End*/
/*Side-Banner-1 Css Start*/

section.Side-Banner-1 {
    background-color: #011c40;
}

.side-1 img {
    width: 130%;
}

.side-1 {
    position: relative;
    right: 80px;
}

.side-2 {
    padding: 18px 30px 0 30px;
}

.side-2 h3 {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins-Bold';
}

.side-2 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 30px;
    padding: 10px 0 0px 0;
}

.side-2 a {
    padding: 0 30px 0 30px;
    height: 47px;
}

/*Side-Banner-1 Css End*/
/*Side-Banner-2 Css Start*/

section.Side-Banner-2 {
    background-color: #011c40;
}

.side-4 img {
    width: 130%;
}

.side-4 {
    position: relative;
    right: 25px;
}

.side-3 {
    padding: 18px 30px 0 0px;
}

.side-3 h3 {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins-Bold';
}

.side-3 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 30px;
    padding: 10px 0 0px 0;
}

.side-3 a {
    padding: 0 30px 0 30px;
    height: 47px;
}

/*Side-Banner-2 Css End*/
/*Home-Sec-3 Css Start*/

section.Home-Services-1 {
    padding: 50px 0 90px 0;
}

.h-ser {
    text-align: center;
    padding: 0 0 40px 0;
}

.h-ser h3 {
    color: #000;
    font-size: 40px;
    font-family: 'Poppins-Bold';
}

.h-ser p {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    padding: 0 150px 0 150px;
}

section.Home-Services-1 .col-md-4 {
    padding: 0;
}

.h-ser-1 {
    border-right: 1px solid rgba(80, 80, 80, 0.2);
    border-bottom: 1px solid rgba(80, 80, 80, 0.2);
    padding: 20px;
    transition: all 0.3s linear 0s;
}

.h-ser-1:hover {
    border-color: transparent;
    box-shadow: 5px 15px 40px 0px rgba(0, 0, 0, 0.05);
}

.h-ser-1 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
    padding: 10px 0 0 0;
}

.h-ser-2 {
    display: flex;
}

.h-ser-3 {
    width: 15%;
}

.h-ser-3 img {
    width: 100%;
}

.h-ser-4 {
    padding: 15px 0 0 20px;
}

.h-ser-4 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.h-ser-4 h3:after {
    content: "";
    position: absolute;
    left: 93px;
    width: 40px;
    height: 3px;
    background: #ff8f00;
    top: 65px;
}

.h-ser-1 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 16px;
}

.h-ser-5 {
    padding: 20px 20px 0px 20px;
    border-right: 1px solid rgba(80, 80, 80, 0.2);
    transition: all 0.3s linear 0s;
}

.h-ser-5:hover {
    border-color: transparent;
    box-shadow: 5px 15px 40px 0px rgba(0, 0, 0, 0.05);
}

.h-ser-5 {
    text-align: center;
}

.h-ser-5 img {
    width: 93%;
}

.h-ser-6 {
    padding: 20px;
    transition: all 0.3s linear 0s;
    border-bottom: 1px solid rgba(80, 80, 80, 0.2);
}

.h-ser-6:hover {
    border-color: transparent;
    box-shadow: 5px 15px 40px 0px rgba(0, 0, 0, 0.05);
}

.h-ser-6 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
    padding: 10px 0 0 0;
}

.h-ser-6 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 16px;
}

.h-ser-7 {
    padding: 20px;
    border-right: 1px solid rgba(80, 80, 80, 0.2);
    transition: all 0.3s linear 0s;
}

.h-ser-7:hover {
    border-color: transparent;
    box-shadow: 5px 15px 40px 0px rgba(0, 0, 0, 0.05);
}

.h-ser-7 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
    padding: 10px 0 0 0;
}

.h-ser-7 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 16px;
}

.h-ser-8 {
    padding: 20px;
    transition: all 0.3s linear 0s;
}

.h-ser-8:hover {
    border-color: transparent;
    box-shadow: 5px 15px 40px 0px rgba(0, 0, 0, 0.05);
}

.h-ser-8 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
    padding: 10px 0 0 0;
}

.h-ser-8 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 16px;
}


/*Home-Sec-3 Css End*/
/*Home-Careers-1 Css Start*/

section.Home-career-2 {
    padding: 0 0 60px 0;
}

.home-car-1 {
    background: #011c40;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    padding: 40px 30px 55px;
    position: relative;
    bottom: 0px;
    left: 9px;
}

.home-car-1 a {
    padding: 0 30px 0 30px;
}

.home-car-1 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 30px;
    padding: 0 0 10px 0;
}

.home-car-1 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.home-car-2 {
    background-color: #fff;
    box-shadow: 0 0 27px 0 rgba(0,0,0,.15);
    padding: 40px 40px 0px 40px;
    position: relative;
    right: 20px;
}

.home-car-3 {
    padding: 0 0 24px 0;
}

.home-car-3 h3 {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 30px;
}

.home-car-3 h3:after {
    content: "";
    position: absolute;
    left: 45px;
    width: 55px;
    height: 3px;
    background: #ff8f00;
    top: 80px;
}

.home-car-4 {
    padding: 0 0 40px 0;
}

.home-car-4 ul {
    padding: 0 0 20px 0;
    margin: 0;
}

.home-car-4 ul li h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 14px;
    padding: 0 0 10px 0;
}

.home-car-4 ul li span {
    background: #e3e3e3;
    display: inline-block;
    width: 28px;
    height: 28px;
    color: #000;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #bdbdbd;
    margin: 0 15px 0 0;
}

.home-car-4 p {
    color: #000;
    font-family: 'Poppins-Regular';
    font-size: 15px;
    margin: 0;
    line-height: 26px;
}

.home-car-4 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.home-car-2 .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 288px;
}

.home-car-2 .slick-dots li {
    border: 2px solid #000;
    border-radius: 50%;
    width: 17px;
    height: 18px;
}

.home-car-2 .slick-dots li button {
    color: #ff8f00;
}

.home-car-2 .slick-dots li.slick-active button:before {
    font-size: 46px;
    line-height: 14px;
    left: -3px;
    color: #ff8f00;
}

.home-car-2 .slick-dots li button::before {
    font-size: 46px;
    line-height: 14px;
    left: -3px;
    color: #ff8f00;
}

/*Home-Careers-1 Css Start*/
/*Our-Team Css Start*/

section.Our-Team {
    padding: 60px 0 0 0;
}

.team {
    text-align: center;
    padding: 0 0 40px 0;
}

.team h3 {
    color: #000;
    font-size: 40px;
    font-family: 'Poppins-Bold';
}

.team p {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 15px;
}

.team-1 {
    background-color: #011c40;
    text-align: center;
    padding: 40px 20px 20px 20px;
    border-radius: 10px;
}

.team-1 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 20px 0 5px 0;
    margin: 0;
}

.team-1 span {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 12px;
}

.team-1 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    padding: 20px 0 0 0;
}

.team-1 img {
    border-radius: 50%;
    max-width: 40%;
    border: 3px solid #ff8f00;
}

.team-1 a {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 16px;
}

/*Our-Team Css End*/
/*Section-Form-1 Css Start*/

section.Sec-Form {
    padding: 80px 0 60px 0;
}

.main-content {
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    border-radius: 0 5px 5px 0;
    height: 500px;
    padding: 20px 40px 0px 40px;
}

.fm-1 {
    padding: 20px 0 0 0;
}

.form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    padding: 0 0 15px 0;
    margin-bottom: 30px;
    color: #000;
}

form textarea {
    max-width: 100%;
    height: 80px;
    max-height: 110px;
    resize: none;
}

.fm-1 button {
    background-color: #ff8f00;
    color: #fff;
    border: none;
    padding: 15px 60px 11px;
    font-size: 18px;
    font-family: 'Poppins-Bold';
    margin: 20px 0 0 0;
}

/*Section-Form-1 Css End*/
/*Testimonials Css Start*/

section.Testimonial {
    padding: 0 0 30px 0;
}

.test h2 {
    color: #000;
    font-size: 33px;
    font-family: 'Poppins-Bold';
}

.test p {
    color: #000;
    font-family: 'Poppins-Medium';
}

.test {
    margin: 0 0 -40px 0;
    text-align: center;
}

.test-2 {
  position: relative;
  margin-bottom: 30px;
}

.test-2 img {
  margin: 0 auto 10px;
  text-align: center;
  border: 10px solid #011c40;
  border-radius: 50%;
  width: 127px;
  height: 130px;
  position: relative;
  top: 65px;
}

.test-3 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    margin: 0;
}

.test-3 h4 {
    color: #ff8f00;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    padding: 7px 0 5px 0;
}

.test-3 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 23px;
    font-size: 12px;
    margin: 0;
}

.test-3 {
  background: #011c40;
  padding: 70px 10px 10px 10px;
  min-height: 200px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #563e9352;
}

.test-1 .slick-slide {
  padding-left: 1rem;
  padding-right: 1rem;
}

/*Testimonials Css End*/
/*Side-Banner-3 cSS Start*/

section.Side-Banner-3 {
    padding: 0 0 60px 0;
}

section.Side-Banner-3 .container {
    background-color: #011c40;
    padding: 40px 0 30px 0;
    border-radius: 5px;
}

.side-5 {
    padding: 0 0 0 45px;
}

.side-5 h3 {
    color: #fff;
    font-size: 28px;
    font-family: 'Poppins-Bold';
    line-height: 45px;
    padding: 0 190px 0 0;
}

.side-5 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    margin: 0;
    padding: 0 220px 0 0;
}

.side-6 {
    text-align: center;
    padding: 55px 0 0 0;
}

.side-6 a {
    padding: 0 40px 0 40px;
}

/*Side-Banner-3 cSS End*/
/*Footer Css Start*/

section.First-Footer {
    background-color: #011c40;
    padding: 40px 0 20px 0;
}

.ft-1 img {
    width: 70%;
}

.ft-1 p {
    color: #fff;
    font-size: 12px;
    padding: 20px 0 0 0;
    font-family: 'Poppins-Regular';
    line-height: 20px;
}

.ft-icon {
    text-align: end;
}

.ft-icon a {
    color: #fff;
    font-size: 8px;
    margin: 0 15px 0 0;
}

.ft-icon a:hover {
    color: #ff8f00;
}

.ft-2 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 11px 0 26px 0;
}

.ft-2 h3:after {
    content: "";
    position: absolute;
    left: 15px;
    width: 55px;
    height: 3px;
    background: #ff8f00;
    top: 41px;
}

.ft-2 ul li a {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.ft-2 ul li a:hover {
    color: #ff8f00;
}

.ft-3 {
    position: relative;
    right: 10px;
}

.ft-3 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 11px 0 26px 0;
}

.ft-3 h3:after {
    content: "";
    position: absolute;
    left: 0px;
    width: 55px;
    height: 3px;
    background: #ff8f00;
    top: 41px;
}

.ft-3 ul li a {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.ft-3 ul li a:hover {
    color: #ff8f00;
}

.ft-4 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 11px 0 26px 0;
}

.ft-4 h3:after {
    content: "";
    position: absolute;
    left: 0px;
    width: 55px;
    height: 3px;
    background: #ff8f00;
    top: 41px;
}

.ft-4 {
    position: relative;
    right: 20px;
}

.ft-4 ul li a {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.ft-4 ul li a:hover {
    color: #ff8f00;
}

.ft-5 {
    position: relative;
    right: 40px;
}

.ft-5 h3 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 11px 0 26px 0;
}

.ft-5 h3:after {
    content: "";
    position: absolute;
    left: 0px;
    width: 55px;
    height: 3px;
    background: #ff8f00;
    top: 41px;
}

.ft-5 ul li {
    width: 140%;
}

.ft-5 ul li a {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.ft-5 ul li i {
    color: #ff8f00;
    font-size: 18px;
    padding: 0 15px 0 0;
}

.ft-5 p {
    color: #fff;
    font-size: 13px;
    padding: 10px 0 0 0;
    font-family: 'Poppins-Regular';
    line-height: 20px;
    width: 130%;
}

.ft-5 ul li span {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    padding: 0 0 0 8px;
}

.ft-btn {
    border-top: 2px dashed #fff;
    padding: 20px 0 0 0;
}

.ft-6 p {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    margin: 0;
}

/*Footer Css End*/
/*New-About-1 Css Start*/

section.About-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.video-image-icon {
    width: 75px;
    height: 75px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 1;
}

.video-image-icon i {
    width: 0;
    height: 0;
    position: absolute;
    left: 30px;
    top: 24px;
    font-size: 30px;
    color: #fff;
}

.New-About-2 .video-popup {
    float: right;
    margin: 20px 0 0;
    position: relative;
}

.New-About-2:hover .video-image-icon {
    background-color: #ff8f00;
}

.about-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.about-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

section.New-About-1 {
    padding: 60px 0 60px 0;
}

.about-2 h3 {
    color: #000;
    font-size: 30px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.about-2 h4 {
    color: #000;
    font-size: 30px;
    font-family: Poppins-Bold;
    font-style: italic;
}

.about-2 h4 span {
    color: #ff8f00;
    padding: 0 0 0 10px;
}

.about-2 p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    line-height: 26px;
}

.New-About-2 .video-popup:before {
    content: "";
    width: 200px;
    height: 200px;
    background: #ff8f00;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: -1;
}

.New-About-2 .video-popup:after {
    content: "";
    width: 200px;
    height: 200px;
    background: #ff8f00;
    position: absolute;
    left: 354px;
    top: 337px;
    z-index: -1;
}

/*New-About-1 Css End*/
/*New-Contact-1 Css Start*/

section.Contact-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.contact-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.contact-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*New-Contact-1 Css End*/
/*New-Services-2 Css Start*/

section.New-About-2 {
    padding: 20px 0 30px 0;
}

.New-ser-3 {
    display: flex;
}

section.New-About-2 .container {
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 0px 30px;
}

.New-ser-4 h3 {
    color: #000;
    font-size: 25px;
    font-family: 'Poppins-Bold';
}

.New-ser-4 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 22px;
    font-size: 14px;
}

.New-ser-4 {
    padding: 0 20px 0 0;
}

.New-ser-5 h3 {
    color: #000;
    font-size: 25px;
    font-family: 'Poppins-Bold';
}

.New-ser-5 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 22px;
    font-size: 14px;
}

.New-ser-5 {
    padding: 0 20px 0 0;
}

.New-ser-6 {
    background: #f1f1f1;
    padding: 20px 30px 1px;
    margin: 29px 0 0 -60px;
}

.New-ser-6 h3 {
    color: #000;
    font-size: 22px;
    font-family: 'Poppins-Medium';
    padding: 0 0 10px 0;
}

.New-ser-6 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15pxx;
}

.New-ser-7 h3 {
    font-family: Poppins-Medium;
    font-size: 26px;
    line-height: 45px;
    margin: 0 0 20px;
}

.New-ser-7 input, select {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 15px 0;
    max-width: 100%;
    resize: none;
    height: 40px;
}

.New-ser-7 textarea {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 15px 0;
    max-width: 100%;
    resize: none;
    height: 100px;
}

.New-ser-7 button {
    background: #ff8f00;
    padding: 15px 50px 11px;
    border: none;pen Sans';
    font-weight: 900;
    font-size: 20px;;
    font-family: 'Poppins-Bold';
}

/*New-Services-2 Css End*/
/*Overview-Banner Css Start*/

section.Overview-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.over-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.over-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Overview-Banner Css End*/
/*New-Services-3 Css Start*/

section.Section-Overview-1 {
    padding: 80px 0 80px 0;
}

section.Section-Overview-2 {
    padding: 0 0 70px 0;
}

section.Section-Overview-3 {
    padding: 0 0 60px 0;
}

section.Section-Overview-2 .container {
    background: #fff;
    padding: 60px 60px 0;
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, .15);
}

.New-ser-1 h3 {
    color: #000;
    font-size: 36px;
    font-family: 'Poppins-Medium';
    font-style: italic;
}

.New-ser-1 h4 {
    color: #000;
    font-size: 24px;
    font-style: italic;
    padding: 0 0 20px 0;
    font-family: 'Poppins-Bold';
}

.New-ser-1 h4 span {
    color: #ff8f00;
    font-size: 24px;
    font-style: italic;
    padding: 0 0 20px 0;
    font-family: 'Poppins-Bold';
}

.New-ser-1 h4:after {
    content: "";
    position: absolute;
    left: 18px;
    width: 36px;
    height: 4px;
    background: #ff8f00;
    top: 85px;
}

.New-ser-1 p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    line-height: 26px;
}

.New-ser-2 .video-popup:before {
    content: "";
    width: 200px;
    height: 200px;
    background: #ff8f00;
    position: absolute;
    left: 4px;
    top: -10px;
    z-index: -1;
}

.New-ser-2 .video-popup:after {
    content: "";
    width: 200px;
    height: 200px;
    background: #ff8f00;
    position: absolute;
    left: 371px;
    top: 337px;
    z-index: -1;
}

.New-ser-8 {
    background: #f8f8f8;
    padding: 20px 30px 10px 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
    height: 100%;
}

.New-ser-8 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    padding: 0 0 10px 0;
}

.New-ser-8 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.New-ser-9 {
    background: #f8f8f8;
    padding: 20px 30px 10px 20px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
    height: 100%;
}

.New-ser-9 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    padding: 0 0 10px 0;
}

.New-ser-9 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

/*New-Services-3 Css End*/
/*Content-Production-Banner Css Start*/

section.Production-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.production-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.production-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Content-Production-Banner Css End*/
/*Content-Production-1 Css Start*/

section.Section-Production-1 {
    padding: 70px 0 70px 0;
}

.production-3 {
    display: flex;
}

.production-3 img {
    width: 10%;
}

.production-3 h2 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 33px;
    padding: 10px 0 0 30px;
}

.production-2 h3 {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 23px;
    padding: 20px 0 20px 0;
    font-style: italic;
}

.production-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.production-4 {
    text-align: end;
}

.production-4 img {
    width: 90%;
}

/*Content-Production-1 Css End*/
/*Content-Production-2 Css Start*/

section.Section-Production-2 {
    background-color: #f1f1f1;
    padding: 40px 0 40px 0;
}

section.Section-Production-2 .container {
    box-shadow: 0 0 27px 0 rgba(0,0,0,.15);
    padding: 40px 40px 0px 40px;
    background-color: #fff;
}

.production-5 h2 {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 30px;
    line-height: 45px;
}

.production-5 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    padding: 5px 0 10px 0;
}

.production-5 ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.production-5 ul li {
    display: flex;
    width: 48%;
    background: #eee;
    margin: 0 2% 2% 0;
    padding: 25px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-bottom: 2px solid #ff8f00;
    text-align: center;
    font-family: 'Poppins-Medium';
}

.production-5 ul li.\35 th {
    width: 100% !important;
}

.production-6 form#ajax-contact {
    margin: 0 0 0 70px;
}

.production-6 h3 {
    font-family: 'Poppins-Bold';
    font-size: 24px;
    line-height: 35px;
    margin: 0 0 30px;
    color: #000;
}

.production-6 input, select {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 25px 0;
    max-width: 100%;
    resize: none;
    height: 40px;
    background-color: #f1f1f1;
}

.production-6  textarea {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 25px 0;
    max-width: 100%;
    resize: none;
    height: 100px;
    background-color: #f1f1f1;
}

.production-6 button {
    background: #ff8f00;
    padding: 15px 50px 11px;
    border: none;
    font-size: 20px;
    font-family: 'Poppins-Bold';
}

/*Content-Production-2 Css End*/
/*Content-Production-3 Css Start*/

section.Section-Production-3 {
    padding: 50px 0 50px 0;
}

.production-7 h3 {
    font-size: 25px;
    line-height: 35px;
    padding: 20px 37px 2px 0;
    font-family: 'Poppins-Medium';
}

.production-7 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.production-8 {
    background: #f9f9f9;
    border: 1px solid #d8d8d8;
    padding: 20px 20px 10px 20px;
}

.production-8 h3 {
    font-size: 24px;
    line-height: 35px;
    padding: 0 37px 0px 0;
    font-family: 'Poppins-Medium';
}

.production-8 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.production-9 h3 {
    font-size: 30px;
    line-height: 40px;
    font-family: 'Poppins-Medium';
}

.production-9 ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.production-9 ul li {
    width: 47%;
    margin: 0 1.5% 3%;
    background: #fff;
    padding: 35px 20px;
    box-shadow: 6px 0 27px 0 rgba(0, 0, 0, .11);
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    font-family: 'Poppins-Medium';
}

.production-9 ul li.\31 st-box {
    background: #f1f1f1;
    box-shadow: none;
    z-index: 1;
    color: #000;
}

.production-9 ul li a {
    color: #000;
}

/*Content-Production-3 Css End*/
/*Graduates-Banner-1 Css Start*/

section.Graduates-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.Graduate-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.Graduate-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Graduates-Banner-1 Css End*/
/*Section-Graduates-1 Css Start*/

section.fresh-graduates-1 {
    padding: 40px 0 60px 0;
}

.Graduate-0 h2 {
    color: #000;
    font-size: 40px;
    font-family: 'Poppins-Bold';
    width: 30%;
}

.Graduate-3 img {
    width: 100%;
}

.Graduate-3 button.slick-prev.slick-arrow {
    background-color: #000;
    background-color: #ff8f00;
    width: 3%;
    position: relative;
    top: 426px;
    left: 1010px;
    height: 30px;
    z-index: 999;
}

.Graduate-3 button.slick-next.slick-arrow {
    background-color: #ff8f00;
    width: 3%;
    position: relative;
    top: -30px;
    left: 1060px;
    height: 30px;
}

/*Section-Graduates-1 Css End*/
/*Section-Graduates-2 Css Start*/

section.fresh-graduates-2 .container {
    background-color: #011c40;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
    padding: 30px 30px 40px 30px;
}

section.fresh-graduates-2 .container:before {
    content: "";
    width: 400px;
    height: 350px;
    background: #ff8f00;
    position: absolute;
    left: 50px;
    top: 1005px;
    z-index: -1;
}

.Graduate-00 h3 {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 26px;
}

.Graduate-00 h4 {
    color: #ff8f00;
    font-family: 'Poppins-Bold';
    font-size: 22px;
}

.Graduate-00 {
    padding: 0 0 40px 0;
}

.Graduate-4 h3 {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 20px;
    padding: 0 0 15px 0;
}

.Graduate-4 h3:after {
    content: "";
    width: 40px;
    height: 3px;
    position: absolute;
    top: 30px;
    background: #ff8f00;
    left: 17px;
}

.Graduate-4 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    font-size: 14px;
    line-height: 26px;
}

.row-padding-1 {
    padding: 30px 0 0 0;
}

.Graduate-5 {
    text-align: center;
    padding: 40px 0 0 0;
}

.Graduate-5 h4 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 26px;
}

.Graduate-5 p {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    padding: 10px 0 30px 0;
    margin: 0;
}

.Graduate-5 a {
    background-color: #ff8f00;
    color: #fff;
    padding: 5px 50px 0px;
    font-family: 'Poppins-Bold';
}

/*Section-Graduates-2 Css End*/
/*Section-Graduates-3 Css Start*/

section.fresh-graduates-3 {
    padding: 50px 0 60px 0;
}

.Graduate-6 img {
    width: 100%;
}

.Graduate-6 .video-popup {
    float: right;
    margin: 20px 0 0;
    position: relative;
}

.Graduate-6:hover .video-image-icon {
    background-color: #ff8f00;
}

/*Section-Graduates-3 Css End*/
/*Section-Graduates-4 Css Start*/

.Graduate-7 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 28px;
    text-align: center;
    padding: 0 200px 10px 200px;
    line-height: 45px;
}

.Graduate-7 h3 span {
    color: #ff8f00;
}

.Graduate-7 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    padding: 0 0 5px 0;
}

.Graduate-7 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    padding: 0 20px 0 0;
}

/*Section-Graduates-4 Css End*/
/*Section-Graduates-5 Css Start*/

section.fresh-graduates-5 {
    padding: 30px 0 50px 0;
}

.Graduate-8 h3 {
    text-align: center;
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 24px;
    padding: 0 0 30px 0;
}

.Graduate-8 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
    padding: 0 0 10px 0;
}

.Graduate-8 h5 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 33px;
    padding: 0 0 10px 0;
}

.Graduate-8 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
    padding: 0 80px 0 0;
}

.Graduate-8 p span {
    color: #ff8f00;
    font-weight: 600;
}


.Graduate-9 {
    text-align: center;
    padding: 20px 0 0 0;
}

.Graduate-9 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.Graduate-9 h4 {
    color: #000;
    font-family: 'Poppins-Regular';
    font-size: 18px;
    padding: 20px 0 10px 0;
}

.Graduate-9 p {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 15px;
    padding: 10px 0 30px 0;
    margin: 0;
}

.Graduate-9 a {
    background-color: #ff8f00;
    color: #fff;
    padding: 5px 50px 0px;
    font-family: 'Poppins-Bold';
}

.Graduate-9 a:hover {
    background-color: #011c40;
    color: #fff;
}

/*Section-Graduates-5 Css End*/
/*Open-Jobs-Banner-1 Css Start*/

section.Open-Jobs-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.Jobs-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.Jobs-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Open-Jobs-Banner-1 Css End*/
/*Section-Open-Jobs-1 Css Start*/

section.Open-Jobs-1 {
    padding: 50px 0 0 0;
}

.Jobs-2 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 24px;
    padding: 0 0 10px 0;
}

.Jobs-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.Jobs-2 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 21px;
    text-align: center;
    padding: 20px 0 0 0;
}

.Jobs-2 h4 span {
    color: #ff8f00;
}

/*Section-Open-Jobs-1 Css End*/
/*Section-Open-Jobs-2 Css Start*/

section.Open-Jobs-2 {
    padding: 70px 0 70px 0;
}

section.Open-Jobs-2 .container {
    background-color: #011c40;
    box-shadow: 0 0 8px 0 rgba(0,0,0,.15);
    padding: 40px 30px 30px 30px;
}

.Jobs-3 h3 {
    color: #fff;
    font-size: 24px;
    font-family: 'Poppins-Bold';
    padding: 0 0 10px 0;
}

.Jobs-3 p {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    padding: 0 10px 20px 0;
    line-height: 26px;
}

.Jobs-4 ul li {
    color: #fff;
    font-family: 'Poppins-Medium';
    font-size: 18px;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #ff8f00;
    margin: 20px 0 -5px 0;
    position: relative;
    bottom: 20px;
}

.Jobs-4 ul li:hover {
    color: #ff8f00;
    border-bottom: 2px solid #fff;
}

/*Section-Open-Jobs-2 Css End*/
/*Section-Open-Jobs-3 Css Start*/

section.Open-Jobs-3 {
    padding: 0 0 70px 0;
}

.Jobs-5 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 23px;
    padding: 0 0 30px 0;
}

.Jobs-5 ul li {
    padding: 0 0 30px 0;
}

.Jobs-5 ul li span {
    display: flex;
    font-family: 'Poppins-Medium';
    font-size: 14px;
}

.Jobs-5 ul li span p {
    color: #000;
    font-family: 'Poppins-Regular';
    font-size: 15px;
    padding: 0 0 10px 0px;
    border-bottom: 1px solid #000;
    width: 100%;
    margin: 0 0 0 15px;
}

.Jobs-5 p {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    line-height: 26px;
}

.Jobs-6 img {
    width: 100%;
}

.Jobs-6:before {
    content: "";
    position: absolute;
    background-color: #ff8f00;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    bottom: -20px;
    right: -5px;
}

.Jobs-6:after {
    content: "";
    position: absolute;
    top: -20px;
    left: -5px;
    background-color: #ff8f00;
    height: 45px;
    width: 45px;
    border-radius: 50%;
}

/*Section-Open-Jobs-3 Css End*/
/*Woman-at-Technobytes-Banner-1 Css Start*/

section.Women-At-Technobytes-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.woman-at-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.woman-at-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Woman-at-Technobytes-Banner-1 Css End*/
/*Section-Woman-at-Technobytes-1 Css Start*/

section.Section-woman-technobytes-1 {
    padding: 70px 0 70px 0;
}

.woman-at-2 h2 {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 30px;
    line-height: 45px;
    padding: 0 0 10px 0;
}

.woman-at-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 27px;
}

.woman-at-3 img {
    width: 100%;
}

/*Section-Woman-at-Technobytes-1 Css End*/
/*Section-Woman-at-Technobytes-2 Css Start*/

section.Section-woman-technobytes-2 {
    padding: 0 0 70px 0;
}

.woman-at-4 img {
    width: 100%;
}

/*Section-Woman-at-Technobytes-2 Css End*/
/*Training-Development-Banner-1 Css Start*/

section.Training-Development-Banner-1{
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.training-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.training-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Training-Development-Banner-1 Css End*/
/*Section-Training-Development-1 Css Start*/

section.Section-training-development-1 {
    padding: 50px 0 50px 0;
}

.training-0 h2 {
    color: #000;
    font-size: 40px;
    font-family: 'Poppins-Bold';
    width: 30%;
}

.training-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
}

.training-3 img {
    width: 100%;
} 

.training-3 button.slick-prev.slick-arrow {
    background-color: #000;
    background-color: #ff8f00;
    width: 3%;
    position: relative;
    top: 426px;
    left: 1010px;
    height: 30px;
    z-index: 999;
}

.training-3 button.slick-next.slick-arrow {
    background-color: #ff8f00;
    width: 3%;
    position: relative;
    top: -30px;
    left: 1060px;
    height: 30px;
}

/*Section-Training-Development-1 Css End*/
/*Section-Training-Development-2 Css Start*/

.training-4 li:before {
    content: counter(training-counter, decimal-leading-zero);
    width: 60px;
    height: 60px;
    font-size: 30px;
    color: #000;
    background: #ff8f00;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    font-family: 'Poppins-Medium';
}

.training-4 li {
    counter-increment: training-counter;
    float: left;
    width: 50%;
    padding: 80px 40px 50px 0;
    display: block;
    position: relative;
    counter-increment: training-counter;
}

.training-4 li h3 {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 22px;
    line-height: 33px;
}

.training-4 li p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 12px;
}

/*Section-Training-Development-2 Css End*/
/*Software-Careers-Banner-1 Css Start*/

section.Software-Careers-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.Career-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.Career-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Software-Careers-Banner-1 Css End*/
/*Section-Software-Careers-1 Css Start*/

section.software-careers-1 {
    padding: 40px 0 0 0;
}

.Career-2 h2 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 30px;
    padding: 0 0 10px 0;
}

.Career-2 p {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 0 170px 0 0;
}

/*Section-Software-Careers-1 Css End*/

section.software-careers-2 {
    padding: 60px 0 100px 0;
}

.Career-3 {
    background-color: #fff;
    padding: 40px 30px 20px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.Career-3 img {
    width: 25%;
}

.Career-3 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 17px;
    padding: 20px 0 0 0;
}

.Career-3 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.Career-4 {
    background-color: #ff8f00;
    padding: 40px 30px 20px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.Career-4 img {
    width: 25%;
}

.Career-4 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 17px;
    padding: 20px 0 0 0;
}

.Career-4 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

/*Section-Software-Careers-2 Css Start*/

section.software-careers-3 {
    padding: 0 0 100px 0;
}

.career-5 {
    background-color: #fff;
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.career-5 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 20px 0 0 0;
    margin: 0;
}

.career-6 {
    display: flex;
}

.career-6 span {
    background-color: #011c40;
    padding: 20px 0px 15px 0px;
    border-radius: 50%;
    width: 127px;
    text-align: center;
    height: 100px;
}

.career-6 span img {
    width: 63%;
    filter: invert(1);
}

.career-6 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    padding: 25px 0 0 20px;
    line-height: 30px;
}

.career-7 img {
    width: 85%;
}

.career-7 {
    text-align: end;
}

section.software-careers-4 {
    padding: 0 0 100px 0;
}

.career-8 {
    text-align: center;
}

.career-8 img {
    width: 100%;
}

.career-9 {
    background-color: #fff;
    padding: 30px 20px 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.career-9 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 20px 0 0 0;
    margin: 0;
}

.career-10 {
    display: flex;
}

.career-10 span {
    background-color: #ff8f00;
    padding: 20px 0px 15px 0px;
    border-radius: 50%;
    width: 107px;
    height: 100px;
    text-align: center;
}

.career-10 span img {
    width: 63%;
}

.career-10 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 22px;
    padding: 25px 0 0 20px;
    line-height: 30px;
}

/*Section-Software-Careers-2 Css End*/
/*Section-Software-Careers-3 Css Start*/

section.software-careers-5 {
    padding: 0 0 50px 0;
}

.career-11 h2 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 40px;
    padding: 0 0 10px 0;
}

.career-11 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 28px;
}

.career-11 a {
    color: #000;
    font-family: 'Poppins-Medium';
    padding: 7px 60px 2px 60px;
    font-size: 16px;
}

.career-11 a:hover {
    background-color: #011c40;
    color: #fff;
}

/*Section-Software-Careers-3 Css End*/
/*Why-Technobytes-Banner-1 Css Start*/

section.Why-Technobytes-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.Why-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.Why-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Why-Technobytes-Banner-1 Css End*/
/*Setion-Why-Technobytes-1 Css Start*/

section.why-technobytes-1 {
    padding: 50px 0 60px 0;
}

.Why-2 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 35px;
}

.Why-2 h3 span {
    color: #ff8f00;
}

.Why-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    font-size: 15px;
}

/*Setion-Why-Technobytes-1 Css End*/
/*Setion-Why-Technobytes-2 Css Start*/

section.why-technobytes-2 {
    padding: 0 0 70px 0;
}

.why-3 img {
    width: 104%;
}

.why-4 {
    padding: 0 0 50px 0;
}

.why-4 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 26px;
}

.why-4 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 5px 0 0 0;
    font-size: 14px;
}

.why-5 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
}

.why-5 img {
    width: 30%;
}

.why-5 span {
    border: 1px solid #ff8f00;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-5 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-5 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 13px;
}

.why-5-2nd {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
}

.why-5-2nd img {
    width: 30%;
}

.why-5-2nd span {
    border: 1px solid #011c40;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-5-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 19px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-5-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 13px;
}

/*2nd-row Css Start*/

.r-btn {
    padding: 20px 0 0 0;
}

.why-6-1st {
    display: flex;
    border: 1px solid #ff8f00;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    align-items: center;
    width: 90%;
    position: relative;
    left: 50px;
}

.why-6-2nd {
    display: flex;
    border: 1px solid #011c40;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    align-items: center;
    width: 90%;
    position: relative;
    left: 55px;
}

.why-7 {
    border: 1px solid #ff8f00;
    padding: 22px 0px 22px 0px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 0px;
    text-align: center;
    right: 60px;
    width: 50%;
    margin: 0 -40px 0 0;
}

.why-7 img {
    width: 50%;
}

.why-7-2nd {
    border: 1px solid #011c40;
    padding: 22px 0px 22px 0px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 0px;
    text-align: center;
    right: 60px;
    width: 175px;
    margin: 0 -40px 0 0;
    height: 87px;
}

.why-7-2nd img {
    width: 50%;
}

.why-8 {
    padding: 20px 40px 0 0;
}

.why-8 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.why-8 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

/*2nd-row Css End*/

/*Setion-Why-Technobytes-2 Css End*/
/*Setion-Why-Technobytes-3 Css Start*/

section.why-technobytes-3 {
    padding: 0 0 70px 0;
}

.why-11 img {
    width: 103%;
}

.why-10 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 100%;
}

.why-10-2nd {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
}

.why-10 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-10-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 19px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-10 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 14px;
}

.why-10-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 14px;
}

.why-10 span {
    border: 1px solid #ff8f00;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-10 img {
    width: 30%;
}

.why-9 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 26px;
}

.why-9 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 5px 0 0 0;
    font-size: 14px;
}

.why-9 {
    padding: 0 0 60px 0;
    text-align: end;
}

.why-10-2nd span {
    border: 1px solid #011c40;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-10-2nd img {
    width: 30%;
}

/*Setion-Why-Technobytes-3 Css End*/
/*Setion-Why-Technobytes-4 Css Start*/

section.why-technobytes-4 {
    padding: 0 0 70px 0;
}

.why-12 img {
    width: 100%;
}

.why-13 {
    padding: 65px 0 0 0;
}

.why-13 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 24px;
    line-height: 35px;
}

.why-13 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.why-14-1st {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
    position: relative;
    top: 70px;
    height: 90%;
}

.why-14-1st span {
    border: 1px solid #ff8f00;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-14-1st img {
    width: 30%;
}

.why-14-1st h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: 0px 0 0 0;
}

.why-14-1st p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 22px;
    font-size: 13px;
}

.why-14-2nd {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
    position: relative;
    top: 70px;
    height: 90%;
}

.why-14-2nd span {
    border: 1px solid #011c40;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-14-2nd img {
    width: 30%;
}

.why-14-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: 0px 0 0 0;
}

.why-14-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 22px;
    font-size: 13px;
}

/*Setion-Why-Technobytes-4 Css End*/
/*Setion-Why-Technobytes-5 Css Start*/

section.why-technobytes-5 {
    padding: 0 0 90px 0;
}

.why-15 {
    padding: 0 0 70px 0;
    text-align: end;
}

.why-15 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 26px;
}

.why-15 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 5px 0 0 0;
    font-size: 14px;
}

.why-16 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 100%;
}

.why-16-2nd {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
}

.why-16 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-16 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 14px;
}

.why-16-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 15px 0;
    margin: -10px 0 0 0;
}

.why-16-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 14px;
}

.why-16 span {
    border: 1px solid #ff8f00;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-16-2nd span {
    border: 1px solid #011c40;
    padding: 36px 20px 40px 20px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-16 img {
    width: 30%;
}

.why-16-2nd img {
    width: 30%;
}

.why-17 img {
    width: 100%;
}

/*Setion-Why-Technobytes-5 Css End*/
/*Setion-Why-Technobytes-6 Css Start*/

.why-18 img {
    width: 105%;
}

.why-20 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 95%;
    margin: 0 -20px 0 0px;
}

.why-20-2nd {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 95%;
    margin: 0 -20px 0 0px;
}

.why-20 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 10px 0;
    margin: -20px 0 0 0;
}

.why-20 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 20px;
    font-size: 13px;
}

.why-20-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 18px;
    padding: 0px 0 10px 0;
    margin: -20px 0 0 0;
}

.why-20-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 20px;
    font-size: 13px;
}

.why-20 span {
    border: 1px solid #ff8f00;
    padding: 36px 17px 40px 17px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-20 img {
    width: 30%;
}

.why-20-2nd span {
    border: 1px solid #011c40;
    padding: 36px 17px 40px 17px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-20-2nd img {
    width: 30%;
}

.why-19 {
    padding: 0 0 60px 0;
}

.why-19 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 26px;
}

.why-19 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    padding: 5px 0 0 0;
    font-size: 14px;
}

/*Setion-Why-Technobytes-6 Css End*/
/*Setion-Why-Technobytes-7 Css Start*/

section.why-technobytes-7-1st {
    padding: 70px 0 0 0;
}

.why-21-1st {
    display: flex;
    border: 1px solid #ff8f00;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    align-items: center;
    width: 90%;
    position: relative;
    left: 55px;
    margin: 0 0 30px 0;
}

.why-22 span {
    border: 1px solid #ff8f00;
    /* padding: 32px 18px 35px 18px; */
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 35px;
    text-align: center;
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 85px;
    left: -45px;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    !i;
    !;
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    0 -40px 0 0;
}

.why-22 img {width: 50%;}

.why-23 h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.why-23 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
}

.why-23 {
    padding: 20px 0 0 50px;
}

.why-21-2nd {
    display: flex;
    border: 1px solid #011c40;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    align-items: center;
    width: 90%;
    position: relative;
    left: 55px;
    margin: 0 0 30px 0;
}

.why-22-2nd span {
    border: 1px solid #011c40;
    /* padding: 32px 18px 35px 18px; */
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    bottom: 35px;
    text-align: center;
    width: 90px;
    height: 90px;
    text-align: center;
    line-height: 85px;
    left: -45px;
}



.why-22-2nd img {
    width: 50%;
}

.why-23-2nd h4 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.why-23-2nd p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 13px;
}

.why-23-2nd {
    padding: 20px 0 0 50px;
}

/*Setion-Why-Technobytes-7 Css End*/
/*Setion-Why-Technobytes-8 Css Start*/

section.why-technobytes-8 {
    padding: 100px 0 50px 0;
}

.why-24 {
    border: 1px solid #011c40;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 100%;
}

.why-24 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.why-24 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.why-24 span {
    border: 1px solid #011c40;
    padding: 36px 14px 40px 15px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-24 img {
    width: 30%;
}

.why-25 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 100%;
}

.why-25 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 20px;
}

.why-25 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.why-25 span {
    border: 1px solid #ff8f00;
    padding: 36px 15px 40px 15px;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    bottom: 50px;
}

.why-25 img {
    width: 30%;
}

.why-26 {
    border: 1px solid #ff8f00;
    text-align: center;
    padding: 20px 10px 10px 10px;
    border-radius: 10px;
    height: 100%;
}

.why-26 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 19px;
    line-height: 26px;
    padding: 10px 10px 20px 10px;
}

.why-26 a {
    padding: 0 40px 0 40px;
}

.why-26 a:hover {
    background-color: #011c40;
    color: #fff;
}

/*Setion-Why-Technobytes-8 Css End*/
/*Look-For-Candidates-Banner-1 Css Start*/

section.what-we-look-for-candidates-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.candidates-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.candidates-1 h4 {
    color: #ff8f00;
    font-size: 21px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Look-For-Candidates-Banner-1 Css End*/
/*Section-Look-For-Candidates-1 Css Start*/

section.look-for-candidates-1 {
    padding: 70px 0 80px 0;
}

.look-for-1 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 38px;
    line-height: 55px;
}

.look-for-1 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.look-for-2 {
    background: #011c40;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px 0px 20px;
    height: 90%;
    margin: 10px 0 0 0;
}

.look-for-2 img {
    width: 35%;
}

.look-for-2 h4 {
    color: #fff;
    font-family: 'Poppins-Bold';
    font-size: 16px;
    line-height: 25px;
    padding: 15px 0 0 0;
}

.look-for-2 p {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 24px;
    font-size: 13px;
}

/*Section-Look-For-Candidates-1 Css End*/
/*Section-Look-For-Candidates-2 Css Start*/

.look-for-3 img {
    width: 100%;
}

.look-for-3:hover .video-image-icon {
    background-color: #ff8f00;
    color: #fff;
}

.look-for-4 {
    background: #ff8f00;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    margin: 45px 0 0 0;
}

.look-for-5 {
    display: flex;
}

.look-for-5 img {
    width: 80%;
    filter: invert(1);
}

.look-for-5 span {
    background-color: #011c40;
    width: 90px;
    border-radius: 50%;
    height: 90px;
    text-align: center;
    line-height: 80px;
}

.look-for-5 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    padding: 30px 0 0 20px;
    font-size: 28px;
}

.look-for-4 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
    padding: 20px 0 0 0;
}

.look-for-4 a {
    padding: 0 40px 0 40px;
    background-color: #011c40;
}

.look-for-4 a:hover {
    color: #011c40;
    background-color: #ffff;
}

/*Section-Look-For-Candidates-2 Css End*/
/*Section-Look-For-Candidates-3 Css Start*/


section.look-for-candidates-3 {
    padding: 70px 0 0 0;
}

.look-for-6 {
    text-align: center;
}

.look-for-6 h2 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 30px;
}

.look-for-6 p {
    color: #000;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    line-height: 26px;
    padding: 5px 0 0 0;
}

/*Section-Look-For-Candidates-3 Css End*/
/*Section-Look-For-Candidates-4 Css Start*/

section.look-for-candidates-4 {
    padding: 30px 0 50px 0;
}

.look-img-7 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 33px;
    padding: 0 0 10px 0;
}

.look-img-7 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 15px;
}

.look-img-7 a {
    padding: 5px 30px 5px 30px;
}

.look-img-7 a:hover {
    color: #fff;
    background-color: #011c40;
}

.look-for-8 {
    padding: 60px 0 0 0;
}

.look-for-8:before {
    content: "";
    position: absolute;
    background-color: #ff8f00;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    bottom: 0px;
    right: -5px;
    top: 390px;
}

.look-for-8:after {
    content: "";
    position: absolute;
    background-color: #ff8f00;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    top: 30px;
    left: -10px;
}

.look-for-8 img {
    width: 100%;
}

/*Section-Look-For-Candidates-4 Css End*/
/*Work-Environment-Banner-1 Css Start*/

section.Work-Environment-Banner-1 {
    background: #000000c9 url(../images/pages-banner.jpg);
    background-size: cover;
    padding: 210px 0 30px 0;
    background-blend-mode: overlay;
}

.environment-1 h3 {
    color: #fff;
    font-size: 24px;
    font-family: Poppins-Regular;
    font-style: italic;
}

.environment-1 h4 {
    color: #ff8f00;
    font-size: 26px;
    font-family: Poppins-Bold;
    font-style: italic;
    padding: 10px 0 0 0;
}

/*Work-Environment-Banner-1 Css End*/
/*Section-Work-Environment-1 Css Start*/

section.work-environment-1 {
    padding: 70px 0 50px 0;
}

.environment-2 h3 {
    color: #000;
    font-family: 'Poppins-Bold';
    font-size: 35px;
    padding: 0 0 10px 0;
}

.environment-2 h3 span {
    color: #ff8f00;
}

.environment-2 p {
    color: #000;
    font-family: 'Poppins-Regular';
    line-height: 26px;
    font-size: 14px;
}

.environment-2 a {
    padding: 5px 30px 5px 30px;
}

.environment-2 a:hover {
    color: #fff;
    background-color: #011c40;
}

.environment-3 img {
    width: 100%;
}

/*Section-Work-Environment-1 Css End*/



.banner-txt p {color: #fff;font-size: 16px;font-family: Poppins-Light;line-height: 30px;}
.banner-btn a {padding: 12px 0px;display: inline-block;width: 20%;border: 2px solid;text-align: center;transition: all 0.5s;border-radius: 30px;color: #fff;}
.tp-blk {display: flex;align-items: center;}
.top-row ul {display: flex;margin: 0;justify-content: end;}
.top-row ul li {margin: 0px 20px;}
.icn {margin: -3px 10px 0px 0px;}
.icn i {background: #ca786d;min-width: 30px;padding: 6px 0px;text-align: center;color: #fff;border-radius: 100px;}
.number h6 {font-size: 16px;font-family: 'Poppins-Medium';color: #fff;margin: 0;}
.number a {font-family: 'Poppins-Medium';color: #efa095;}
a.chat:hover {background: #2a3038;color: #fff;}



@media only screen and (min-width: 992px) and (max-width: 1199px){}
@media only screen and (min-width: 320px) and (max-width: 480px){

section.Header {
    overflow: hidden;
}

section.Banner {
    overflow: hidden;
}

section.Home-Sec-1 {
    overflow: hidden;
}

section.Side-Banner-1 {
    overflow: hidden;
}

section.Home-Services-1 {
    overflow: hidden;
}

section.Home-career-2 {
    overflow: hidden;
}

section.Side-Banner-2 {
    overflow: hidden;
}

section.Our-Team {
    overflow: hidden;
}

section.Sec-Form {
    overflow: hidden;
}

section.Testimonial {
    overflow: hidden;
}

section.Side-Banner-3 {
    overflow: hidden;
}

section.First-Footer {
    overflow: hidden;
}

section.Header {
    padding: 30px 0 0 0;
}

.head-1 {
    position: relative;
    right: 5px;
}

.head-1 img {
    width: 65%;
}

.head-2 {
    padding: 0;
}

.head-2 nav.navbar.navbar-expand-lg.navbar-light {
    justify-content: end;
    text-align: center;
    position: relative;
    top: -57px;
}

.head-2 button {
    border: 2px solid #fff !important;
}

.head-2 .navbar-nav.mr-auto {
    padding: 10px 0 0 0;
}

.head-2 ul li a {
    padding: 2px 0 0 0;
    margin: 0;
}

section.Banner {
    padding: 56px 0 60px 0;
}

.ban-1 {
    position: relative;
    right: 0px;
    top: 20px;
}

.ban-1 h1 {
    font-size: 30px;
}

.ban-1 h2 {
    font-size: 24px;
    padding: 0 0 5px 0;
}

.ban-1 p {
    font-size: 14px;
    line-height: 24px;
    padding: 0 40px 0 0;
}

.ban-1 a {
    padding: 0 10px 0 10px;
    font-size: 13px;
}

.home-s-1 {
    padding: 20px 0 20px 20px;
    width: 100%;
}

.home-s-1 h3 {
    font-size: 26px;
}

.home-s-1 p {
    font-size: 13px;
    padding: 10px 10px 0 0;
}

.side-1 {
    position: relative;
    right: 14px;
}

.side-1 img {
    width: 110%;
}

.side-2 {
    padding: 20px 0 20px 0;
}

.side-2 h3 {
    font-size: 24px;
}

.side-2 p {
    font-size: 13px;
    line-height: 24px;
}

.side-2 a {
    padding: 0 20px 0 20px;
}

section.Home-Services-1 {
    padding: 50px 0 50px 0;
}

.h-ser {
    padding: 0 0 20px 0;
}

.h-ser h3 {
    font-size: 26px;
}

.h-ser p {
    font-size: 12px;
    padding: 0;
}

.h-ser-1 p {
    font-size: 12px;
    line-height: 22px;
}

.h-ser-4 h3 {
    font-size: 18px;
}

.h-ser-5 {
    display: none;
}

.home-car-1 {
    position: relative;
    left: 0px;
    padding: 20px 20px 20px 20px;
}

.home-car-1 h3 {
    font-size: 26px;
}

.home-car-1 p {
    font-size: 13px;
    line-height: 24px;
}

.home-car-2 {
    position: relative;
    right: 0px;
    padding: 20px 20px 20px 20px;
}

.home-car-3 h3 {
    font-size: 26px;
}

.home-car-3 h3:after {
    position: absolute;
    top: 55px;
    left: 20px;
}

.home-car-4 {
    padding: 20px 0 0 0;
}

.home-car-4 p {
    font-size: 12px;
    line-height: 24px;
}

.side-3 {
    padding: 20px 0 20px 0;
}

.side-3 h3 {
    font-size: 24px;
}

.side-3 p {
    font-size: 13px;
    line-height: 24px;
}

.side-3 a {
    padding: 0 20px 0 20px;
}

.team h3 {
    font-size: 26px;
}

.team p {
    font-size: 13px;
}

.team-1 {
    margin: 0 0 20px 0;
}

.team-1 h3 {
    font-size: 16px;
}

.team-1 p {
    font-size: 13px;
    line-height: 24px;
}

.img-box img {
    width: 100%;
}

.fm-1 button {
    font-size: 14px;
}

.test h2 {
    font-size: 26px;
}

.test p {
    font-size: 13px;
}

.test-3 h3 {
    font-size: 18px;
}

.test-3 h4 {
    font-size: 12px;
}

.test-3 p {
    font-size: 11px;
    line-height: 24px;
}

section.Side-Banner-3 .container {
    padding: 20px 0 20px 0;
}

.side-5 {
    padding: 0 0 0 20px;
}

.side-5 h3 {
    font-size: 21px;
    padding: 0;
    line-height: 35px;
}

.side-5 p {
    font-size: 13px;
    padding: 0 0 0 0;
}

.side-6 {
    text-align: left;
    padding: 30px 0 0 20px;
}

.ft-3 {
    position: relative;
    right: 0px;
}

.ft-4 {
    position: relative;
    right: 0px;
}

.ft-5 {
    position: relative;
    right: 0px;
}

.ft-5 p {
    font-size: 12px;
    padding: 0 78px 0 0;
    line-height: 24px;
}

div#navbarSupportedContent {
    background-color: #ff8f00;
    position: relative;
    top: 20px;
}

.dropdown-menu.show {
    width: 90% !important;
    position: relative !important;
    left: 14px !important;
}

section.About-Banner-1 {
    padding: 100px 0 10px 0;
}

.about-1 h3 {
    font-size: 20px;
}

.about-1 h4 {
    font-size: 22px;
}

.about-2 h3 {
    font-size: 20px;
}

.about-2 h4 {
    font-size: 22px;
}

.about-2 p {
    font-size: 13px;
    line-height: 24px;
}

.New-About-2 img {
    width: 100%;
}

.New-About-2 .video-popup:after {
    top: 90px;
    left: 100px;
}

section.Overview-Banner-1 {
    padding: 100px 0 10px 0;
}

.over-1 h3 {
    font-size: 20px;
}

.over-1 h4 {
    font-size: 22px;
}

.New-ser-1 h3 {
    font-size: 20px;
}

.New-ser-1 h4 {
    font-size: 22px;
}

.New-ser-1 h4 span {
    font-size: 22px;
}

.New-ser-1 h4:after {
    top: 90px;
}

.New-ser-1 p {
    font-size: 13px;
    line-height: 24px;
}

.New-ser-2 {
    padding: 50px 0 0 0;
}

.New-ser-2 img {
    width: 100%;
}

.New-ser-2 .video-popup:before {
    top: 40px;
    left: 6px;
}

.New-ser-2 .video-popup:after {
    top: 140px;
    left: 114px;
}

section.Contact-Banner-1 {
    padding: 100px 0 10px 0;
}

.contact-1 h3 {
    font-size: 20px;
}

.contact-1 h4 {
    font-size: 22px;
}

section.Section-Overview-2 .container {
    padding: 20px 10px 20px 20px;
}

.New-ser-5 h3 {
    font-size: 16px;
}

.New-ser-4 h3 {
    font-size: 16px;
}

.New-ser-4 p {
    font-size: 12px;
    line-height: 20px;
}

.New-ser-5 p {
    font-size: 12px;
    line-height: 20px;
}

.New-ser-6 {
    padding: 20px 10px 10px 20px;
    margin: 0 0 0 -20px;
}

.New-ser-6 h3 {
    font-size: 18px;
    line-height: 30px;
    padding: 0 0 0 0;
}

.New-ser-6 p {
    font-size: 13px;
    line-height: 24px;
}

.New-ser-7 {
    padding: 30px 0 0 0;
}

.New-ser-7 h3 {
    font-size: 20px;
    line-height: 30px;
}

.New-ser-7 button {
    font-size: 14px;
}

.New-ser-8 {
    margin: 0 0 0px 0;
    height: 96%;
}

.New-ser-8 h3 {
    font-size: 17px;
}

.New-ser-8 p {
    font-size: 13px;
    line-height: 24px;
}

.New-ser-9 {
    height: 91%;
    margin: 20px 0 0 0;
}

.New-ser-9 h3 {
    font-size: 17px;
}

.New-ser-9 p {
    font-size: 13px;
    line-height: 24px;
}

.production-1 h3 {
    font-size: 20px;
}

.production-1 h4 {
    font-size: 22px;
}

section.Production-Banner-1 {
    padding: 100px 0 10px 0;
}

.production-3 h2 {
    font-size: 22px;
    padding: 20px 0 0 10px;
}

.production-3 img {
    width: 20%;
}

.production-2 h3 {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 0 0 0;
}

.production-2 p {
    font-size: 13px;
    line-height: 24px;
}

.production-4 {
    text-align: center;
}

.production-4 img {
    width: 100%;
}

section.Section-Production-2 .container {
    padding: 20px 20px 0 20px;
}

.production-5 h2 {
    font-size: 20px;
}

.production-5 p {
    font-size: 13px;
    line-height: 24px;
    padding: 0 0 0 0;
}

.production-5 ul li {
    padding: 5px 0 5px 0;
    font-size: 11px;
}

.production-6 form#ajax-contact {
    margin: 0;
    padding: 20px 0 30px 0;
}

.production-6 h3 {
    font-size: 17px;
    line-height: 26px;
}

.production-6 button {
    font-size: 15px;
}

section.Section-Production-3 {
    padding: 20px 0 30px 0;
}

.production-7 h3 {
    font-size: 18px;
    line-height: 26px;
}

.production-7 p {
    font-size: 13px;
    line-height: 24px;
}

.production-8 h3 {
    font-size: 18px;
    line-height: 26px;
}

.production-8 p {
    font-size: 13px;
    line-height: 24px;
}

.production-9 {
    padding: 30px 0 0 0;
}

.production-9 h3 {
    font-size: 19px;
    line-height: 26px;
    padding: 0 0 20px 0;
}

.production-9 ul li {
    padding: 10px 10px 10px 10px;
    font-size: 11px;
}

.production-9 ul li a {
    font-size: 11px;
}

section.Graduates-Banner-1 {
    padding: 100px 0 10px 0;
}

.Graduate-1 h3 {
    font-size: 20px;
}

.Graduate-1 h4 {
    font-size: 22px;
}

.Graduate-0 h2 {
    font-size: 20px;
    width: 100%;
}

section.fresh-graduates-1 {
    padding: 20px 0 0 0;
}

section.fresh-graduates-2 .container {
    padding: 20px 20px 20px 20px;
}

.Graduate-00 h3 {
    font-size: 20px;
    line-height: 30px;
}

.Graduate-00 h4 {
    font-size: 20px;
    line-height: 28px;
}

.Graduate-00 {
    padding: 0 0 20px 0;
}

.Graduate-4 h3 {
    font-size: 15px;
}

.Graduate-4 p {
    font-size: 12px;
    line-height: 24px;
}

.Graduate-5 {
    text-align: left;
    padding: 10px 0 0 0;
    margin: 0 0 0 -15px;
}

.Graduate-5 h4 {
    font-size: 18px;
    line-height: 30px;
}

.Graduate-5 p {
    font-size: 13px;
    padding: 0 0 20px 0;
}

.Graduate-5 a {
    padding: 0 20px 0 20px;
    font-size: 14px;
}

.Graduate-7 h3 {
    font-size: 20px;
    line-height: 30px;
    padding: 0 0 20px 0;
    text-align: left;
}

.Graduate-7 h4 {
    font-size: 18px;
}

.Graduate-7 p {
    font-size: 13px;
    line-height: 24px;
}

.Graduate-8 h3 {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
}

.Graduate-8 h4 {
    font-size: 16px;
    padding: 0;
}

.Graduate-8 p {
    font-size: 13px;
    line-height: 24px;
    padding: 0;
}

.Graduate-8 h5 {
    font-size: 20px;
}

.Graduate-9 h3 {
    font-size: 18px;
    text-align: left;
    line-height: 30px;
}

.Graduate-9 {
    padding: 10px 0 0 0;
    margin: 0 0 0 -15px;
    text-align: justify;
}

.Graduate-9 h4 {
    padding: 0px 0 10px 0;
    text-align: left;
    line-height: 24px;
    font-size: 14px;
}

.Graduate-9 a {
    font-size: 12px;
    padding: 0 20px 0 20px;
}

section.Open-Jobs-Banner-1 {
    padding: 100px 0 10px 0;
}

.Jobs-1 h3 {
    font-size: 20px;
}

.Jobs-1 h4 {
    font-size: 22px;
}

.Jobs-2 h3 {
    font-size: 20px;
}

.Jobs-2 p {
    font-size: 13px;
    line-height: 24px;
}

.Jobs-2 h4 {
    text-align: left;
    font-size: 18px;
    line-height: 29px;
    padding: 0 0 0 0;
}

section.Open-Jobs-2 {
    padding: 40px 0 40px 0;
}

.Jobs-3 h3 {
    font-size: 20px;
}

.Jobs-3 p {
    font-size: 13px;
    line-height: 24px;
}

section.Open-Jobs-2 .container {
    padding: 20px 20px 20px 20px;
}

.Jobs-4 ul li {
    font-size: 14px;
}

.Jobs-5 h3 {
    font-size: 18px;
    padding: 0 0 20px 0;
}

.Jobs-5 ul li span p {
    font-size: 13px;
}

.Jobs-5 ul li {
    padding: 0 0 20px 0;
}

.Jobs-5 p {
    font-size: 13px;
    line-height: 24px;
}

.Jobs-6 {padding: 20px 0 0 0;}

.Jobs-6:before {
    right: 5px;
}

.Jobs-6:after {
    left: 5px;
    top: 0px;
}

section.Why-Technobytes-Banner-1 {
    padding: 100px 0 10px 0;
}

.Why-1 h3 {
    font-size: 20px;
}

.Why-1 h4 {
    font-size: 22px;
}

.Why-2 h3 {
    font-size: 20px;
    line-height: 26px;
}

.Why-2 p {
    font-size: 13px;
    line-height: 24px;
}

.why-3 img {
    width: 100%;
}

.why-4 h3 {
    font-size: 18px;
    padding: 30px 0 0 0;
}

.why-4 p {
    font-size: 13px;
    line-height: 24px;
}

.why-5 img {
    width: 22%;
}

.why-5 h4 {
    font-size: 15px;
}

.why-5 p {
    font-size: 13px;
    line-height: 24px;
}

.why-5-2nd {
    margin: 60px 0 70px 0;
}

.why-5-2nd img {
    width: 22%;
}

.why-5-2nd h4 {
    font-size: 15px;
}

.why-5-2nd p {
    font-size: 13px;
    line-height: 24px;
}

.why-9 h3 {
    font-size: 20px;
}

section.why-technobytes-2 {padding: 0 0 40px 0;}

.why-9 p {
    font-size: 13px;
    line-height: 24px;
}

.why-10 img {
    width: 22%;
}

.why-10 h4 {
    font-size: 15px;
}

.why-10 p {
    font-size: 13px;
    line-height: 24px;
}

.why-10-2nd {
    margin: 60px 0 70px 0;
}

.why-10-2nd img {
    width: 22%;
}

.why-10-2nd h4 {
    font-size: 15px;
}

.why-10-2nd p {
    font-size: 13px;
    line-height: 24px;
}

.why-11 img {
    width: 100%;
}

.why-13 {
    padding: 30px 0 0 0;
}

.why-13 h3 {
    font-size: 20px;
}

.why-13 p {
    font-size: 13px;
    line-height: 24px;
}

.why-14-1st img {
    width: 22%;
}

.why-14-1st h4 {
    font-size: 15px;
}

.why-14-1st p {
    font-size: 13px;
    line-height: 24px;
}

m {}

.why-14-1st {
    margin: 0 0 70px 0;
}

.why-14-2nd img {
    width: 22%;
}

.why-14-2nd h4 {
    font-size: 15px;
}

.why-14-2nd p {
    font-size: 13px;
    line-height: 24px;
}

.why-15 h3 {
    font-size: 20px;
}

.why-15 {
    padding: 30px 0 60px 0;
}

.why-15 p {
    font-size: 13px;
    line-height: 24px;
}

.why-16 img {
    width: 22%;
}

.why-16 h4 {
    font-size: 15px;
}

.why-16 p {
    font-size: 13px;
    line-height: 24px;
}

.why-16-2nd {
    margin: 60px 0 70px 0;
}

.why-16-2nd img {
    width: 22%;
}

.why-16-2nd h4 {
    font-size: 15px;
    line-height: 24px;
}

.why-16-2nd p {
    font-size: 13px;
    line-height: 24px;
}

.why-17 {
    padding: 40px 0 0 0;
}

.why-18 img {
    width: 100%;
}

.why-19 h3 {
    font-size: 20px;
    padding: 30px 0 0 0;
    line-height: 26px;
}

.why-19 p {
    font-size: 13px;
    line-height: 24px;
    margin: 0 0 -30px 0;
}

.why-20 img {
    width: 22%;
}

.why-20 h4 {
    font-size: 15px;
}

.why-20 p {
    font-size: 13px;
    line-height: 24px;
}

.why-20-2nd {height: auto;margin: 0 0 10px 0;}

.why-20-2nd img {
    width: 22%;
}

.why-20-2nd h4 {
    font-size: 15px;
}

.why-20-2nd p {
    font-size: 13px;
    line-height: 24px;
}

.why-20 {
    height: auto;
    margin: 50px 0px 60px 0px;
}

section.why-technobytes-8 {
    padding: 50px 0 40px 0;
}

.why-24 img {
    width: 24%;
}

.why-24 h3 {
    font-size: 15px;
}

.why-24 p {
    font-size: 13px;
    line-height: 24px;
}

.why-24 {
    margin: 0 0 50px 0;
    height: auto;
}

.why-25 {
    height: auto;
    margin: 10px 0 65px 0;
}

.why-25 img {
    width: 25%;
}

.why-25 h3 {
    font-size: 15px;
}

.why-25 p {
    font-size: 13px;
    line-height: 24px;
}

.why-26 h3 {
    font-size: 16px;
    padding: 0 0 10px 0;
}

.why-26 {
    padding: 20px 10px 10px 10px;
}

.why-6-1st {
    left: 58px;
    width: 80%;
}

.why-7 {
    width: 210%;
}

.why-8 h4 {
    font-size: 15px;
    line-height: 24px;
}

.why-8 {
    padding: 10px 0 0 0;
}

.why-8 p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.why-6-2nd {
    left: 58px;
    width: 80%;
    margin: 30px 0 0 0;
}

.why-7-2nd {
    width: 130%;
}

.why-11 {
    padding: 30px 0 0 0;
}

section.why-technobytes-7-1st {
    padding: 0;
}

.why-22 span {
    width: 70px;
    height: 70px;
    line-height: 64px;
    top: 70px;
}

.why-23 {
    padding: 10px 0 0 20px;
}

.why-23 h4 {
    font-size: 16px;
}

.why-23 p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.why-21-1st {
    width: 80%;
}

.why-21-2nd {
    width: 80%;
}

.why-23-2nd {
    padding: 10px 0 0 20px;
}

.why-23-2nd h4 {
    font-size: 15px;
}

.why-23-2nd p {
    font-size: 13px;
    line-height: 24px;
    margin: 0;
}

.why-22-2nd span {
    width: 70px;
    height: 70px;
    line-height: 65px;
    top: 70px;
}

section.Women-At-Technobytes-Banner-1 {
    padding: 100px 0 10px 0;
}

.woman-at-1 h3 {
    font-size: 20px;
}

.woman-at-1 h4 {
    font-size: 22px;
}

.woman-at-2 h2 {
    font-size: 18px;
    line-height: 30px;
}

section.Section-woman-technobytes-1 {
    padding: 30px 0 30px 0;
}

.woman-at-2 p {
    font-size: 13px;
    line-height: 24px;
}

section.Work-Environment-Banner-1 {
    padding: 100px 0 10px 0;
}

.environment-1 h3 {
    font-size: 20px;
}

.environment-1 h4 {
    font-size: 22px;
}

section.work-environment-1 {
    padding: 30px 0 30px 0;
}

.environment-2 h3 {
    font-size: 20px;
}

.environment-2 p {
    font-size: 13px;
    line-height: 24px;
}

section.Training-Development-Banner-1 {
    padding: 100px 0 10px 0;
}

.training-1 h3 {
    font-size: 20px;
}

.training-1 h4 {
    font-size: 22px;
}

.training-0 h2 {
    font-size: 20px;
    width: 100%;
}

.training-2 p {
    font-size: 13px;
    line-height: 24px;
}

section.Section-training-development-1 {padding: 30px 0 10px 0;}

.training-4 li:before {width: 50px;height: 50px;font-size: 20px;line-height: 55px;}

.training-4 li {
    width: 100%;
    padding: 70px 0 0px 0;
}

.training-4 li h3 {
    font-size: 16px;
    line-height: 26px;
}

.training-4 li p {
    font-size: 13px;
    line-height: 24px;
}

section.Software-Careers-Banner-1 {
    padding: 100px 0 10px 0;
}

.Career-1 h3 {
    font-size: 15px;
}

.Career-1 h4 {
    font-size: 22px;
}

.Career-2 h2 {
    font-size: 20px;
}

.Career-2 p {
    font-size: 13px;
    padding: 0 0 0 0;
    line-height: 24px;
}

.Career-3 {
    padding: 20px 10px 10px 10px;
}

.Career-3 h3 {
    font-size: 15px;
}

.Career-3 p {
    font-size: 13px;
    line-height: 24px;
}

.Career-4 {
    margin: 30px 0 30px 0;
    padding: 10px 10px 10px 10px;
}

.Career-4 h3 {
    font-size: 15px;
}

.Career-4 p {
    font-size: 13px;
    line-height: 24px;
}

.career-6 h3 {
    font-size: 15px;
    line-height: 26px;
    padding: 10px 0 0 20px;
}

.career-6 span {
    width: 140px;
    height: 72px;
    padding: 0;
    line-height: 70px;
    text-align: center;
}

.career-6 span img {
    width: 45px;
}

.career-5 p {
    font-size: 13px;
    line-height: 24px;
}

.career-7 {
    padding: 30px 0 0 0;
    text-align: center;
}

.career-7 img {
    width: 100%;
}

.career-10 h3 {
    font-size: 15px;
    line-height: 26px;
    padding: 10px 0 0 20px;
}

.career-9 p {
    font-size: 13px;
    line-height: 24px;
}

.career-10 span {
    width: 140px;
    height: 72px;
    padding: 0;
    line-height: 70px;
    text-align: center;
}

.career-10 span img {
    width: 70%;
}

section.software-careers-4 {
    padding: 0 0 40px 0;
}

.career-11 h2 {
    font-size: 20px;
    line-height: 30px;
}

.career-11 p {
    font-size: 13px;
    line-height: 24px;
}

.career-11 a {
    font-size: 14px;
    padding: 0 30px 0 30px;
}

section.what-we-look-for-candidates-Banner-1 {
    padding: 100px 0 10px 0;
}

.candidates-1 h3 {
    font-size: 20px;
}

.candidates-1 h4 {
    font-size: 22px;
}

section.look-for-candidates-1 {
    padding: 30px 0 30px 0;
}

.look-for-1 h3 {
    font-size: 20px;
    line-height: 30px;
}

.look-for-1 p {
    font-size: 13px;
    line-height: 24px;
}

.look-for-2 {
    padding: 20px 10px 20px 10px;
}

.look-for-2 img {
    width: 20%;
}

.look-for-2 h4 {
    font-size: 15px;
}

.look-for-2 p {
    font-size: 13px;
    line-height: 24px;
}

.look-for-4 {
    padding: 20px 10px 20px 10px;
}

.look-for-5 span {
    width: 90px;
    height: 73px;
    line-height: 70px;
}

.look-for-5 img {
    width: 70%;
}

.look-for-5 h3 {
    font-size: 16px;
    line-height: 22px;
    padding: 15px 0 0 20px;
}

.look-for-4 p {
    font-size: 13px;
    line-height: 24px;
}

.look-for-6 {
    text-align: left;
}

.look-for-6 h2 {
    font-size: 20px;
}

.look-for-6 p {
    font-size: 13px;
    line-height: 24px;
}

.look-img-7 h3 {
    font-size: 20px;
}

.look-img-7 p {
    font-size: 13px;
    line-height: 24px;
}

.look-img-7 a {
    padding: 10px 10px 10px 10px;
    font-size: 12px;
    line-height: 20px;
}

.look-for-8:before {
    top: 330px;
    right: 5px;
}

.look-for-8:after {
    top: 40px;
    left: 5px;
}

}
@media only screen and (min-width: 768px) and (max-width: 1024px){

section.Header {
    overflow: hidden;
}

section.Banner {
    overflow: hidden;
}

section.Home-Sec-1 {
    overflow: hidden;
}

section.Side-Banner-1 {
    overflow: hidden;
}

section.Home-Services-1 {
    overflow: hidden;
}

section.Home-career-2 {
    overflow: hidden;
}

section.Side-Banner-2 {
    overflow: hidden;
}

section.Our-Team {
    overflow: hidden;
}

section.Sec-Form {
    overflow: hidden;
}

section.Testimonial {
    overflow: hidden;
}

section.Side-Banner-3 {
    overflow: hidden;
}

section.First-Footer {
    overflow: hidden;
}

.head-1 {
    position: relative;
    right: 20px;
}

.head-1 img {
    width: 100%;
}

.head-2 {
    padding: 0;
    text-align: center;
}

.head-2 button {
    position: relative;
    left: 460px;
    border: 2px solid #fff !important;
    top: -10px;
}

.dropdown-1st .dropdown-menu.show {
    width: 50%;
    position: relative;
    left: 100px;
    text-align: center;
}

.dropdown-2nd .dropdown-menu.show {
    width: 50%;
    position: relative;
    left: 100px;
    text-align: center;
}

section.Banner {
    padding: 70px 0 40px 0;
}

.ban-1 {
    position: relative;
    right: 20px;
}

.ban-1 h1 {
    font-size: 30px;
}

.ban-1 h2 {
    font-size: 24px;
}

.ban-1 p {
    font-size: 14px;
}

.ban-1 a {
    font-size: 13px;
    padding: 0 20px 0 20px;
}

.home-s-1 {
    padding: 20px 10px 20px 10px;
    top: -25px;
}

.home-s-1 h3 {
    font-size: 20px;
}

.home-s-1 p {
    font-size: 10px;
}

.home-s-1 a {
    font-size: 12px;
    padding: 0 20px 0 20px;
    line-height: 40px;
}

.side-1 img {
    width: 171%;
}

.side-2 h3 {
    font-size: 20px;
}

section.Banner:before {height: 47%;}

.side-2 p {
    font-size: 12px;
    line-height: 24px;
}

.side-2 a {
    font-size: 12px;
    padding: 0 30px 0 30px;
    height: 37px;
    line-height: 40px;
}

.side-2 {
    padding: 20px 0 20px 19px;
}

.side-1 {
    position: relative;
    top: 0px;
    right: 120px;
}

.h-ser h3 {
    font-size: 26px;
}

.h-ser p {
    font-size: 13px;
    padding: 0;
    line-height: 24px;
}

.h-ser-4 h3 {
    font-size: 18px;
}

.h-ser-4 h3:after {
    display: none;
}

.h-ser-3 img {
    width: 150%;
}

.h-ser-1 p {
    font-size: 13px;
    line-height: 24px;
}

.home-car-1 {
    padding: 30px 10px 30px 10px;
}

.home-car-2 .slick-dots {
    position: absolute;
    right: 150px;
}

.side-3 h3 {
    font-size: 20px;
}

.side-3 p {
    font-size: 10px;
    line-height: 24px;
}

.side-3 a {
    font-size: 12px;
    padding: 0 30px 0 30px;
    height: 37px;
    line-height: 40px;
}

.side-4 {
    position: relative;
    right: 55px;
}

.side-4 img {
    width: 162%;
}

.side-3 {
    padding: 20px 10px 0 0;
}

.team h3 {
    font-size: 20px;
}

.team p {
    font-size: 14px;
}

.team-1 h3 {
    font-size: 15px;
}

.team-1 span {
    font-size: 10px;
}

.team-1 p {
    font-size: 12px;
}

.test h2 {
    font-size: 22px;
}

.test p {
    font-size: 14px;
}

.test-3 p {
    font-size: 10px;
}

.test-3 h3 {
    font-size: 16px;
}

.test-3 h4 {
    font-size: 10px;
}

.side-5 h3 {
    font-size: 18px;
    line-height: 33px;
}

.side-5 p {
    font-size: 13px;
    line-height: 24px;
}

.side-6 a {
    font-size: 13px;
    padding: 0 30px 0 30px;
}

.side-5 {
    padding: 0 0 0 20px;
}

section.Side-Banner-3 .container {
    padding: 20px 0 20px 0;
}

section.Testimonial {
    padding: 0;
}

.side-6 {
    position: relative;
    right: 15px;
}

.ft-1 img {
    width: 100%;
}

.ft-1 p {
    font-size: 10px;
    line-height: 16px;
}

.ft-2 h3 {
    font-size: 15px;
}

.ft-3 h3 {
    font-size: 15px;
}

.ft-4 h3 {
    font-size: 15px;
}

.ft-5 h3 {
    font-size: 15px;
}

.ft-4 ul li a {
    font-size: 9px;
}

.ft-3 ul li a {
    font-size: 9px;
}

.ft-2 ul li a {
    font-size: 9px;
}

.ft-5 p {
    font-size: 9px;
}

.ft-5 ul li a {
    font-size: 8px;
}

.ft-5 ul li span {
    font-size: 8px;
}

.ft-icon {
    text-align: left;
    width: 140%;
    position: relative;
    right: 25px;
}

.ft-icon a {
    font-size: 8px;
}

}
@media only screen and (min-width: 600px) and (max-width: 960px){

section.Header {
    overflow: hidden;
}

section.Banner {
    overflow: hidden;
}

section.Home-Sec-1 {
    overflow: hidden;
}

section.Side-Banner-1 {
    overflow: hidden;
}

section.Home-Services-1 {
    overflow: hidden;
}

section.Home-career-2 {
    overflow: hidden;
}

section.Side-Banner-2 {
    overflow: hidden;
}

section.Our-Team {
    overflow: hidden;
}

section.Sec-Form {
    overflow: hidden;
}

section.Testimonial {
    overflow: hidden;
}

section.Side-Banner-3 {
    overflow: hidden;
}

section.First-Footer {
    overflow: hidden;
}

}