/*
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*/

@font-face {
  font-family: 'roboto-300';
  src: url('../fonts/roboto-300.eot');
  src: url('../fonts/roboto-300.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto-300.woff') format('woff'),
       url('../fonts/roboto-300.ttf') format('truetype'),
       url('../fonts/roboto-300.svg#roboto-300') format('svg');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'roboto-400';
  src: url('../fonts/roboto-400.eot');
  src: url('../fonts/roboto-400.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto-400.woff') format('woff'),
       url('../fonts/roboto-400.ttf') format('truetype'),
       url('../fonts/roboto-400.svg#roboto-400') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'roboto-700';
  src: url('../fonts/roboto-700.eot');
  src: url('../fonts/roboto-700.eot?#iefix') format('embedded-opentype'),
       url('../fonts/roboto-700.woff') format('woff'),
       url('../fonts/roboto-700.ttf') format('truetype'),
       url('../fonts/roboto-700.svg#roboto-700') format('svg');
  font-weight: 700;
  font-style: normal;
}

:root {
    --color-black: #000;
    --color-dark-light: #7a7c80;
    --color-white: #fff;
    --color-secondary: #ebecec;
    --color-primary: #ff9027;
    /*--primary-font: "Quicksand", sans-serif;;*/
	--primary-font: 'roboto-400', sans-serif;
}

/* Default */
body {
    font-family: var(--primary-font);
}
.container {
    max-width: 960px;
    width: 100%;
    margin: auto;
}
.section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'roboto-400', sans-serif;
}

h1 {
    font-size: 2rem;
	padding-bottom: 0.3rem;
}

h2 {
	padding-top: 1.8rem;
}

h3 {
	padding-top: 0.8rem;
}

h4 {
	padding-top: 0.8rem;
	font-size: 1.5rem;
	padding-bottom: 0.8rem;
}

.content-wrapper table {
	font-size: 1.5rem;
	border-spacing: 0px;
	width: 100%;
}

.content-wrapper table td,
.content-wrapper table th {
	padding-right: 25px;
	text-align: left;
	width: 33.3333%;
}

p {
    line-height: 36px;
    font-size: 1.5rem;
}

.parallax {
    /* The image used */
  
    /* Set a specific height */
    min-height: 500px;
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

ul {
    list-style-type: none; /* Remove default markers */
    padding-left: 0; /* Remove default padding */
  }
  
ul li {
    position: relative; 
    padding-left: 20px;
    font-weight: 700;
    font-size: 1.5rem;
}

ul li::before {
    content: ""; /* Or your desired marker character */
    background: var(--color-primary); /* Change the marker color */
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.text-content-section ul li {
	cursor: pointer;
	transition-duration: 0.4s;
}

.text-content-section ul li:hover {
	color: #ff9027;
	transition-duration: 0.4s;
}

.text-content-section ul div,
.text-content-section ul li:hover div { color: #000; }

ul li div {
	display: none;
	font-weight: normal;
	padding: 4px 0px 25px 0px;
}
/* End Default */

/* Header */
header {
    width: 100%;
    margin: auto;
    text-align: center;
    background: var(--color-secondary);
    padding: 2rem 1rem;
}

header .brand-logo-link {
    text-decoration: none;
    color: var(--color-black);
}

header .brand-logo-link .brand-logo {
    max-width: 350px;
    width: 100%;
} 
/* End Header */

/* image-content-section */

.image-content-section {
    background-size: cover;
    position: left;
    padding: 20rem 0;
    text-align: center;
}

.image-content-section .content-wrapper .title  {
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0px 0px 5px #000;
}
/* End image-content-section */


/* Text-content-section */
.text-content-section  {
    padding: 4rem 1rem;
}
.text-content-section .content-wrapper h1 {
    text-align: center;
}

.text-content-section .content-wrapper p{
    margin: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 400;
}


.text-content-section .content-wrapper h1{
    color: var(--color-primary);
}

i
.text-content-section .content-wrapper ul li::marker {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* End text-content-section */
.contact-form-section  {
    padding: 60px 16px;
}

.contact-form-section .section-header .title{
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.contact-wrapper {
    display: flex;
    padding: 0 1rem;
}

.contact-wrapper .contact-info {
    width: 50%;
}

.contact-wrapper .contact-form {
    width: 50%;
}
.contact-wrapper .contact-info a,
.contact-wrapper .contact-info p
 {
    font-size: 1.5rem;
}
.contact-wrapper .contact-info .info a,
.contact-wrapper .contact-info .jobs a
 {
    text-decoration: none;
    color: var(--color-black);
}
.contact-info {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}
.contact-info .info {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.contact-form-item .form-field {
    margin: 1rem 0;
}
input,
textarea,
select
{
    width: 100%;
    display: block;
    padding: 1rem 0.5rem;
}
input[type="checkbox"] {
    width: auto;
    display: inline;
}

.agree_checkbox label a {
    text-decoration: none;
    color: var(--color-primary);
}

.buttons button{
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
}
.buttons {
    display: flex;
    justify-content: center;
}

.text-content-section a:link,
.text-content-section a:visited,
.default-content-area a:link,
.default-content-area a:visited {
	color: #000;
	font-weight: bold;
	transition-duration: 0.4s;
	text-decoration: none;
}

.text-content-section a:hover,
.default-content-area a:hover {
	color: #ff9027;
	transition-duration: 0.4s;
}
/* End text-content-section */

/*  Footer */
footer {
    width: 100%;
    background: var(--color-dark-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

footer a {
    text-decoration: none;
    color: var(--color-white);
}
/* End footer */

/* user/themes/yourtheme/css/custom.css */

.form-message.success {
    color: green;
    border: 1px solid green;
    padding: 10px;
    margin-bottom: 10px;
}

.form-message.error {
    color: red;
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 10px;
}

.form-error {
    color: red;
    display: block;
    margin-top: 5px;
}