@charset "UTF-8";

/*----------------------------------------
  header
------------------------------------------ */

header {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 100;
}
header .flex{
  align-items: anchor-center;
}
header .logoLink {
  width: 100px;
}
header img {
  width: 100%;
}
header nav {
  flex: 1;
}
header nav ul {
  margin: 0 20px 0 auto;
  display: flex;
  justify-content: flex-end;
  box-shadow: 0 0 10px #ffffff;
  width: 70%;
  padding: 10px;
  border-radius: 80px;
  background: #FFF;
}
header nav ul li {
  text-align: center;
  position: relative;
}
header nav ul li a {
  font-size: 90%;
  display: inline-block;
  padding:15px 0.6vw;
  font-weight: bold;
}
header nav ul li.contactBtn a{
  background: #9a1e1b;
  color: #FFF;
  border-radius: 80px;
  padding: 15px 3rem;
  margin-left: 20px;
}

/*----------------------------------------
  induction
------------------------------------------ */

#induction{
    background: url(../img/common/indBg.jpg) no-repeat;
    background-size: cover;
    padding:3rem 1rem;
}
#induction h2{
    color: #FFF;
    text-align: center;
    font-size: 220%;
    position: relative;
    font-weight: 700;
}
#induction p.deco{
  color:#FFF;
  text-align:center;
}
#induction a{
    background: #FFF;
    color: #9a1e1b;
    border-radius: 80px;
    padding: 15px 3rem;
    font-size: 130%;
    width: 60%;
    text-align: center;
    font-weight: 700;
    margin: 2rem auto;
    display: block;
}
#induction .imgFlex{
  gap:3%;
}
#induction .imgFlex li{
  flex:1;
}
#induction .ctFlex{
  gap:3%;
}
#induction .ctFlex li{
  flex:1;
}
#induction .ctFlex li a{
  width: 100%;
}
#induction .ctFlex li a.line{
  background:#06c755;
  color:#FFF;
}
#induction .ctFlex li a.line span{
  position:relative;
}
#induction .ctFlex li a.line span:before{
  content:"";
  background:url(../img/common/icon-line.png) no-repeat;
  background-size:cover;
  width:50px;
  height:50px;
  position:absolute;
  top:0;
  bottom:0;
  margin:auto;
  left: -60px;
}

/*----------------------------------------
  footer
------------------------------------------ */

footer {
  background:#1b1b1b;
  padding:3rem 1rem 0 1rem;
}
footer .logo{
    width: 60px;
    margin: 0 auto;
}
footer h3{
    color: #FFF;
    font-size: 110%;
    font-weight: 600;
}
footer .flex{
    margin: 2rem 0;
    gap: 3%;
}
footer nav{
  flex:1;
}
footer ul{
  margin-top: 10px;
}
footer ul li{
  
}
footer ul li a{
  color: #FFF;
  font-size: 95%;
}
footer small {
  text-align: center;
  color: #FFF;
  display: block;
  font-size: 80%;
  border-top: 1px solid;
  padding: 10px;
}

@media (max-width: 1400px) {

  header nav ul{
    width: 70%;
  }

}

@media (max-width: 1390px) {
  header nav ul{
    width: 90%;
  }
}



@media (max-width: 1099px) {

  /** header **/
  header nav ul{
    width: 95%;
  }

  /** induction **/

  /** footer **/

}


@media (max-width: 1030px) {

  /** header **/

  /** nav **/
  header nav {
    width: 100%;
    display: none;
    background: #9b1e1cf5;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
  }
  header nav ul{
        display: block;
        box-shadow: none;
        background: none;
        border-radius: 0;
        margin: 0;
  }
  header nav ul li::before {
    display: none;
  }
  header nav ul.flex {
    display: block;
    margin: 0;
    background: #000;
  }
  header nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 0;
  }
  header nav ul li:last-child {
    border: none;
  }
  header nav ul li a {
    color: #FFF;
    font-weight: bold;
    display: block;
  }
  #nav_toggle {
    display: block;
    width: 40px;
    height: 40px;
    margin: 10px 0;
    z-index: 10000;
    position: fixed;
    right: 20px;
  }
  #nav_toggle div {
    position: relative;
  }
  #nav_toggle span {
    display: block;
    height: 3px;
    background: #FFF;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  #nav_toggle span:nth-child(2) {
    top: 12px;
  }
  #nav_toggle span:nth-child(3) {
    top: 24px;
  }
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  /** induction **/

  /** footer **/

}

@media (max-width: 800px) {

  /** header **/

  /** induction **/

  /** footer **/


}


@media (max-width: 650px) {


  footer .flex {
    display: block;
  }
  footer nav li::before {
    display: none;
  }
  footer nav{
    margin-bottom:1rem;
  }
  footer nav a {
    font-size: 13px;
    padding: 10px 0;
    display: block;
    border-bottom: 1px dotted rgb(171 171 171 / 30%);
  }
  footer nav li:first-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer nav li:last-child a {
    border-bottom: none;
  }
  #induction h2{
    font-size: 190%;
  }
  #induction .break{
    display:block;
  }

}

@media (max-width: 600px) {
  /** header **/



  /** induction **/
  #induction{

  }
  #induction .imgFlex{
    flex-wrap:wrap;
  }
  #induction .imgFlex li{
    width: 107%;
    flex: initial;
  }
  #induction .ctFlex{
    display:block;
    margin:2rem 0;
  }
  #induction .ctFlex li a{
    margin: 10px 0;
  }
  #induction .ctFlex li a.line span:before{
    left: -36px;
    width: 30px;
    height: 30px;
  }
  /** footer **/
  footer{

  }


  footer small {
    font-size: 60%;
  }
}


@media (max-width: 480px) {

  #induction h2{
    font-size: 140%;
  }
  #induction a{
    padding: 5px 3rem;
    font-size: 120%;
    width: 80%;
  }

}

