/* ===================
   Base styles
   =================== */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
figure{
    margin: 0;
}
textarea {
    resize: vertical;
}

a{
    transition: .3s ease;
}

a:focus, a:active, a:hover{
    outline: none;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
    color:#d3b481;
    text-transform: uppercase;
    font-weight: 900;
    line-height:1.5;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 35px;
}

h4 {
    font-size: 24px;
}

p{
    color:#000;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}

/* ===================
   fonts
   =================== */
@font-face {
  font-family: "brooks_rounded_light";
  src: url("../../fonts/brooks_rounded_light.eot"); /* IE9 Compat Modes */
  src: url("../../fonts/brooks_rounded_light.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../../fonts/brooks_rounded_light.otf") format("opentype"), /* Open Type Font */
    url("../../fonts/brooks_rounded_light.svg") format("svg"), /* Legacy iOS */
    url("../../fonts/brooks_rounded_light.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../../fonts/brooks_rounded_light.woff") format("woff"), /* Modern Browsers */
    url("../../fonts/brooks_rounded_light.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

body{
    font-family:"brooks_rounded_light", "brooks_rounded", "Helvetica", sans-serif;
}

a:focus{outline: 0;}
*:focus{outline:none;}

.alpha{ 
    margin-left: 0 !important; padding-left: 0 !important; 
    
}
.omega{
    margin-right: 0 !important; padding-right: 0 !important; 
}

ul {
    padding-left:15px;
    margin-bottom:20px;
}

li {
    color:#fff;
    margin-bottom:10px;
    text-align:left;
}
/* -------- Pre Loader -------- */
#preloader {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fefefe;
    z-index:9999;
}

.loader {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 10px;
    background-image: url(../../images/spinner.gif);
    background-repeat:no-repeat;
    background-position:center;
    margin:-75px 0 0 -50px;    
}

#status {
    width:200px;
    height:200px;
    position:absolute;
    left:50%;
    top:50%;
    background-image:url('../../images/preloader.gif');
    background-repeat:no-repeat;
    background-position:center;
    margin:-100px 0 0 -100px;
}

/* =========================
   Haeder
   ========================= */
 /*  @import url('../../css/assets/header.css');*/
 header {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header nav {
    padding: 12px 0;
    margin-bottom: 0 !important;
    border-radius:0;
}
header nav .navbar-brand {
    padding: 0;
}
header nav .navbar-header {
    margin-top: 0;
}
header nav ul.nav {
    margin-top: 15px !important;
}
header nav ul.nav li a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
    color: #263748;
    padding: 0 0 5px;
    line-height: 25px;
}
header nav ul.nav li{
    padding: 0 12px;
}
header nav ul.nav li a:hover {
    color: #f62459;
    background: none;
}
header nav ul.nav li a:focus {
    background: none;
    outline: none;
}
header nav ul.nav li a:active {
    background: none;
    outline: none;
}
header nav ul.nav li.active a {
    color: #f62459;
    border-bottom: 2px dotted #f62459;
}
header nav ul.nav li:last-child {
    position: relative;
}
header nav ul.nav li:last-child a {
    padding-bottom: 20px;
    padding-right:0;
}
header nav ul.nav li:last-child a:hover + form {
    visibility: visible;
    opacity: 1;
}
header nav ul.nav li:last-child form {
    position: absolute;
    width: 200px;
    background: #f62459;
    padding: 5px;
    right: -15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
header nav ul.nav li:last-child form input {
    float: left;
    width: 150px;
    display: block;
    height: 40px;
    border: none;
    padding: 0 10px;
}
header nav ul.nav li:last-child form button {
    float: left;
    width: 40px;
    display: block;
    height: 40px;
    border: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
header nav ul.nav li:last-child form button:hover {
    background: #f62459;
    color: #fff;
}
header nav ul.nav li:last-child form:before {
    border-bottom: 20px solid #f62459;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    position: absolute;
    right: 8px;
    top: -19px;
}
header nav ul.nav li:last-child form:hover {
    visibility: visible;
    opacity: 1;
}
header nav ul.nav li:last-child form:focus {
    visibility: visible;
    opacity: 1;
}
header nav ul.nav li:last-child form:active {
    visibility: visible;
    opacity: 1;
}
.sticky-wrapper.is-sticky nav {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 1px 3px #ddd;
    transition: all 0.3s ease 0s;
    border-radius:0;
}
.sticky-wrapper nav {
    transition: all 0.3s ease 0s;
}

@media (max-width: 640px) {
    header .navbar-brand>img {max-width: 50px !important;}
}

/* =========================
   Intro
   ========================= */
.intro {
    position: relative;
}
.intro #intro-carousel .carousel-inner .item figure {
    position: relative;
}
.intro #intro-carousel .carousel-inner .item figure img {
    width: 100%;
}
.intro #intro-carousel .carousel-inner .item figure figcaption {
    position: absolute;
    left: 0;
    top: 200px;
    width: 100%;
}
.intro #intro-carousel .carousel-inner .item figure figcaption h1 {
    font-size: 60px;
    width: 800px;
    color: #fff;
    line-height: 1.1;
    font-weight: 600;
}
.intro #intro-carousel .carousel-inner .item figure figcaption h1 span:first-child {
    display: block;
    color: #fff;
}
.intro #intro-carousel .carousel-inner .item figure figcaption h1 span:last-child {
     color: #fff;
     display: block;
 }

.intro #intro-carousel .carousel-inner .item figure figcaption a {
  background: #f62459 none repeat scroll 0 0;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  padding: 18px 40px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.intro #intro-carousel .carousel-inner .item figure figcaption a i {
    padding-left: 5px;
    position: relative;
    top: 1px;
}
.intro #intro-carousel .carousel-inner .item figure figcaption a:hover {
    text-decoration: none;
}
.intro #intro-carousel .carousel-inner .item figure figcaption a:before {
    background: #282828 none repeat scroll 0 0;
    color: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    border-radius: 3px;
}
.intro #intro-carousel .carousel-inner .item figure figcaption a:hover:before {
    width: 100%;
}
.intro #intro-carousel .left-slide,
.intro #intro-carousel .right-slide {
    bottom: 150px;
    display: inline-block;
    font-size: 50px;
    position: absolute;
    right: 125px;
    z-index: 20;
    color: #282828;
    width:60px;
    height:18px;
}
.intro #intro-carousel .left-slide:hover,
.intro #intro-carousel .right-slide:hover {
    color: #f62459;
}
.intro #intro-carousel .left-slide {
    margin-right: 70px;
}
.intro #intro-carousel .left-slide:before{
    position:absolute;
    content:"";
    width:80%;
    height:5px;
    background:#b3b3b3;
    left:0;
    top:12px;
    transition:.3s ease;
}
.intro #intro-carousel .left-slide:after{
    position:absolute;
    content:"";
    width:25px;
    height:25px;
    border-left:5px solid #b3b3b3;
    border-bottom:5px solid #b3b3b3;
    left:0;
    transform:rotate(45deg);
    top:2px;
    transition:.3s ease;
}
.intro #intro-carousel .right-slide:before{
    position:absolute;
    content:"";
    width:80%;
    height:5px;
    background:#b3b3b3;
    right:0;
    top:12px;
    transition:.3s ease;
}
.intro #intro-carousel .right-slide:after{
    position:absolute;
    content:"";
    width:25px;
    height:25px;
    border-right:5px solid #b3b3b3;
    border-bottom:5px solid #b3b3b3;
    right:0;
    transform:rotate(-45deg);
    top:2px;
    transition:.3s ease;
}
.intro #intro-carousel .left-slide:hover:before{
    background:#f62459;
}
.intro #intro-carousel .left-slide:hover:after{
    border-color:#f62459;
}
.intro #intro-carousel .right-slide:hover:before{
    background:#f62459;
}
.intro #intro-carousel .right-slide:hover:after{
    border-color:#f62459;
}
.intro .intro-bottom {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/bot-triangle.png") no-repeat scroll center bottom;
    height: 220px;
}
.intro-bottom > a{
    position:relative;
    display:inline-block;
    width:30px;
    height:45px;
    opacity: 0;
}
.intro-bottom > a::before {
    border: 3px solid #f62459;
    border-radius: 15px;
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left:0;
    top:0;
}
.intro-bottom > a::after {
    border-bottom: 3px solid #f62459;
    color: #f62459;
    content: "";
    font-family: "FontAwesome",sans-serif;
    font-size: 12px;
    font-weight: 600;
    height: 22px;
    left: 0;
    padding-top: 2px;
    position: absolute;
    text-align: center;
    width: 100%;
}

