/* CSS Document */

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

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

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;
}
/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
video {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

a {
  color: #fff;
  text-decoration: none;
}
sub {
  bottom: -0.25em;
}

em {
  font-style: italic;
}
h1, h2, h3, h4, h5{
  color: #005292
;
  font-weight: bold;
}
p {
  padding-bottom: 20px;
}
p, li {
  line-height: 1.333em;
}

#main ul {
  list-style: disc outside;
  margin-left: 1em;
  margin-bottom: 20px;
}

#main ol {
  list-style: decimal outside;
  margin-left: 1em;
  margin-bottom: 20px;
}

small {
  font-size: 0.6875em;
}

.mobile {
  display: none;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  font-weight: bold;
  font-size: 110%;
  text-align: center;
  text-transform: uppercase;
  line-height: inherit;
  padding: 12px 36px;
  display: inline-block;
  width: auto;
  border: 1px solid #FD7F34;
  background-color: #FD7F34;
  color: #FFFFFF;
  transition: color 250ms ease-out,  background-color 250ms ease-out; 
  border-radius: 2px;
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 20px;
  }
}

.btn:hover{
  background-color: #FFFFFF;
  color: #FD7F34;
}
.btn_blue {
  border: 1px solid #005292;
  background-color: #005292;
}

.btn_blue:hover {
  background-color: #FFFFFF;
  color: #005292;
}


.arrow {
  text-align: center;
}

.arrow a span {
  background-color: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  height: 36px;
  line-height: 32px;
  width: 36px;
  font-size: 1.714285714285714em;
  font-weight: bold;
}

a.header-phone {
  float: right;
  position: relative;
  top: 0.85rem;
  font-size: 1.2rem;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

a span.arrow_blue {
  border: 1px solid #005292
;
  color: #005292
;
}

a span.arrow_lightblue {
  border: 1px solid #007bbf;
  color: #007bbf;
}

a span.arrow_bluesky {
  border: 1px solid #12b0e0;
  color: #12b0e0;
}

a span.arrow_green {
  border: 1px solid #62aa03;
  color: #62aa03;
}

a span.arrow_white {
  border: 1px solid #fff;
  color: #fff;
}

a span.arrow_yellow {
  border: 1px solid #f0a90f;
  color: #f0a90f;
}

.block {
  display: block;
}
/**************************************************************************************************************************
** Generic Styles
***************************************************************************************************************************/
html {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  min-height: 100%;
  background: #fff;
}

body {
  width: 100%;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875em;
  line-height: normal;
}

#page {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
  min-width: 1024px;
  -moz-box-shadow: 0 0 7px 0 #b9b9b9;
  -webkit-box-shadow: 0 0 7px 0 #b9b9b9;
  box-shadow: 0 0 7px 0 #b9b9b9;
  background: #fff;
}

/**************************************************************************************************************************
** General Styles
***************************************************************************************************************************/
#main {
  min-width: 1024px;
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 10;
}
.container {
  width: 1024px;
  margin: auto;
}

/**************************************************************************************************************************
** Header Styles
***************************************************************************************************************************/

header#masthead {
  width: 100%;
  position: absolute;
  z-index: 20;
}
header#masthead h2 {
  float: left;
  width: 223px;
  height: 142px;
  overflow: hidden;
}
header#masthead h2 a {
  display: block;
  height: 142px;
}

header#masthead .container {
  position: relative;
}

header#masthead img.flag {
  position: absolute;
  top: 15px;
  left: 23%;
}

/**************************************************************************************************************************
** Main Content
***************************************************************************************************************************/

section {
  display: inline-block;
  width: 100%;
}

/*Main Banner*/
#main_banner {
  background: url(images/bg/bg-main-banner.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 300px;
  background-position-y: 18%;
}

@media (min-width: 768px) {
  #main_banner {
    padding-top: 340px;
  }
}

@media (min-width: 1300px) {
  #main_banner {
    padding-top: 20vw;
  }
}

.column_wrapper {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 30px 30px 30px 100px;
  margin-bottom: 25px;
  background: url(images/bg/bg-main-banner-wrapper.png) no-repeat top left;
  background-size: cover;
  z-index: 20;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.column_wrapper2 {
  display: inline-block;
  width: 65%;
  position: relative;
  padding: 30px 30px 30px 120px;
  margin-bottom: 25px;
  background: url(images/bg/bg-main-banner-wrapper.png) no-repeat top left;
  background-size: cover;
  z-index: 20;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (min-width: 768px) {
  .column_wrapper{
    border-top-right-radius: 20px;
  }
}
.columns {
  margin-top: 0;
  z-index: 30;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.columns .col {
  width: 40%;
}
.columns .col:first-child {
  width: 60%;
  padding-right: 35px;
}

.columns .col p.last {
  padding-bottom: 0;
}

.columns p {
  padding-bottom: 10px;
}

.container .column_wrapper:first-child h1 {
  font-weight: bold;
  font-size: 2.571428571428571em;
  margin-bottom: 0.25em;
}

@media screen and (min-width: 540px) {
  .container .column_wrapper:first-child h1 {
    padding-top: 0px;
    /* padding-left: 50px; */
  }
}

.container .column_wrapper:first-child h2 {
  font-size: 1.285714285714286em;
  padding-bottom: 10px;
}

.columns .col:last-child {
  border: solid 1px #005292
;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (min-width: 540px) {
 .columns .col:last-child {
    padding:30px;
  }
}
.columns .col:last-child h2 {
  font-weight: bold;
  font-size: 1.714285714285714em;
  padding-bottom: 20px;
}

#main .columns .col:last-child ul {
  margin-bottom: 0;
  margin-left:0;
}
.columns .col:last-child ul li {
  background: url(images/bg/bg-li.png) no-repeat scroll left top
    rgba(0, 0, 0, 0);
  display: block;
  list-style: outside none none;
  padding: 0 0 0 27px;
  margin-bottom: 10px;
}

.columns .col:last-child ul li:last-child {
  margin-bottom: 3px;
}

/*************
 ** Program **
 *************/
#program{
  background-image: url(images/bg/bg-program.png);
  background-size: 540px auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #f6f8f6;
  padding-top:290px;
  padding-bottom: 50px;
}
#program h2{
  font-size: 2.571428571428571em;
  margin-bottom: 0.25em;
}
#program h3{
  font-size: 1.714285714285714em;
  font-weight: normal;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 480px) {
  #program{
    background-size: cover;
    background-position: center top;
    padding-top:165px;
    padding-bottom: 75px;
  }
  #program .program_content{
    width: 100%;
  }
}

/**************************************************************************************************************************
** How
***************************************************************************************************************************/

#how {
  border-top: solid 6px #005c9f;
  padding-top: 63px;
}
#how h2 {
  font-weight: bold;
  font-size: 2.571428571428571em;
  text-align: center;
  padding-bottom: 20px;
}

#how .how_wrapper {
  display: inline-block;
  width: 100%;
}
#how .how_wrapper div {
  width: 50%;
  float: left;
}

#how .how_content ol {
  margin-bottom: 0;
}
#how .how_content ol li {
  padding-bottom: 20px;
}

/**************************************************************************************************************************
** training
***************************************************************************************************************************/

#training {
  /*border-top: solid 6px #62aa03;*/
  background: url(images/bg/bg-training.jpg) no-repeat top center;
  background-size: cover;
  min-height: 511px;
  padding-top: 75px;
  padding-bottom: 30px;
}

#training .training_content {
  float: right;
  width: 52%;
}

#training h2{
  font-weight: bold;
  font-size: 2.571428571428571em;
  padding-bottom: 15px;
}

#training p.arrow {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  float:none;
  clear:both;
}

/**************************************************************************************************************************
** compare
***************************************************************************************************************************/
#compare {
  background: url(images/bg/bg-compare.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 100px;
  color: #fff;
  height: 397px;
}

#compare .container {
  position: relative;
}
.compare_content {
  width: 70%;
  min-height: 245px;
}
#compare h2 {
  color: #fff;
  font-weight: bold;
  font-size: 2.571428571428571em;
  padding-bottom: 15px;
}

#compare .compare_graph {
  position: absolute;
  right: 0;
  bottom: 65px;
}

/**************************************************************************************************************************
** difference
***************************************************************************************************************************/

#difference {
  background: url(images/bg/bg-difference.jpg) no-repeat top center;
  background-size: cover;
  padding: 150px 0 75px 0;
  color: #252525;
}

#difference .difference_content {
  float: left;
  width: 65%;
}
#difference .difference_content h2 {
  font-size: 2.571428571428571em;
  margin-bottom: 15px;
  font-weight: bold;
}

#difference p.arrow {
  display: inline-block;
  width: 100%;
}
#difference p.request-info-package {
  display: inline-block;
  width: 100%;
  padding: 0;
}

