/*!
Theme Name: uratarina
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/

/*** UNIVERSAL ***/
* {
    box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0;     
    background:var(--white);
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: var(--white);
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
img {
    display: block;
}
a:focus, button:focus, input:focus {
	outline:none;
}
:root {
    --black: #000000;
    --dark: #0f0f1f;
    --white: #ffffff;
    --light: #f9f9f9;
    --grey: #f6f6f6;
    --green: #008b54;
    --yellow: #f6bf23;
}
p, li {
    font-size: 18px;
    line-height: 32px;
}
h1, h2, h3, h1 a, h2 a, h3 a, h4, h5, h6, h4 a, h5 a, h6 a {
    font-weight: 600;
}
h1 {
    font-size: 86px;
    line-height: 104px;
    letter-spacing: -3px;
}
h2 {
    font-size: 64px;
    line-height: 72px;    
    letter-spacing: -2px;
    margin-top:0;
}
h3 {
    font-size: 46px;
    line-height: 54px;
    letter-spacing: -1.5px;
    margin-top:0;
}
h4 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -1px;
    margin-top:0;
}
h5 {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1px;
}
h6 {
    margin-top: 0;
    color: var(--green) !important;
    font-weight: bold;
    font-size: 14px;
}
.post, .page {
	margin:0;
}
/*** HEADER ***/
#headercontainer {
	position: absolute;
	width:100%;
	max-width: 100%;
	z-index: 9999;
	transition: 0.2s all ease-in-out;
}
.site-header {	
	position: relative;
	height:160px;
	margin: 0 auto;
}
.site-title {
    position: absolute;
    top: 50%;
    left:120px;
    transform: translateY(-50%);   
    z-index: 1;
}
.site-title img {
    width: 300px;
    height:auto;
}

/*** BANNER ***/
.banner-container {    
    position: relative;
    overflow: hidden;
    height:100vh;
    min-height: 800px;    
}
.banner-graphic {
    display: block;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;  
    max-width: unset;  
    object-fit: cover;  
    width: calc(100% + 2px);
    height: calc(100% + 2px); 
    margin-top:-1px;
    margin-left:-1px;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 22 14 / 20%);
}
.banner-content {
    position: absolute;
    left: 0;
    bottom:0;    
    padding:120px;
    width: 100%;    
    z-index: 3;
}
.banner-content h1 {
    font-size: 96px;
    line-height: 114px;
    color:var(--white);
    max-width: 991px;
    text-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.banner-content p {
    font-size: 28px;
    line-height: 44px;
    color: var(--white);
    margin-bottom: 80px;
    max-width: 991px;
}
a.cta {
    display: inline-block;    
    padding: 16px 70px 16px 40px;
    background:var(--green);    
    color: var(--white) !important;
    border-radius: 40px;    
    text-decoration: none;
    font-size: 18px;    
    transition: 0.1s all ease-in-out;
    overflow: hidden;
    position: relative;
}
a.cta:after {
    content:'';
    background:url('https://viherpalveluthyvonen.fi/ura/wp-content/themes/uratarina/assets/arrow-right.svg') no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    right:30px;
    top:50%;
    transform: translateY(-50%);
    transition: 0.2s all ease-in-out;
}
a.cta:nth-of-type(2){
    margin-left: 20px;
}
a.cta:hover {
    background:var(--yellow);
}
a.cta:hover:after {
    right:25px;
}

/*** NAV ***/
#nav-icon {
  display: none;
}
.toggle {
  position: relative;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition-duration: .5s;
}
.bars {
  width: 100%;
  height: 2px;
  background:var(--black);
  border-radius: 4px;
}
#bar2 {
  transition-duration: .8s;
}
#bar1,#bar3 {
  width: 70%;
}
#nav-icon:checked + .toggle .bars {
  position: absolute;
  transition-duration: .5s;
  background:var(--black);
}
#nav-icon:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}

/*** MAIN MENU ***/
.main-navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.main-navigation:hover a {
    opacity: 0.6;
}
.main-navigation ul {
    padding-left: 0;
    padding:6px 0;
}
.main-navigation ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    margin: 0 6px 0 0;
    cursor:pointer;
}
.menu-item-has-children:hover:after {
    transform: rotate(180deg);
}
.main-navigation ul li:last-of-type {
	margin-right:0;
}
.main-navigation ul li:first-of-type {
    margin-left: 0;
}
.main-navigation ul li a {
    position: relative;
    color:var(--white);
    font-size: 16px;
    text-decoration: none;
    padding: 16px;
    letter-spacing: 0.4px;
    z-index: 3;
    transition: all 0.3s ease-in-out;
    font-weight: 300;
}
.main-navigation ul li a:hover {
    opacity: 1 !important;
}
.main-navigation ul li.current-menu-item a {
    opacity: 1 !important;
}
.main-navigation ul ul {
    position: fixed;
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    left: 50%;
    width: 1240px;
    min-height: 650px;
    max-height: calc(100vh - 100px);
    transform: translateX(-50%);
    border: solid 1px rgba(0,0,0,0.1);
    top: 86px;
    background: var(--white);
    transition: 0.1s all ease-in;
    transition-delay: 0.1s;
    margin-top: -20px;
    padding:20px;
    border-radius: 0 0 20px 20px;
    overflow-y: auto;
}

/*** MOBILE MENU ***/
.mobile-menu {  
    display: none;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);        
    z-index: 102;
    transition: 0.2s all ease-in-out;
}

