/* RESET CSS */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html,
body {
    height: 100%;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
}



.circle {
    clear: both;
    list-style: circle;
}

.text-center {
    text-align: center;
}



/* VARIABLES ************** 

NOT VALIDATING? Looking into this later

:root {
    --primary: #0000ff;
    --width-small: 700px;
    --width-medium: 800px;
    --width-large: 1100px;
}

*/








/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* ==== GRID SYSTEM ==== */

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin-right: 70px;
  margin-bottom: 40px;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 45%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}


.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}


@media only screen and (min-width: 45em) {  /* 720px */
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 27.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }


@media only screen and (max-width: 1000px) {
    .col-6 {
        width: 44%;
      }
}


  .col-7 {
    width: 53.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }
}

.col-last {
    margin-right: 0!important;
}

.hard {
    margin: 0;
}

.para-icon {
    border-radius: 4px;
    float: left;
    margin-right: 10px;
}

.outline {
    border: 4px solid black;
}







.design-thinking {
    position: relative;
    width: 100%;
    border: 4px solid black; 
    display: flex;
}

.design-thinking__item {
    flex: 1;
    outline: 2px solid black; 
    padding: 2em; 
    margin: 0;
}

@media only screen and (max-width: 1000px) {
    .design-thinking {
        flex-direction: column;
    }
}








/* TEXT STYLES ************** */

h1, .h1  {
    font-size: 60px;
    margin-bottom: 2rem;
    line-height: 4rem;
    font-weight: 300;
}


@media (max-width: 800px), (max-height: 550px) {
    h1, .h1  {
        font-size: 40px;
        line-height: 3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 400px) {
    h1, .h1  {
        font-size: 30px;
        line-height: 2rem;
        margin-bottom: 0.8rem;
    }
}



h2, .h2  {
    font-size: 30px;
    margin-bottom: 2rem;
    line-height: 3rem;
    font-weight: 400;
}

@media (max-width: 800px), (max-height: 550px) {
    h2, .h2  {
        font-size: 28px;
        line-height: 2.2rem;
        padding: 1rem 0;
    }
}


h3, .h3  {
    font-size: 20px;
    margin-bottom: 2rem;
    line-height: 2rem;
    font-weight: 500;
}



.arrow {
    color: grey;
    font-size: medium;
}


a, p, ul, label {
    font-size: 20px;
    line-height: 2rem;
    margin-bottom: 20px;
}

label {
    margin-bottom: 10px;
}


@media (max-width: 800px) {
    a, p, ul, label {
        font-size: 16px;
        line-height: 1.6rem;
        margin-bottom: 20px;
    }
    label {
        margin-bottom: 10px;
    }
}

.p-larger p {
    font-size: 25px;
    line-height: 2rem;
}

.p-smaller * {
    font-size: 14px;
    line-height: 1.5rem;
}





a,
a:hover,
a:visited,
a:active {
    position: relative;
    text-decoration: none;
    font-weight: 400;
    color: #0000ff;
}

a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0000ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: top left
}

a:hover::before {
    transform: scaleX(1);
}

a.no-underline:hover::before {
    display: none;
}

strong {
    font-weight: 900;
}

small {
    font-size: 10px;
    font-family: monospace;
}

@media (max-width: 800px), (max-height: 550px) {
    small {
        font-size: 9.5px;
    }
}