/**************************************************************************************************************************
** testimonials
***************************************************************************************************************************/
#testimonials {
  background: url(images/bg/bg-testimonials.jpg) no-repeat top center;
  background-size: cover;
  padding-top: 65px;
}

#testimonials h2 {
  font-size: 2.571428571428571em;
  margin-bottom: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

#testimonials ul {
  width: 100%;
  display: inline-block;
  list-style: none;
  text-align: center;
  margin-bottom: 50px;
}

/* Testimonials */

#main .testimonials-item {
  float: left;
  width: 23%;
  margin-right: 2%;
  background: url(images/bg/triangle.png) no-repeat 21px bottom;
  padding-bottom: 31px;
  position: relative;
}
.testimonials-item:last-child {
  margin-right: 0;
}

.testimonials-text {
  height: 230px;
  vertical-align: middle;
  text-align: center;
  display: table-cell;
  padding: 20px;
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  min-height: 230px;
  text-align: center;
  font-style: italic;
}

.testimonials-author {
  position: absolute;
  bottom: -28px;
  padding: 0 0 0 25px;
  left: 21px;
  text-align: left;
  font-style: normal;
}

/**************************************************************************************************************************
** FAQ
***************************************************************************************************************************/
#faq {
  background: url(images/bg/bg-faq.jpg) no-repeat top center;
  background-size: contain;
  padding: 150px 0 30px;
}

#faq h2 {
  font-size: 2.571428571428571em;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

#faq .faq_content {
  width: 100%;
  display: inline-block;
  font-style: italic;
}

#faq .faq_content .faq_column {
  width: 33%;
  float: left;
  padding-right: 4%;
}
#faq .faq_content .faq_column:last-child {
  padding-right: 0;
  float: right;
  width: auto;
}

#faq .faq_content .faq_column p em {
  color: #039ac5;
  font-style: normal;
  text-transform: uppercase;
}

/**************************************************************************************************************************
** form
***************************************************************************************************************************/

#form {
}
#form h2 {
  font-size: 2.571428571428571em;
  margin-bottom: 15px;
  font-weight: bold;
}

#form form {
  text-align: left;
  display: inline-block;
  width: 100%;
}

#form .form_column {
  width: auto;
  margin: auto;
}

#form .emphasis {
  color: #FD7F34;
}
#form form p {
  padding-bottom: 13px;
}
#form .form_column:last-child p {
  padding-bottom: 8px;
}

#form form label {
  width: 140px;
  text-align: left;
  display: inline-block;
}
#form form input {
  margin-right: 10px;
}

#form form input[type="text"] {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: none;
  margin-right: 0;
  border: 1px solid #888;
  border-radius: 2px;
}

#form form input[type="submit"] {
  text-align: center;
  width: 100%;
  font-size: 1.333em;
  display: inline-block;
}

#form .form_content {
  display: inline-block;
  width: 100%;
}
#form form label.hidden_label {
  display: none;
}

#form p.align_center {
  text-align: center;
}

/**************************************************************************************************************************
** Footer
***************************************************************************************************************************/

#colophon,
#logos {
  background: #e5e5e5;
  text-align: center;
  padding: 20px 0 0;