/*** SIDENAV ***/
.menu {
    padding-left: 0;
}
.menu-paamenu-container {
    width:100%;
}
.overlay {
    background:var(--white);
    height: auto;
    max-height: calc(100vh - 20px);
    width: 600px;
    position: fixed;
    z-index: 1;
    padding: 60px;
    padding-top: 140px;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    top: 20px;
    transition: 0.2s;
    overflow: auto;
    border-radius: 40px;
    transform: scale(0.8);
    box-shadow: 0 0 15px 10px rgba(0,0,0,0.05);
}
.overlay-background {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(7 8 8 / 60%);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: 0.2s all ease-in-out;
}
.show-overlay-background {
    opacity: 1 !important;
    visibility: visible !important;
}
.overlay ul.menu {
    padding:0;
    margin:0;
}
.overlay ul.menu li {
    margin:0;
    margin-bottom: 20px;
    cursor:pointer;
    list-style-type: none;
    position: relative;
}
.overlay ul.menu li a {
    position: relative;
    text-decoration: none;
    color:var(--black);
    font-size: 28px;
    letter-spacing: -0.4px;
    line-height: 46px;
    font-weight: 500;
    padding:4px 0;
    transition: 0.2s all ease-in-out;
}
.overlay ul.menu li a:hover {
    color:var(--blue);
}
.overlay ul.menu li a:hover:after {
    left: calc(100% + 20px);
    opacity: 1;
}
.overlay ul.menu ul {
    margin-top:10px;
}
.overlay ul.menu ul li a {
    font-size: 15px;
    line-height: 32px;
    font-weight: 500;
}
.overlay ul.menu ul li {
    padding: 0 0 0 14px;
    margin-bottom:4px;
}
.overlay ul.menu ul ul {
    margin-top: 4px;
    margin-bottom: 20px;
}
.overlay ul.menu ul li a img {
    display: none;
}
.overlay ul.menu li.menu-item-has-children:after {
    content: '';
    background: url(./assets/arrow-down-black.svg) no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    font-size: 20px;
    color: var(--black);
    position: absolute;    
    top: 9px;
    right: 11px;    
    transition: 0.2s all ease-in-out;
}
.overlay ul.menu li.menu-item-has-children:before {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    background:var(--light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: 0.2s all ease-in-out;
}
.overlay ul.menu li.menu-item-has-children:hover:before {
    background:var(--grey);
}
.overlay .current-menu-item > a {
    color:var(--black);
}
.overlay ul.menu li.rotate-arrow:after {
    transform: rotate(180deg);
}
.open-menu {
	visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.open-body {
    overflow:hidden;
}

/*** CONTENT ***/
.white-container {
	background:var(--white);
    position: relative;
    z-index: 1;
}
.white-container h1, .white-container h2, .white-container h3, .white-container h4, .white-container h5, .white-container h6, .white-container a {
	color:var(--black);
}
.white-container p, .white-container li {
    color:var(--black);
}
.white-container a {
    text-decoration: none;
}
.green-container {
    background:var(--green);
    position: relative;
    z-index: 1;
}
.green-container h1, .green-container h2, .green-container h3, .green-container h4, .green-container h5, .green-container h6, .green-container a {
    color:var(--white);
}
.green-container p, .green-container li {
    color:var(--light);
}
.light-container {
    background:var(--light);
    position: relative;
    z-index: 1;
}
.light-container h1, .light-container h2, .light-container h3, .light-container h4, .light-container h5, .light-container h6, .light-container a {
    color:var(--black);
}
.light-container p, .light-container li {
    color:var(--black);
}
.light-container a {
    text-decoration: none;
}
.site-content {
    width:100%;
    max-width: 1440px;
    padding:140px 100px;
    margin:0 auto;
    position: relative;
    z-index: 1;
}
.full-width {
    max-width:100%;
}
.no-top {
    padding-top:0 !important;
}
.no-bottom {
    padding-bottom: 0 !important;
}
.no-right {
    padding-right: 0 !important;
}
.no-left {
    padding-left: 0 !important;
}
.full-width {
    max-width: 100%;
}
.border-top {
    border-top:solid 1px rgba(0,0,0,0.1);
}
.border-bottom {
    border-bottom:solid 1px rgba(0,0,0,0.1);
}
.border-right {
    border-right:solid 1px rgba(0,0,0,0.1);
}
.dark-container .border-top {
    border-top:solid 1px rgba(255,255,255,0.1);
}
.dark-container .border-bottom {
    border-bottom:solid 1px rgba(255,255,255,0.1);
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    position: relative;
    width:100%;
    z-index: 2;
}
.flex-container img {
	width:100%;
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.large.center {    
    margin: 0 auto;
    max-width:991px;
}
.right {
    text-align: right;
}
.flex-start {
	justify-content: start;
}
.flex-center {
    justify-content: center;
}
.flex-end {
	justify-content: end;
}
.align-start {
    align-items: start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: end;
}
.flex-100 {
    width:100%;
}
.flex-80 {
    width:80%;
    position: relative;
}
.flex-75 {
    width:75%;
    position: relative;    
}
.flex-66 {
    width:66.66%;
    position: relative;
}
.flex-60 {
    width:60%;
    position: relative;
}
.flex-50 {
    width:50%;
    position: relative;
}
.flex-40 {
    width:40%;
    position: relative;
}
.flex-33 {
    width:33.33%;
    position: relative;
}
.flex-25 {
    width:25%;
    position: relative;
}
.flex-20 {
    width:20%;
    position: relative;
}
.flex-content {
    padding:120px;
}

img.size-full {
    width: auto;
    margin: 0 auto;
}

/*** GALLERY ***/
.gallery-container img, .gallery-container video {
    display: block;
    width:100%;
    aspect-ratio:16 / 12;
    object-fit: cover;
}

/*** BLOCKS ***/
.flex-50.flex-image img {
    height: 80vh;
    min-height: 1000px;
    width: 100%;
    object-fit: cover;
}

/*** TEXT GRID ***/
.flex-50.text-grid:first-of-type:after {
    content: '';
    height: calc(100% - 280px);
    position: absolute;
    top: 140px;
    right: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}
.flex-50.text-grid ul.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.flex-50.text-grid ul.custom-list li {
    background: var(--light);
    padding: 20px;
    margin-bottom: 12px;
    border-left: solid 5px var(--green);    
}
.single .flex-100.flex-content.text-grid {
    max-width: 1450px;
}
.text-grid ul {
    padding-left: 20px;
}
ul.icon-list li {
    list-style-type: none;
    position: relative;
}
ul.icon-list li:before {
    content: '';
    background: url(https://viherpalveluthyvonen.fi/ura/wp-content/uploads/2024/09/favicon.png) no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 45%;
    left: -20px;
    transform: translateY(-50%);
    background-size: contain;
}
.image-text-container:before {
    content: '';
    background: url(https://viherpalveluthyvonen.fi/ura/wp-content/themes/uratarina/assets/dot-texture.svg) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 30%;
    top: 10%;
    width: 400px;
    height: 400px;
    opacity: 0.04;
    z-index: 0;
}

/*** CAROUSEL ***/
.flex-image-carousel img {
    margin-right: 20px;
}
.flex-image .flickity-page-dots {
    text-align: center !important;
    bottom: 40px !important;
    left:0 !important;
}
.flickity-page-dots .dot {
    width: 20px;
    height: 20px;
    background: var(--white);
}
.flickity-page-dots .dot.is-selected {
    background:var(--green);
}

/*** AVOIMET PAIKAT ***/
.job {
    width:calc(50% - 10px);
    padding: 40px;
    margin-bottom: 20px;
    background:var(--light);
    transition: 0.2s all ease-in-out;
}
.job:hover {
    background:var(--grey);
}
.job h5 {    
    margin:0 0 14px 0;
}
.job ul {
    margin: 0;
    margin-top:20px;
    list-style-type: none;
    padding:0;
}
.job-icon {
    width: 100px;
}
.job-icon img {
    height: 100px;
    object-fit: cover;
}
.job-text {
    width: calc(100% - 140px);
}
.job-text li {
    border-bottom: dashed 1px rgba(0, 0, 0, 0.1);
    padding-bottom: 2px;
    margin-top: 6px;
}
.job-text li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}
.job-text li span {
    width: 50%;
    display: inline-block;
    font-weight: 600;
}
.single-job-info ul {
    padding-left: 20px;
}
.single-job-info li {
    font-size: 28px;
    line-height: 48px;
}

/*** KOKEMUSMITTARI ***/
h2.km-widget-title, .km-powered-by p, .km-powered-by a, .km-widget p.km-bottom-info-name {
    font-family: "Inter", sans-serif !important;
}
.km-widget .km-box-mid {
    font-size: 16px !important;
    line-height: 26px !important;
    font-family: "Inter", sans-serif !important;
}

/*** WPFORMS ***/
.wpforms-container-full {
    margin:0 !important;
}
.wpforms-container .wpforms-field {
    width: calc(50% - 5px) !important;
    padding: 0 0 10px 0 !important;
    display: inline-block !important;
}
.wpforms-container .wpforms-field-textarea {
    width: 100% !important;
}
.wpforms-container .wpforms-field.wpforms-field-file-upload {
    width: 100% !important;
}
.wpforms-container .wpforms-field:nth-of-type(even) {
    margin-left: 10px !important;
}
.wpforms-field-large {
    height: 60px !important;
    border: solid 1px rgba(0, 0, 0, 0.1) !important;
    border-radius: 40px !important;
    background: var(--white) !important;
    color: var(--dark) !important;
    font-size: 18px !important;
    padding-left: 24px !important;
}
.wpforms-field-medium {
    height: 240px !important;
    border: solid 1px rgba(0,0,0,0.1) !important;
    border-radius: 40px !important;
    background: var(--white) !important;
    color: var(--dark) !important;
    font-size: 18px !important;
    padding-left: 24px !important;
    padding-top:30px !important;
}
label.wpforms-field-label {
    margin-top: 20px !important;
    text-align: center !important;
}
.wpforms-uploader {
    border-radius: 40px !important;
    height:140px !important;
}
#wpforms-220-field_14-container {
    width: 100% !important;
}
#wpforms-220-field_12-container {
    margin-left: 0 !important;
}
#wpforms-220-field_15-container {
    display: none !important;
}
.wpforms-submit {
    height: 54px !important;
    border:none !important;
    border-radius: 40px !important;
    background: var(--green) !important;
    padding: 16px 70px 16px 40px !important;
    color: var(--white) !important;
    font-size: 18px !important;
    line-height: 20px !important;
    transition: 0.2s all ease-in-out !important;
}
.wpforms-submit:hover {
    background: var(--yellow) !important;    
}
.wpforms-submit:after {
    content: '';
    background: url(https://viherpalveluthyvonen.fi/ura/wp-content/themes/uratarina/assets/arrow-right.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.wpforms-confirmation-scroll {
    background: var(--green) !important;
    border: none !important;
}
.wpforms-confirmation-scroll p {
    color: var(--white) !important;
    font-size: 20px !important;
}


/*** FOOTERCONTAINER ***/
#footercontainer:before {
    content: '';
    background: url(https://viherpalveluthyvonen.fi/ura/wp-content/themes/uratarina/assets/dot-texture-white.svg) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 20%;
    bottom: 10%;
    width: 400px;
    height: 400px;
    opacity: 0.04;
    z-index: 0;
}
#footercontainer h4 {
    font-size: 26px;
    letter-spacing: -0.8px;
}
#footercontainer ul {
	padding:0;
	margin:0;
}
#footercontainer ul li, #footercontainer p {
    list-style-type: none;  
}
#footercontainer ul li a {
	text-decoration: none;
}
.footer-menu ul ul {
    display: none;
}
.footer-smallprint {
    padding-top: 60px;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.footer-smallprint span {
    padding: 0 20px;
}

/*** MEDIA QUERIES ***/
@media(max-width:1920px){
    h1, .banner-content h1 {
        font-size: 78px;
        line-height: 88px;
    }
    h2 {
        font-size: 56px;
        line-height: 64px;
        margin-top:0;
    }
    h3 {
        font-size: 36px;
        line-height: 48px;
        margin-top:0;
    }
    h4 {
        font-size: 32px;
        line-height: 44px;
        margin-top:0;
    }
    h5 {
        font-size: 24px;
        line-height: 32px;
    }
    p, li {
        font-size: 16px;
        line-height: 28px;
    }
    .site-title {
        left:100px;
    }
    .banner-content {
        padding:100px;
    }
    .flex-content {
        padding:100px;
    }  
    .flex-50.text-grid:first-of-type:after {        
        height: calc(100% - 200px);
        top: 100px;
    }
}
@media(max-width:1650px){ 
    p, li {
        font-size: 15px;
        line-height: 26px;
    }
    .site-title {
        left:80px;
    }
    .banner-content {
        padding:80px;
    }
    .flex-content {
        padding:80px;
    }  
    .flex-50.text-grid:first-of-type:after {        
        height: calc(100% - 160px);
        top: 80px;
    }
    .flex-50.flex-image img {
        min-height: 850px;
    }
    .job-text li span {     
        width: 100%;
    }
    .single-job-info li {
        font-size: 24px;
        line-height: 42px;
    }
}

@media(max-width:1450px){
    h1, .banner-content h1 {
        font-size: 72px;
        line-height: 84px;        
    }
    h2 {
        font-size: 46px;
        line-height: 58px;    
        margin-top:0;
    }
    h3 {
        font-size: 34px;
        line-height: 46px;
        margin-top:0;
    }
    h4 {
        font-size: 28px;
        line-height: 42px;
        margin-top:0;
    }
    h5 {
        font-size: 22px;
        line-height: 28px;
    }
    .main-navigation {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .flex-25.gallery-image {
        width: 50%;
    }
}

@media(max-width:1367px){
    .site-title {
        left:60px;
    }
    .banner-content {
        padding:60px;
    }
    .flex-content {
        padding:60px;
    }
    .flex-50 {
        width:100%;
    }
    #footercontainer .flex-50 {
        width:50%;
    }
    .flex-50.flex-image img {
        height: unset;
        min-height: 400px;
        max-height: 60vh;
    }  
    .flex-50.text-grid:first-of-type:after {        
        display: none;
    }
    .flex-50.flex-image {
        order: 1;
    }
    .flex-50.flex-text {
        order: 2;
    }
}

@media(max-width:1200px){
    .job {
        width:100%;
    }
    .job:last-of-type {
        margin-bottom:0;
    }
}

@media(max-width:991px){
    h1, .banner-content h1 {
        font-size: 64px;
        line-height: 78px;        
    }
    h2 {
        font-size: 42px;
        line-height: 54px;    
        margin-top:0;
    }
    h3 {
        font-size: 30px;
        line-height: 42px;
        margin-top:0;
    }
    h4 {
        font-size: 24px;
        line-height: 38px;
        margin-top:0;
    }
    .site-title {
        left:40px;
    }
    .site-title img {
        width: 200px;        
    }
    .banner-content {
        padding:40px;
    }
    .flex-content {
        padding:40px;
    }
    .single-job-info li {
        font-size: 22px;
        line-height: 36px;
    }
    a.cta {
        font-size: 16px;
    }   
    .wpforms-field-large {
        height: 55px !important;
        font-size: 16px !important;
    }
}

@media(max-width:768px){
    .banner-container {
        min-height: unset;
        height: 100dvh;
    }
    h1, .banner-content h1 {
        font-size: 48px;
        line-height: 56px;        
    }
    h2 {
        font-size: 32px;
        line-height: 46px;    
        margin-top:0;
    }
    h3 {
        font-size: 24px;
        line-height: 32px;
        margin-top:0;
    }
    h4 {
        font-size: 20px;
        line-height: 30px;
        margin-top:0;
    }
    .single-job-info li {
        font-size: 20px;
        line-height: 34px;
    }
    .flex-50.flex-image img {
        height: unset;
        min-height: unset;
        max-height: 400px;
    }
    .job-icon {
        width:100%;
        margin-bottom: 20px;
    }
    .job-icon img {
        width: 140px;
        height: 140px;
    }
    .job-text {     
        width: 100%;
    }
    .job-text li span {     
        width: 100%;
    }
    #footercontainer:before {     
        width: 300px;
        height: 300px;
        left:0;
    }
    .image-text-container:before {     
        width: 300px;
        height: 300px;
        left:0;
    }
}

@media(max-width:520px){
    .site-title {
        left:30px;
    }
    .site-title img {
        width: 160px;        
    }
    .banner-content {
        padding:30px;
    }
    .flex-content {
        padding:30px;
    }
    .job {
        padding:30px;
    }
    .single-job-info li {
        font-size: 18px;
        line-height: 26px;
    }
    a.cta {
        font-size: 15px;
    }
    .wpforms-container .wpforms-field {
        width: 100% !important;
    }
    .wpforms-container .wpforms-field:nth-of-type(even) {
        margin-left:0 !important;
    }    
    .wpforms-container .wpforms-field {     
        padding: 0 0 4px 0 !important;
    }
    .wpforms-field-large {
        height: 50px !important;
        font-size: 15px !important;
    }
    .wpforms-field-medium {
        font-size: 15px !important;
    }

}

@media(max-width: 420px){
    .site-title {
        left:20px;
    }
    .banner-content {
        padding:20px;
    }
    .flex-content {
        padding:20px;
    }
    .job {
        padding:20px;
    }
}