/*
 * This code is done using html5boilerplate, bootstrap 4 and other fixes.
 */

/* ==========================================================================
   Base styles
   ========================================================================== */
html {
  font-size: 1em;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
}

p {
  margin-bottom: 1.3em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.414em 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
}

h1 {
  margin-top: 0;
  font-size: 3.157em;
}

h2 {
  font-size: 2.369em;
}

h3 {
  font-size: 1.777em;
}

h4 {
  font-size: 1.333em;
}

small,
.font_small {
  font-size: 0.75em;
}

::selection,
:focus {
  outline: none;
  border: none;
}

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

textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  position: relative;
}

video {
  width: 100%;
}

h1 {
  font-size: 48px;
  margin-bottom: 50px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 24px;
  margin: 0 0 50px;
  color: #393939;
}
p {
  font-size: 18px;
}

/* ===================
   Header Nav
   =================== */

.navbar {
  padding: 30px 40px;
  background-color: transparent;
}

.nav-bg {
  background-color: #fff;
  box-shadow: 0 1px 5px #736f6d;
  padding: 15px 40px;
  transition: all 0.7s ease;
}

.navbar-light .navbar-toggler {
  color: #000;
  border: none;
}

.navbar-light button:focus {
  outline: none;
}

.navbar-brand img {
  width: 100px;
}

.animated-icon3 {
  width: 25px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 100;
}

.animated-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.animated-icon3 span {
  background: #838383;
}

.animated-icon3 span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3 span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.animated-icon3.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 5px;
  left: 8px;
}

.animated-icon3.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.animated-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
  left: 8px;
}

/* ================================
   Slide menu with bootstrap Modal
   ================================ */

.menu-content {
  text-align: center;
  padding: 100px 57px 50px;
  border: none;
}

.menu-content ul {
  padding-left: 0;
  font-size: 40px;
  font-weight: 700;
  list-style: none;
  font-family: 'Roboto', sans-serif;
  text-align: right;
}

.menu-content ul li {
  margin-bottom: 20px;
}

.menu-content ul a {
  color: #f0f0f0;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    to right,
    #a1a1a1,
    #a1a1a1 50%,
    #f0f0f0 50%
  );
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.7s cubic-bezier(0, 0, 0.23, 1);
}

.menu-content ul a:hover {
  transition: all 0.7s cubic-bezier(0, 0, 0.23, 1);
  background-position: 0;
}

.menu-content ul a li {
  margin-bottom: 20px;
}

.modal-dialog {
  margin: 0;
  background-color: #1f1f1f;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 50px;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.close {
  float: right;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: none;
  opacity: 0.8;
}

/* ================================
   Home page
   ================================ */

/* Defining each section background and styles
* --------------------------------------- */
/*#home-1 {*/
/*background-image: url(http://tarunandrews.com/wp-content/uploads/2016/09/Comp1.gif);*/
/* background: url(../img/home/Banner.mp4) no-repeat center center; */
/* -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; */
/*}*/

/*#home-2 {*/
/*!*background-image: url(http://tarunandrews.com/wp-content/uploads/2016/09/Comp1.gif);*!*/
/*background: url(../img/home/home-2.jpg) no-repeat center center;*/
/*-webkit-background-size: cover;*/
/*-moz-background-size: cover;*/
/*-o-background-size: cover;*/
/*background-size: cover;*/
/*}*/

#home-banner-2 {
  background: url(../img/home/scroll-2-web.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

#kindle {
  padding: 6% 0 0 0;
  background: url(../img/home/kindle.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#kindle h6 a {
  color: #505050;
  text-decoration: none;
}

#ausum {
  background: url(../img/home/ausum.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
}
#ausum h6 a {
  color: #fff;
  text-decoration: none;
}

#aditi {
  background: url(../img/home/aditi.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#aditi h6 a {
  color: #505050;
  text-decoration: none;
}

#aditi-staffing {
  padding: 1% 0 0 0;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#aditi-staffing h6 a {
  color: #ffffff;
  text-decoration: none;
}

#dmonkey {
  background: url(../img/home/drunken-monkey.gif) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
}
#dmonkey h6 a {
  color: #fff;
  text-decoration: none;
}

#goyal {
  background: url(../img/home/goyal.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#goyal h6 a {
  color: #505050;
  text-decoration: none;
}

#brew {
  background: url(../img/home/brew-bunch.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#brew h6 a {
  color: #fff;
  text-decoration: none;
}

#hh {
  padding: 2% 0 0 0;
  color: #fff;
  background: url(../img/home/hh.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#hh h6 a {
  color: #fff;
  text-decoration: none;
}

#sarovar {
  padding: 2% 0 0 0;
  color: #505050;
  background: url(../img/home/sarovar.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#sarovar h6 a {
  color: #505050;
  text-decoration: none;
}

#mosip {
  padding: 1% 0 0 0;
  background: no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #505050;
}
#mosip h6 a {
  color: #505050;
  text-decoration: none;
}

