/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.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
   ========================================================================== */

::root{
    --primary: #000;
    --secondary: #f5f5f5;
}

* {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -o-box-sizing:border-box;
}

html {
    color: #222;
    font-size: 1em;
    line-height: 1.7;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * 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 audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

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

/*
 * Remove default fieldset styles.
 */

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

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

textarea {
    resize: vertical;
}

section {
    width: 100%;
    scroll-snap-type: y proximity;   
}

#mask {
    background-color: rgba(41, 47, 51, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 40;
    display: none;
}

.content {
    margin: 0 auto;
    max-width: 1200px;
    width: 88%;
}

img{
    max-width: 100%;
}

.tc{
    text-align: center;
}

.flex{
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
    display: -o-flex;
    display: -ms-flex;
}

.sb{
    justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
}

.jc{
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
}

.ac{
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1 {
    font-family: 'Kanit', sans-serif;
}

h2 {
    font-family: 'Kanit', sans-serif;
}

h3 {
    font-family: 'Kanit', sans-serif;
}

h4 {

}

h5 {

}

h6 {

}

p {
    font-family: 'Kanit', sans-serif;
}

p a {

}

h2 a {

}

ul {

}

ul li {

}

ul li a {

}

/* ==========================================================================
   Flex Box Grid System
   ========================================================================== */

.grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    
}

.grid-cell {
    -webkit-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
}

.grid--half>.grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
}
.grid--third>.grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
}
.grid--quarter>.grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
}

.grid--gutters {
    margin: -1em 0 1em -1em;
}

    .grid--gutters>.grid-cell {
        padding: 1em 0 0 1em;
    }

.double--gutters {
    margin: -2em 0 2em -2em;
    }
    
        .double--gutters>.grid-cell {
            padding: 2em 0 0 2em;
        }

.gs-half {
    width: 50%!important;
}

.gs-third {
    width: 33.3333%!important;
}

.gs-third, .gs-twothirds {
    -webkit-box-flex: 0!important;
    -webkit-flex: none!important;
    flex: none!important;
}

.gs-twothirds {
    width: 66.6667%!important;
}

.gs-quarter {
    width: 25%!important;
}

.gs-quarter, .gs-threequarters {
    -webkit-box-flex: 0!important;
    -webkit-flex: none!important;
    flex: none!important;
}

.gs-threequarters {
    width: 75%!important;
}

.gs-1{
    width: 8.333333%!important;
}

.gs-2{
    width: 16.6666667%!important;
}

.gs-3{
    width: 25%!important;
}

.gs-4{
    width: 33.333333%!important;
}

.gs-5{
    width: 41.6666667%!important;
}

.gs-6{
    width: 50%!important;
}

.gs-7{
    width: 58.333333%!important;
}

.gs-8{
    width: 66.6666667%!important;
}

.gs-9{
    width: 75%!important;
}

.gs-10{
    width: 83.333333%!important;
}

.gs-11{
    width: 91.6666667%!important;
}

.gs-12{
    width: 100%!important;
}

.demo {
    background-color: rgba(0,0,0,0.2);
    text-align: center;
}

/* ==========================================================================
   Contact form standard code
   ========================================================================== */

#contact_form {
    background: linear-gradient(127deg, rgb(50, 14, 77) 0%, rgba(0,15,52,1) 57%);
    padding: 1em 1.8em;
    /* border: 1px solid #DDD; */
}

.formRow {
    display: block;
    margin: 1em 0;
}

.formRow label {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #FFF;
}

.formRow input {
    display: block;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #DDD;;
    padding: 6px;
    height: 37px;
    font-size: 0.9em;
}

.formRow textarea {
    display: block;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #DDD;
    padding: 6px;
    height: 214px;
    font-size: 0.9em;
}

.formRow button {
    display: block;
    background-color: #333;
    color: #FFF;
    font-weight: 600;
    font-size: 0.9em;
    text-align: center;
    border: none;
    width: 100%;
    padding: 13px 10px 15px;
    margin: 24px 0 0;
    transition: all 0.3s ease 0s;
}

    .formRow button:hover {
        background-color: #000;
    }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*========= Navigation ==========*/
header {
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    position: fixed;
    background: rgb(43,21,103);
    background: linear-gradient(96deg, rgba(43,21,103,1) 0%, rgba(0,15,52,1) 45%);
    z-index: 10;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation img{
    position: sticky;
    margin: 20px 0 20px 0;
    max-width: 30%;
}

nav{
    display: block;
}

header nav > ul {
    list-style: none;
    display: flex;
    justify-content: flex-end
}

header nav > ul > li > a{
    color: #fbfbfb;
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    font-size: 15px;
    text-decoration: none;
    padding: 0px 30px;
    display: inline-block;
}

header nav > ul > li > a:hover{
    font-weight: 400;
}

.mob-menu {
    display: flex;
    align-items: center;
    position: fixed;
    top: 100vh;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(96deg, rgba(43,21,103,1) 0%, rgba(0,15,52,1) 45%);
    padding: 2em 0;
    overflow-y: auto;
    opacity: 0;
    transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
}
.mob-menu ul {
    list-style: none;
    padding: 0;
    margin: 3em 0;
    text-align: center;
}

.mob-menu li a {
    font-family: 'Mukta';
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    padding: 13px 0;
    margin: 5px 0;
    font-weight: 700;
    color: white;
    font-size: 1.7em;
    margin: 0 auto;
}

.menu-close {
    cursor: pointer;
    overflow: hidden;
    float: right;
    left: auto;
    position: absolute;
    z-index: 30;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(.45,.05,.55,.95) 0s;
    -moz-transition: all 0.2s cubic-bezier(.45,.05,.55,.95) 0s;
    -webkit-transition: all 0.2s cubic-bezier(.45,.05,.55,.95) 0s;
}

.menu-btn {
    cursor: pointer;
    overflow: hidden;
    display: none;
    float: right;
}

/* ========== Home Hero ===========*/
.hero{
    background: rgb(247, 247, 247);
    height: 100vh;
    height: calc(100vh - 12px);
}

.hero-border{
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    height: 12px;
}

.hero::after{
    display:block;
    display: none;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    content: "";
    z-index: 1;
}

.hero .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
    display: -o-flex;
    display: -ms-flex;
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
    
}

.hero-text h1 {
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 720px;
    font-size: 3em;
    line-height: 1.1;
    color: #012E83;
}

.hero-text p {
    font-family: 'Mukta', sans-serif;
    font-weight: 200;
    max-width: 650px;
    font-size: 1.2em;
    line-height: 1.6em;
    color: #012E83;
}


/* ========= Sticky drop CV ===========*/


.sticky {
     width: 122px;
    height: 40px;
    background: #EB59B4;
    position: fixed;
    bottom: 50%;
    right: 20px;
    filter: drop-shadow(6px 6px 30px rgba(0, 0, 0, 0.117));
    z-index: 30;
    transform: rotate(270deg);
    transform-origin: right;
}

.sticky a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: #fff!important;
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    font-size: 0.9em;
    text-align: center;
}

.sticky a:hover {
    text-shadow: -.25px -.25px 0 rgb(255, 255, 255), .25px .25px rgb(255, 255, 255);
    
}



/* ========= Homepage about section ===========*/
.about {
    background: rgb(23,14,77);
    background: linear-gradient(127deg, rgb(50, 14, 77) 0%, rgba(0,15,52,1) 57%);
    padding-bottom: 50px;
    overflow: hidden;
    padding: 6em 0 12em 0;
}

.about-grid{
        align-items: baseline;
}

.about h4{
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    max-width: 720px;
    font-size: 1.2em;
    letter-spacing: 1.2px;
    line-height: 1.5em;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 4em 0 2em 0;
}

.about h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.3px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 2.5em 5em 2em 0;
}

.about p{
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    max-width: 700px;
    font-size: 1em;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
}

