::selection {
  background-color: #e45447;
  color: #fff; }

body {
  color: #777777;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.625em;
  position: relative; }

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

a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }

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

/**
 *  Typography
 *
 **/

h1, h2, h4 {
  font-family: "Poppins", sans-serif;
  color: #222222;
  line-height: 1.2em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h4 {
  font-size: 18px; }

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.mt-80 {
  margin-top: 80px; }

.mb-50 {
  margin-bottom: 100px; }

.mb-80 {
  margin-bottom: 80px; }

.preloader-area {
  background-color: #e45447;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999; }
  .preloader-area .loader-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .preloader-area .loader {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-width: 30px;
    border-style: double;
    border-color: transparent #fff;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite; }
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.section-gap {
  padding: 150px 0; }
  @media (max-width: 1024px) {
    .section-gap {
      padding: 60px 0; } }

.section-gap-top {
  padding-top: 150px; }
  @media (max-width: 1024px) {
    .section-gap-top {
      padding: 60px 0; } }

.section-gap-bottom-90 {
  padding-bottom: 130px; }
  @media (max-width: 1024px) {
    .section-gap-bottom-90 {
      padding-bottom: 30px; } }

.section-title {
  margin-bottom: 80px; }
  @media (max-width: 1024px) {
    .section-title {
      margin-bottom: 30px; } }
  .section-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 70px;
    text-transform: capitalize;
    position: relative;
    line-height: 44px; }
    @media (max-width: 1024px) {
      .section-title h2 {
        font-size: 40px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .section-title h2 {
        font-size: 30px; } }
    .section-title h2:before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -35px;
      width: 10px;
      height: 10px;
      background: #e45447;
      border-radius: 7px; }
      @media (max-width: 1024px) {
        .section-title h2:before {
          bottom: -15px; } }
    .section-title h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -31px;
      width: 100px;
      height: 2px;
      background: #e45447; }
      @media (max-width: 1024px) {
        .section-title h2:after {
          bottom: -11px; } }

.primary-btn {
  color: #fff;
  padding: 0 52px;
  background: #e45447;
  overflow: hidden;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #e45447;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-align: center;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 767px) {
    .primary-btn {
      padding: 0 35px; } }
  .primary-btn:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 13px 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -moz-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    color: #fff; }
    @media (max-width: 767px) {
      .primary-btn:before {
        padding: 8px 0; } }
  .primary-btn:hover {
    background: #fff;
    border: 1px solid #e45447; }
    .primary-btn:hover:before {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      -moz-transform: translate3d(0, 100%, 0);
      -ms-transform: translate3d(0, 100%, 0);
      -o-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0); }
    .primary-btn:hover span {
      opacity: 1;
      color: #e45447;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); }
      .primary-btn:hover span:nth-child(1) {
        -webkit-transition-delay: 0.01s;
        -moz-transition-delay: 0.01s;
        -o-transition-delay: 0.01s;
        transition-delay: 0.01s; }
      .primary-btn:hover span:nth-child(2) {
        -webkit-transition-delay: 0.05s;
        -moz-transition-delay: 0.05s;
        -o-transition-delay: 0.05s;
        transition-delay: 0.05s; }
      .primary-btn:hover span:nth-child(3) {
        -webkit-transition-delay: 0.1s;
        -moz-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        transition-delay: 0.1s; }
      .primary-btn:hover span:nth-child(4) {
        -webkit-transition-delay: 0.15s;
        -moz-transition-delay: 0.15s;
        -o-transition-delay: 0.15s;
        transition-delay: 0.15s; }
      .primary-btn:hover span:nth-child(5) {
        -webkit-transition-delay: 0.2s;
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s; }
      .primary-btn:hover span:nth-child(6) {
        -webkit-transition-delay: 0.25s;
        -moz-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s; }
  .primary-btn span {
    display: inline-block;
    padding: 12px 0;
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(10, 10px, 0);
    -moz-transform: translate3d(10, 10px, 0);
    -ms-transform: translate3d(10, 10px, 0);
    -o-transform: translate3d(10, 10px, 0);
    transform: translate3d(10, 10px, 0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -moz-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); }
    @media (max-width: 767px) {
      .primary-btn span {
        padding: 8px 0; } }

b {
  color: #e45447; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 30px; }

h4 {
  font-size: 18px; }

h1, h2, h4 {
  line-height: 1.5em; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-menu {
  padding-top: 20px; }

#header {
  padding: 0px 0px 20px 0px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997; }

#logo {
  margin-left: 15px; }
  @media (max-width: 673px) {
    #logo {
      margin-left: 20px; } }

#header #logo img {
  padding: 0;
  margin: 0; }

@media (max-width: 768px) {

  #header #logo img {
    max-height: 40px; } }
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none; }

.nav-menu li {
  position: relative;
  white-space: nowrap; }

.nav-menu > li {
  float: left; }

/* Nav Menu Arrows */

/* Nav Meu Container */
#nav-menu-container {
  margin: 0;
  margin-left: 140px; }

.nav-menu a {
  padding: 0px;
  text-decoration: none;
  display: inline-block;
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  outline: none;
  font-family: "Poppins", sans-serif; }
  .nav-menu a.active, .nav-menu a:hover {
    color: #e45447 !important; }

.nav-menu > li {
  margin-right: 50px; }
  .nav-menu > li:last-child {
    margin-right: 0; }

/* Mobile Nav Toggle */

@media (max-width: 900px) {

  #nav-menu-container {
    display: none; } 

}
/* Mobile Nav Styling */

