/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #00BBC3;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #00BBC3;
    text-shadow: none;
    color: #fff;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

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



input:focus, textarea:focus{
    outline: none;
}
/* ==========================================================================
   COMMON STYLES
   ========================================================================== */
html{
  font-size: 62.5%;
}
body{
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: normal;
    color: #646770;
}

h1, h1 > span, .h2, .h2 > span {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    letter-spacing: .2rem;
    word-spacing: .2rem;
    text-transform: uppercase;
}
.h2 > span {
    font-size: 4rem !important;
}
h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    color: #222222;
    letter-spacing: .1rem;
    word-spacing: .2rem;
    text-transform: uppercase;
}
h3{
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    color: #222222;
    letter-spacing: .3rem;
    text-transform: uppercase;
    font-weight: 900;
}
h4{
    font-size: 1.9rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    color: #222222;
}
h5{
    font-size: 1.7rem;
    margin: 0;
    line-height: 1.4;
    color: #222222;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
h6{
    font-size: 1.6rem;
    font-weight: 900;
    color: #9f9f9f;
    margin:0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.6;
}
ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}


a{
    color: #00BBC3;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none
}
a:hover, a:focus{
    text-decoration: none;
    outline: none;
}
img{
    max-width: 100%;
}
.blue{
    color: #00BBC3;
}
.gray{
    color: #e0e0e0;
    margin-left: 2rem;
}
.cover-image{
    position: relative;
}
.cover-image > img{
    position: absolute;
    max-width: unset;
}


button, .typ-btn{
    display: inline-block;
    padding: .9rem 2.5rem;
    border: 2px solid #333;
    background: none;
    font-weight: 900;
    text-transform: uppercase;
    color: #646770;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.btn-bdr {
    border: 2px solid #333;
}
.btn-bg{
    background: #fff;
    border-color: #fff;
}
.btn-holder .btn-bdr {
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
    padding: 2rem 3rem;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.btn-holder .btn-bdr::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    z-index: -1;
    left: 10%;
    top: 10%;
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.btn-holder .btn-bdr:hover {
    color: #00BBC3;
    border-color: #fff;
}
.btn-holder .btn-bdr:hover:before {
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    border:2px solid #00BBC3;
}
.btn-holder .btn-bdr span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.btn-blue{
    background: #00BBC3;
    border-color: #00BBC3;
    color: #fff;
}


.title-text h2 {
    margin-bottom: 2rem;
}
.title-text p {
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.larg-title {
    display: block;
    font-size: 7.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    color: #eee;
}





/* ==========================================================================
   HEADER AREA STYLES
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    padding: 2.5rem 0;
    z-index: 111;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header-wrapper{

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-wrapper a{
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.header-wrapper a.showElement{
    opacity: 1;    
}

.logo-1 {
    height: 5.5rem;
}
.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu ul li{
    padding:0 1.5rem;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
} 
.menu ul li.showElement{
    opacity: 1;
}
.menu ul li:last-child{
    padding:0px
} 
.menu ul li a {
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.3rem;
    position: relative;
    padding: 0 .5rem;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    letter-spacing: 2px;
}
.menu ul li:last-child a {
    padding: 1rem 2rem;
    border: 2px solid #fff;
}
.sp-btn{
    position: relative;
    z-index: 1;
}
.menu ul li:last-child a:before {
    display: none;
}
.menu ul li:last-child a::after, .sp-btn:after {
    content: "";
    display: block;
    height: 1px;
    width: 1px;
    top: 50%;
    left: 50%;
    background: none;
    position: absolute;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}
.menu ul li:last-child a:hover, .menu ul li.current_page_item:last-child a, .sp-btn:hover {
    -webkit-box-shadow: 0 5px 10px 0px rgba(0,0,0,.1);
            box-shadow: 0 5px 10px 0px rgba(0,0,0,.1);
    color: #00BBC3;
}
.sp-btn:hover{
    color: #00BBC3 !important;
}
.menu ul li:last-child a:hover:after, .menu ul li.current_page_item:last-child a:after, .sp-btn:hover:after {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
}




/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
          box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-ripple-out:hover {
  color: #00BBC3;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: transparent solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.hvr-ripple-out:hover:before {
  border: #fff solid 2px;
}
.hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}


.menu ul li a::before {
    height: .2rem;
    width: 0;
    position: absolute;
    content: "";
    border-radius: 1rem;
    background: #fff;
    bottom: -1rem;
    left: 50%;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.menu ul li a:hover:before, .menu ul li.current_page_item a:before{
    width: 100% !important;
    left: 0%;
}
.menu-area{
    display: none;
}



#header .logo-2,
.white-header .logo-2{
    display: none;
}
#header.not-transparent,
.white-header {
    background: #fff;
    -webkit-box-shadow: 0 2px 13px -5px rgba(0,0,0,.2);
            box-shadow: 0 2px 13px -5px rgba(0,0,0,.2);
    padding: 1rem .5rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#header.not-transparent .logo-1,
.white-header .logo-1 {
    display: none;
}
#header.not-transparent .logo-2, .white-header .logo-2 {
    display: block !important;
    height: 5.5rem;
}
#header.not-transparent .menu ul li a,
.white-header .menu ul li a {
    color: #646770;
}
#header.not-transparent .menu ul li a:hover, #header.not-transparent .menu ul li.current_page_item a,
.white-header .menu ul li a:hover, .white-header .menu ul li.current_page_item a {
    color: #00BBC3;
}

/*#header.white-header .menu ul li.active a{
    color: #00BBC3;
}*/

.white-header {
    padding: 2.5rem 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: none;
    background: #fff;
}
#header.not-transparent .menu ul li a:hover:before, #header.not-transparent .menu ul li.current_page_item a:before,
.white-header .menu ul li a:hover:before, .white-header .menu ul li.current_page_item a:before {
    background: #00BBC3;
}

.not-transparent .menu ul li:last-child a,
.white-header .menu ul li:last-child a {
    color: #00BBC3 !important;
    border-color: #00BBC3;
}
.not-transparent .menu ul li:last-child a:hover, .not-transparent .menu ul li.current_page_item:last-child a,
.not-transparent .sp-btn:hover, .white-header .sp-btn:hover,
.white-header .menu ul li:last-child a:hover, .white-header .menu ul li.current_page_item:last-child a {
    color: #fff !important;
    border-color: #00BBC3;
}

.not-transparent .menu ul li:last-child a:hover:after, .not-transparent .menu ul li.current_page_item:last-child a:after,
.not-transparent .sp-btn:hover:after, .white-header .sp-btn:hover:after,
.white-header .menu ul li:last-child a:hover:after, .white-header .menu ul li.current_page_item:last-child a:after {
    background: #00BBC3;
}

.menu-trigger {
    height: 4rem;
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    cursor: pointer;
}


.menu-area span {
    display: inline-block;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
}
.menu-icon {
    height: .3rem;
    width: 4.5rem;
    background: #fff;
    position: relative;
    margin-right: .5rem;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.menu-icon::before {
    content: "";
    height: .3rem;
    width: 4.5rem;
    background: #fff;
    top: -1.1rem;
    left: 0;
    position: absolute;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.menu-icon:after {
    content:"";
    height: .3rem;
    width: 4.5rem;
    background: #fff;
    bottom:-1.1rem;
    left: 0;
    position: absolute;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.make-clz .menu-icon{
    background: none;
}
.not-transparent .menu-icon, #header.white-header .menu-icon {
    background: #222;
}
.not-transparent .make-clz .menu-icon, #header.white-header .make-clz .menu-icon{
    background: none !important;
}
.make-clz .menu-icon:before, #header.white-header .menu-icon:before, #header.not-transparent .menu-icon:before {
    background: #222;
}
.make-clz .menu-icon:after, #header.white-header .menu-icon:after, #header.not-transparent .menu-icon:after {
    background: #222;
}
.make-clz .menu-icon:before{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
    width: 4rem;
}
.make-clz .menu-icon:after{
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 50%;
    width: 4rem;
}
#header.white-header .menu-area span, #header.not-transparent .menu-area span{
    color: #222 ;
}

