* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: 'Josefin Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin: 0;
  padding: 0;
}
img {border:0;}
a {text-decoration:none;}
.clear {clear: both;}
.hidden {display: none;}
p{line-height: 20px;}
.cs {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}
.cs-01 h1 {
  font-size: 100px;
  font-weight: 700;
  color: #2b467c;
}

.header {
  background-color: #2b467c;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.header a img {
  max-width: 130px;
  width: 100%;
  height: auto;
  display: block;
}

.main {
  background-image: url("_img/main-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.m-01 {
  display: flex;
  margin-bottom: 40px;
}

.m-01-l {
  width: 45%;
  min-width: 420px;
  color: #000;
  padding:40px 80px 40px 15%;
}
.m-01-r {
  width: 55%;
  min-width: 420px;
  color: #fff;
  background-color: #2b467c;
  padding:40px 15% 40px 80px;
}

.m-01-r img {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.the-team {
  background-color: #dfe6ef;
  padding: 80px 0;
}
.tt-con {
  max-width: 960px;
  margin: 0 auto;
  color: #2b467c;
}

.tt-box {
  width: 100%;
  margin: 20px 0;
}


.tt-title {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 2px solid #7f91b2;
}

.tt-sbs {
  display: flex;
  background-image: url("_img/tt-box-bg.png");
  background-repeat: y;
  padding: 0 0 15px 0;
}

.tt-txt {
  width: 55%;
}


.tt-img {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.contact {
  background-image: url("_img/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 40px;
}
.contact-txt {
  max-width: 960px;
  margin: 0 auto;
}
.contact-txt h2 {
  font-size: 40px;
  color: #2b467c;
}

.contact-txt form {

}
.contact-txt form input {
  width: 48%;
  padding: 10px;
  border:1px solid #314b6a;
  color: #000;
}

.contact-txt form textarea {
  padding: 10px;
  border:1px solid #314b6a;
  color: #000;
  width: 100%;
  min-height: 200px;
  margin-top: 20px;
}
.contact-txt form div {
  display: flex;
  justify-content: space-between;
}

.contact-txt form button {
  background-color: #2b467c;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px 30px;
  border-radius: 30px;
  border:none;
}


.footer {
  background-color: #2b467c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.footer p {
  color: #8c99b4;
}
.footer img {
  max-width:140px;
  width:100%;
  height:auto;
  display:block;
}

.surv-intro {
  max-width: 1140px;
  margin: 0 auto;
  padding:20px;
  font-size: 22px;
}
.surv-intro a {
  background-color: #2b467c;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  display: block;
  max-width: 200px;
  margin: 40px auto;
  border: 2px solid #2b467c;
}
.surv-intro a:hover {
  background-color: #fff;
  color: #2b467c;
  border: 2px solid #2b467c;
}

@media only screen and (max-width: 980px) {
  .m-01-l {
    padding: 20px 40px 20px 8%;
    min-width: initial;
  }
  .m-01-r {
    padding: 20px 8% 20px 20px;
    min-width: initial;
  }
  .cs {
    padding: 0 20px;
  }
  .cs-01 {
    margin-right: 20px;
  }
  .cs div img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 220px;
  }
  .cs-01 h1 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .cs {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .cs div {
    width: 100%;
  }
  .cs-01 {
    margin-right: 0;
    text-align: center;
  }
  .cs-01 h1 {
    margin:30px 0 ;
  }
  .cs div img {
    max-width: 320px;
    margin: 0 auto;
  }
  .m-01 {
    flex-direction: column;
  }
  .m-01-l {
    width: 100%;
    padding: 20px;
  }
  .m-01-r {
    width: 100%;
    padding: 20px;
  }
  .the-team {
    padding: 20px;
  }
  .contact {
    padding: 20px;
  }
}
@media only screen and (max-width: 568px) {
  .tt-sbs {
    display: flex;
    flex-direction: column;
  }
  .tt-sbs div {
    width: 100%;
  }
  .contact-txt form div:first-of-type {
    flex-direction: column;
  }
  .contact-txt form div:first-of-type input{
    width: 100%;
    display: block;
    margin: 5px 0;
  }
  .cs-01 h1 {
    font-size: 4rem;
  }
}


/** RESPONSIVE FORM **/
.survey-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.survey-wrap form header {
  margin: 0 0 20px 0; 
}
.survey-wrap form header div {
  font-size: 90%;
  color: #999;
}
.survey-wrap form header h2 {
  margin: 0 0 5px 0;
}
.survey-wrap form > div {
  clear: both;
  overflow: hidden;
  padding: 1px;
  margin: 0 0 10px 0;
}
.survey-wrap form > div > fieldset > div > div {
  margin: 0 0 5px 0;
  font-size: 22px;
}
.survey-wrap form > div > label,
.survey-wrap legend {
  margin: 40px 0 20px 0;
  display: block;
  font-size: 22px;
}
.survey-wrap form > div > div,
.survey-wrap form > div > fieldset > div {
  
}
.survey-wrap form > div > fieldset label {
  font-size: 90%;
  margin: 20px 0;
}
.survey-wrap fieldset {
  border: 0;
  padding: 0;
}

.survey-wrap input[type=text],
.survey-wrap input[type=email],
.survey-wrap input[type=url],
.survey-wrap input[type=password],
.survey-wrap textarea {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.survey-wrap input[type=text],
.survey-wrap input[type=email],
.survey-wrap input[type=url],
.survey-wrap input[type=password] {
  width: 50%;
}
.survey-wrap input[type=text]:focus,
.survey-wrap input[type=email]:focus,
.survey-wrap input[type=url]:focus,
.survey-wrap input[type=password]:focus,
.survey-wrap textarea:focus {
  outline: 0;
  border-color: #4697e4;
}

.survey-wrap div.sml-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: ;
}
.survey-wrap div.sml-fields fieldset {
  width: 30%;
  margin: 40px 10px;
}
@media (max-width: 980px) {
  .survey-wrap {
    padding: 20px;s
  }
}
@media (max-width: 600px) {
  
  .survey-wrap form > div {
    margin: 0 0 15px 0; 
  }
  .survey-wrap form > div > label,
  .survey-wrap legend {
    width: 100%;
    float: none;
    margin: 0 0 5px 0;
  }
  .survey-wrap form > div > div,
  .survey-wrap form > div > fieldset > div {
    width: 100%;
    float: none;
  }
  .survey-wrap input[type=text],
  .survey-wrap input[type=email],
  .survey-wrap input[type=url],
  .survey-wrap input[type=password],
  .survey-wrap textarea,
  .survey-wrap select {
    width: 100%; 
  }
  .survey-wrap div.sml-fields fieldset {
    width: 100%;
    margin: 40px 0;
  }
}