.btn {
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: #ffffff;
    font-size: 1em;
    padding: 10px 40px 10px 40px;
    border: solid #72007a 1px;
    filter: drop-shadow(1px 2px 3px #EB5AB5);
    text-decoration: none;
  }


/* ========= Homepage how fintech helps section ===========*/
.how{
    background: #fbfbfb;
    padding: 6em 0 12em 0;
    position: relative;
}

.howto{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: flex-start;
}

.how::after{
    display: block;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    /* left: 0; */
    right: 0px;
    bottom: 0px;
    top: 0;
    width: 12px;
    content: "";
    z-index: 1;
}


.how h2{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 980px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 4em 5em 2em 0;
}

.how h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 5
    00;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 2.5em 5em 2em 0;
}

.how p{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 700px;
    font-size: 1em;
    letter-spacing: 1px;
    color: #182648;
}

.btn-how {
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: #262d3b;
    font-size: 1em;
    padding: 10px 40px 10px 40px;
    border: solid #9602A2 1px;
    filter: drop-shadow(1px 2px 3px #9702a266);
    text-decoration: none;
    margin-top: 6em;
  }

  .btnhelps {
    border-radius: 10px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    color: #182647;
    font-size: 0.85em;
    padding: 5px 25px 5px 25px;
    border: solid #6b6b6b 1.1px;
    text-decoration: none;
    margin-bottom: 12px;
    cursor: default;
  }

/* ========= Homepage case studies section ===========*/
.case_studies {
    background: rgb(23,14,77);
    background: linear-gradient(127deg, #A31D75 0%, #602AAA 57%);
    padding: 6em 0 12em 0;
}

.case_studies h4{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 720px;
    font-size: 1.2em;
    letter-spacing: 1.2px;
    line-height: 1.5em;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 4em 0 2em 0;
}

.case_studies h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.3px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 2.5em 5em 2em 0;
}

.case-studies-container, .how-container, .about-container{
    padding: 6.5em 5em 2em 0;
}

    .case_studies p{
        font-family: 'Kanit', sans-serif;
        font-weight: 200;
        max-width: 700px;
        font-size: 1em;
        letter-spacing: 1px;
        color: rgb(255, 255, 255);
    }

    .btn_case {
        -webkit-border-radius: 28;
        -moz-border-radius: 28;
        border-radius: 28px;
        font-family: 'Mukta', sans-serif;
        font-weight: 400;
        letter-spacing: 1.3px;
        color: #ffffff;
        font-size: 1em;
        padding: 10px 40px 10px 40px;
        border: solid #ffffffe0 1px;
        filter: drop-shadow(1px 2px 3px #f4e2ed75);
        text-decoration: none;
    }

    .case-studies-container .btn_case, .how-container .btn-how, .about-container .btn{
        display: inline-block;
        margin-top: 2em;
    }

  /* ========= Homepage how fintech helps section ===========*/
.looking{
    background: #fbfbfb;
    padding: 10em 0 10em 0;
    position: relative;
}

.looking img{
    display: flex;
    margin: 0 auto;
    padding: 4em 0 2em 0;
    max-width: 83%;
}

.lookingto{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    text-align: center;
}

.looking::after{
    display: block;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    bottom: 0px;
    top: 0;
    width: 12px;
    content: "";
    z-index: 1;
}


.looking h2{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 980px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 4em 5em 2em 5em;
}

.looking h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1.7em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    text-transform: uppercase;
}

.looking p{
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    width: 700px;
    font-size: 1em;
    font-size: 1em;
    letter-spacing: 1px;
    color: #182648;
    margin: 0;
    padding: 6.5em 5em 2em 5em;
    width: 70%;
}

/* ========= Homepage CTA ready bottom section ===========*/
.ready {
    background: rgb(23,14,77);
    background: linear-gradient(127deg, rgb(50, 14, 77) 0%, rgba(0,15,52,1) 57%);
    padding: 12em 0 12em 0;
    margin: 0 auto;
    position: relative;
}

.ready::after{
    display:block;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    content: "";
    z-index: 1;
}

.cta{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
}

.cta div{
    display: flex;
    align-items: center;
}

.ready a{
    margin: 0 auto;
    text-align: center;
}

.ready h1{
    font-family: 'Kanit', sans-serif;
    text-align: center;
    font-weight: 900;
    font-size: 3.2em;
    letter-spacing: 1.8px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0 auto;
    padding: 0 5em 2em 5em;
}

.ready h3{
    font-family: 'Kanit', sans-serif;
    text-align: center;
    font-weight: 400;
    max-width: 980px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0 auto;
    padding: 0 2em;
}

.btn_ready {
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: 'Kanit', sans-serif;
    font-weight: 100;
    letter-spacing: 1.3px;
    color: #ffffff;
    font-size: 1em;
    padding: 5px 40px 5px 40px;
    border: solid #ffffffe0 1px;
    filter: drop-shadow(1px 2px 3px #f4e2ed);
    text-decoration: none;
    margin-left: 5em;
  }

  /*===================== Clients ======================*/
.client-intro   {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.client-about {
    background: rgb(23,14,77);
    background: linear-gradient(127deg, rgb(50, 14, 77) 0%, rgba(0,15,52,1) 57%);
    padding-bottom: 50px;
    overflow: hidden;
    padding: 6em 0 12em 0;
}

.client-about-grid{
        align-items: baseline;
}

.client-about h4{
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    max-width: 720px;
    font-size: 1.2em;
    letter-spacing: 1.2px;
    line-height: 1.5em;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 4em 0 2em 0;
}

.client-about h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.3px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 2.5em 5em 2em 0;
}

.client-about p{
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    max-width: 1000px;
    font-size: 1.3em;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 6.5em 0em 2em 0;
}

.btn {
    -webkit-border-radius: 28;
    -moz-border-radius: 28;
    border-radius: 28px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: #ffffff;
    font-size: 1em;
    padding: 10px 40px 10px 40px;
    border: solid #72007a 1px;
    filter: drop-shadow(1px 2px 3px #EB5AB5);
    text-decoration: none;
  }

  /*================= Candidates ===============*/
.candidate-how{
    background: #fbfbfb;
    padding: 6em 0 12em 0;
    position: relative;
}

.clients-about{
    display: flex;
    align-items: flex-start;
}

.candidate-how-to{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: flex-start;
}

.candidate-how::after{
    display: block;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    /* left: 0; */
    right: 0px;
    bottom: 0px;
    top: 0;
    width: 12px;
    content: "";
    z-index: 1;
}

.candidate-how-container{
    padding: 2em 0 2em 0;
}

.candidate-how h2{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 980px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 4em 0 2em 0;
}

.candidate-how h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 2.5em 0 2em 0;
}

.candidate-how p{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 700px;
    font-size: 1em;
    letter-spacing: 1px;
    color: #182648;
}

.two-col{
    column-count: 2;
    margin-left: -2em;
    margin-right: 2em;
}

    .two-col p{
        margin-top: 0;
        padding: 0 2em;
    }

  .btnhelps {
    border-radius: 10px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    color: #182647;
    font-size: 0.85em;
    padding: 5px 25px 5px 25px;
    border: solid #6b6b6b 1.1px;
    text-decoration: none;
    margin-bottom: 12px;
    cursor: default;
  }
  /*===================== Contact us =====================*/
  
.contact{
    background: #fbfbfb;
    padding: 2em 0 4em 0;
    position: relative;
    margin-top: 3em;
}

.contactto{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: flex-start;
}

.contact::after{
    display: block;
    background: rgb(96,42,170);
    background: linear-gradient(319deg, rgba(96,42,170,1) 0%, rgba(163,29,117,1) 100%);
    position: absolute;
    /* left: 0; */
    right: 0px;
    bottom: 0px;
    top: 0;
    width: 12px;
    content: "";
    z-index: 1;
}

.contact h1{
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    max-width: 980px;
    font-size: 2.3em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 4em 5em 0.5em 0;
}

.contact h2{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 980px;
    font-size: 1.8em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 4em 5em 0.5em 0;
}

.contact h3{
    font-family: 'Kanit', sans-serif;
    font-weight: 5
    00;
    max-width: 980px;
    font-size: 1.4em;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #30007E;
    margin: 0;
    padding: 2.5em 5em 2em 0;
}

.contact p{
    font-family: 'Kanit', sans-serif;
    font-weight: 300;
    max-width: 700px;
    font-size: 1em;
    letter-spacing: 1px;
    color: #182648;
    margin: 0;
    padding: 1.5em 5em 2em 0;
}

.custom-file-input {
  color: transparent;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
    content: 'Select some files';
    color: #fff;
    display: inline-block;
    border-radius: 25px;
    padding: 8px 25px;
    background: transparent;
    border: solid #72007a 1px;
    filter: drop-shadow(1px 2px 3px #EB5AB5);
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
}

.custom-file-input.file-uploaded::before{
    content: 'File selected';
}

.custom-file-input:active {
    outline: 0;
}


.btn-contact {
    border-radius: 28px;
    font-family: 'Mukta', sans-serif;
    font-weight: 400;
    letter-spacing: 1.3px;
    color: #ffffff;
    font-size: 1em;
    padding: 10px 40px 10px 40px;
    border: solid #72007a 1px;
    filter: drop-shadow(1px 2px 3px #EB5AB5);
    text-decoration: none;
    width: 100%;
    background: transparent;
    display: inline-block;
    padding: 15px 40px;
}


#contact_form > div label, aside form label {
    font-family: 'Kanit', sans-serif;
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 0 4px;
    color: white;
}

#contact_form > div input, aside form input {
    width: 100%;
    height: 40px;
    border: 1px solid #DDD;
    padding: 6px;
    font-family: 'Mukta';
    font-size: 0.9em;
}

#contact_form > div textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #DDD;
    padding: 6px;
    font-family: 'Mukta';
    font-size: 0.9em;
}

#contact_form > div {
    width: 100%;
    margin: 1em 0;
    overflow: hidden;
}