/* Section Heading Style */
.section-number {
    border: 1px solid #f62459;
    border-radius: 100px;
    color: #f62459;
    display: inline-block;
    font-size: 25px;
    height: 40px;
    margin-left: 50px;
    text-align: center;
    width: 40px;
    position: relative;
}
.section-number:before {
    background: #f62459 none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: -50px;
    position: absolute;
    top: 20px;
    width: 50px;
}
.section-number:after {
    background: #f62459 none repeat scroll 0 0;
    content: "";
    height: 138px;
    left: -50px;
    position: absolute;
    top: -117px;
    width: 1px;
}

h2.section-heading {
    margin-bottom: 60px;
}

/* =========================
   About
   ========================= */

.about {
    position: relative;
    padding-bottom: 100px;
}
.about i {
    color: #f62459;
    font-size: 28px;
}
.about h3 {
    margin: 20px 0;
}
.about a {
    font-size: 15px;
    text-transform: uppercase;
    color: #f62459;
    font-weight: 400;
}
.about .col-sm-6 {
    margin-top: 30px;
}

.about h4 {
    color: #263748;
}

.about-single {
    margin-bottom: 50px;
}

/* =========================
   Timeline
   ========================= */
.timeline {
    margin-top: 80px;
}

/* =========================
   Companines
   ========================= */
.company {
    position: relative;
    padding-top: 180px;
    background: #263748 url("../../images/company_bottom.png") no-repeat scroll right bottom;
    background-size: 50%;
}

.company .company-text > h4 {
    cursor: pointer;
}

@media (max-width: 640px) {
    .company {
        padding-top: 120px;
        text-align: center;
    }
}

.company .shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/top-triangle.png") no-repeat scroll center bottom;
    height: 250px;
}
.company .company-text {
    margin-bottom: 30px;
}

.company .company-text p, .main_div p {
    color: #fff;
    transition: 0.3s ease;
}