.menu-area .typ-btn {
    color: #fff;
    border-color: #fff;
    margin-right: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
#header.white-header .menu-area .typ-btn, #header.not-transparent .menu-area .typ-btn {
    border-color: #00BBC3;
    background: #00BBC3;
}
.menu .socials-icons{
    display: none;
}


/* ==========================================================================
   BANNER SECTION STYLES
   ========================================================================== */
.banner-section{
    background: #5F34A7 url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-company-homepage-banner.jpg) no-repeat center center / cover;
    height: 100vh;
    color: #fff;
    width: 100%;
    overflow:hidden;
}
.banner-wrapper {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    padding-top: 10rem;
}
.banner-wrapper span {
    display: block;
    margin: 3.5rem 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 3px;
    font-size: 1.3rem;
}
.banner-wrapper h1 > span {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    letter-spacing: .2rem;
    word-spacing: .2rem;
    text-transform: uppercase;
    display: inline-block;
}
.banner-btn .btn-bg {
    margin-right: .5rem;
}
.banner-btn .btn-bdr{
    border-color: #fff;
    color: #fff;
}
.scroll-btm {
    position: absolute;
    bottom: 5rem;
    color: #fff;
    font-size: 3rem;
    line-height: 0;
    left: 50%;
}
.scroll-btm:hover, .scroll-btm:focus {
    color: #fff;
    text-shadow: 0 0 5px #000;
    outline: none;
}
.modal-dialog {
    width: 71.4rem;
    margin: 0 auto;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.modal-content {
    background: none;
}
.modal-body {
    position: relative;
    padding: 0;
    line-height: 0;
    height: 10rem;
    padding-bottom: 59%
}
.modal-body .close {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: #fff;
    font-size: 3rem;
    opacity: .6;
    z-index: 11;
}
.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.banner-wrapper .typ-btn.btn-bdr:hover{
    background: #fff;
    color: #00BBC3;
}
.modal.fade .modal-dialog iframe{
    height: 0;
}
.modal.fade.in .modal-dialog iframe{
    height: auto;
}

/* ==========================================================================
   WE DO SECTION STYLES
   ========================================================================== */
.we-do-section {
    padding: 10rem 0;
}

.we-do-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 12rem;
    margin-bottom: 10rem;
}
.we-do-item {
    width: 25%;
    border: 1px solid #EEEEEE;
    padding: 4rem 2rem;
    border-left: 0;
    color: #9f9f9f;
    position: relative;
}
.we-do-item p {
    line-height: 1.6;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}


