/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
=> Clean Base
=> Base Typography
=> Images
=> Links
=> Forms
=> Framework
*/

/* Clean Base
------------------------------------------------------------------------------*/

:root {
  --color-100: #14f2b2;
  --color-200: #0a0f24;
  --color-300: #6b2bf2;

  /* --color-400: #EAEAEA;
    --color-500: #ADADAD;
    --color-600: #707070;
    --color-700: #282828; */

  --color-white: #ffffff;
  --color-black: #000000;
  --font-Nunitosans: "Nunito Sans", sans-serif;
  --font-Ubuntu: "Ubuntu", sans-serif;

  /* 14px */
  --text-sm: .875rem;
  /* 16px */
  --text-base: 20px;
  /* 18px */
  --text-lg: 1.125rem;
  /* 1186px */
  --container: 1336px;
  /* 50px */
  --gutter: 3.125rem;
  /* 80px */
  --h1: 5rem;
  /* 48px */
  --h2: 3rem;
  /* 31px */
  --h3: 1.937rem;
  /* 25px */
  --h4: 1.562rem;
  /* 20px */
  --h5: 1.25rem;
  /* 18px */
  --h6: 1.125rem;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  outline: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
  -webkit-text-size-adjust: none;
  height: 100%;
}
body {
  overflow-x: hidden;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

iframe {
  vertical-align: top;
}

textarea:focus,
input:focus,
a,
div,
img {
  outline: none;
}

picture {
  display: inline-block;
  vertical-align: top;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Base Typography
------------------------------------------------------------------------------*/

body {
  font-size: var(--text-base);
  font-family: var(--font-Nunitosans);
  font-weight: 400;
  line-height: 1.3;
  background-color: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  min-height: -webkit-fill-available;
  height: auto;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    height: 100%;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-white);
  font-family: var(--font-Ubuntu);
  margin-bottom: 16px;
  line-height: 1.29;
}

.h1,
h1 {
  font-size: var(--h1);
}
.h2,
h2 {
  font-size: var(--h2);
}
.h3,
h3 {
  font-size: var(--h3);
}
.h4,
h4 {
  font-size: var(--h4);
}
.h5,
h5 {
  font-size: var(--h5);
}
.h6,
h6 {
  font-size: var(--h6);
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: inherit;
  text-decoration: none;
}

p {
  font-family: var(--font-Nunitosans);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 20px;
}

ul li {
  padding-bottom: 14px;
}

ul li:last-child {
  padding-bottom: 0;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

img[src$=".svg"] {
  height: auto;
  display: inline-block;
  vertical-align: top;
}

/* Link
------------------------------------------------------------------------------*/

a {
  color: var(--color-white);
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

a:hover {
  color: #000;
  text-decoration: underline;
  transition: all 0.6s ease;
}

a:focus {
  outline: none;
}

/* Form
------------------------------------------------------------------------------*/
form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

input,
select,
textarea,
button {
  font-family: var(--font-Nunitosans);
}

input[type="text"],
input[type="submit"],
input[type="button"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="number"],
textarea {
  border: 1px solid #99e1c7;
  padding: 16px 10px 8px;
  color: var(--color-200);
  font-size: 18px;
  height: 46px;
  font-weight: 400;
  width: 100%;
  border-radius: 6px;
}

textarea {
  display: block;
  height: 150px;
  padding: 20px 15px;
  resize: none;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  color: rgba(99, 102, 106, 0.7);
  padding-right: 1.4em;
  background-image: url(images/select-down-arrow.svg);
  background-size: 12px 10px;
  background-position: right 1.35em center;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
}

/* for ie */

select::-ms-expand {
  display: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  outline: none;
  display: inline-block;
  vertical-align: top;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  /* border-width: 0;
    border-radius: 4px; */
  color: var(--color-white);
  background-color: linear-gradient(96.55deg, #0a69bf 0.6%, #6b2bf2 112.5%);
  transition: 0.4s ease;
  font-family: var(--font-Nunitosans);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: var(--color-100);
  color: var(--color-white);
  outline: none;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  opacity: 1 !important;
  color: rgba(99, 102, 106, 0.7);
}

:-moz-placeholder {
  opacity: 1 !important;
  color: rgba(99, 102, 106, 0.7);
}

::-moz-placeholder {
  opacity: 1 !important;
  color: rgba(99, 102, 106, 0.7);
}

:-ms-input-placeholder {
  opacity: 1 !important;
  color: rgba(99, 102, 106, 0.7);
}

/* Layout Framework
------------------------------------------------------------------------------*/

/*--- main container ---*/

.wrapper {
  position: relative;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  min-height: 100%;
  flex-wrap: wrap;
}

.main-container {
  width: 100%;
}

.container,
.container-fluid {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1336px;
}

.container-fluid {
  max-width: 100%;
}

/* flex */

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-start {
  align-items: flex-start;
}

.items-baseline {
  align-items: baseline;
}

.d-flex-1 {
  flex: 1;
}
html{
  scroll-behavior: smooth;
}
.main-container {
  background: linear-gradient(256.21deg, #0a69bf -14.42%, #0a0f24 59.85%);
  position: relative;
}
/* Hero Banner */
.main-container .hero-banner:before {
  content: '';
  position: absolute;
  background-image: url(../images/coming-soon-1.png);
  background-repeat: no-repeat;
  width: 1399px;
  height: 1536px;
  top: 50%;
  background-position: center center;
  left: 50%;
  transform: translate(-42%, -56%);
}
.hero-banner {
  padding: 50px 0 0;
  height: 100vh;
  min-height: 550px;
  position: relative;
  overflow-x: clip;
}
.hero-banner .container {
  height: 100%;
}
.hero-banner .hb-main {
  max-width: 573px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.hero-banner .h1 {
  font-weight: 300;
  margin-bottom: 26px;
}
.hero-banner .hb-logo {
  margin-bottom: 46px;
}
.hero-banner .hb-logo img {
  width: 203px;
  height: 42px;
  object-fit: contain;
}
.hero-banner .hb-title p {
  color: var(--color-white);
  font-weight: 200;
  margin-bottom: 45px;
}
.hero-banner .cta-btn .btn {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(96.55deg, #0a69bf 0.6%, #6b2bf2 112.5%);
  transition: all 0.3s ease-in-out;
}

.hero-banner .cta-btn{
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-banner .cta-btn .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  z-index: 2;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}
.hero-banner .cta-btn .btn:hover {
  text-decoration: none;
}
.hero-banner .cta-btn .btn:hover::before {
  left: 125%;
}
.hero-banner .cta-btn .btn-link{
  color:var(--color-white) ;
  position: relative;
  padding-right: 30px;
  transition: .3s all;
}
.hero-banner .cta-btn .btn-link:before{
  content: '';
  position: absolute;
  top: 50%;
  right: 0px;
  width: 20px;
  height: 12px;
  background-image: url(../images/icon-arrow.png);
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: .3s all;
}
.hero-banner .cta-btn .btn-link:hover{
  color:var(--color-100) ;
  text-decoration: none;
}
.hero-banner .cta-btn .btn-link:hover::before{
  right: -5px;
}
/* Inquiry Form */

.inquiry-form {
  position: relative;
  padding: 50px 0 70px 0;
}
.inquiry-form .if-fifty-fifty {
  display: flex;
  gap: 32px;
}
.if-detail,
.if-form {
  width: 50%;
}
.inquiry-form .if-title .h2 {
  font-weight: 300;
}
.inquiry-form .if-title .h5 {
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-Nunitosans);
}
.inquiry-form .if-title p {
  color: var(--color-white);
  font-weight: 200;
}

.if-form-bg iframe {
  height: 680px !important;
}

/* Footer */
.main-footer {
  background-color: var(--color-200);
  padding: 40px 0;
}
.main-footer .mf-copyright {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
}

@media (max-width: 1439px) {
  .if-form-bg iframe {
    height: 665px !important;
  }
}
@media (max-width: 1279px) {
  .if-form-bg iframe {
    height: 670px !important;
  }
}
@media (max-width: 1205px) {
  .if-form-bg iframe {
    height: 780px !important;
  }
}
@media (max-width: 1199px) {
  .if-form-bg iframe {
    height: 690px !important;
  }
  .if-detail,
  .if-form {
    width: 100%;
  }
  .inquiry-form .if-fifty-fifty {
    flex-direction: column;
  }
  .if-form-bg {
    max-width: 760px !important;
    margin: auto;
  }
  .if-title {
    text-align: center;
  }
  .inquiry-form .if-title .h2 {
      font-size: 40px;
  }
}

@media (max-width: 991px) {
  .hero-banner {
    height: auto;
  }
  .main-container:before {
    background-size: contain;
  }
  .main-container .hero-banner:before {
    transform: translate(-42%, -61%);
  }
}
@media (max-width: 767px) {
  .hero-banner .h1 {
    font-size: 40px;
  }
  .hero-banner {
    padding: 100px 0px;
  }
  .main-container .hero-banner:before {
      transform: translate(-38%, -48%);
  }
  .hero-banner .hb-main {
      max-width: 310px;
  }
}
@media (max-width: 575px) {
  .if-form-bg iframe {
    height: 780px !important;
  }
}
@media (max-width: 421px) {
  .if-form-bg iframe {
    height: 710px !important;
  }
}