.main_div .close {
    padding: 2px 0 0 30px;
    text-transform: uppercase;
    text-align: left;
    display: inline-block;
    float: left;
    color: #d3b481;
    text-shadow: none;
    opacity: 1;
    font-size: 14px;
    background-image: url(../../images/left-arrow.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    margin: 30px 0px;
}


.company .primary-button{
   background-color: transparent;  
    border-radius: 0;
    color: #d3b481;
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
    padding: 15px 40px 15px 0;
    text-transform: uppercase;
    z-index: 1;   
}

.company .primary-button:hover, .company .primary-button:before {
    background: transparent;
    color: #fff;
}

.company .concept-image {
    margin-top: -150px;
}

.company .shape-bot {
    text-align: center;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/bot-triangle.png") no-repeat scroll center bottom;
    height: 220px;
}


.company button {
    border: none;
}

@media (max-width: 1024px) {
 .company h4 {font-size: 23px;}
}

@media (max-width: 640px) {
 .company {background-size: 100%;}
 .company .primary-button {padding: 15px 0 15px 0;} 
}


/* =========================
   CSR
   ========================= */
.csr {
    padding-bottom: 20px;
    position: relative;
}

.csr:after {
    content: '';
    position: absolute;
    background: url(../../images/csr_bottom.png) no-repeat;
    right: 0;
    height: 425px;
    width: 424px;
    z-index: 1;
    background-size: 100%;
    bottom: -135px;

}

@media (max-width: 640px) {
    .csr {
        padding-top: 40px;
        text-align: center;
    }
}

.csr .shape-bot {
    background: #fff url(../../images/csr_bottom.png) no-repeat;
    position: absolute;
    background-size: 30%;
    bottom: -22px;
    width: 100%;
    height: 100%;
    z-index: -1;
    right: 0;
    left: 0;
    background-position: right center;
}

.csr .csr-text {
    margin-bottom: 30px;
}


/* =========================
   Careers
   ========================= */
.careers {
    position: relative;
    padding-top: 175px;
    padding-bottom: 200px;
    background: #263748 url(../../images/careers-bottom.png) no-repeat  74% 120px;
}

@media (max-width: 640px) {
    .careers {
        padding-top: 120px;
        text-align: center;
    }
}

@media (max-width: 1366px) {
 .careers {background-position-x: 100%;}
}

@media (max-width: 768px) {
 .careers {background:#263748;}
}

.careers .shape-top {
    top: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/top-triangle.png") no-repeat scroll center bottom;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
}

.careers .shape-bot {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/bot-triangle.png") no-repeat scroll center bottom;
    height: 220px;
}

.careers-text p {
    color: #fff;
}

/* =========================
   resume upload
   ========================= */


#resumeModal .shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/top-triangle.png") no-repeat scroll center bottom;
    height: 242px;
}

#resumeModal .shape-bot {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/bot-triangle.png") no-repeat scroll center bottom;
    height: 220px;
    background-size: 100%;
}

#resumeModal .modal-header {
    border: none;
}

#resumeModal .close {
    font-size: 52px;
    position: absolute;
    z-index: 1;
    right: 3px;
    color: #263748;
    top: -5px;
}

#resumeModal .modal-content {
    border: none;
    border-radius:0;
    background: #263748;
    position: relative;
    padding-top: 116px;
    padding-bottom: 90px;    
}
#resumeModal h4 { 
    line-height: 1.5;
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

#resumeModal #reused_form {
    width: 90%;
    margin: 0 auto;
}

#resumeModal label {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin:20px 0 10px;

}

#resumeModal input {
display: block;
    width: 100%;
    border-top: 0;
    border-right: 0;
    border-bottom: 2px solid #fbfbfb;
    border-left: 0;
    background: none;
    padding: 0;
    box-shadow: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    color: #fbfbfb;
    font-weight: 400;
    border-radius: 0;
    font-size: 16px;
    height: 100%;
    margin: 0;
}

#resumeModal .upload-btn-wrapper input  {
    border: none;
}

#resumeModal .fileupload {
    border: none !important;
}

#resumeModal input:focus {
    border-color: #727272;
    box-shadow: none;
}
#resumeModal  input:active {
    border-color: #727272;
    box-shadow: none;
}
#resumeModal  input::-moz-placeholder {
    opacity: 1;
    color: #fff;
    text-transform: uppercase;
}
#resumeModal  input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff;
    text-transform: uppercase;    
}
#resumeModal  input[type="text"] {
    /* margin-bottom: 50px; */
}
#resumeModal  input[type="email"] {
    float: right;
}
#resumeModal textarea {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: none;
    padding: 10px 0;
    box-shadow: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    color: #fff;
    font-weight: 400;
    resize: none;
    height: 100px;
    font-size: 16px;
    border-radius: 0;
}
#resumeModal  textarea::-moz-placeholder {
    opacity: 1;
    color: #fff;
    text-transform: uppercase;    
}
#resumeModal  textarea::-webkit-input-placeholder {
    opacity: 1;
    color: #fff;
    text-transform: uppercase;    
}
#resumeModal  textarea:active {
    padding: 10px 0;
}
#resumeModal  textarea:focus {
    padding: 10px 0;
    border-color: #727272;
}
#resumeModal  button[type="submit"] {
    background: #16171f none repeat scroll 0 0;
    border: medium none;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 45px;
    position: relative;
    text-transform: uppercase;
    width: auto;
    z-index: 1;
}
#resumeModal  button[type="submit"]:hover {
    text-decoration: none;
    color: #fff;
}
#resumeModal  button[type="submit"]:before {
    background: #282828 none repeat scroll 0 0;
    color: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    border-radius: 3px;
}
#resumeModal  button[type="submit"]:hover:before {
    width: 100%;
    color: #fff;
}

/* =========================
   Team
   ========================= */
.team {
    position: relative;
    padding-bottom: 300px;
}

.team:after {
    content: '';
    position: absolute;
    background: url(../../images/team_bottom_shape.png) no-repeat;
    right: 0;
    height: 414px;
    width: 610px;
    z-index: 1;
    background-size: 100%;
    bottom: -150px;
}


@media (max-width: 640px) {
    .team {
        padding-top: 40px;
        text-align: center;
        background:none; 
        padding-bottom: 60px;
    }
}

.team p {
    color: #263748;
}

.team .gteam {
    height: 540px;
    width: 100%;
    object-fit: contain;
}

.team .shape-bot {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/blue-shape.png") no-repeat scroll center bottom;
    height: 220px;
}

/* =========================
   Contact
   ========================= */

.contact {
    background: #263748;
    position: relative;
    padding-bottom: 180px;
}

.contact .shape-top {
    top: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/top-triangle.png") no-repeat scroll center bottom;
    height: 250px;
    position: absolute;
}

.contact .shape-bot {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent url("../../images/bot-triangle.png") no-repeat scroll center bottom;
    height: 220px;
}

.contact .section-number {
    margin-top: 180px;
}


.contact .contact-text p {
    color: #fff;
}

.contact .contact-text h4 {
    color: #fff;
    margin-bottom: 30px;
}

.contact .contact-text p + p {
    margin-bottom: 20px;
    margin-top: 40px;
}

.contact .contact-text a {
    color: #fff;
    display: block;
}

.contact .contact-text a:hover {
    color: #d3b481;
}

.contact #map  {
    width: 45%;
    height: 100%;
    position: absolute;
    right: 0;
    padding-top: 35px;    
}

/* =========================
   Footer
   ========================= */
footer {
    padding: 50px 20px 0;
    background: #f62459;
    position: relative;
}


footer .shape-top {
    height: 80px;
    left: 0;
    position: absolute;
    top: -80px;
    width: 100%;
}
footer img.footer-logo {
    display: block;
    margin: 0 auto;
}
footer p.copyright-text {
    text-align: center;
    margin: 20px 0 5px;
    color: #263748;
}
footer p.created-by {
    font-size: 14px;
    text-align: center;
}
footer ul.footer-social {
    text-align: center;
}
footer ul.footer-social li {
    margin-right: 40px;
}
footer ul.footer-social li:last-child {
    margin-right: 0;
}
footer ul.footer-social li a {
    font-size: 24px;
    color: #fff;
}

/* =================
   Helper classes
   ================= */
   
/* Primary Button */
.primary-button {
    background: #f62459 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
    padding: 15px 40px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}
.primary-button i {
    padding-left: 5px;
    position: relative;
    top: 1px;
}
.primary-button:hover {
    text-decoration: none;
    color: #fff;
}
.primary-button:before {
    background: #282828 none repeat scroll 0 0;
    color: #fff;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    transition: .3s ease;
}
.primary-button:hover:before {
    width: 100%;
    color: #fff;
}

