html {
  width: 100%;
  height: 100%;
}

body {
    position: relative;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.15))), radial-gradient(at top center, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.4) 120%) #ebccd9;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.4) 120%) #ebccd9;
    background-blend-mode: multiply,multiply;
    width: 100%;
    height: 100%;
  }
  
  body a {
    text-decoration: none;
  }
  
  body .btn {
    background: #404040;
    color: #fff;
    padding: 25px 70px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 20px;
    text-shadow: 1px 1px 1px #000;
  }
  
  .logo-top{
    margin: 0px 0px 0px 27px;
  }

  @media (min-width: 768px) {
    body .btn {
      font-size: 30px;
    }
  }
  
  body .btn:hover {
    background: #333;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  html * {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  header {
    border-bottom: 1px solid #f2f2f2;
    background-color: #fff;
  }
  
  header nav {
    padding: 25px;
    text-align: center;
    max-width: 1900px;
    margin: 0 auto;
  }
  
  @media (min-width: 768px) {
    header nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  }
  
  header nav a {
    color: #333;
    font-size: 15px;
  }
  
  header nav a:hover {
    color: #F5BB02;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  header nav a img {
    max-width: 20px;
    margin: 0 auto 10px;
    display: block;
  }
  
  @media (min-width: 768px) {
    header nav a img {
      margin: 0 auto;
      width: 20px;
      position: absolute;
    }
  }
  
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  @media (min-width: 768px) {
    header nav ul {
      gap: 30px;
    }
  }
  
  header nav ul li {
    list-style-type: none;
  }
  
  header nav ul li a {
    font-size: 12px;
  }
  
  @media (min-width: 1024px) {
    header nav ul li a {
      font-size: 14px;
    }
  }
  
  @media (min-width: 1200px) {
    header nav ul li a {
      letter-spacing: 1.5px;
    }
  }
  
  main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 80px 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.15))), radial-gradient(at top center, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.4) 120%) #ffbd35;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.4) 120%) #ffbd35;
    background-blend-mode: multiply,multiply;
    height: 90%;
  }
  
  @media (min-width: 1024px) {
    main {
      padding: 80px;
    }
  }
  
  main .wrap {
    max-width: 1900px;
    margin: 0 auto;
  }
  
  main .wrap .content {
    text-align: center;
  }
  
  @media (min-width: 1200px) {
    main .wrap .content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 50px;
    }
  }
  
  main .wrap .content .desc-wrap {
    color: #fff;
    -webkit-animation: myAnim 1s ease 0s 1 normal forwards;
            animation: myAnim 1s ease 0s 1 normal forwards;
    text-align: center;
  }
  
  @media (min-width: 1200px) {
    main .wrap .content .desc-wrap {
      width: 50%;
      text-align: center;
    }
  }
  
  main .wrap .content .desc-wrap .desc {
    font-size: 17px;
    margin: 10px 0 30px;
  }
  
  @media (min-width: 1200px) {
    main .wrap .content .desc-wrap .desc {
      line-height: 25px;
    }
  }
  
  main .wrap .content .desc-wrap h1 {
    font-size: 47px;
    color: #fff;
  }
  
  main .wrap .content .desc-wrap h3 {
    color: #fff;
    font-style: italic;
  }
  
  main .wrap .content .desc-wrap .btn {
    display: inline-block;
    -webkit-box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.42);
            box-shadow: 0px 8px 5px -6px rgba(0, 0, 0, 0.42);
    margin-bottom: 10px;
  }
  
  main .wrap .content .desc-wrap .agreement {
    max-width: 600px;
    margin: 10px auto 0;
    font-size: 12px;
    line-height: 20px;
  }
  
  @media (min-width: 1200px) {
    main .wrap .content .desc-wrap .agreement {
      margin: 10px 0 0;
      text-align: center;
      display: block;
      margin: 14px auto 10px auto;
    }
  }
  
  main .wrap .content .desc-wrap .agreement a {
    color: #f1cc51;
  }
  
  main .wrap .content img {
    -webkit-animation: myAnim 2s ease 0s 1 normal forwards;
            animation: myAnim 2s ease 0s 1 normal forwards;
    max-width: 500px;
    margin: 0 auto;
  }
  
  @media (min-width: 1200px) {
    main .wrap .content img {
      width: 50%;
    }
  }
  
  @media (min-width: 1200px) {
    main .wrap .content img {
      width: 25%;
      max-width: 89%;
      margin: -100px 0px -92px 210px;
    }
  }
  
  footer {
    text-align: center;
    padding: 20px;
    color: #333;
    border-top: 1px solid #f2f2f2;
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #fff;
  }
  
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  
  footer ul li {
    list-style: none;
    font-size: 13px;
  }
  
  footer ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
  }
  
  footer ul li a:hover {
    color: #FCA311;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  footer p {
    font-size: 13px;
  }
  
  footer p a {
    color: #333;
  }
  
  /* SUBPAGE */
  .sub-nav {
    position: relative;
    border-bottom: 1px solid #f2f2f2;
    color: #333;
  }
  
  .sub-nav nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1200px;
  }
  
  .sub-nav nav a:hover {
    color: #FCA311;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  .sub-nav img {
    display: block;
  }
  
  .subpage {
    padding: 80px 20px;
    max-width: 1024px;
    margin: 0 auto;
  }
  
  .subpage .maincontent {
    color: #333;
  }
  
  .subpage p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
  }
  
  .subpage ul li {
    margin-bottom: 20px;
    line-height: 25px;
  }
  
  .subpage h1, .subpage h2 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .subpage h3 {
    margin-bottom: 20px;
  }
  
  .subpage strong {
    margin-bottom: 10px;
    display: block;
  }
  
  .subpage a {
    color: #000;
  }
  
  /* address */
  .info {
    padding: 0;
  }
  
  .info li {
    list-style-type: none;
    margin-bottom: 10px;
  }
  
  /* Conctact us */
  .contact, .about {
    padding: 100px 20px 100px;
    max-width: 800px;
    margin: 0 auto;
    color: #14213D;
  }
  
  .contact {
    max-width: 1000px;
    -webkit-animation: myAnim 1s ease 0s 1 normal forwards;
            animation: myAnim 1s ease 0s 1 normal forwards;
  }
  
  @media (min-width: 768px) {
    .contact {
      margin: 0px auto;
    }
  }
  
  .contact form {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
  
  .contact form label {
    font-weight: 400;
    margin-bottom: -10px;
  }
  
  .contact form input,
  .contact form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  
  @media (min-width: 1024px) {
    .contact form input,
    .contact form textarea {
      width: 100%;
    }
  }
  
  .contact form .btn {
    background: #FCA311;
    padding: 15px 20px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: white;
    border: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  
  .contact form .btn:hover {
    background: #FF9800;
    text-shadow: 1px 0px 0px #000;
  }
  
  @media (min-width: 1024px) {
    .contact form .btn {
      width: 100%;
    }
  }
  
  .sub-footer {
    position: relative;
    padding: 20px;
    border-top: 1px solid #f2f2f2;
  }
  
  @media (min-width: 768px) {
    .sub-footer .sub-footer-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
  }
  
  .sub-footer .sub-footer-wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  
  @media (min-width: 768px) {
    .sub-footer .sub-footer-wrap ul {
      margin-bottom: 0px;
    }
  }
  
  .sub-footer .sub-footer-wrap ul li {
    list-style: none;
    font-size: 13px;
  }
  
  .sub-footer .sub-footer-wrap ul li a {
    text-decoration: none;
  }
  
  .sub-footer .sub-footer-wrap ul li a:hover {
    color: #FCA311;
  }
  
  .sub-footer .sub-footer-wrap p {
    font-size: 13px;
  }
  
  .sub-footer .sub-footer-wrap p a {
    color: #FCA311;
  }
  
  /* keyframe animations */
  @-webkit-keyframes myAnim {
    0% {
      opacity: 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes myAnim {
    0% {
      opacity: 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }