/* Font */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */
/* TASA Orbiter Deck fonts Font */
@font-face {
  font-family: "TASAOrbiter";
  src: url("..'/assets/fonts/TASAOrbiterText-Bold-BF64891cba00f5b.otf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Regular-BF64891cba384f3.otf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-Medium-BF64891cb9e8a75.otf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TASAOrbiter";
  src: url("../assets/fonts/TASAOrbiterText-SemiBold-BF64891cba09cfc.otf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* TASA Orbiter Deck fonts Font */

:root {
  --primary-font: "TASAOrbiter";
  --secondary-font: "Manrope";
  --primary-color: #1d75fc;
  --secondary-color: #ff8343;
  --border-color: #d0d0d0;
  --black: #040404;
  --bg: #ffffff;
  --main-120: #e8f1ff;
  --main-140: #a5c8fe;
  --main-160: #77acfd;
  --main-180: #4a91fd;
  --sec-20: #ffe6d9;
  --sec-20: #ffcdb4;
  --sec-20: #ffb58e;
  --sec-20: #ff9c69;
  --text-1: #040d12;
  --text-2: #222831;
  --text-3: #ffffff;
  --accent-light-gray: #d0d0d0;
  --accent-white-smoke: #f5f5f5;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--primary-font);
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
  font-family: var(--primary-font);
  transition: 0.4s;
}

p {
  color: var(--text-2);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 400;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--primary-font);
  transition: 0.4s;
}

input {
  outline: none;
  font-family: var(--secondary-font);
}

img {
  width: 100%;
  background-position: center;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  background: var(--bg);
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Webkit Scroll bar */

/* Contact Start */
.contact_us .header_wrap {
    margin-bottom: 30px;
  }
  
  .contact_us .header .title {
    display: inline-block;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    color: var(--text-1);
  }
  
  .contact_us input, textarea {
    outline: none !important;
  }
  
  .contact_us .header .title span {
    position: relative;
  }
  
  .contact_us .header .title svg {
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 130px;
  }
  
  .contact_us .header .title svg {
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 130px;
  }

  @media (max-width: 768px) {
    .contact_us .header .title {
      font-size: 26px;
      display: inline-block;
    }
  
    .contact_us .header .title span {
      font-size: 26px;
    }
    .contact_us .header .title svg {
      width: 100px;
    }
  }
/* Contact End */