.project-data {
  position: absolute;
  top: 25%;
  left: 10%;
}

.project-data h6 {
  font-size: 4em;
  padding: 0;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}

.homeProject {
  font-size: 1em;
  background-color: #323232;
  color: #fff;
  border-radius: 20px;
  padding: 7px 20px;
  font-weight: lighter;
}

.homeProject:hover {
  text-decoration: none;
  color: #fff;
}

/*#hh .homeProject{*/
/*background-color: #9adefd;*/
/*}*/

.home-banner-text {
  font-size: 28px;
  font-weight: bold;
  background-color: #15d4db;
  text-transform: uppercase;
  display: inline;
}

.home-2-content {
  padding-top: 130px;
}

/* mobile home banner */

@media (max-width: 768px) {
  #home-banner-2 {
    background: url(../img/home/scroll-2-mobile.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  }
  #kindle {
    background: url(../img/home/m-kindle.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #ausum {
    background: url(../img/home/m-ausum.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #aditi {
    background: url(../img/home/m-aditi.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #dmonkey {
    background: url(../img/home/drunken-monkey-mobile.gif);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #goyal {
    background: url(../img/home/m-goya.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #brew {
    background: url(../img/home/m-brew-bunch.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
  #mosip {
    background: url(../img/home/m-mosip.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
  }
}

/* Centered texts in each section
* --------------------------------------- */
.section {
  /*cursor: pointer;*/
  font-family: 'Roboto', sans-serif;
  background-size: cover;
  display: none;
}

.aditi-font,
.ausum-font {
  font-family: 'Lato', sans-serif;
}

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

.contact {
  background-color: #000008;
  margin: 141px auto 0;
  padding-bottom: 50px;
}

.contact h2 {
  color: #fff;
  font-size: 52px;
}

.contact h2 span {
  color: #d4303c;
}

.contact h6 {
  color: #c32d44;
  font-size: 20px;
}

.contact p {
  font-family: 'Roboto', sans-serif;
  color: #f4f4f4;
  margin-bottom: 5px;
  font-size: 23px;
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form .form-control {
  width: 80%;
  color: #9b9b9d;
  padding-left: 0;
  background-color: transparent;
  background-clip: padding-box;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #404046;
  border-radius: 0;
  transition: none;
}

.btn-contact {
  color: #000;
  background-color: #e1354f;
  padding: 2px 35px;
  border-radius: 0;
}

.mobile-no {
  letter-spacing: 3px;
}

.contact hr {
  background-color: #5c5c61;
  height: 1px;
  border: none;
  margin: 30px 0;
  width: 30px;
}

.contact a {
  color: #c32d44;
  letter-spacing: 1px;
  font-size: 20px;
}

.contact .address {
  font-size: 15px;
}

/* ===================
   About us
   =================== */
.about-text {
  color: #fff;
}

.about-content p {
  font-size: 18px;
}

.about-content h3,
.our-services h3,
.brands h3 {
  color: #e90934;
  margin: 80px 0 20px;
}

.about-text h1 {
  margin: 100px 0 35px;
  font-size: 40px;
}

.our-services {
  padding: 50px 0 0;
}

.service {
  border-top: solid 4px #717171;
  padding: 10px 0 120px;
}

.service h4 {
  color: #dddddd;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 20px;
}

.service p {
  color: #dddddd;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: lighter;
  margin: 0;
  padding: 7px 0 10px;
  border-bottom: solid 1px #b9b9b9;
}

.brands img {
  width: 150px;
}

.brands .img-w {
  width: 200px;
}

.brands .img-sw {
  width: 100px;
}

/* ============================
   inner page drunken monkey
   ============================ */
/*.wrapper{*/
/*margin-top: 115px;*/
/*}*/

#home-video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
}

.wrapper img {
  width: 100%;
}

.ausum-bg {
  background-color: #0a0e22;
}

.ausum-text {
  color: #e6d2c9;
  font-size: 14px;
  padding: 80px 0 0;
}
.ausum-text h5 {
  color: #e6d2c9;
}

.ausum-text a {
  color: #e6d2c9;
}

.top-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100vh;
}

.dm-banner {
  background-image: url(../img/drunken-monkey/DM-banner-1.jpg);
}

.kl-banner {
  background-image: url(../img/kindle/kindle-banner.jpg);
}

.as-banner {
  background-image: url(../img/ausum/ausum-banner.jpg);
}

.gl-banner {
  background-image: url(../img/goyal/top-banner.jpg);
}

.hh-banner {
  background-image: url(../img/h&h/hh-banner-1.jpg);
}

.at-banner {
  background-image: url(../img/aditi-staffing/aditi-banner.jpg);
}

.sv-banner {
  background-image: url(../img/sarovar/top-banner.jpg);
}

.bb-banner {
  background-image: url(../img/brew/brew-banner.jpg);
}

.mo-banner {
  background-image: url(../img/mosip/banner.jpg);
}

.pink-box {
  background-color: #f1e5dd;
  padding: 80px 0;
  text-transform: uppercase;
}

.pink-box h1 {
  color: #1e1510;
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.white-box {
  padding: 80px 0;
  color: #393939;
}

.nostalgia-1 {
  background-color: #a2ced4;
  padding: 80px 0;
}

.nostalgia-2 {
  background-color: #d1e6c5;
  padding: 80px 0;
}

.projects-title {
  text-align: center;
  color: #393939;
  margin: 0 0 50px;
}

.margin-top {
  margin-top: 130px;
}

.case-study-box {
  background-color: #f7f7f7;
  padding: 20px 30px;
  text-align: center;
}

.app-box {
  background-color: #c9a8cb;
  padding: 100px 0;
}

.case-study-box .owl-carousel .owl-item img {
  height: 200px;
  position: relative;
}

.case-study-box .project-name {
  font-size: 16px;
  background-color: #3939397a;
  padding: 3px 20px;
  border-radius: 15px;
  color: #fff;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: all 0.4s ease;
}

.owl-video video {
  width: 100%;
}

.ausum-logo-image {
  width: 400px;
  margin-bottom: 100px;
}

.ausum-image {
  padding: 0 150px;
}

.impact-box {
  background-color: #f7f7f7;
  padding: 80px 30px;
  text-align: center;
}

.impact-inner-box {
  text-align: left;
  display: inline-block;
  min-width: 170px;
}

.impact-number {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 0;
  color: #1e1510;
}

.impact-name {
  font-size: 14px;
  color: #393939;
}

.owl-hh.owl-carousel.owl-theme .owl-item {
  opacity: 0.5;
}
.owl-hh.owl-carousel.owl-theme .owl-item.active.center {
  opacity: 1;
}

.goyal-blue-box {
  background-color: #a3eaf2;
  width: 100%;
  height: 800px;
  position: relative;
}

.goyal-blue-box img {
  width: 400px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.page-top {
  margin-top: 120px;
}

.section-wrap {
  margin: 180px 0;
}
.video-gap {
  margin-bottom: 150px;
}

.section-wrap-bottom {
  margin: 0 0 180px;
}

.margin-bw-text-image {
  margin-top: 100px;
}

.margin-bw-image-image {
  margin-top: 150px;
}

.section-title {
  font-weight: bold;
  font-size: 40px;
  color: #707070;
  margin-bottom: 15px;
}

.section-text {
  font-weight: normal;
  font-size: 16px;
  color: #707070;
  margin-bottom: 0;
}

.section-sub-title {
  font-weight: bold;
  font-size: 15px;
  color: #707070;
  margin-bottom: 5px;
}

.section-sub-text {
  font-weight: lighter;
  font-size: 16px;
  color: #707070;
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .ausum-image {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .ausum-logo-image {
    width: 300px;
  }
  .ausum-image {
    padding: 0 15px;
  }
}

/* ===================
   footer
   =================== */

footer {
  background-color: #000;
  color: #8f8f8f;
  padding: 20px 40px;
}

footer p {
  margin-bottom: 0;
  display: inline;
  font-size: 14px;
}

.social-icons img {
  width: 18px;
  margin: 0 10px;
}

.social-icons img:hover {
  transform: scale(1.2);
  transition: all 0.2s ease;
}

/* ==========================
   media queries for mobile
   ========================== */

@media (max-width: 992px) {
  .content-image {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
  p {
    font-size: 16px;
  }
  .navbar {
    padding: 20px;
  }
  .contact {
    margin: 120px auto 0;
  }
  .our-services {
    padding: 0;
  }
  .service {
    border-top: none;
    padding-bottom: 70px;
  }
  .service:last-child {
    padding-bottom: 40px;
  }
  .white-box,
  .pink-box {
    padding: 30px 0;
  }
  .wrapper {
    margin-top: 110px;
  }
  footer {
    padding: 20px 0;
    text-align: center;
  }
  .projects-title {
    margin-bottom: 50px;
  }
  .impact-box {
    margin-bottom: 30px;
  }
  .menu-content {
    padding: 100px 0 50px;
  }
  .goyal-blue-box {
    height: 500px;
  }
  .section-wrap {
    margin: 100px 0;
  }

  .section-wrap-bottom {
    margin: 0 0 100px;
  }
}

@media (max-width: 500px) {
  .goyal-blue-box img {
    width: 300px;
  }
  .contact a {
    font-size: 15px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.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;
  white-space: nowrap; /* 1 */
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

.readMore a {
  text-decoration: none;
}

.readMoreContent {
  display: none;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after,
  p:first-letter,
  div:first-letter,
  blockquote:first-letter,
  li:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                          http://www.sanbeiji.com/archives/953 */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: ' (' attr(href) ')';
  }

  abbr[title]:after {
    content: ' (' attr(title) ')';
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^='#']:after,
  a[href^='javascript:']:after {
    content: '';
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
