@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic.eot');
    src: local('Century Gothic'), local('CenturyGothic'),
        url('CenturyGothic.eot?#iefix') format('embedded-opentype'),
        url('CenturyGothic.woff2') format('woff2'),
        url('CenturyGothic.woff') format('woff'),
        url('CenturyGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic-Bold.eot');
    src: local('Century Gothic Bold'), local('CenturyGothic-Bold'),
        url('CenturyGothic-Bold.eot?#iefix') format('embedded-opentype'),
        url('CenturyGothic-Bold.woff2') format('woff2'),
        url('CenturyGothic-Bold.woff') format('woff'),
        url('CenturyGothic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic-BoldItalic.eot');
    src: local('Century Gothic Bold Italic'), local('CenturyGothic-BoldItalic'),
        url('CenturyGothic-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('CenturyGothic-BoldItalic.woff2') format('woff2'),
        url('CenturyGothic-BoldItalic.woff') format('woff'),
        url('CenturyGothic-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('CenturyGothic-Italic.eot');
    src: local('Century Gothic Italic'), local('CenturyGothic-Italic'),
        url('CenturyGothic-Italic.eot?#iefix') format('embedded-opentype'),
        url('CenturyGothic-Italic.woff2') format('woff2'),
        url('CenturyGothic-Italic.woff') format('woff'),
        url('CenturyGothic-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Medium.woff2') format('woff2'),
        url('Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Bold.woff2') format('woff2'),
        url('Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Black.woff2') format('woff2'),
        url('Gotham-Black.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Light.woff2') format('woff2'),
        url('Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Book.woff2') format('woff2'),
        url('Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
  --primary-color: rgba(13, 110, 139, 0.75);
  --overlay-color: rgba(24, 39, 51 , 0.85);
  --menu-speed: 0.75s;
}
img{ width: 100%;}

/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 32px;
  left: 80px;
  z-index: 2;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: #0075bf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: rgb(24 39 51 / 99%);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 18px;
  padding: 1rem;
  font-family: 'Gotham';	
  text-align: left;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li > a:hover {
	color: #fe4947;
}


.accordianNav {
    /*  this width is arbitrary and here for display only */

    margin: 0;
    padding:  0;
}

.accordianNav a,
.accordianNav h3 {
    display: block;
    line-height: 2.5em;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    padding-left: 1em;
    font-size: 18px;
    font-weight: 100;
}

.accordianNav a {
    text-decoration: none;
    padding-left: 0;
}
.drop li a{
	font-size:13px;
}

/* Background hover animation. */

.accordianNav h3:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #444;
    background: rgba(244, 244, 244, .3);
    transition: all 0.3s ease-out;
}

.accordianNav h3:hover:before,
.accordianNav .dropArrow.active:before {
    width: 0%;
}

.accordianNav .dropArrow span {
    z-index: 2;
    position: relative;
}

.accordianNav .dropArrow:after {
    content: "";
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    float: right;
    position: relative;
    top: 19px;
    right: 17px;
    transform: rotate(45deg);
    transform-origin: center;
}

.accordianNav .dropArrow.active {
    color: white;
}

.accordianNav .dropArrow.active:after {
    transform: rotate(-135deg);
    border-color: #fff;
}





/* +Hover and Touch effect */

.accordianNav a:hover,
.accordianNav a:active,
.accordianNav h3:hover,
.accordianNav h3:active,
.accordianNav h3.dropArrow:hover:after,
.accordianNav h3.dropArrow:active:after {
    color: white;
    border-color: #fff;
    -webkit-transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
    transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}

.accordianNav li {
    list-style-type: none;
}

.accordianNav a {
    transform: translate(0px, 0px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}


/*Drop links*/

.accordianNav ul ul li a {
    padding: 0 0 0 2.5em;
}


/*hover effect on links*/

.accordianNav ul ul li a:hover {
    transform: translate(8px, 0px);
}


/*Hide and show the drops*/

.accordianNav ul ul {
    display: none;
}

.accordianNav li.active ul {
    display: block;
}




/* Website Style */

*{
padding:0;
margin:0;
}
body{
	font-family: 'Century Gothic' !important;
	font-size: 14px;
	color: #353638;
}
img{
	max-width: 100%;
	height: auto;
}


.header{
	width:100%;
	padding: 20px 0px ;
	background-image:url('../../assets/img/head-bg-2.jpg');
	background-position: bottom;
	background-size: cover;
}
.left{
	width:50%;
	float:left;
}
.right{
	width:50%;
	float:left;
}

.text {
  padding-top: 100px;
  text-align: right;
  position: absolute;
  right: 63%;
  top: 17%;
}

.text1 {
  padding-top: 100px;
  text-align: right;
  position: absolute;
  right: 43%;
  top: 17%;
}
.text2 {
    padding-top: 100px;
    text-align: right;
    position: absolute;
    right: 43%;
    top: 17%;
  }
.logo{
	float:right; 
	width: 250px;
	position: relative;
    right: 60px;
}
.repo-logo {
    background: #fff;
    width: 260px;
    height: 260px;
    border-radius: 10px;
    padding: 20px;
   /* transform: rotate(-46deg);*/
    position: absolute;
    top: -295px;
	border: 4px solid #CBE2F2;
	right:0;
}
.repo-logo img{
	/*transform: rotate(46deg);*/
    position: relative;
    top: 127px;
    left: 0;
}
.slick-slide img {
  width: 100%;
}
.first .btn-start {
    background: #fe4947;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 14px;
    margin-top: 30px;
    font-size: 16px;
    transition: all .5s;
	width: 155px;
}
.second .btn-start {
    background: #fe4947;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 14px;
    margin-top: 30px;
    font-size: 16px;
    transition: all .5s;
    width: 155px;
}
.btn-start1 {
    background: #fe4947;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    padding: 13px 25px;
    margin-top: 30px;
    font-size: 16px;
    width: 33%;
    transition: all .5s;
}
.btn-start:hover{
	text-decoration: none;
	color: #fff;
	background: #000;
	transition: all .5s;
}
.btn-start1:hover{
	text-decoration: none;
	color: #fff;
	background: #000;
	transition: all .5s;
}
.text span, .text1 span{
	font-weight: 300;
	color: #fff;
	font-size:33px;
	
}
.text h3, .text1 h3{
	font-weight: 800;
	color: #fff;
	font-size:59px;
	padding: 20px 0px;
}
.text h2, .text1 h2{
	font-weight: 400;
	color: #fff;
	font-size:67px;
}
.text hr {
    background: #fff;
    max-width: 143px;
    position: relative;
    z-index: 0;
	top: -40px;
    
}
.text1 hr {
    background: #fff;
    max-width: 143px;
    position: relative;
    z-index: 0;
    top: -40px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 50%;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots button {
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #cdcdcd;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #1c3e93;
}
button:focus {
    outline: 0px dotted;
    /* outline: 5px auto -webkit-focus-ring-color; */
}
.call{
	position: fixed;
    right: 25px;
    bottom: 15px;
    z-index: 9999999;
	width:54px;
}


.design {
    background: #4d4d4f;
    width: 100%;
    border-top: 10px solid #9d9d9c;
    position: relative;
	text-align: center;
	height:70px;
}
.arc {
    width: 268px;
    height: 0;
    border-top: 60px solid #9d9d9c;
    border-left: 99px solid transparent;
    position: absolute;
    right: 0;
    top: -1px;
}
.design1 {
    background: #4d4d4f;
    width: 100%;
    padding: 29.6px;
    border-bottom: 11px solid #9d9d9c;
    position: relative;
	text-align: center;
}
.arc-down {
    width: 268px;
    height: 0;
    border-bottom: 60px solid #9d9d9c;
    border-left: 99px solid transparent;
    position: absolute;
    right: 0;
    top: -1px;
}
.design2 {
    background: #4d4d4f;
    width: 100%;
    padding: 6.6px;
    border-top: 11px solid #9d9d9c;
    position: relative;
	text-align: center;
}
.arc-left {
    width: 268px;
    height: 0;
    border-top: 60px solid #9d9d9c;
    border-right: 99px solid transparent;
    position: absolute;
    left: 0;
    top: -1px;
}
.design .head-title, .design1 .head-title{
	font-size: 28px;
	color: #fff;
	font-family: 'Gotham';
	font-weight: bold;
	line-height: 38px;
	position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    height:70px;
}
.department{
	width:100%;
	padding: 100px 0px 30px;
	background-image:url('../../assets/img/Pattern_2_Down.png'), url('../../assets/img/Pattern_1_Top.png');
	background-position: right bottom 0px, left top ;
	background-repeat: no-repeat;
	text-align: center;
}
.service{
	padding-bottom: 80px;
}
.service h4{
	font-size: 18px;
	color: #84160e;
	font-family: 'Gotham';
	font-weight: bold;
	line-height: 38px;
	cursor: pointer;
    padding-top: 10px;
}
.service ul {
  padding: 0px 20px;
  height: 100px;
}
.service ul li {
  display: contents;
}
.service ul li::before {content: "•"; 
	color: #4a4a49;
  display: inline-block;
  width: 1em;
  margin-left: 0;
  }
.service ul li a {
  font-size: 17px;
  color: #4a4a49;
  font-family: 'Gotham';
    font-weight: normal;
	line-height:20px;
}
.service ul li a:hover{
	color: #e30613;
  text-decoration: none;
}
.more {
  font-size: 11px;
  color: #4a4a49;
  border: 1px solid #4a4a49;
  padding: 5px 10px;
  font-weight: 600;
}

.morewhite {
    font-size: 11px;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    font-weight: 600;
    margin-top: 20px;
    display: block;
    width: 100px;
    text-align: center;
    font-family: 'Century Gothic';
  }
.morewhite:hover {
    color: #e30613;
    text-decoration: none;
  }
.more:hover {
  color: #e30613;
  text-decoration: none;
}
.wrap {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery{
	width:100%;
	background: #4d4d4f;
	padding-top: 55px;
	text-align: center;
}
.video-icon{
	position: absolute;
    left: -52px;
    bottom: 0;
    top: 50%;
	width: 42px;
}
.photo-icon {
  position: absolute;
  left: -52px;
  bottom: 0;
  top: 82%;
  width: 42px;
}
.pic-title{
	text-align: left;
	padding-bottom: 60px;
}
.pic-title img{ width: 45px;}
.pic-title h2 {
	  text-align: left;
	  font-size: 14px;
	  color: #c6c6c6;
	  font-family: 'Gotham';
	  font-weight: normal;
	  display: inline-block;
	  position: relative;
	  top: 13px;
	  line-height: 22px;
	  cursor: pointer;
  }
.client{
	width:100%;
	background: #fff;
	padding: 80px 0px;
	background-image:url('../../assets/img/map.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.client p{
	  text-align: center;
	  font-size: 22px;
	  color: #4a4a49;
	  font-family: 'Gotham';
	  font-weight: bold;
	  line-height: 44px;
	  width: 762px;
	  margin: 0 auto;
}
.client p span{
	color: #e30613;
}
.footer{
	padding: 40px 0px 60px;
	background: #4d4d4f;
	text-align:center;
}
.footer h3{
	  text-align: center;
	  font-size: 34px;
	  color: #fff;
	  font-family: 'Gotham';
	  font-weight: bold;
	  line-height: 44px;
	  padding-bottom: 15px;
}
.footer-social ul li {
  color: #fff;
  font-size: 36px;
  padding-bottom: 24.8px;
  cursor: pointer;
  display: inline-block;
  margin: 0px 7px;
  list-style: none;
}
.qr {
  width: 130px;
  height: 130px;
}
.company {
  font-size: 22px;
  color: #fff !important;
  font-family: 'Gotham';
  font-weight: bold;
  line-height: 28px;
  margin: 0;
  padding-top: 30px;
}
.address{
  color: #fff !important;
  font-family: 'Gotham';
  font-size: 18px;
  padding-top: 10px;
}
.address span{
	color: #e30613;
}

.slick-arrow {
    color: transparent;
}
.slick-prev {
    position: absolute;
    z-index: 99999;
    top: 50%;
    left: 0.5%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #9a8b8bc9;
    border: none;
}
.slick-prev:before {
    font-family: FontAwesome;
    content: "\f104";
    color: #fff;
    font-size: 30px;
    position: relative;
    left: 17px;
    font-weight: 100;
}
.slick-next {
    position: absolute;
    z-index: 99999;
    top: 50%;
    right: 0.5%;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: #9a8b8bc9;
    border: none;
}
.slick-next:before {
    font-family: FontAwesome;
    content: "\f105";
    color: #fff;
    font-size: 30px;
    position: relative;
    left: 18px;
    font-weight: 100;
}
.slick-arrow:focus{
	outline:none;
}
.header-mobile{
	display: none;
}
.service a:hover{
	text-decoration: none;
}


/* Innerpage Styles*/
.header.company-profile .text, .header.careers .text, .header.design-display .text, .header.clientele .text,
 .header.showcase .text, .header.contact .text, .header.pre-press .text, .header.design-studio .text, .header.digital-press .text, 
 .header.wide-format .text, .header.commercial-printing .text, .header.post-press .text, .header.installation .text{
	display: none;
}
.header.company-profile .btn-start, .header.careers .btn-start, .header.design-display .btn-start,
 .header.clientele .btn-start, .header.showcase .btn-start, .header.contact .btn-start, .header.pre-press .btn-start, 
 .header.design-studio .btn-start, .header.digital-press .btn-start, .header.wide-format .btn-start, .header.commercial-printing .btn-start, 
 .header.post-press .btn-start, .header.installation .btn-start{
	display: none;
}
.inner-page{
	padding: 160px 0px;
}
.inner-page.company-profile{
	background-image:url('../../assets/img/company.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.careers{
	background-image:url('../../assets/img/company.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.design-display{
	background-image:url('../../assets/img/design.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.clientele{
	background-image:url('../../assets/img/cliente.jpg');
	background-size: cover;
	width: 100%;
    position: relative;

}
.inner-page.showcase{
	background-image:url('../../assets/img/showcase.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.contact{
	background-image:url('../../assets/img/contact.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.pre-press{
	background-image:url('../../assets/img/pre-press.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.design-studio{
	background-image:url('../../assets/img/Web-banner_Design-Studio.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.digital-press{
	background-image:url('../../assets/img/digitalpress.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.wide-format{
	background-image:url('../../assets/img/wide-form.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.commercial-printing{
	background-image:url('../../assets/img/commericalprint.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.post-press{
	background-image:url('../../assets/img/postpress.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.installation{
	background-image:url('../../assets/img/instal.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}
.inner-page.about-us{
	background-image:url('../../assets/img/About-Repro-wb.jpg');
	background-size: cover;
	width: 100%;
    position: relative;
}

.header-inner {
    position: absolute;
    top: 34%;
    z-index: 999;
    width: 100%;
}
.header-inner  h2{
	text-align: left;
	  font-size: 34px;
	  color: #fff;
	  font-family: 'Gotham';
	  font-weight: 500;

}
.breadcrumbs span{
	color: #fff;
	text-align: right;
	font-size: 14px;
}
.breadcrumbs{
	text-align: right;
}
.breadcrumbs span b{
	color: #EC1C24;
	text-align: right;
	font-size: 14px;
	cursor: pointer;
}
.profile{
	padding: 70px 0px;
	background-image:url('../../assets/img/abt-bg.png');
	background-position: top left 0px;
	background-repeat: no-repeat;
}
.profile p {
    font-size: 15px;
    color: #000;
    font-family: 'Gotham';
    font-weight: bold;
    text-align: center;
    line-height: 42px;
	max-width: 800px;
    margin: 0 auto;
}
.comp p {
    text-align: left;
    padding-bottom: 15px;
}
.comp img{
	width: 100%;
}
.line{
	border-bottom: 10px solid #9d9d9c;
	padding-bottom: 30px;
}
.display p span{
    color: #e30613;
}
.cliente {
    width: 100%;
    background: #fff;
    padding: 80px 0px;
	background-image: url(../../assets/img/abt-bg1.png);
    background-position: bottom right 0px;
    background-repeat: no-repeat;
}
.cliente p {
    text-align: center;
    font-size: 22px;
    color: #4a4a49;
    font-family: 'Gotham';
    font-weight: bold;
    line-height: 44px;
    width: 762px;
    margin: 0 auto;
}
.cliente p span {
    color: #e30613;
}
.portfolio {
    padding: 100px 0px;
	background-image: url(../../assets/img/abt-bg1.png), url(../../assets/img/abt-bg.png);
    background-position: bottom right 0px, top left 0px;
    background-repeat: no-repeat;
}
.nav-tabs {
    border-bottom: none !important;
}
.nav-link {
    font-size: 11px;
    color: #4a4a49;
	font-weight: bold;
    text-transform: uppercase;
}
.nav-tabs .nav-link.active {
    background: #e30613 !important;
    color: #fff !important;
	border-radius: 30px;
	border: none;
}
.lightbox_gallery {
    padding-top: 35px;
}
.galla {
    position: relative;
    float: left;
    padding-bottom: 30px;
}
.overlay {
    position: absolute;
    top: 4%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fd58549c;
    opacity: 0;
    width: 80%;
    height: 80%;
    margin: 0 auto;
}
.overlay .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.galla:hover .overlay{
	opacity:1;
	transition: all .5s;
}
.nav-tabs .nav-link:hover{
    border-color: #e30613 !important;
	border-radius: 30px;
	color: #e30613 !important;
	background: #fff !important;
}
input[type="text"] {
    border: 1px solid #bebebe;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 13px;
    font-family: 'Gotham';
	width: 100%;
}
textarea {
    border: 1px solid #bebebe;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 13px;
    font-family: 'Gotham';
	width: 100%;
}
.form-submit input[type="submit"] {
    padding: 10px 40px;
    color: #fff;
    font-size: 13px;
    background-color: #e30613;
    border: 1px solid #e30613;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Gotham';
}
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
    text-align: left;
    color: #cdcdcd;
	font-size: 13px;
	padding-bottom: 15px;
}
.content-list{
	text-align:left;
	font-size: 14px;
	font-family: 'Gotham';
	color: #fff;
	padding-bottom: 15px;
}
.footer-social li a{
	color: #fff;
}


/* 
@media screen and (min-width: 1600px) {
  
  .service img{
	width:100%;
  }
  .pic-title{
	text-align: left;
	padding-bottom: 60px;
  }
  .pic-title h2 {
	  text-align: left;
	  font-size: 16px;
	  color: #c6c6c6;
	  font-family: 'Gotham';
	  font-weight: normal;
	  display: inline-block;
	  position: relative;
	  top: 13px;
	  line-height: 22px;
	  cursor: pointer;
  }
  .video-icon{
	position: absolute;
    left: -120px;
    bottom: 0;
    top: 50%;
	width: 80px;
}
.photo-icon{
	position: absolute;
    left: -120px;
    bottom: 0;
    top: 75%;
	width: 80px;
}
.menu-wrap .hamburger{
	border: 1px solid #f4f1f1;
}

.repo-logo{
	width: 340px;
	height: 260px;
	top: -284px;
}
.repo-logo img{
	top:114px;
}
.galla img{
	width: 100%;
}
.header hr{
	left: 1091px;
}
.nav-link {
  font-size: 14.5px;
}




} */

@media screen and (max-width: 768px) {
	.rheader{
		display: none;
	}
	.header-mobile{
		display: block;
		position: relative;
		padding:10px 15px;
		text-align: left;
		background-image: url(../../assets/img/head-bg-2.jpg);
		background-position: center;
		background-size: cover;
	}
	.header-mobile img{
		width:170px;
		float: right;
	}
	.header span{
		font-size: 21px;
	}
	.header h3{
		font-size: 44px;
	}
	.header h2{
		font-size: 35px;
	}	
	.header hr {
		max-width: 80px;
		left: 130px;
		top: -32px;
	}
	.menu-wrap {
	  left: 15px;
	  top: 14px;
	  z-index: 9999999;
	}
     .menu-wrap .hamburger {
        width: 50px;
        height: 50px;
      } 
	.client p, .cliente p{
		width: auto;
		font-size: 14px;
	}
	.repo-logo {
		left: 35px;
		width: 200px;
		height: 200px;
		top: -90px;
	}
	.repo-logo img{
		left: -14px;
		top: 65px;
	}
	.btn-start{
		width: 65%;
	}
	.arc{
		width: 138px;
	}
	.design .head-title, .design1 .head-title,
	.design2 .head-title{
		z-index: 9999;
		font-size: 18px;
	}
	.arc-down{
		top: 0;
		width: 138px;
	}
	.arc-left{
		width: 138px;
	}
	.pic-title h2{
		font-size: 11px;
	}
	.service ul li{
		text-align: left;
	}
	.menu-wrap .menu > div > div > ul > li{
		font-size: 18px;
		padding: 5px 0px;
	}
	.menu-wrap .menu > div{
		border-radius:0;
	}
	.first .btn-start, .second .btn-start{
		display: none;
	}
	.first .text, .second .text1{
		display: none;
	}
	.service {
		padding-bottom: 35px;
	}
	.pic-title {
		padding-bottom: 30px;
	}
	.col-lg-6.col-md-6.col-xs-12.content-list ul {
		padding: 0px 20px;
	}
	
}
/* @media only screen   and (min-device-width: 768px)   and (max-device-width: 1024px)   and (orientation: landscape)   and (-webkit-min-device-pixel-ratio: 1) {
	
	.btn-start{
		width: 19%;
	}
	.repo-logo{
		left: 30px;
	}
	.service ul li{
		text-align: left;
	}
	.first .btn-start, .second .btn-start{
		width: 4.8%;
	}
	.text1, .text{
		top:-2%;
	}

} */

.tw{ color:#fff;}
.rheader{ max-width: 100%; overflow: hidden;}
.rmenu{ height: 130px; }
.rmenu img{ height: 100%; width: auto;}
.rlogo{ background: url(../../assets/img/Web_page_Header_Right.png) no-repeat right; height: 130px;}
.rlogo a{ display: block; width: 200px; float: right; right: 80px; position: relative; top: 32px;}
.rlogo img{ max-width: 100%;}


.container {
    max-width: 1300px !important;
  }

  .about{
	background: #4d4d4f;
	padding: 55px 0;
    font-family: 'Gotham';
}
.head-title{
	font-size: 28px;
	color: #fff;
	font-family: 'Gotham';
	font-weight: bold;

}
.about p{
	font-size: 17px;
	color: #fff;
	font-weight: normal;
	line-height: 20px;
	margin: 10px 0 0 0;
}
.about p span{
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	line-height: 24px;
}

.rheading{ background:#4d4d4f; height: 70px; color: #fff; text-align: center; border-top: solid 10px #9d9d9c; position: relative;}
.hright{ width: 268px; height: 0; border-top: 60px solid #9d9d9c;  border-left: 99px solid transparent; position: absolute; right: 0; top: 0;}
.rheading .title{  font-weight: bold; text-transform: uppercase; padding-top: 12px; position:relative; z-index: 1; }

.rheading.down{ border-top: none; border-bottom: solid 10px #9d9d9c;}
.rheading.down .hright{ border-top: none; border-bottom: 60px solid #9d9d9c; }
.rheading.lft .hright{ left: 0; border-left: none; border-right: 99px solid transparent;  }

.gallery .container{ max-width: 1000px !important;}
.abt-box { padding: 12px; position: relative; margin-right: 20px;}
.abt-box .content{ background: #d0d0d0; padding: 35px; font-size: 20px; position: relative; z-index: 1; font-family: 'Gotham'; line-height: 30px; color: #4a4a49;}
.abt-box .content span{ font-weight: bold;}
.abt-box .top{ background: #9d9d9c; height: 100px; width: 100px; position: absolute; right: 0; top: 0; }
.abt-box .bottom{ background: #9d9d9c; height: 100px; width: 100px; position: absolute; right: 0; bottom: 0; }
.member{ width: 300px; display: block; margin: 0 auto; }
.inner{
    background-image: url('../../assets/img/Pattern_2_Down.png');
	background-position: right bottom;
	background-repeat: no-repeat;
    background-color: #f6f6f6;
}
.inner h1{ font-size: 28px; }
.incnt{ max-width: 1000px; margin:0 auto;  padding: 40px; }
.incnt p{ font-family: 'Gotham';}
.incnt h2{ font-family: 'Gotham'; font-size: 24px; font-weight: 400; margin-top: 20px; text-transform: uppercase; line-height:34px }
.incnt ul{ margin-left: 20px;}
.portfolio .nav-link{ padding: 7px 13px;}

@media screen and (max-width: 768px) {
    .abt-box{ margin-bottom: 30px;}
    .department{ padding-top: 30px;}
    .portfolio{ padding: 30px 0;}
    .service ul{ height: auto;}
    .client{ padding: 30px 0;}
}

@media screen and (max-width: 576px) {
    .rheading .title{ font-size:20px;}
}

/* for chatty phone */


@-webkit-keyframes pulse-grow-on-hover {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes pulse-grow-on-hover {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.pulse-grow-on-hover {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.pulse-grow-on-hover:hover, .pulse-grow-on-hover:focus, .pulse-grow-on-hover:active {
  -webkit-animation-name: pulse-grow-on-hover;
  animation-name: pulse-grow-on-hover;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.greenbox{ background: #c2ebf1; font-size: 20px; margin-bottom: 30px; padding: 30px;}