/* Mobile Nav body classes */

.home-banner-area {
  background: url(img/banner-bg-4.jpg) center;
  background-size: cover; 

}

@media (max-width: 1000px) {
  .home-banner-area {
    background: url('img/banner-bg-4-mob.jpg') center; /* Replace 'another-image.jpg' with your desired image file */
    background-size: cover;
  }
}

.banner-content {
  text-align: left; }
  .banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 66px;
    margin-top: 30px;
    margin-bottom: 30px;
}
    @media (max-width: 1024px) {
      .banner-content h1 {
        font-size: 45px; 
	    margin-top: 0px;
	    margin-bottom: 0px;
		} }
    @media (max-width: 576px) {
      .banner-content h1 {
        font-size: 35px; 
	    margin-top: 0px;
	    margin-bottom: 0px;
		} }
    @media (max-width: 325px) {
      .banner-content h1 {
        font-size: 32px; 
	    margin-top: 0px;
	    margin-bottom: 0px;
		} }
  .banner-content .designation {
    max-width: 390px;
    font-size: 30px;
    font-weight: 400;
    line-height: 42px; }
    @media (max-width: 876px) {
      .banner-content .designation {
        font-size: 22px;     max-width: 200px; line-height: 32px; } }
    .banner-content .designation .developer {
      color: #90acd1; }

	  .brand-logo {
	    width: 55%; /* Default width */
	  }

	  @media (max-width: 700px) {
	    .brand-logo {
	      width: 90%; /* Width for screens that are 700px wide or less */
	    }
	  }

.brand-wrap {
  background: #fff;
  margin-top: -75px;
  border-radius: 100px;
  padding: 34px 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 20px 50px rgba(153, 153, 153, 0.2);
  border: 1px solid rgba(214, 214, 214, 0.11); }
  @media (max-width: 991px) {
    .brand-wrap {
      padding-top: 20px;
  	  padding-bottom: 20px;
      margin-top: -50px; 
  	  border-radius: 0px;
 } }

  .brand-wrap .single-brand {
    text-align: center;
	

	
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
    .brand-wrap .single-brand:hover {
      -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      -ms-filter: grayscale(100%);
      -o-filter: grayscale(100%);
      filter: grayscale(100%);
      opacity: .2; 
	

	
	}	 

/*-------- Start About Area ------------*/
.about-area .section-title {
  margin-bottom: 0; }
  @media (max-width: 1024px) {
    .about-area .section-title {
      padding-bottom: 0px; } }
@media (max-width: 991px) {
  .about-area .about-left {
    display: none; } }

/*-------- End About Area ------------*/
	
/*--------- Start Work Area -------------*/
.work-area {
  background: #f9f9ff; }
  @media (max-width: 1024px) {
    .work-area .row.mb-80 {
      margin-bottom: 30px; } }
  .work-area .section-title {
    margin-bottom: 0; }

/*--------- End Work Area -------------*/

.single-job {
  background-color: #f9f9ff;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; }
  @media (max-width: 576px) {
    .single-job .top-sec {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .single-job .top-left h4 {
    color: #000;
    font-size: 21px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    font-weight: 700; }
    @media (max-width: 1199px) {
      .single-job .top-left h4 {
        font-size: 18px; } }
  @media (max-width: 576px) {
    .single-job .bottom-sec {
      margin-top: 30px; } }
  .single-job .primary-btn {
    padding: 0 28px;
    background: #fff;
    color: #222222;
    border: 1px solid #90acd1; }
    @media (max-width: 1199px) {
      .single-job .primary-btn {
        padding: 0 15px; } }
    .single-job .primary-btn span {
      color: #222222; }
    .single-job .primary-btn:before {
      color: #222222; }
  .single-job:hover {
    background: #90acd1;
    cursor: pointer;
    color: #fff; }
    .single-job:hover .top-left h4 {
      color: #fff; }

.service-area {
  background: #f9f9ff; }

.testimonials_area {
  position: relative; }

.contact-area {
  background: #90acd1; }
  @media (max-width: 1024px) {
    .contact-area .row.mt-80 {
      margin-top: 40px; } }
  .contact-area .contact-title {
    color: #fff;
    text-align: center; }
    .contact-area .contact-title h2 {
      color: #fff;
      position: relative;
      margin-bottom: 45px;
      font-size: 48px;
      line-height: 45px; }
      @media (max-width: 1024px) {
        .contact-area .contact-title h2 {
          font-size: 40px;
          margin-bottom: 30px; } }
      @media (max-width: 576px) {
        .contact-area .contact-title h2 {
          font-size: 30px; } }
      .contact-area .contact-title h2:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -15px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: #fff; }
        @media (max-width: 1024px) {
          .contact-area .contact-title h2:before {
            bottom: -5px; } }
      .contact-area .contact-title h2:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -19px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background: #fff;
        width: 10px;
        height: 10px;
        border-radius: 8px; }
        @media (max-width: 1024px) {
          .contact-area .contact-title h2:after {
            bottom: -9px; } }
    .contact-area .contact-title p {
      max-width: 540px;
      margin: 0 auto; }

.contact-box {
  text-align: center; }
  .contact-box h4 {
    font-size: 21px;
    font-weight: 700;
    color: #fff; }


.footer-area {
  padding: 100px 0; }
  @media (max-width: 1024px) {
    .footer-area {
      padding: 60px 0; } }
  .footer-area .footer-logo {
    text-align: center; }