/*  border-top:1px solid;
  border-bottom: 1px solid;
  border-color: #fff;*/
}
.image_container {
  width: auto;
  margin-right: 1%;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .container {
    width: 94%;
  }
}
@media screen and (max-width: 480px) {
  .mobile {
    display: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  body{
    font-size: 0.95em;
  }
  #main p.arrow {
    display: none;
  }

  #main ul li,
  #main ol li {
    padding-bottom: 5px;
  }

  header#masthead,
  #page,
  #main {
    width: 100%;
    max-width: 480px;
    min-width: 300px;
    float: none;
    display: inline-block;
  }

  .block {
    display: inline;
  }

  /* header */

  header#masthead {
    height: 118px;
    text-align: center;
    margin: auto;
  }
  header#masthead h2 {
    width: auto;
    text-align: center;
  }

  header#masthead img.flag {
    right: 0% !important;
    left: auto;
  }

  header#masthead h2 a {
    height: 118px;
    width: 150px;
    display: inline-block;
  }

  /* Main Banner */
  #main_banner {
    background-position: top right;
    background-size: 540px auto;
    padding-top: 140px;
    height: auto;
    background-color: #e1e1e1;
    padding-bottom: 20px;
  }
  
  @media screen and (max-width: 480px) {
    #main_banner {
        background-position: top left;
    }
  }

  #header-phone{
    top: 2px;
    right: 4px;
    font-size: 1.0em;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .column_wrapper {
    padding: 60px 5% 10px;
    background: url(images/bg/bg-main-banner-wrapper-mobile.png) no-repeat top
      left;
  }
  
  .column_wrapper2 {
    padding: 60px 5% 10px;
    background: url(images/bg/bg-main-banner-wrapper-mobile.png) no-repeat top
      left;
  }

  .columns {
    margin-top: 0;
    display: block;
  }
  #main_banner .columns .col {
    width: 100%;
    margin:12px 0;
  }
  #main_banner .columns .col:first-child {
    padding:0;
  }
  #main_banner .columns .col:last-child {
  }
  #main .columns .col:last-child ul {
    margin-left: 0;
  }

  /* how */
  #how {
    height: auto;
    padding-top: 25px;
  }
  #how .how_wrapper div {
    width: 100%;
    float: none;
  }

  #how .how_content {
    padding: 20px 0;
  }
  #how h2 {
    font-size: 2.357142857142857em;
  }

  /*#training*/
  #training {
    height: auto;
    background-size: 650px 252px;
    background-color: #f6f8f6;
    padding-top: 278px;
    background-position: 0 0;
  }
  #training .training_content {
    float: none;
    width: 100%;
    clear: both;
    padding-bottom: 0px;
  }

  #training h2 {
    text-align: center;
    font-size: 2.357142857142857em;
    padding-bottom: 20px;
  }
  /*#compare*/
  #compare {
    height: auto;
    padding-top: 60px;
  }
  .compare_content {
    width: 100%;
  }
  #compare h2 {
    text-align: center;
    font-size: 2.357142857142857em;
  }
  #compare .compare_graph {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 10px 0 30px;
  }
  #compare p:last-child {
    text-align: center;
    margin: 20px 0 30px;
  }

  /* #difference*/
  #difference {
    background-size: 950px 310px;
    background-color: #f8f6f6;
    background-position: right -60px;
    padding-top: 290px;
    padding-bottom: 50px;
  }
  #difference .difference_content {
    width: 100%;
    float: none;
  }

  #difference .difference_content h2 {
    text-align: center;
    font-size: 2.357142857142857em;
  }

  /*#testimonials*/
  #testimonials {
    height: auto;
    padding-top: 35px;
  }
  #testimonials ul {
    margin: 0 0 2em;
  }
  #testimonials h2 {
    font-size: 2.357142857142857em;
  }
  #main .testimonials-item {
    width: 90%;
    margin: auto auto 55px;
    float: none;
  }

  /* #faq */
  #faq {
    background-size: 100% 30px;
    padding: 50px 0;
  }
  #faq h2 {
    font-size: 2.357142857142857em;
  }

  #faq .faq_content .faq_column,
  #faq .faq_content .faq_column:last-child {
    float: none;
    width: 93%;
    padding: 0 3%;
  }

  /* #form */
  #form {
  }
  #form p {
    text-align: left;
  }
  #form .form_column {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  #form form label {
    width: 33%;
    text-align: left;
  }

  #form form input[type="text"] {
    width: 100%;
    margin: 0;
  }
  #form form input[type="submit"] {
    margin-top: 5px;
    height: auto;
    font-size: 1.5em;
  }
  #form form input {
    margin-right: 2px;
  }

  /* Footer Logos */
  #logos {
    margin: 0;
    text-align: center;
  }
  .image_container {
    width: 17%;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .image_container:nth-child(2) {
    width: 39%;
  }
}
@media screen and (max-width: 320px) {
  header#masthead img.flag {
    right: -2%;
  }
}

.hidden_label {
  display: none;
}

.label_color {
  color: #FD7F34;
  display: block;
  width: 100%;
}

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

  .column_wrapper3 {
  width: 100% !important;
  }
}

#student-testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.testimonial-heading {
  font-size: 2.2em;
  color: #005292;
  margin-bottom: 10px;
}

.testimonial-subheading {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-left: 6px solid #f4b400;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 82, 146, 0.1);
  padding: 25px 20px;
  text-align: left;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card h3 {
  color: #005292;
  margin-top: 0;
}

.testimonial-card .title {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

.testimonial-card strong {
  color: #005292;
}

.center-cta {
  text-align: center;
  margin-top: 30px;
}

.arrow-center {
  text-align: center;
  margin-top: 20px;
}