.we-do-item::before {
    height: 2px;
    width: 20%;
    content: "";
    position: absolute;
    background: #9F9F9F;
    top: -1px;
    left: 2rem;
    -webkit-transition: width .3s, background .6s;
    -o-transition: width .3s, background .6s;
    transition: width .3s, background .6s;
}
.we-do-item:hover::before {
    width: 86%;
    background: #00BBC3;
}



.we-do-item:hover p{
    color: #646770;
}
.we-do-item:first-child {
    border-left: 1px solid #EEEEEE;
}
.we-do-item h3 {
    margin-bottom: 2.5rem;
}
.we-do-item p {
    margin-bottom: 3rem;
}
.we-do-item ul li {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 2;
    font-size: 1.2rem;
}



/* ==========================================================================
   WHY US SECTION STYLES
   ========================================================================== */
.why-us-section {
    padding: 15rem 0;
}
.core-calues {
    margin-top: 10rem;
}


/* ==========================================================================
   BLACK AREA SECTION STYLES
   ========================================================================== */

.black-section{
    background: #333 url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-career-banner.jpg) no-repeat center center / cover;
    padding: 10rem 0;
    position: relative;
    margin-bottom: 10rem;
}
.overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.1);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.black-section:hover .overlay{
    background: rgba(0,0,0,0.5);}