/* Fade Effect */
.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-control {
    z-index: 2;
}

/* Hiidden Class */
.hidden {
    display: none !important;
}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.invisible {
    visibility: hidden;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

@media (max-width: 2560px) { 
    .team:after {bottom: -314px; height: 700px; width: 900px;}
    .csr:after {bottom: -190px; height: 525px; width: 590px;}
}

@media (max-width: 1920px) { 
    .csr:after {bottom: -189px; height: 470px; width: 496px;}
    .team:after {bottom: -160px; height: 633px; width: 959px;}
}

@media (max-width: 1680px) { 
    .csr:after {bottom: -155px; height: 447px; width: 492px;}
    .team:after {bottom: -144px;}
}


@media (max-width: 1440px) { 
    .csr:after {bottom: -139px;}
    .team:after {bottom: -145px; height: 545px; width: 800px;}
    .carousel-inner {max-height: 670px;}
}


@media (max-width: 1366px) { 
    .csr:after {bottom: -134px; height: 406px; width: 446px;}
    .team:after {bottom: -143px;}
}

@media  (max-width: 1280px) { 
    .csr:after {bottom: -194px; width: 374px;}
    .team:after {bottom: -135px;}
}

@media only screen and (max-width: 1200px) {
    .contact {
        padding-top: 0;
        margin-top: 0;
    }

    .team, .careers, .company {
        padding-top: 155px;
    } 

    .csr {
        padding-top: 13px;
    }

    .timeline > li > .timeline-panel {
        width: 45% !important;
    }    
}

@media (max-width: 1024px) { 
    .team {padding-top: 12px;}
    .csr:after {height: 364px; width: 309px;}
    .team:after {height: 462px; width: 650px;}
    .contact .section-number {margin-top: 155px;}
}

@media (min-width:641px) and (max-width:991px) {
    .timeline > li > .timeline-panel {
        width: 42% !important;
    }
    .careers, .company {
        padding-top: 125px;
    }
    .csr, .team {
        padding-top: 25px;
    } 

    .navbar-toggle .icon-bar {
        background-color: #cbad7b;
    }
        
}

@media (min-width:320px) and (max-width:991px) { 
    .csr:after, .team:after, .careers {
        display: none;
    }

    .team {
        padding-bottom: 60px;
    }
}

@media (max-width:768px) {  
    .contact .section-number {margin-top: 0;} 
    .team {padding-top: 112px; border-top: 1px solid #efefef;} 
}

@media (max-width:767px) { 

    header .navbar-brand>img {
        margin-left: 15px;
        width: 55px;
    }  

    .navbar-toggle .icon-bar {
        background-color: #cbad7b;
    } 
    
    .created-by {
        margin-bottom:0;
    }

}

@media (max-width:640px) {
    h2.section-heading {
        font-size: 40px;
       margin-bottom: 20px;
   } 
  
    h3 {
        font-size: 28px;
    }

    p {
        font-size: 14px;
    }

    .about, .contact {
        text-align: center;
    }

    .contact {
        padding-bottom: 100px;
    }     

    .section-number {
        margin-left: 0;

    }
    .section-number:before, .section-number:after {
        display: none;
    }

    #main-nav-sticky-wrapper {
     height: auto !important; 
    }

    .navbar-header .navbar-toggle {
        padding: 15px 10px;
    }

    .intro #intro-carousel .right-slide:after {
        top: 4px;
        width: 20px;
        height: 20px;
    }

    .intro #intro-carousel .right-slide:before {
        width: 80%;
    }

    .intro #intro-carousel .left-slide:before {
        width: 80%;
    }

    .intro #intro-carousel .left-slide:after {
        top: 4px;
        width: 20px;
        height: 20px;
    }    
 
}

@media screen and (max-device-width:767px) and (orientation:landscape){
    header .navbar-brand>img {max-width: 55px !important;}
}