/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -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);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide {
    float: left;
    min-height: 1px;
    left: 285px;
    top: 0px;
   
    z-index: 331;
/*    background-color: rgb(34, 34, 34);
*/    border-color: rgb(255, 255, 255);
    border-radius: 0px;
    border-style: solid;
    border-width: 0px;
    box-sizing: border-box;
    color: #fff;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 80px;
    height: 80px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 0px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.client-qoutes{width:250px; height: 150px; background: rgb(34, 34, 34);}

.client-qoutes p {
    color: #fff;
    line-height: 22px;
    padding-top: 18px;
}
p.paragraph-qoute {
    padding: 30px;
	color: #fff;
}

.pro-main {
    padding: 23px;
    height: 215px;
	background: rgb(34, 34, 34);
}
.project-head {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
    line-height: 55px;
}
.proj-prag {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    display: block;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
    line-height: 25px;
}

blockquote {
    display: block;
    width: 100%;
    padding: 15px 22px 15px 38px;
    padding-left: 2em;
    position: relative;
    font-weight: 400;
	margin:0px;
}

blockquote::before {
    font-family: Times;
    font-size: 3em;
    font-weight: bold;
    height: 0.8em;
    width: 0.1em;
    color: #ffffff;
    text-align: center;
    border-radius: 50%;
}

blockquote::before {
    content: "\201C";
    position: absolute;
    left: 10px;
    z-index: 0;
    top: 0;
}
  /*Main quote copy*/
blockquote p, blockquote h1 {
    position: relative;
    z-index: 99;
    padding: 0 12px;
}
blockquote p{
  line-height: 1.45;  
}
blockquote h1{
  font-family: 'Arvo', serif;
  color:#B2A4A7;
  font-size:2em;
  font-weight:700;
  text-transform:uppercase;
  padding-left:0.5em;
}

  /*Quote byline*/
blockquote cite{
  position:relative;
  text-align:left;
  z-index:99;
  padding:1em;
  display:block;
}
blockquote cite:after{
  content:'';
  width:12px;
  border-bottom:1px solid #666;
  position:absolute;
  padding-bottom:8px;
  left:0;
}

.allworkpro{width:80%; margin:0 auto; background: #fff;}

.allworkpro img {
    width: 70%;
    margin: 0 auto;
}


/* DEMO-SPECIFIC STYLES */
.textanime h1 {
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.textanime2 h1 {
    color: #333;
    overflow: hidden;
    border-right: .15em solid #333;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(10, end), blink-caret .5s step-end infinite;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #333 }
}



.textanime2.who {
    width: 26%;
    margin: 0 auto;
}




.profile-work {
	width: 100%;
	margin: 24px auto 48px auto;
}
.imgproj {
	margin-top: 12px;
}
.column {
	display: inline-block;
	text-align: center;
}

.column img {
    display: block;
    width: 90%;
}
/* CSS Image Hover. Created refering to Naoya's Pen: https://codepen.io/nxworld/pen/ZYNOBZ */
/*Sepia*/
.column#sepia img {
	-webkit-filter: sepia(100%);
	filter: sepia(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.column#sepia:hover img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
}
/*GrayScale*/
.column#grayscale img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}
.column#grayscale:hover img {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.col-xs-6 {
	float: left;
}
.col-xs-6 {
	width: 50%;
	margin-top: 40px;
}

.col-xs-6 {
	float: left;
}
.col-xs-7 {
	width: 100%;
}






.list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flip-flop:nth-child(odd) {
  flex-direction: column;
  background: #f5f5f5;
}
.fc-adv {
  padding: 1em;
  width: 100%;
}
.fc-adv img {
  
}
@media all and (min-width: 767px) {
  .flip-flop:nth-child(odd) {
    display: flex;
    flex-direction: row;
    background: #fff;
    width: 100%;
  }

  .fc-adv {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-grow: 1;
        padding: 20px 0 20px 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .fc-adv div {
    width: 50%;
  }
  .fc-adv img {
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 555px;
    width: 100%;
  }
  .fc-adv-txt-r {
	padding-left: 8%;
  }
  .fc-adv-txt-l {
	padding-right: 8%;
  }
  
  .fc-adv-txt-l.hedproj {
    padding-top: 5%;
}
  
  .fc-adv-txt-l.hedproj h3 a {
    font-size: 50px;
}
  
.fc-adv-txt-r h3 a {
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.fc-adv-txt-l h3 a {
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.fc-adv-txt-r p {
    font-size: 16px;
    line-height: 35px;
    font-weight: 500;
}

.fc-adv-txt-l p {
    font-size: 16px;
    line-height: 35px;
    font-weight: 500;
}

.fc-adv-txt-l.hedproj p {
    padding-top: 30px;
	 font-size: 16px;
    line-height: 35px;
    font-weight: 500;
}
}


.readMore {
    text-decoration: none;
    color: #222;
    transition: color 0.5s;
}
.readMore:hover{
  color: #000;
  text-decoration:none;
}
.readMore:after{
  margin-left: 5px;
  display: inline-block;
  content: '\2192';
  transition: transform 0.5s;
}
.readMore:hover:after{
  transform: translateX(5px);
}





.contact-heading {
    width: 100%;
    text-align: center;
    color: #fff;
    padding-top: 10%;
}

.contact-heading h2 {
    font-size: 3.6rem;
    font-weight: 800;
    text-align: left;
}

.contact-heading h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: left;
}

.contact-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}

.contact-container .contact-left {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.contact-container .contact-left .box {
  position: relative;
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.contact-container .contact-left .box .icon {
  min-width: 5rem;
  height: 5rem;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.2rem;
      color: #fff;
}

.text-box h3 {
    font-size: 18px;
    font-weight: 400;
}

.text-box p {
    font-size: 22px;
    font-weight: 600;
}

.contact-container .contact-left .box .text-box {
  display: flex;
  margin-left: 2rem;
  font-size: 1.6rem;
  color: #fff;
  flex-direction: column;
}

.contact-right {
    width: 80%;
    padding: 0rem 4rem 4rem 4rem;
    background-color: #fff;
}

.contact-right .input-box {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

.contact-right .input-box input, .contact-right .input-box textarea {
    width: 100%;
    padding: 0.5rem 0;
    font-size: 1.6rem;
    margin: 1rem 0;
    border: none;
    outline: none;
    border-bottom: 1px solid #cfced7;
    resize: none;
}
.contact-right .input-box span {
    position: absolute;
    left: 0;
    padding: 0.5rem 0;
    font-size: 15px;
    margin: 2rem 0;
    pointer-events: none;
    transition: 0.5s;
    color: #cecece;
}

.contact-right h2 {
    font-size: 18px;
    color: rgba(34, 34, 34, 1);
}

.contact-right .input-box input:focus ~ span,
.contact-right .input-box input:valid ~ span,
.contact-right .input-box textarea:focus ~ span,
.contact-right .input-box textarea:valid ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-right .input-box input[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: #333333;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.5s;
}

.contact-right .input-box input[type="submit"]:hover {
    background-color: #000;
}

@media screen and (max-width: 991px) {
  section {
    padding: 20px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-container .contact-left,
  .contact-container .contact-right {
    margin-bottom: 40px;
    width: 100%;
    padding: 15px;
  }
}


@media (max-width: 480px){

.slick-initialized .slick-slide {
    display: block;
    width: 300px !important;
    margin-top: 10px;
}


    .welcome_area.ico {
    height: 56vh !important;
    padding: 0px;
}

.textanime2.who {
    width: 100%;
    margin: 0 auto;
}
.textanime2 h1 {
    color: #333;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: 2.5px;
}

.textanime h1 {
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: 800;
    font-size: 23px;
    margin-bottom: 25px;
}

.service-de ul {
    width: 100%;
    margin: 50px auto;
    float: left;
}

.service-de ul li {
    list-style: none;
    display: inline-block;
    margin: 0;
    width: 325px;
    margin-bottom: 20px;
}



.fc-adv img {
    margin-bottom: 20px;
}

.fc-adv-txt-r h3 {
    font-size: 21px;
    font-weight: 700;
    padding-top: 15px;
}

#contact {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
}
.fc-adv-txt-l h3 {
    font-size: 21px;
    font-weight: 700;
    padding-top: 15px;
}

.contact_info.mt-s.text-center.fadeInUp h5 {
    color: #333; font-weight: 700;
}

.contact-container .contact-left, .contact-container .contact-right {
    margin-bottom: 40px;
    width: 100%;
    padding: 0;
}

.cont_box {
    width: 100%;
    padding: 0px;
}
section.cont_box .container {
    width: 100%;
}

.contact-heading h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: left;
}

#mybutton {
    position: fixed;
    bottom: 55px !important;
    right: 0;
}
#mybutton_2{
        position: fixed !important;
    bottom: 4px !important;
        left: 0.6rem !important;
    right: 0;
}


#whatss_app {
    position: fixed;
    bottom: 61px;
    right: 30px;
    z-index: 10;
}

}


#whatss_app {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10
}
.request-loader {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	border-radius: 0;
	background: none;
	bottom: 0;
	left: 0;
	padding: 0
}
.request-loader::before {
	opacity: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	height: 100%;
	width: 100%;
	border: 8px solid rgba(0,0,0,0.6);
	border-radius: 100%;
	-webkit-animation-name: ripple;
	animation-name: ripple;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
	z-index: -1
}
.flip-btn {
	position: relative;
	color: transparent;
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	display: block
}
.flip-btn:before, .flip-btn:after {
	color: #262626;
	content: attr(data-text);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s cubic-bezier(.86, 0, .07, 1);
	-o-transition: .4s cubic-bezier(.86, 0, .07, 1);
	transition: .4s cubic-bezier(.86, 0, .07, 1)
}
.flip-btn:after {
	-webkit-transform: translateY(-170%);
	-ms-transform: translateY(-170%);
	transform: translateY(-170%);
	color: #ef0d33
}

.feedback {
    background-color: #333;
    color: white;
    padding: 10px 14px 10px 38px;
    border-radius: 4px;
    border-color: #333;
    font-size: 12px;
}
#mybutton {
  position: fixed;
  bottom: -4px;
  left: 10px;
}


div#mybutton span img {
    width: 22px;
    position: absolute;
    left: 9px;
    top: 11px;
}

#mybutton_2{
        position: fixed;
    bottom: -4px;
    left: 11.5rem;
}
#mybutton_2 img{
     width: 22px;
    position: absolute;
    left: 9px;
    top: 11px;
    
}
}