.inter-100 {
    font-family: "Inter", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.offset {
    position: relative;
    left: -10px;
}

.no-wrap {
    white-space: nowrap;
}

.push-bottom {
    margin-bottom: 24px;
}

.table-style td {
    padding: 12px 12px 12px 0px;
}





/* PANELS ************** */

.panel {
    max-width: 860px;
    margin: 0px auto;
    padding: 40px;
    
    transition: padding 0.4s;
}

@media (min-width: 800px) {
    .panel {
        padding: 60px;
    }
}

@media (max-width: 450px) {
    .panel {
        padding: 20px;
    }
}

.panel--wide {
    max-width: 1200px;
}

.panel--hero {
    padding-top: 120px;
    padding-bottom: 0px;
}

.panel--home {
    /* background-color: bisque; */
    height: calc(100% - 120px);
    padding-top: 120px;
    padding-bottom: 0px;
}

@media (max-width: 800px) {
    .panel--home {
        background-image: url(/images/mobile-bg.png);
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center bottom 180px;
    }
}

@media (max-height: 650px) {
    .panel--home {
        background-image: none;
    }
}


.panel--narrow {
    max-width: 620px;
}

.panel-concept {
    background-color: #D9F5F0;
}



.panel-break {
    background-color: #3B78BD;
    /* height: calc(100vh - 275px); */
    min-height: 400px;
    padding-top: 100px;
}

.panel-break * {
    color: #FFF;
}

.panel-break--grey {
    background-color: #F5F5F5; 
    height: auto;
}

.panel-break--grey * {
    color: black;
}

.panel-break--grey button span {
    color: #FFF;
}

.panel-break--pxd-investigate {
    background: #9165A0;
}

.panel-break--pxd-ideate {
    background: #233857;
}

.panel-break--pxd-design {
    background: #233857;
}

.panel-break--pxd-define {
    background: #3E70B5;
}

.panel-break ul {
    margin: 22px 65px;
}

@media (max-width: 600px) {
    .panel-break ul {
        margin: 22px 75px;
    }
}



.panel-break__icon {
    float: left;
    margin-right: 20px;
    border-radius: 4px;
    width: 56px;
}

@media (max-width: 800px) {
    .panel-break__icon {
        width: 46px;
    }
}

@media (max-width: 600px) {
    .panel-break__icon {
        width: 36px;
    }
}

.panel-footer-recruit {
    height: calc(100vh - 275px);
    padding-top: 100px;

    background-image: url("../images/footer-recruit.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 360px 225px;
}

.panel-footer-jet2 {
    height: calc(100vh - 275px);
    padding-top: 100px;
    background-image: url("../images/footer-jet2.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 360px 225px;
}





.theme-bg-recruit {
    background-color: #4389C5;
}

.theme-bg-recruit * {
    color: #FFF;
}

.theme-bg-recruit input {
    color: #000;
}

.theme-bg-jet2 {
    background-color: #E7EDFF;
}

.theme-bg-concept {
    background-color: #D9F5F0;
}




.responsive-image {
    width: 100%;
    height: auto;
    position: relative;
    top: 3px;
}


.design-shot {
    margin-bottom: 20px;
}


.skill-tag { 
    display: inline-block;
    background-color: aqua;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-right: 10px
}


/* BUTTONS ************** */

.button {

    position: relative;
    transition: background-position 0.4s ease-out;
    background-image: linear-gradient(to left, #0000d3 50%, #0000ff 50%);
    background-position: 0;
    background-size: 200%;

    color: #FFF;
    cursor: pointer;

    padding: 12px 28px 12px 12px;
    margin-right: 12px;
    font-family: "Inter", sans-serif;
    /* font-optical-sizing: auto; */
    font-weight: 600;
    font-style: normal;
    border: 0px;
    border-radius: 6px;
}

.button img {
    position: absolute;
    right: 12px;
    transition: right 0.4s ease-out;
    width: 14px;
}

.button span {
    display: inline-block;
    padding: 0 5px;
}

/*
@media (max-width: 800px), (max-height: 550px) {
    .button {
        padding-right: 0px;
    }
}
*/


.button:hover {
    background-position: -100%;
}

.button:hover img {
    right: 10px;
}

.button--back {
    padding: 12px 12px 12px 28px;
}

.button--back img {
    transition: left 0.4s ease-out;
    right: auto;
    left: 12px;
}

.button--back:hover {
    background-position: 100%;
}

.button--back:hover img {
    left: 10px;
}

.button--secondary {
    background-image: linear-gradient(to left, #2d2d2d 50%, #000 50%);
}

.button--previous {
    padding: 12px 12px 12px 28px;
}

.button--previous img {
    transition: left 0.4s ease-out;
    right: auto;
    left: 8px;
}

.button--previous:hover img {
    left: 6px;
}



/* LISTS ************** */

.ordered-list {
    list-style: none;
    counter-reset: item;
}

.ordered-list li {
    counter-increment: item;
    margin-bottom: 5px;
    padding: 12px;
}

.ordered-list li:before {
    margin-right: 10px;
    content: counter(item);
    font-size: 14px;

    width: 1.4em;
    display: inline-block;
    font-weight: 800;
}

.ordered-list__extra {
    display: block;
    color: dimgray;
    padding: 12px 0px 0px 34px;
}


/* TOP BAR ************** */

.top-bar {
    position: fixed;
    padding: 0px;
    width: 100%;
    height: 72px;
    top: 0px;
    vertical-align: middle;
    z-index: 1;
    transition-property: top;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.top-bar a {
    display: inline-block;
    padding: 20px 0px;
    margin-left: 10px;
    margin-bottom: 0px;
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 40px;
}

@media (max-width: 450px) {
    .top-bar__inner {
        padding: 0 20px;
    }
}


a.top-bar__me {
    margin-left: 0px;
    padding: 0;
    transform: skewY(-30deg) scaleX(0.8);
    position: relative;
    top: 26px;
    left: -3px;
}

.top-bar--offset {
    top: -70px;
}








.tabs {
    margin-bottom: 0px;
}

.tabs__item {
    display: inline-block;
    vertical-align: middle;
}

.tabs__item a {
    color: black;
}

.tabs__item--selected a {
    color: #0000ff;
}

.tabs__item--selected a::before {
    transform: scaleX(1);
}

@media (min-width: 800px) {
    .tabs__separate {
        margin-right: 20px;
    }
}

.tabs__item--icon {
    margin-top: 5px;
    margin-left: 10px;
}

.tabs__item--icon a {
    padding: 0;
    margin: 0;
}

@media (max-width: 800px) {
    .tabs__item--icon {
        display: none;
    }
}





.logo-dribbble { 
    background-image: url(../images/icon-dribbble.svg);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px; 
    height: 30px;
}

.logo-dribbble span { 
    display: none; 
}

.logo-linked-in { 
    background-image: url(../images/icon-linkedin.svg);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    width: 30px; 
    height: 30px;
}

.logo-linked-in span { 
    display: none; 
}




.work-card * {
    color: #000;
}

.work-card:hover * {
    color: #0000ff;
}

@media (min-width: 800px) {
    .work-card--2 {
        position: relative;
        top: 60px;
    }
}



/* JOB TITLE ************** */

.job-title {
    position: relative;
    white-space: nowrap;
    position: relative;
    display: inline-block;
    height: 70px;
    overflow: hidden;
    z-index: 1;
    top: 17px;
    transition: width 0.4s;
}

@media (max-width: 800px), (max-height: 550px) {
    .job-title {
        top: 12px;
        margin-top: 0px;
        height: 50px;
    }
}




.job-title__line {
    position: absolute;
    top: 0px;
    transition: top 1s;
}


/* JOB TITLE 1 */

.job-title--1 {
    width: 470px;
}

.job-title--1 .line--1 {
    top: 0px;
}

.job-title--1 .line--2,
.job-title--1 .line--3,
.job-title--1 .line--4,
.job-title--1 .line--5 {
    top: 70px;
}

@media (max-width: 801px) {
    .job-title--1 {
        width: 310px;
    }
}



/* JOB TITLE 2 */

.job-title--2 {
    width: 520px;
}

.job-title--2 .line--1 {
    top: -70px;
}

.job-title--2 .line--2 {
    top: 0px;
}

.job-title--2 .line--3,
.job-title--2 .line--4,
.job-title--2 .line--5 {
    top: 70px;
}

@media (max-width: 800px), (max-height: 550px) {
    .job-title--2 {
        width: 348px;
    }
}


/* JOB TITLE 3 */

.job-title--3 {
    width: 608px;
}

.job-title--3 .line--1,
.job-title--3 .line--2 {
    top: -70px;
}

.job-title--3 .line--3 {
    top: 0px;
}

.job-title--3 .line--4,
.job-title--3 .line--5 {
    top: 70px;
}

@media (max-width: 800px), (max-height: 550px) {
    .job-title--3 {
        width: 408px;
    }
}




/* JOB TITLE 4 */

.job-title--4 {
    width: 464px;
}

.job-title--4 .line--1,
.job-title--4 .line--2,
.job-title--4 .line--3 {
    top: -70px;
}

.job-title--4 .line--4 {
    top: 0px;
}

.job-title--4 .line--5 {
    top: 70px;
}

@media (max-width: 800px), (max-height: 550px) {
    .job-title--4 {
        width: 311px;
    }
}




/* JOB TITLE 5 */

.job-title--5 {
    width: 480px;
}

.job-title--5 .line--1,
.job-title--5 .line--2,
.job-title--5 .line--3,
.job-title--5 .line--4 {
    top: -70px;
}

.job-title--5 .line--5 {
    top: 0px;
}

@media (max-width: 800px), (max-height: 550px) {
    .job-title--5 {
        width: 320px;
    }
}



/* AVAILABLITY ************** */

.availablity {
    position: relative;
    display: inline-block;
    font-size: 13.3333px;
    padding: 1rem;
    font-weight: 400;
    color: green;
}

@media (max-width: 800px), (max-height: 550px) {
    .availablity {
        padding: 1rem 0 1rem 0.8rem;
    }
}

.availablity-dot {
    display: flex;
    float: left;
    height: 10px;
    width: 10px;
    background-color: green;
    border-radius: 10px;
    margin-right: 12px;
    margin-top: 1px;
    z-index: 2;
}

.availablity-dot::after {
    content: "";
    display: flex;
    height: 10px;
    width: 10px;
    transform: scale(1.4);
    opacity: 0.5;
    outline: 3px solid green;
    border-radius: 10px;

    animation-duration: 3s;
    animation-name: dotAnimation;
    animation-iteration-count: infinite;
}

@keyframes dotAnimation {
    from {
        transform: scale(1);
        opacity: 0.5;
    }

    to {
        transform: scale(1.4);
        opacity: 0;
    }
}







.pad {
    padding: 62px;
}

@media (max-width: 800px), (max-height: 550px) {
    .pad {
        padding: 42px;
    }
}

.flex-container {
    display: flex;
    flex-direction: row;
}

.flex-item {
    flex: 50%;
}

.flex-container--full {
    height: 100%;
}



/* INTRO CANVAS - RIGHT HAND SIDE ************** */

.body-home {
    background-image: /* url(../images/guide.png),*/ url(../images/home-bg.jpg); 
    background-repeat: /*no-repeat,*/ no-repeat; 
    background-position:  /*calc(100% + 100px) 100%,*/ top left; 
    background-size: /*300px 300px,*/ 100% 100%;
    transition: background-size 100ms ease-out;
}

@media (min-width: 1200px) {
    .body-home {
        background-position: /* bottom right, */ top left; 
        background-size: /* 700px 675px,*/ 100% 100%;
    }
}


.content-panel {
    position: relative;
}

.content-panel__item {
    position: absolute;
    background-color: #FFF;
    left: 0px;
    width: 100%;
    height: 100%;
}



/* Homepage tiles */

.intro-canvas {
    position: fixed;
    transition-delay: 1s;
    width: 50%;
    max-width: 815px;
    height: 100%;
    top: 0px;
    left: 50%;
    transition: left 100ms ease-out;

}

@media (max-width: 1150px) {
    .intro-canvas {
        left: 60%;
    }
}

@media (max-width: 1050px) {
    .intro-canvas {
        left: 70%;
    }
}

@media (max-width: 970px) {
    .intro-canvas {
        left: 80%;
    }
}

@media (max-width: 900px) {
    .intro-canvas {
        display: none;
    }
}

.intro-canvas-item {
    position: absolute;
    top: 100px;
    right: 0px;
    opacity: 0;
    margin-top: 0px;
    transition: 0.8s;
    transition-property: opacity, margin;
    /* transition-delay: 5.2s; */
}

.body-state1 .intro-canvas-item {
    opacity: 1;
}

.intro-canvas-item img {
    width: 100%;
    /* opacity: 0; */
    position: relative;
}

.intro-canvas-item img {
    position: relative;
    transition: 0.8s;
    transition-property: margin-top;
}

.intro-canvas-item img:hover {
    margin-top: -4px;
}




.jet2-logo {
    width: 125px;
    right: 219px;
    top: 269px;
    transition-delay: 0.05s;
}

.jet2-screen2 {
    width: 214px;
    /* height: 224px; */
    top: 129px;
    right: 309px;
    transition-delay: 0.15s;
}

.jet2-screen3 {
    width: 298px;
    /* height: 224px; */
    top: 333px;
    right: 503px;
    transition-delay: 0.2s;
}

.emis-logo {
    width: 125px;
    /* height: 136px; */
    right: 220px;
    top: 408px;
    transition-delay: 0.3s;
}

.emis-screen0 {
    width: 270px;
    /* height: 231px; */
    top: 103px;
    right: 72px;
    transition-delay: 0.35s;
}

.emis-screen1 {
    width: 310px;
    /* height: 231px; */
    top: 154px;
    right: 16px;
    transition-delay: 0.4s;
}

.emis-screen2 {
    width: 363px;
    /* height: 260px; */
    top: 308px;
    right: 110px;
    transition-delay: 0.45s;
}

.emis-screen2b {
    width: 363px;
    /* height: 260px; */
    top: 797px;
    right: -30px;
    transition-delay: 0.5s;
}

.emis-screen3 {
    width: 359px;
    /* height: 258px; */
    top: 416px;
    right: 254px;
    transition-delay: 0.55s;
}

.nhs-logo {
    width: 125px;
    /* height: 136px; */
    right: 321px;
    top: 334px;
    transition-delay: 0.6s;
}

.nhs-screen1 {
    width: 280px;
    /* height: 267px; */
    top: 303px;
    right: -33px;
    transition-delay: 0.65s;
}

.sky-logo {
    width: 125px;
    /* height: 136px; */
    right: 417px;
    top: 265px;
    transition-delay: 0.7s;
}

.sky-ff {
    width: 255px;
    /* height: 136px; */
    right: 324px;
    top: 402px;
    transition-delay: 0.7s;
}

.sky-poker {
    width: 225px;
    /* height: 136px; */
    right: 66px;
    top: 475px;
    transition-delay: 0.8s;
}

.sky-vegas {
    width: 355px;
    /* height: 136px; */
    right: 179px;
    top: 565px;
    transition-delay: 0.9s;
}

.sbg-logo {
    width: 125px;
    /* height: 136px; */
    right: 545px;
    top: 523px;
    transition-delay: 1s;
}



/* STATE TRANSITIONS *************************************  */

.body-state1 .intro-canvas-item {
    opacity: 1;
    margin-top: -20px;
}



/* FADE IN ANIMATIONS *************************************  */

.fadein {
    opacity: 0;
    position: relative;

    -webkit-animation: fadein 1s; 
       -moz-animation: fadein 1s;
        -ms-animation: fadein 1s;
         -o-animation: fadein 1s;
            animation: fadein 1s;
    
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from { top: 20px; left: 20px;  opacity: 0; }
    to   { top: 0px; left: 0px;  opacity: 1; }
}

@-moz-keyframes fadein {
    from { top: 20px; left: 20px;  opacity: 0; }
    to   { top: 0px; left: 0px;  opacity: 1; }
}

@-webkit-keyframes fadein {
    from { top: 20px; left: 20px;  opacity: 0; }
    to   { top: 0px; left: 0px;  opacity: 1; }
}

@-ms-keyframes fadein {
    from { top: 20px; left: 20px;  opacity: 0; }
    to   { top: 0px; left: 0px;  opacity: 1; }
}

@-o-keyframes fadein {
    from { top: 20px; left: 20px;  opacity: 0; }
    to   { top: 0px; left: 0px;  opacity: 1; }
}




.fadein--delay0 {
    animation-delay: 0s;
}

.fadein--delay1 {
    animation-delay: 0.2s;
}

.fadein--delay2 {
    animation-delay: 0.4ms;
}

.fadein--delay3 {
    animation-delay: 0.6ms;
}

.fadein--delay4 {
    animation-delay: 0.8ms;
}

.fadein--delay5 {
    animation-delay: 1ms;
}









/* FORM ****** */

.form label {
    display: block;
    font-weight: 900;
}

.form input, .form textarea {
    border: 2px solid grey;
    border-radius: 4px;
    padding: 7px;
    font-size: large;
    transition: border 150ms;
    width: 100%;
    font-family: "Inter", sans-serif;
    margin-bottom: 1rem;
    width: 95%;
}

input:focus, textarea:focus {
    border: 2px solid #0000ff;
    outline: 4px solid #0000ff40;
}

.form-horizontal input {
    max-width: 170px;
    float: left;
    border-right: 0px;
    border-radius: 3px 0px 0px 3px;
}

.form-horizontal input:focus {
    border-right: 0px;
    border-radius: 3px 0px 0px 3px;
}

.form-horizontal button { 
    border-radius: 0px 3px 3px 0px;
}



/* HOMEPAGE ****** */

.home {
    display: flex;
    flex-direction: row;
    flex-direction: column;
    height: 100%;
}

.home-item-1 {
    padding-top: 135px;
    padding-left: 42px;
    padding-right: 42px;
}

@media (min-width: 800px) {
    .home-item-1 {
        padding-left: 64px;
        padding-right: 64px;
    }
}

.home-item-2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.home-item-2 .flex-item {
    white-space: nowrap;
    padding-right: 22px;
}

@media (max-width: 700px),(max-height: 550px) {
    .home-item-2 ul li {
        display: inline;
        padding-right: 12px;
    }
}





/* ALL RADIOS ****** */

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #0000ff;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}



.radio--horizontal div {
        display: inline-block;
        padding-right: 20px;
}