.hlack-section-wrapper {
    text-align: center;
    color: #fff;
    padding: 4rem;
    position: relative;
}
.hlack-section-wrapper:after, .hlack-section-wrapper:before {
    content:"";
    height: 2px;
    width: 10rem;
    background: #fff;
    left: 50%;
    position: absolute;
    -webkit-transform:translateX(-50%);
        -ms-transform:translateX(-50%);
            transform:translateX(-50%);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.hlack-section-wrapper:before {
    top:0;
}
.hlack-section-wrapper:after {
    bottom:0;
}
.black-section:hover .hlack-section-wrapper:before{
    width: 15rem;
}
.black-section:hover .hlack-section-wrapper:after{
    width: 15rem;
}
.hlack-section-wrapper h2 {
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.hlack-section-wrapper h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
}



/* ==========================================================================
   LOOK INSIDE SECTION STYLES
   ========================================================================== */
.look-inside-section {
    margin-bottom: 10rem;
}
.our-tech {
    margin-top: 10rem;
}
.our-tech ul li {
    color: #9f9f9f;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.6;
}



/* ==========================================================================
   OUR WORKS SECTION STYLES
   ========================================================================== */
.our-work-section{
    padding-bottom: 10rem;
}
.our-work-section .btn-holder{
    padding: 10rem;
}
.center-title {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 1.5rem;
}
.our-work-section-item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.our-work-section-item {
    width: 48.5%;
    position: relative;
    margin-bottom: 3rem;
    overflow:hidden;
    height: 250px;
}
.our-work-item-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: rgba(36,40,51,.1);
    color: #fff;
    padding: 2rem 3rem;
    text-decoration: none;
    opacity: 0;
    -webkit-transition:  background .6s, color .3s, opacity .5s;
    -o-transition:  background .6s, color .3s, opacity .5s;
    transition:  background .6s, color .3s, opacity .5s;
}
.our-work-section-item:hover .our-work-item-hover{
    opacity: 1;
    background: rgba(36,40,51,.8);
}
.our-work-section-item img{
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.our-work-section-item:hover img{
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
}
.our-work-item-hover h5 {
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.our-work-item-hover span {
    color: #fff;
    letter-spacing: 2px;
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    word-spacing: 0px;
}

.our-work-item-hover img {
	-ms-flex-item-align: left;
	align-self: left;
	margin-bottom: 11.2px;
	margin-bottom: .7rem;
	-webkit-transform: scale(1) !important;
	transform: scale(1) !important;
	max-width: 11rem;
}
/* ==========================================================================
   OUR CLIENT SECTION STYLES
   ========================================================================== */
.they-trust {
    margin: 10rem 0 0;
}
.they-trust{
    margin: 10rem 0;
}
.testimonial-item {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.testimonial-item p {
    font-size: 2.6rem;
    line-height: 1.6;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}
.testimonial-item > span {
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.testimonials-carousel {
    margin-bottom: 10rem;
}
.owl-prev {
    background: url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-left-arrow.png) no-repeat left center;
    height: 10rem;
    width: 10rem;
    position: absolute;
    top: 35%;
    font-size: 0px;
    left: 0;
}
.owl-next {
    background: url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-right-arrow.png) no-repeat right center;
    height: 10rem;
    width: 10rem;
    position: absolute;
    top: 35%;
    font-size: 0px;
    right: 0;
}


.brands-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.brand-item {
    width: 18%;
    text-align: center;
    cursor: pointer;
    margin-bottom: 4rem;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    height: 10rem;
    position: relative;
}
.brand-item img{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.brand-item .bw {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 1;
}
.brand-item .cf {
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.brand-item:hover .bw{
    opacity: 0;
}
.brand-item:hover .cf{
    opacity: 1;
}





/* ==========================================================================
   BLOG SECTION STYLES
   ========================================================================== */
.blog-section {
    padding: 10rem 0;
  	display: none;
}

.blog-section-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10rem;
}
.blog-section-item {
    width: 48.5%;
    position: relative;
    margin-bottom: 3.5rem;
    overflow:hidden;
    height: 250px;
}
.blog-section-item-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: rgba(36,40,51,.1);
    color: #fff;
    padding: 2rem 3rem;
    text-decoration: none;
    -webkit-transition:  background .6s, color .3s, opacity .5s;
    -o-transition:  background .6s, color .3s, opacity .5s;
    transition:  background .6s, color .3s, opacity .5s;
}
.blog-section-item:hover .blog-section-item-hover{
    background: rgba(36,40,51,.8);
}
.blog-section-item img{
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.blog-section-item:hover img{
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
}
.b-post-details {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}
.blog-section-item-hover h4 a {
    color: #fff;
    line-height: 1.6;
    letter-spacing: 2px;
    display: block;
    margin-top: 1.5rem;
}
.blog-section-item-hover h4 a:hover {
    text-decoration: underline;
}
.blog-section-item-hover a{
    color: #fff;
    transition: all .2s;
}
.blog-section-item-hover a:hover{
    text-decoration: underline;
}



/* ==========================================================================
   FOOTER SECTION STYLES
   ========================================================================== */
.footer-top {
    text-align: center;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    padding: 10rem 0 7.5rem 0;
}
.footer-top a {
    color: #646770;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    display: inline-block;
    letter-spacing: 2px;
}
.footer-top a:hover {
    color: #00BBC3;
}


.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3.5rem 0 5rem 0;
}
.footer-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-bottom .typ-btn {
    border-color: #EEEEEE;
    height: 100%;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.footer-bottom input[type="email"] {
    border: 1px solid #EEEEEE;
    min-width: 25rem;
    height: 5rem;
    padding: 1rem;
    color: #646770;
    font-size: 1.2rem;
    font-weight: 600;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.footer-bottom input:focus {
    background: #EEEEEE;
}
.footer-bottom .mc-field-group {
    min-width: 25rem;
}
.copy-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.copy-right img {
    height: 6rem;
    margin-left: 1rem;
}
.optopn-trigger {
    width: 4rem;
    height: 4rem;
    display: block;
    background: #00BBC3;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 4rem;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    cursor: pointer;
    -webkit-box-shadow: 0 0 5px -1px rgba(0,0,0,.5);
            box-shadow: 0 0 5px -1px rgba(0,0,0,.5);
    z-index: 111;
    display: none;
}
.options {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background: rgba(25, 55, 65, 0.8);
    z-index: 1;
    
}
.options-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 2rem;
    padding-bottom: 9rem;
    align-self: flex-end;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.options a {
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: .5rem 0;
}
.options a span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 3rem;
    font-size: 1.2rem;
    color: #00BBC3;
    -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
            box-shadow: 0 0 5px 1px rgba(0,0,0,.3);
    margin-left: 1.5rem;
}
.options a {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
}
.options a:first-child {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.options a:nth-child(2n) {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}
.options a:nth-child(3n) {
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}
.option-open.options a {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}





/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-us-page .banner-section {
    background: rgba(46, 36, 76, 0.8) url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-about-us-banner.jpg") no-repeat top center / cover;
}
.banner-section .title-text h1 {
    margin-bottom: 1.5rem;
}
.banner-section .title-text .typ-btn {
    margin-top: 1.5rem;
}
.our-team {
    padding-top: 5rem;
}
.social-section {
    padding: 7rem 0;
}
.white-banner{
    background: #fff;
    color: #646770;
}
.white-banner h1{
    color: #242833;
    margin-bottom: 20px;
}
#large-header.small-banner{
    height: 65vh !important;
}
#large-header.small-banner .banner-wrapper{
    height: 70vh;
}
.white-banner .banner-wrapper{
    padding-top: 10rem;
}
.white-banner button{
    margin-top: 30px;
}
.text-2 {
    color: #9f9f9f;
    line-height: 1.6;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-rendering: optimizeLegibility;
    margin-bottom: 4rem;
}
.socials-icons {
    margin-top: 3rem;
}
.socials-icons li {
    display: inline-block;
    margin: 0 2rem;
}
.socials-icons a {
    color: #9f9f9f;
    font-size: 6.5rem;
}
.socials-icons a:hover {
    color: #00BBC3;
}

.team-member {
    /*height: 100%;*/
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    /*height: 30.3rem;*/
}

.svg-wrapper {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      margin: 0 auto;
  width: 32rem;  
}
.svg-wrapper {
    position: absolute;
    left: 0;
    text-align: 0;
    width: 100%;
    height: 100%;
}
.shape {
    stroke-dasharray: 100 2000;
    stroke-dashoffset: 0;
    stroke-width: 0px;
    fill: transparent;
    stroke: #00BBC3;
    border-bottom: 5px solid black;
    -webkit-transition: stroke-width .5s, stroke-dashoffset 1s, stroke-dasharray 2s;
    -o-transition: stroke-width .5s, stroke-dashoffset 1s, stroke-dasharray 2s;
    transition: stroke-width .5s, stroke-dashoffset 1s, stroke-dasharray 2s;
}
.text {
  font-family: 'Roboto Condensed';
  font-size: 2.2rem;
  line-height: 3.2rem;
  letter-spacing: 8px;
  color: #fff;
  top: -4.8rem;
  position: relative;
  overflow:hidden;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.svg-wrapper:hover .shape {
  stroke-width: .8rem;
  stroke-dashoffset: 0;
  stroke-dasharray: 2000;
}


.team-member-img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.team-member-img img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}
.team-member-shade{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    background: rgba(0,0,0,0.1);
}
.team-member:hover .team-member-shade{
    background: rgba(0,0,0,0.2);
}
.team-member-text {
    background: rgba(0,0,0,.3);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 2rem 1rem;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.team-member-text h6 {
    color: #fff;
    margin-bottom: .5rem;
}
.member-position {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}
.team-member:hover .team-member-img {
    transform: scale(1.05);
}




/* ==========================================================================
   OUR WORKS PAGE STYLES
   ========================================================================== */
.our-work-page .banner-section {
    background: rgba(46, 36, 76, 0.8) url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-company-our-works-banner.jpg") no-repeat center center / cover;
}
.our-work-section {
    padding-top: 5rem;
}




/* ==========================================================================
   BLOG PAGE STYLES
   ========================================================================== */
.blog-page .blog-section {
    padding: 0;
}

.blog-article-section {
    padding-top: 10rem;
}
.blog-article .white-header{
    background: #fff;
}
.blog-article .banner-section{
    height: 80vh !important;
}
.banner-wrapper.single-blog-banner{
    height: 80vh;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)) repeat fixed 0 0%, rgba(0, 0, 0, 0) url("https://s3.ap-south-1.amazonaws.com/kuthidevs/blog-bg.jpg") repeat scroll top center / cover;

}
.banner-wrapper.single-blog-banner h1 {
    text-transform: unset;
    width: 78%;
    margin: 0 auto;
    letter-spacing: 5px;
}
.single-blog-banner span > span {
    display: inline-block;
    margin: 2px 0;
    font-weight: 400;
}
.post-by-details img {
    margin-bottom: 2rem;
}
.post-by-details h6 {
    color: #222;
    font-size: 1.3rem;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.blue.position {
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}
.more-this-author {
    color: #9f9f9f;
    display: block;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.blog-article-section article {
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1.6;
}
.blog-article-section article p{
    margin-bottom: 2rem;
}
.blog-article-section article img {
    margin: 3rem 0;
}
.blog-article-section article h3 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.img-title {
    color: gray;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 4rem !important;
    display: block;
}
.icon-list{
    margin-bottom: .5rem;
}
.icon-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.icon-list li::before {
    font-family: "FontAwesome";
    content: "\f111";
    color: #00BBC3;
    font-size: .8rem;
    margin-right: .9rem;
    position: absolute;
    top: .8rem;
    left: 0;
}



/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */
.careers-page .white-header{
    background: #fff;
}
.careers-page .banner-section{
    background: url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-career-banner.jpg) no-repeat center center / cover;
    color: #fff;
}
.careers-page .banner-section h1{
    color: #fff;
    margin-bottom: 2rem;
}
.careers-page .banner-section .banner-btn{
    margin-top: 5rem;
}
.Perks {
    padding: 10rem 0;
}
.open-position-section {
    padding-bottom: 10rem;
}
dt {
    background: #EBEBEB;
    margin: 1.5rem 0;
    padding: 2rem 3rem;
    cursor: pointer;
}
dt span {
    font-size: 2.2rem;
    letter-spacing: 3px;
}
dd {
    background: #F5F5F5;
    margin-top: -1.5rem;
    padding: 3rem 8rem;
}
.position-item .text-2 {
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.position-item {
    margin: 3rem 0;
    overflow: hidden;
}
dd .typ-btn.btn-bdr {
    margin: 2rem 0 3rem 0;
    overflow: hidden;
}



/* ==========================================================================
   STARTS A PROJECT PAGE STYLES
   ========================================================================== */
.start-project-section {
    padding: 0rem 0 10rem;
    text-align: center;
}

.single-field span {
    color: #9f9f9f;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}
.single-field .active-form{
    color: #00BBC3;
}
.single-field label {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    color: #222222;
    letter-spacing: 2px;
    word-spacing: .2rem;
    text-transform: uppercase;
    margin-bottom: 6rem;
}
.single-field label .blue {
    color: #00BBC3;
}


.banner-wrapper h2 > span{
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.4;
    letter-spacing: .1rem;
    word-spacing: .2rem;
    text-transform: uppercase;
    display: inline-block;
}

#multistage-form{
    position: relative;
    display: none;
}
.single-field{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}
.single-field.down{
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
}

.single-field > span,
.single-field > label,
.single-field input[type="text"],
.single-field textarea{
    display: block;
}
.single-field span input[type="checkbox"]{
    display: none;
}
.single-field span input[type="checkbox"]+ label{
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin-right: 15px;
}
.single-field span input[type="checkbox"]:checked + label{
    background: #00BBC3;
    color: #fff;
}
.single-field button.back{
    color: #ddd;
    border-color: #ddd;
}
button.next, button.last, button.submit, input[type="submit"].submit {
    background: #242833;
    color: #fff;
}
.back .fa.fa-arrow-left {
    margin-right: 1rem;
}
.next .fa.fa-arrow-right {
    margin-left: 1rem;
}
button.next.disabled,
button.last.disabled{
    color: #9f9f9f;
    background: #DDDDDD;
    border-color: #DDDDDD;
    cursor: default;
}



.single-field input[type="text"], .single-field input[type="email"], .single-field textarea {
    width: 300px;
    border: 0;
    border-bottom: 2px solid #eee;
    margin: 0 auto;
    padding: .5rem 1rem;
    font-size: 1.6rem;
    color: #9f9f9f;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.single-field input[type="text"]:focus, .single-field input[type="email"]:focus, .single-field textarea:focus {
    border-bottom: 2px solid #00BBC3 !important;
}
.single-field textarea {
    overflow: hidden;
}
.single-field button,
.single-field input[type="submit"]{
    margin-top: 7rem;
}

.single-field span input[type="checkbox"] + label{
    top: -17px;
    color: #fff;
    font-size: .9rem;
    left: 0;
    cursor: default;
    background: #242833;
    padding: 1.6rem;
    margin: .7rem .5rem !important;
    cursor: pointer;
}
.single-field > p,
.single-field > span {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: .5rem;
    color: #9f9f9f;
}
.field-result {
    width: 60%;
    margin: 6rem auto 0;
}

.single-result {
    position: relative;
    padding: 2rem;
    border: 1px dashed #fff;
    cursor: pointer;
    translate: all .4s;
    margin: 2rem 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.fa.fa-pencil-square-o {
    position: absolute;
    right: -5rem;
    top: 50%;
    -webkit-transform: translate(50%);
        -ms-transform: translate(50%);
            transform: translate(50%);
    display:none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
.single-result:hover{
    border-color:gray;
}
.single-result:hover .fa.fa-pencil-square-o {
    display: block;
}
.single-result h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.single-result span {
    margin: 0;
    font-weight: 700;
    color: #9f9f9f;
}






/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-page .contact-mail {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #888;
    display: inline-block;
    margin-top: 3rem;
}
.contact-form {
    width: 50%;
    margin: 5rem auto 0;
    text-align: center;
}
.contact-form h2 {
    margin-bottom: 7rem;
}

.input-grp {
    position: relative;
}
label.material {
    color: #888;
    float: left;
    font-family: "Open Sans",sans-serif;
    font-size: 1.4rem;
    left: 0px;
    position: absolute;
    top: 3px;
    font-weight: normal;
    cursor: text;
    -webkit-transition: .2s ease-in-out all;
    -o-transition: .2s ease-in-out all;
    transition: .2s ease-in-out all;
    font-weight: 600;
    letter-spacing: 2px;
}

/* active state */
input:focus ~ label, input:valid ~ label, textarea:focus ~ label, textarea:valid ~ label, label.material.small-label {
    top: -17px;
    color: #888;
    font-size: .9rem;
    left: 0;
    cursor: default;
}
div.wpcf7-mail-sent-ok {
    border: 2px solid #00BBC3;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 2px;
    font-weight: 700;
    padding: 1rem 0;
    margin-left: 0;
    margin-right: 0;
}

/* BOTTOM BARS ================================= */
.bar  { 
  position:relative; 
  display:block; 
  width:100%;
}
.bar:before, .bar:after   {
  content: '';
  height: 2px;
  width: 0;
  bottom:2.9rem; 
  position:absolute;
  background:#00abb2; 
  -o-transition:0.2s ease all; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}
/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after,
textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
  width:50%;
}


/* HIGHLIGHTER ================================== */
.highlight {
  height: 35%;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 5%;
  width: 30%;
}

/* active state */
input:focus ~ .highlight,
textarea:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from { 
    background: rgba(136,136,136,.7); 
  }
  to  {
    width:0; 
    background:transparent;
  }
}
@keyframes inputHighlighter {
  from { 
    background: rgba(136,136,136,.7); 
  }
  to  { 
    width:0; 
    background:transparent; 
  }
}

.portal-modal.trending-rel .modal-text .trending-material label.material {
  color: #9b9b9b;
  float: left;
  font-family: "Open Sans",sans-serif;
  font-size: 1.6rem;
  left: 0px;
  position: absolute;
  top: 3px;
  font-weight: normal;
  cursor: text;
  -webkit-transition: .2s ease-in-out all;
  -o-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

.portal-modal.trending-rel .modal-text .trending-material{
  padding-top: 1.5rem;
}
.portal-modal.trending-rel .modal-text .trending-material input,
.portal-modal.trending-rel .modal-text .trending-material textarea{
  margin-bottom: 30rem;
}
.portal-modal.trending-rel .modal-text .trending-material .input-grp:last-child input{
  margin-bottom: 2.5rem;
}
.portal-modal.trending-rel .modal-text .trending-material .input-grp:last-child .bar::before,
.portal-modal.trending-rel .modal-text .trending-material .input-grp:last-child .bar::after{
  bottom: 25.5rem;
  position: absolute;
}
.portal-modal.trending-rel .modal-text .trending-material input:focus ~ label, .portal-modal.trending-rel .modal-text .trending-material input:valid ~ label,
.portal-modal.trending-rel .modal-text .trending-material textarea:focus ~ label, .portal-modal.trending-rel .modal-text .trending-material textarea:valid ~ label    {
  top:-2rem;
  font-family: "Open Sans",sans-serif;
  font-size: 1.4rem;
  left: 0;
  cursor: default;
  color: #555;
}



.dsk-login-form input[type="email"], .dsk-login-form input[type="password"], .dsk-login-form input[type="text"], .dsk-login-form textarea {
    background: transparent none repeat scroll 0 0;
    border: none;
    border-bottom: 1px solid #dadada;
    color: 3222;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    padding: .5rem 0;
    width: 100%;
    letter-spacing: 1px;
}
.dsk-login-form input.signup-first-name{
  float: left;
  width: 47%;
  margin-right: 6%;
}
.dsk-login-form input.signup-last-name{
  float: left;
  width: 47%;
}
.dsk-login-form button[type="submit"],
.dsk-login-form input[type="submit"] {
    background: #242833;
    color: #fff;
    -webkit-box-shadow: 0 0 7px #ddd;
    box-shadow: 0 0 7px #ddd;
    margin-top: 2rem;
    border-color: #242833;
}
.dsk-login-form input[type="submit"],
.field-buttons input[type="submit"] {
    display: inline-block;
    padding: .9rem 2.5rem;
    border: 2px solid #333;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    -o-transition: all .3s;
    transition: all .3s;
}
.dsk-login-form button[type="submit"]:hover,
.dsk-login-form input[type="submit"]:hover {
    background: #000;
    border-color: #000;
}
.dsk-login-form input::-webkit-input-placeholder {
    color: #888 !important;
}
.dsk-login-form input:-moz-placeholder {
    color: #888 !important;
}
.dsk-login-form input::-moz-placeholder {
    color: #888 !important;
}
.dsk-login-form input:-ms-input-placeholder {
    color: #888 !important;
} 








/* ==========================================================================
    PORTFOLIO PAGE STYLES
   ========================================================================== */

.portfolio-page.portfolio-1 .banner-section{
    background: #000 url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-portfolio-vshred-banner.jpg) no-repeat center center / cover;
}
.portfolio-page.portfolio-2 .banner-section{
    background: -webkit-linear-gradient(rgba(60, 61, 65, 0.75), rgba(60, 61, 65, 0.75)) repeat fixed 0 0%, #3c3d41 url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-portfolio-shopbolt-banner.jpg") no-repeat scroll 0 0 / 100% 100%;
    background: -o-linear-gradient(rgba(60, 61, 65, 0.75), rgba(60, 61, 65, 0.75)) repeat fixed 0 0%, #3c3d41 url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-portfolio-shopbolt-banner.jpg") no-repeat scroll 0 0 / 100% 100%;
    background: linear-gradient(rgba(60, 61, 65, 0.75), rgba(60, 61, 65, 0.75)) repeat fixed 0 0%, #3c3d41 url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-design-portfolio-shopbolt-banner.jpg") no-repeat scroll 0 0 / 100% 100%;
}
.portfolio-page.portfolio-3 .banner-section{
    background: #333 url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-development-portfolio-skipper-banner.jpg) no-repeat center center / cover;
}
.portfolio-page.portfolio-4 .banner-section{
    background: #333 url(https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-web-development-portfolio-psdtohtml-banner.jpg) no-repeat center center / cover;
}
.banner-btn {
    margin-top: 2rem;
}
.portfolio-page-logo {
	margin-bottom: 3rem;
	max-width: 15rem;
}
.portfolio-page .banner-wrapper {
    padding-top: 7rem;
}
.portfolio-page .simple-line {
    display: block !important;
    height: 2px;
    width: 10rem;
    background: #fff;
    margin: 2.5rem auto 3rem !important;
}
.portfolio-title-wrap {
    padding-top: 10rem;
}
.portfolio-summary {
    background: #fff;
    position: relative;
    margin-top: -20rem;
    padding: 1.5rem 2rem;
    max-width: 25rem;
}
.portfolio-page .text-2 {
    color: #646770;
    letter-spacing: 2px;
}
.portfolio-summary > div {
    margin: 1rem 0 2rem 0;
    overflow: hidden;
}
.portfolio-summary h6 {
    margin-bottom: 0rem;
    color: #242833;
}
.portfolio-summary h6 {
    margin-bottom: 0rem;
    color: #242833;
    letter-spacing: 1px;
}
.portfolio-summary p, .portfolio-summary li {
    color: #9f9f9f;
    margin-bottom: .3rem;
}
.starts p {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: .5rem;
}

.portfolio-details .portfolio-img-holder {
    text-align: center;
    margin: 5rem 0;
}
.portfolio-details .title-text {
    padding: 8rem 0;
}


/* ==========================================================================
    HOW WE WORKS PAGE STYLES
   ========================================================================== */
.how-works .banner-section {
    background: rgba(46, 36, 76, 0.8) url("https://s3.ap-south-1.amazonaws.com/kuthidevs/kuthidevs-how-we-work-banner.jpg") no-repeat center center / cover;
}
.how-works-wrap {
    padding: 10rem 0;
}

.how-works-list{
    position: relative;
}
.how-works-list:before{
    content:"";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #eee;
}

.how-works-list li {
    position: relative;
    padding: 10rem 0 5rem 0;
    width: 100%;
    overflow: hidden;
}
.how-works-list li::before {
    position: absolute;
    content: "";
    height: 2.5rem;
    width: 2.5rem;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-51%,-50%);
        -ms-transform: translate(-51%,-50%);
            transform: translate(-51%,-50%);
    margin-top: 2.5rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.roek-list-title {
    display: inline-block;
    text-align: center;
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 4px;
    border: 2px solid #eee;
    background: #fff;
    color: #ddd;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.how-works-text {
    width: 40%;
    background: #eee;
    padding: 3rem;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.how-works-text::after {
    content: "";
    position: absolute;
    right: 0;
    height: 0;
    width: 0;
    border-top: 1.5rem solid transparent;
    border-left: 2.2rem solid #eee;
    border-bottom: 1.5rem solid transparent;
    -webkit-transition: translateY(-50%);
    -o-transition: translateY(-50%);
    transition: translateY(-50%);
    top: 50%;
    margin-top: -1.5rem;
    margin-right: -1.8rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.how-works-text::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    height: 1px;
    width: 1px;
    background: none;
    -webkit-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    z-index: -11;
}
.how-works-list li:nth-child(odd) .how-works-text{
    float: right;
}
.how-works-list li:nth-child(odd) .how-works-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
}
.how-works-list li:nth-child(odd) .how-works-text::after{
    left: 0;
    margin-left: -1.8rem;
    border-left: 0rem solid #eee;
    border-right: 2.2rem solid #eee;
}
.how-works-text p {
    color: #9f9f9f;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}




.how-works-list li:hover .how-works-text{
    background: none;
}
.how-works-list li:hover::before {
    border: 2px solid #00BBC3;
    background: #00BBC3;
    color: #fff;
}
.how-works-list li:hover .roek-list-title {
    border: 2px solid #00BBC3;
    background: #00BBC3;
    color: #fff;
}
.how-works-list li:hover .how-works-text::after {
    border-left: 2.2rem solid #00BBC3;
    margin-left: 0rem;
    margin-right: -2.2rem;
}
.how-works-list li:nth-child(odd):hover .how-works-text::after{
    border-left: 0rem solid #00BBC3;
    border-right: 2.2rem solid #00BBC3;
    margin-right: 0rem;
    margin-left: -2.2rem;
}
.how-works-list li:hover .how-works-text p, .how-works-list li:hover .how-works-text h6 {
    color: #fff;
}
.how-works-list li:last-child {
    padding: 2.5rem;
}
.how-works-list li:last-child:before{
    display: none;
}
.how-works-list li:hover .how-works-text::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00BBC3;
}

/* ==========================================================================
    EMPTY PAGE STYLES
   ========================================================================== */
.empty-page {
    padding: 25rem 0 20rem 0;
}
.empty-page h1 span {
    font-size: 15rem;
    display: block;
    line-height: 1;
}
/* ==========================================================================
    THANKS PAGE STYLES
   ========================================================================== */
.thanks-page {
    padding: 25rem 0 20rem 0;
}
.thanks-page h1 span {
    font-size: 15rem;
    display: block;
    line-height: 1;
}
/* ==========================================================================
    PAGE STYLES
   ========================================================================== */







/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

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

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * 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 receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}


/* ==========================================================================
   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,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        -webkit-box-shadow: none !important;
                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 for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

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

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

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

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

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

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