/*------------------- 1.3. Variable-------------------*/
:root {
  --body-bg: #ffffff;
  --theme-color: #48c1d4;
  --secondary-color: #0c7735;
  --body-color: #313131;
  --title-color: #2b2b72;
  --smoke-color: #f1f5f4;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #bfbfbf;
  --title-font: "Fredoka", sans-serif;
  --body-font: "DM Sans", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
}

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 20px 0;
  color: var(--body-color);
  line-height: 1.8;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 26px;
}

.h6,
h6 {
  font-size: 20px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/*------------------- 2.2. Grid -------------------*/
@media (min-width: 767px) {
  .row:not([class*=gx-]) {
    --bs-gutter-x: 30px;
  }
}
.gy-gx {
  --bs-gutter-y: var(--bs-gutter-x);
}

.gy-30 {
  --bs-gutter-y: 30px;
}

@media (min-width: 1500px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}
/*------------------- 2.2. Coming Soon -------------------*/
.coming-soon-sec {
  padding: 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-content {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  border-radius: 50px;
  padding: 80px;
}
.coming-soon-content p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}
.coming-soon-content .address {
  padding: 0 100px 0 0;
}
.coming-soon-content h1 {
  font-size: 80px;
}
.coming-soon-content img {
  max-width: 150px;
  margin-bottom: 30px;
}

.img-box img {
  width: auto;
  height: 100vh;
}

@media (max-width: 1500px) {
  .coming-soon-content {
    padding: 30px 30px;
  }
}
@media (max-width: 1200px) {
  .coming-soon-content {
    padding: 40px;
  }
  .coming-soon-content img {
    max-width: 100px;
    margin-bottom: 10px;
  }
  .coming-soon-content h1 {
    font-size: 60px;
  }
  .coming-soon-content p {
    font-size: 16px;
  }
  .img-box img {
    height: auto;
  }
}
@media (max-width: 992px) {
  .coming-soon-content {
    padding: 30px 20px;
    text-align: center;
    height: auto;
  }
  .coming-soon-content img {
    margin: 0 auto;
  }
  .coming-soon-content h1 {
    font-size: 60px;
  }
  .coming-soon-content p {
    font-size: 18px;
  }
  .coming-soon-content .address {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .coming-soon-content {
    padding: 30px 15px;
  }
  .coming-soon-content h1 {
    font-size: 36px;
  }
  .coming-soon-content p {
    font-size: 16px;
  }
  .coming-soon-content img {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .coming-soon-content p {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */