@charset "UTF-8";
/*============================================ 
======== Css Content =========
# Typography
# Normalize 
# Global style
# Pages style
# Responsive style
============================================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --body-font-primary: "Poppins", sans-serif;
  --body-font-secondary: "Montserrat", sans-serif;
  --body-color: #ffffff;
  --body-bg: #ffffff;
  --custom-bg: #ffffff;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
}

body {
  font-family: var(--body-font-primary);
  background-color: var(--body-color);
  color: var(--body-text-color);
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h1 > a,
h2,
h2 > a,
h3,
h3 > a,
h4,
h4 > a,
h5,
h5 > a,
h6,
h6 > a {
  color: var(--heading-color);
  font-family: var(--body-font-primary);
  font-weight: 700;
}
h1 span,
h1 > a span,
h2 span,
h2 > a span,
h3 span,
h3 > a span,
h4 span,
h4 > a span,
h5 span,
h5 > a span,
h6 span,
h6 > a span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
}

h1,
h1 > a {
  font-size: 48px;
  line-height: 60px;
  margin-top: -11px;
}

h2,
h2 > a {
  font-size: 43px;
  line-height: 56px;
  margin-top: -10px;
}

h5,
h5 > a {
  font-size: 24px;
  line-height: 32px;
  margin-top: -6px;
  font-weight: 600;
}

h6,
h6 > a {
  font-size: 18px;
  line-height: 23px;
  margin-top: -4px;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: none;
  color: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea {
  width: 100%;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #929292 !important;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: #929292 !important;
  opacity: 1;
}

button {
  border: none;
}

.form-control {
  padding: 18px 30px;
  border: none;
  color: var(--body-text-color);
  border: 1px solid rgba(127, 108, 152, 0.5);
  border-radius: 10px;
  background: transparent;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  background: transparent;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.my-20 {
  margin: 20px auto;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pxy-30 {
  padding: 30px;
}

.mbm-30 {
  margin-bottom: -30px;
}

.con_30 {
  margin-bottom: 24px;
}

.pxy_about {
  padding: 80px 60px;
}

.pxy_contact {
  padding: 80px 60px 50px;
}

@media (max-width: 991px) {
  .mt-60 {
    margin-top: 40px;
  }
  .mb-60 {
    margin-bottom: 40px;
  }
  .pt-80 {
    padding-top: 50px;
  }
  .pb-80 {
    padding-bottom: 50px;
  }
  .mb-80 {
    margin-bottom: 50px;
  }
  .pt-120 {
    padding-top: 60px;
  }
  .pb-120 {
    padding-bottom: 60px;
  }
  .py-80 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pxy_about {
    padding: 60px 40px;
  }
  .pxy_contact {
    padding: 60px 40px 30px;
  }
}
@media (max-width: 767px) {
  .mt-60 {
    margin-top: 30px;
  }
  .mb-60 {
    margin-bottom: 30px;
  }
  .py-80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pxy-30 {
    padding: 20px 13px;
  }
  .pxy_about {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .mt-60 {
    margin-top: 25px;
  }
  .mb-60 {
    margin-bottom: 25px;
  }
  .py-80 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pt-120 {
    padding-top: 50px;
  }
  .pb-120 {
    padding-bottom: 50px;
  }
  .py-120 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pxy-30 {
    padding: 15px 8px;
  }
  .pxy_about {
    padding: 30px 20px;
  }
  .pxy_contact {
    padding: 30px 20px 20px;
  }
}
*::-webkit-scrollbar {
  width: 0.7vw;
  height: 16px;
}

*::-webkit-scrollbar-thumb {
  background: #434343;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsla(0deg, 0%, 100%, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

*::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #434343, #434343 1px, #111 0, #111);
}

#pre_loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  overflow: visible;
  background: url(../images/preloader.gif) no-repeat center center;
  background-size: 20%;
  background-color: #e5eff1;
}

.title {
  margin-bottom: 25px;
}

.content_message {
  margin-bottom: 35px;
}

.normal_text {
  font-size: 16px;
}

.text_weight {
  font-weight: 500;
}

.x_large_semiBold {
  font-size: 24px;
  line-height: 34px;
  margin-top: -6px;
  font-weight: 600;
  font-family: var(--body-font-primary);
}

.x_large {
  font-size: 24px;
  line-height: 34px;
  margin-top: -6px;
}

.title_ch {
  max-width: 8ch;
}

.shadow {
  filter: drop-shadow(0px 20px 6.5px rgba(33, 25, 63, 0.16));
}

input#name,
input#email,
textarea#message {
  position: relative;
}

.alert {
  transition: 1s;
  margin-bottom: -20px;
  margin-top: 10px;
  display: block;
}

.btn-theme {
  background: linear-gradient(88deg, #4d35db 0%, rgba(78, 53, 219, 0.768627451) 51%, #4d35db 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 28px;
  transition: 0.5s;
  width: auto;
}
.btn-theme:hover span {
  transform: translatex(-10px);
  transition: 0.5s;
}
.btn-theme span {
  transition: 0.5s;
  display: flex;
  justify-content: center;
}
.btn-theme span:after {
  content: "→";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -30px;
  font-size: 25px;
  transition: 0.5s;
}
.btn-theme:hover span:after {
  opacity: 1;
  right: -30px;
}
.btn-theme:hover {
  background-position: right center;
}

.animation_area .Globe_full {
  position: absolute;
  top: -235px;
  right: -115px;
  border-radius: 50%;
  animation: circle 60s linear infinite;
  opacity: 0.06;
  width: 60%;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header_area {
  padding: 10px 15px;
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header_area button {
  color: #fff;
  padding: 7px 12px;
  font-size: 23px;
}
.header_area .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
.header_area .nav-right {
  margin-left: auto;
}
.header_area .nav-right .social_icon {
  display: flex;
  align-items: center;
}
.header_area .nav-right .social_icon a {
  border-radius: 50%;
  padding: 11px;
  margin-left: 15px;
  border-radius: 50%;
  background-image: linear-gradient(46deg, #7919ff 0%, #4fb1f5 51%, #7919ff 100%);
  background-size: 200% auto;
  transition: all 0.5s;
}
.header_area .nav-right .social_icon a i {
  height: 17px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.header_area .nav-right .social_icon a:hover {
  background-position: right center;
}
.header_area .nav-right .social_icon a:hover i {
  color: #ffffff;
}

@media screen and (max-width: 575px) {
  .header_area {
    padding: 10px 0;
  }
  .header_area a.navbar-brand {
    width: 145px;
  }
  .header_area .nav-right .social_icon a {
    margin-left: 4px;
    padding: 8px;
  }
}
.under_construction {
  min-width: 100%;
  min-height: 100vh;
  padding-top: 170px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/coming_soon_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.under_construction .section-layout {
  min-width: 100%;
}
.under_construction .section-layout .in-box {
  background-color: #ffffff;
  border: 1px solid rgba(127, 108, 152, 0.5);
  border-radius: 42px;
  filter: drop-shadow(0px 20px 6.5px rgba(33, 25, 63, 0.16));
  display: flex;
}
.under_construction .section-layout .in-box .btn-theme {
  margin: 14px;
  margin-left: 2px;
  padding: 13px 58px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.under_construction .section-layout .in-box:focus-within {
  border: 1px solid #614CE9;
}
.under_construction .section-layout .in-box .form-control {
  border: none;
  padding-left: 40px;
  color: rgb(34, 32, 32);
}
.under_construction .section-layout .img_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.under_construction .section-layout .img_gallery .img_grid:nth-child(2), .under_construction .section-layout .img_gallery .img_grid:nth-child(3) {
  grid-row: span 2;
}
.under_construction .section-layout .img_gallery .img_grid img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1600px) {
  .under_construction .section-layout .img_gallery {
    transform: translateX(100px);
  }
}
@media (max-width: 1399px) {
  .animation_area .hover_image {
    right: -300px;
  }
  .under_construction .section-layout .img_gallery {
    transform: translateX(15px);
  }
}
@media (max-width: 1199px) {
  h1,
  h1 > a {
    font-size: 43px;
    line-height: 56px;
    margin-top: -10px;
  }
  h2,
  h2 > a {
    font-size: 32px;
    line-height: 41.6px;
    margin-top: -8px;
  }
  .under_construction .Globe_full {
    top: -140px;
    right: -80px;
  }
  .under_construction .section-layout .in-box .form-control {
    border: none;
    padding-left: 25px;
    color: rgb(34, 32, 32);
    padding-right: 5px;
  }
  .under_construction .section-layout .img_gallery {
    transform: translateX(0px) !important;
  }
}
@media (max-width: 991px) {
  h1,
  h1 > a {
    font-size: 32px;
    line-height: 41.6px;
    margin-top: -8px;
  }
  h2,
  h2 > a {
    font-size: 24px;
    line-height: 28px;
    margin-top: -6px;
  }
  h3,
  h3 > a {
    font-size: 22px;
    line-height: 26px;
    margin-top: -5px;
  }
  h4,
  h4 > a {
    font-size: 20px;
    line-height: 24px;
    margin-top: -5px;
  }
  h5,
  h5 > a {
    font-size: 18px;
    line-height: 22px;
    margin-top: -4px;
  }
  h6,
  h6 > a {
    font-size: 16px;
    line-height: 22px;
    margin-top: -3px;
  }
  .x_large_semiBold {
    font-size: 18px;
    line-height: 22px;
    margin-top: -4px;
    font-weight: 600;
    font-family: var(--body-font-primary);
  }
  .x_large {
    font-size: 18px;
    line-height: 22px;
    margin-top: -4px;
  }
  .under_construction .navbar-nav {
    margin-bottom: 15px;
    margin-top: 13px;
  }
  .under_construction .Globe_full {
    top: -100px;
    right: -70px;
  }
  .under_construction .img_gallery {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .under_construction .section-layout .in-box .btn-theme {
    margin: 6px;
    padding: 12px 40px;
  }
  .alert {
    margin-bottom: -5px !important;
    margin-top: 7px !important;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 15px;
    line-height: 19px;
  }
  h1,
  h1 > a {
    font-size: 28px;
    line-height: 34px;
    margin-top: -6px;
  }
  h2,
  h2 > a {
    font-size: 22px;
    line-height: 26px;
    margin-top: -5px;
  }
  h6,
  h6 > a {
    font-size: 16px;
    line-height: 19px;
    margin-top: -2px;
  }
  .text_weight {
    font-weight: 400;
  }
  .under_construction .section-layout .img_gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .under_construction .section-layout .img_gallery .img_grid {
    margin: 0;
  }
  .under_construction .section-layout .img_gallery .img_grid img {
    width: 100%;
  }
  .under_construction .section-layout .Globe_full {
    top: -45px;
    right: -45px;
  }
}
@media (max-width: 479px) {
  .under_construction .section-layout .in-box .form-control {
    padding-left: 20px;
    padding-right: 5px;
  }
  .under_construction .section-layout .in-box .btn-theme {
    padding: 10px 30px;
    font-size: 13px;
  }
  .under_construction .section-layout .in-box .btn-theme span:after {
    font-size: 18px;
  }
  .under_construction .section-layout .in-box .btn-theme:hover {
    right: -24px;
  }
  .under_construction .section-layout .in-box .btn-theme:hover span:after {
    right: -24px;
  }
  .under_construction .section-layout .in-box .btn-theme:hover span {
    transform: translatex(-10px);
  }
  .under_construction .section-layout .Globe_full {
    right: -30px;
    top: -40px;
  }
}/*# sourceMappingURL=style.css.map */