@font-face {
  font-family: "Gilroy-UltraLight";
  src: url("https://osc.whitedragontech.com/wp-content/themes/osc2026/assets/fonts/Gilroy/Gilroy-UltraLight.ttf") format("truetype")
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("https://osc.whitedragontech.com/wp-content/themes/osc2026/assets/fonts/Gilroy/Gilroy-Medium.ttf") format("truetype")
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url("https://osc.whitedragontech.com/wp-content/themes/osc2026/assets/fonts/Gilroy/Gilroy-Regular.ttf") format("truetype")
}
body{
	margin: 0;
}
header {
  position: absolute;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
}

.inline-block {
  display: inline-block;
}

header a {
  color: #FFF;
  font-family: Gilroy-Medium;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

header .top-bar {
  display: grid;
  margin-bottom: 35px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

header .top-bar .logo-link {
  grid-column: 2;
  justify-self: center;
}
header .top-bar .logo-link img{
    max-width: 280px;
}

header .top-bar .inquire-btn {
  grid-column: 3;
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  margin-right: 20px;
  max-width: 126px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #fff;
  outline: none;
  transition: 1s ease-in-out;
    position:relative;
}

header .top-bar .inquire-btn svg {
  position: absolute;
  left: -1px;
  top: -1px;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

header .top-bar .inquire-btn.anibtn:hover {
  transition: 1s ease-in-out;
  border:1px solid rgb(255, 255, 255, 50%);
  background: none;
}

header .top-bar .inquire-btn.anibtn:hover svg {
  stroke-dashoffset: -480;
}

header .top-bar .inquire-btn.anibtn span {
  color: white;
  font-weight: 100;
}

header .anibtn .border .hl-line {
  stroke-width: 3;
}
.border .bg-line {
  stroke-width: 3;
}

header nav .d-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* hamburger button */
.menu-toggle {
  display: none;
  grid-column: 1;
  justify-self: start;
  background: transparent;
  border: 0;
  padding: 0;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 10px;
}

.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* active state */
header.menu-open .menu-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

header.menu-open .menu-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.mobile-drawer,
.menu-overlay {
  display: none;
}
.footer-wrap .top-wrap{
  display:none!important;
}
.desktop-nav{
  display: none!important;
}
@media (max-width: 991px) {
  .mobile-drawer .menu-toggle{
    margin-left: auto;
  }
  header .top-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 0;
    gap: 42px;
    justify-content: space-between;
  }

  header .top-bar .logo-link {
    grid-column: 2;
    justify-self: center;
    order:2;
  }

  header .top-bar .inquire-btn {
    display: none;
  }

    .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: none!important;
    grid-column: 1;
    justify-self: start;
    order:1;
    margin-left: 41px;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 0 20px;
    max-height: 100vh;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  header.menu-open nav {
    max-height: 100%;
    padding: 25px 20px;
  }

  header nav .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
    .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
  }

  /* drawer */
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #111;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    padding: 100px 30px 40px;
  }

  .mobile-drawer .drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* open state */
  header.menu-open .mobile-drawer {
    transform: translateX(0);
  }

  header.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media all and (max-width: 767px){
    .menu-toggle{
        margin-left: 0;
    }
}

@media (max-width: 575px) {
  header .top-bar .inquire-btn {
    padding: 8px 14px;
    font-size: 9px;
  }

  header .top-bar .logo-link img {
    max-width: 195px;
    height: auto;
  }
}

.contact_section{
    padding: 60px 30px 32px;
    background: #231F20;
}
.contact_section select option{
    color:#000;
}
footer{
    background: #231F20;
}

.contact_section span.title{
    color: #A98E6F;
    text-align: center;
    font-family: Gilroy-Regular;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.contact_section h2{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-UltraLight;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 38px 0;
}
.contact_section input:not([type="submit"]),
.contact_section textarea,
.contact_section select{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    border: unset;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    width: 100%;
    height: 22px;
    margin-bottom: 30px;
    outline: none;
    padding-bottom: 10px;
}
.contact_section input::placeholder:not([type="submit"]),
.contact_section textarea::placeholder,
.contact_section select::placeholder{
    color:rgb(255 255 255 / 50%);
}
.contact_section select{
    color:rgb(255 255 255 / 50%)!important;
}
.contact_section .wpcf7-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 22px;
    max-width: 590px;
    margin: auto;
}
.contact_section .wpcf7-form > p{
    width: 100%;
    text-align: center;
}
.contact_section form > div {
    flex: 1 1 calc(50% - 22px);
}

.contact_section form.wpcf7-form p {
    margin: 0;
}

.contact_section select {
    padding-bottom:10px;
    color: rgb(255 255 255 / 50%);
    height: 34px;
}

.contact_section textarea {
    height: 21px;
}

.contact_section input.wpcf7-form-control.wpcf7-submit {
    padding: 20px 50px 17px;
    border: 1px solid #fff;
    background: unset;
    color: #fff;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Gilroy-Medium';
}

.contact_section form br {
    display: none;
}
.contact_section .wpcf7-spinner{
    position: absolute;
}

.contact_section .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 6ex !important;
    width: 207px !important;
    background: unset !important;
    left: 0 !important;
    font-size: 12px;
    font-family: 'Gilroy-Medium', sans-serif;
}
.contact_section [data-name="message"] .wpcf7-not-valid-tip {
    top: -17px !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    color: #fff !important;
    flex: 1 1 100%;
    margin: 0;
    margin-top:15px;
}
.footer-wrap{
    max-width: 1200px;
    margin: auto;
}
.footer-wrap .top-wrap{
    border-top:1px solid rgb(255 255 255 / 20%);
    border-bottom:1px solid rgb(255 255 255 / 20%);
    display: flex;
     justify-content: space-between;
     padding: 20px 0;
}
.footer-wrap .links-area{
    max-width: 393px;
    width: 100%;
    padding-right: 7px;
    border-right: 1px solid rgb(255 255 255 / 20%);
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;

}
.footer-wrap .links-area > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:14px;
    max-width: 183px;
    width: 100%;
}
.footer-wrap .links-area a{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Medium;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .5;
    text-decoration: none;
}
.footer-wrap .logo-area{
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-wrap .logo-area img{
    max-width: 210px;
}
.footer-wrap .address-area{
    max-width: 393px;
    width: 100%;
    padding-left: 7px;
    border-left: 1px solid rgb(255 255 255 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.footer-wrap .address-area span{
    color: #FFF;
    text-align: center;
    font-family: Gilroy-Regular;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    margin: 0;
    opacity: .5;
}
.footer-wrap .btm-wrap{
    display: flex;
    justify-content: space-between;
    padding: 20px 0 18px;
}
.footer-wrap .btm-wrap span{
    color: #FFF;
    font-family: Gilroy-Medium;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .5;
}

@media all and (max-width: 1440px){
    header .wrapper{
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-wrap{
        padding: 0 10px;
    }
}
@media all and (max-width: 991px){
    .footer-wrap .logo-area{
        padding: 0 10px;
    }
}
@media all and (max-width: 767px){
    .contact_section span.title{
        margin-bottom: 10px;
    }
    section p{
        font-size: 12px!important;
    }
    .contact_section{
      padding: 60px 10px 55px;
    }
    .contact_section .wpcf7-form{
      gap:0px;
    }
    .contact_section form > div{
      gap:0px;
      flex: 1 1 100%;
    }
    footer .top-wrap{
        flex-direction: column;
        border-top: unset !important;
        border-bottom: unset !important;
        padding: 20px 10px !important;
    }
    .footer-wrap .logo-area{
        order:1;
    }
    .footer-wrap .links-area{
        order:2;
        border-right: none;
        padding-right: 0;
    }
    .footer-wrap .address-area{
        order: 3;
        padding-left: 0;
        border-left: none;
    }
    .footer-wrap .links-area > div{
        max-width: 100%;
    }
    footer .top-wrap > div{
        border-top: 1px solid rgb(255 255 255 / 50%);
        /*border-bottom: 1px solid rgb(255 255 255 / 50%);*/
        padding: 40px 0!important;
        max-width: 100% !important;
    }
    .footer-wrap .address-area{
        border-bottom: 1px solid rgb(255 255 255 / 50%)!important;
    }
    .footer-wrap .btm-wrap{
        flex-direction: column;
        max-width: 231px;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: auto;
        gap: 20px;
    }
}