#candidates_form > div label, aside form label {
    font-family: 'Kanit', sans-serif;
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 0 4px;
    color: white;
}

#candidates_form > div input, aside form input {
    width: 100%;
    height: 40px;
    border: 1px solid #DDD;
    padding: 6px;
    font-family: 'Mukta';
    font-size: 0.9em;
}

#candidates_form > div textarea {
    width: 100%;
    height: 160px;
    border: 1px solid #DDD;
    padding: 6px;
    font-family: 'Mukta';
    font-size: 0.9em;
}

#candidates_form > div {
    width: 100%;
    margin: 1em 0;
    overflow: hidden;
}

.contact_forms {
    display: block;
}



/*======================= Footer ================================*/
footer nav > ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

footer nav > ul > li{
    color: #170e4d;
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    font-size: 15px;
    padding: 0px 20px;
    display: inline-block;
}

    footer nav li a{
        text-decoration: none;
        color: inherit;
    }
footer p{
    display: none;
}

.wpcc-banner .wpcc-message{
    font-family: 'Kanit', sans-serif;
    font-size: 0.9em;
}

.wpcc-btn{
    font-family: 'Kanit', sans-serif;
    font-size: 0.9em;
}

.wpcc-color-custom-717813380 .wpcc-btn {
    color: rgb(255, 255, 255);
    background-color:#EB59B4;
}

.wpcc-btn {
    border: 0;
    display: block;
    font-size: .9em;
    font-weight: 200;
    outline: 0;
    padding: 0.4em 0.8em;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: background-color .2s ease;
    -moz-transition: background-color .2s ease;
    -ms-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
}

/*===================== Responsive Styling =========================*/
@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {
    /*=== Header ===*/

        nav ul{
            display: none !important;
        }

        .head-right p a{
            display: none;
        }

        .menu-btn{
            display: block;
        }
    
        footer p{
            color: #170e4d;
            font-family: 'Kanit', sans-serif;
            font-weight: 200;
            font-size: 12px;
            padding: 0px 20px;
            display: inline-block;
        }



    .menu-btn {
        display: flex;
        flex-direction: row-reverse;
    }
}

@media only screen and (max-width: 868px) {

    .logo{
        width: 25%;
        position: absolute;
        left: 20px;
        top: 20px;
    }
    
    .btn {
        -webkit-border-radius: 28;
        -moz-border-radius: 28;
        border-radius: 28px;
        font-family: 'Mukta', sans-serif;
        font-weight: 400;
        letter-spacing: 1.3px;
        color: #ffffff;
        font-size: 0.8em;
        padding: 10px 40px 10px 40px;
        border: solid #72007a 1px;
        filter: drop-shadow(1px 2px 3px #EB5AB5);
        text-decoration: none;
    }
    .about-grid {
        flex-direction: column;
    }

    .how-grid {
        flex-direction: column;
    }

    .cta div {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .gs-4 {
        width: 100%!important;
    }

    .hero-text h1{
        padding-top: 2em;
    }

    .hero-text p{
        padding-bottom: 2em;
    }

    .how{
        min-height: 80vh;
        padding: 6em 0 6em 0;
    }

    .how p {
/*        padding: 1em 0 5em 0;*/
    }

    .how h3{
        padding: 2.5em 0em 2em 0;
    }

    .about {
        background: rgb(23,14,77);
        background: linear-gradient(127deg, rgb(50, 14, 77) 0%, rgba(0,15,52,1) 57%);
        overflow: hidden;
        padding: 6em 0 6em 0;
    }

    .about h4 {
        font-size: 1.1em;
        min-width: 100%;
        padding: 0 0 3em 0;
    }

    .about h3{
        font-size: 1.4em;
        letter-spacing: 1.3px;
        color: rgb(255, 255, 255);
        padding: 2.5em 0 0 0;

    }    

    .about p {
        font-size: 0,9em;
/*        padding: 1em 0 5em 0;*/
        
    }

    .case_studies p{
/*        padding: 1em 0 5em 0;*/
    }

    .case-studies-container, .how-container, .about-container{
        padding: 6.5em 5em 2em 0;
        padding: 1em 0 5em 0;
    }

    .case_studies h3{
        padding: 2.5em 0 0 0;
    }

    .btn{
        margin-left: 0;
        font-size: 1em;
    }

    .looking img {
        max-width: 33%;
    }

    .ready h1{
        padding: 0 0 2em 0;
        font-size: 2.2em;
    }

    .ready h3 {
        padding: 1em 2em;
    }

    .candidate-how p{
/*        padding: 1em 0em 1em 0;*/
    } 

    .candidate-how-container{
        padding: 1em 0em 1em 0;
    }

    .candidate-how h3{
        padding: 2.5em 0 2em 0;
    }

    .gs-half {
        width: 100%!important;
    }

    .btn-how{
        margin-top: 2em;
    }

    .looking img {
        display: none;
    }

    .looking h3 {
        margin-top: 2em;
    }

    .hero-text h1 {
        max-width: 720px;
        font-size: 2em;
        line-height: 1.3;
    }

    .two-col {
        column-count: 1;
        margin-left: -2em;
        margin-right: 2em;
    }

    .client-intro {
        justify-content: flex-start;
    }

}

@media only screen and (max-width: 667px) {}

@media only screen and (max-width: 568px) {}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 320px) {}


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

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

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

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

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

/*
 * Hide visually and from screen readers, 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;
}

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

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

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

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

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -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 that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

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

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

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

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

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


/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

   @media only screen and (max-width : 1000px) {}
   @media only screen and (max-width : 768px) {}
   @media only screen and (max-width : 660px) {}
   @media only screen and (max-width : 460px) {}
   @media only screen and (max-width : 380px) {}

