@import url("layout.css");
@import url("typography.css");
html {
  -webkit-scrollbar: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*::-webkit-scrollbar {
  display: none;
}
input:invalid {
  box-shadow: 0 0 1px 1px rgba(255, 0, 0, 0.5);
}

input:focus:invalid {
  box-shadow: none;
}
p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style-type: none;
}
#loader-wrapper {
  direction: ltr;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 8s ease infinite;
}
@media (max-width: 460px) {
  #main-wrapper,
  #viewport {
    scroll-snap-type: y mandatory;
    transition: all 0.3s ease-in-out;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.loading02 span {
  animation: loading02 1.2s infinite alternate;
}

.loading02 span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading02 span:nth-child(3) {
  animation-delay: 0.4s;
}

.loading02 span:nth-child(4) {
  animation-delay: 0.6s;
}

.loading02 span:nth-child(5) {
  animation-delay: 0.8s;
}

.loading02 span:nth-child(6) {
  animation-delay: 1s;
}

.loading02 span:nth-child(7) {
  animation-delay: 1.2s;
}

.loading02 span:nth-child(8) {
  animation-delay: 1.4s;
}

.loading02 span:nth-child(9) {
  animation-delay: 1.6s;
}

.loading02 span:nth-child(10) {
  animation-delay: 1.8s;
}

@keyframes loading02 {
  0% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(5px);
    opacity: 0.2;
  }
}
.loading {
  width: max-content;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  span {
    display: inline-block;
    margin: 0 -0.05em;
  }
}
@media (min-width: 460px) {
  .loading {
    width: max-content;
    font-size: 84px;
    font-weight: 800;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    span {
      display: inline-block;
      margin: 0 -0.05em;
    }
  }
}

/* -------------------------------------------------------------------------- */

/* --------------------------------- Classes -------------------------------- */
.hom {
  display: none;
}
@media (min-width: 460px) {
  .hom {
    display: block;
  }
  .hod {
    display: none;
  }
}

.section {
  margin: 0px auto 100px;
  scroll-snap-align: start;
}
@media (max-width: 460px) {
  .section:not(:last-of-type) {
    padding: 80px auto 0;
  }
}
.centerize {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.center {
  text-align: center;
}
.left {
  float: left;
}
.right {
  float: right;
}
.bottom {
  position: absolute;
  bottom: 0;
  padding: 0;
  left: 0;
  padding: 0;
  margin: auto;
  width: 100%;
}

.buttons {
  width: 100%;
  display: table;
}
.buttons .btn {
  float: var(--dir);
}
.btn {
  display: inline-flex;
  padding: 0 16px;
  border: 1px solid var(--color-primary);
  height: 45px;
  line-height: 45px;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 8px 10px;
  border-radius: 56px;
  -webkit-border-radius: 56px;
  -moz-border-radius: 56px;
  -ms-border-radius: 56px;
  -o-border-radius: 56px;
  cursor: pointer;
  color: var(--color-primary);
  align-items: center;
  align-content: center;
  justify-content: center;
}
.btn:first-child {
  margin-right: 0;
}
.primary-btn {
  background-color: var(--color-primary);
  color: #fff;
}
.btn span {
  margin: 0 0 0 20px;
}
.btn img {
  margin-top: 16px;
}

.gradiented {
  padding: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  background: rgb(128, 59, 183);
  background: linear-gradient(
    30deg,
    rgba(128, 59, 183, 1) 34%,
    rgba(253, 29, 29, 1) 100%
  );
}

/* --------------------------------- Navbar --------------------------------- */
#navbar {
  position: fixed;
  text-align: center;
  align-items: center;
  align-content: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 9999;
  display: flex;
}
.has-bg {
  background-color: #fff;
  border-bottom: 1px solid #cecece;
}
@media (min-width: 460px) {
  #navbar a {
    display: inline-block;
    line-height: 100px;
    padding: 0 10px;
  }
  #navbar a img {
    margin: 20px 0 -20px;
  }
}

/* ---------------------------------- Hero ---------------------------------- */
#hero {
  height: 100%;
  width: 100%;
  position: relative;
}
.hero-pattern {
  background-image: url("../img/pattern.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#hero .container {
  height: 100%;
  color: #fff;
}
#hero .bottom img {
  margin-bottom: -6px;
}
/* ----------------------------- Servicing form ----------------------------- */
.tab {
  justify-content: space-around;
  flex-wrap: wrap;
}
.card {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  border: 1px #d9d9d9 solid;
  align-items: center;
  padding: 0 0 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 460px) {
  .card {
    width: 200px;
    height: 300px;
  }
}
.card ul {
  text-align: right;
  margin-right: 0;
}

.trigger span {
  text-align: center !important;
}
@media (max-width: 460px) {
  .tab-view {
    width: 100%;
    overflow: hidden;
  }
  .tab {
    display: flex;
    flex-direction: column;
  }
  .card {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
    border: 1px #d9d9d9 solid;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    gap: 5px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .card ul {
    text-align: right;
    margin-right: 0;
  }
}
@media (min-width: 460px) {
  .card .trigger {
    border: 0;
    margin-top: 10px;
    height: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
  }
  .card:hover {
    border: 1px solid var(--color-primary);
  }
  .card:hover .trigger {
    height: 50px;
  }
}
.tab-links {
  width: 100%;
  display: flex;
  background-color: #e9e9e9;
  border-radius: 50px;
  height: 50px;
  padding: 0 3px;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 20px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

button.tab-link {
  width: -webkit-fill-available;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  line-height: 30px;
  padding: 0;
  color: #a5a5a5;
  font-size: smaller;
  margin: 0;
}
.img.lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80px;
  height: 100%;
  padding: 10px 0;
}
.img img {
  display: block;
  width: 50px;
  margin: 0 10px;
}
@media (min-width: 460px) {
  .img.lead {
    flex-direction: row;
    width: 100%;
    height: 200px;
    text-align: right;
    margin-bottom: 20px;
  }
}
button.tab-link.active {
  background: #f9f9f9;
  color: red;
  border-radius: 50px;
  font-weight: 600;
  /*padding-left: 5px;
  padding-right: 5px;
  */
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

ul {
  font-size: small;
  margin: 0;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

/* Applies only for mobile */
@media (max-width: 460px) {
  .trigger.btn {
    padding: 0;
  }
  .trigger.btn.primary-btn {
    border-radius: 50%;
    height: 40px;
    width: 40px;
  }
}

/* Appliess only for PC */
@media (min-width: 460px) {
  .tab .img {
    font-size: 1.6rem;
    font-weight: 600;
  }
  #ig .img {
    background-image: url("../img/ig-bg.png");
    color: #fff;
  }
  #tk .img {
    background-image: url("../img/tk-bg.png");
    color: #fff;
  }
  #tw .img {
    background-image: url("../img/tw-bg.png");
    color: #fff;
  }
  #sn .img {
    background-image: url("../img/sn-bg.png");
  }
}
/* ----------------------------------- Faq ---------------------------------- */
.accordion {
  background-color: transparent;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: right;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  transition: 0.4s;
  font: inherit;
  font-family: inherit;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  border-bottom: 2px solid transparent;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  border-radius: 20px;
  background-color: #d6d6d6;
  color: #6f6f6f;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;
  -ms-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
}
button {
  color: var(--color-primary);
  font-family: inherit;
}
button span {
  max-width: calc(100% - 35px);
}
button svg {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
button.active svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/* --------------------------------- Footer --------------------------------- */
#footer {
  padding-bottom: 100px;
}
@media (min-width: 460px) {
  #footer {
    padding: 100px 0;
  }
}

/* ----------------------------- Mobile styling ----------------------------- */
#menu-btn {
  position: absolute;
  right: 0px;
  margin: -10px 10px 0 -60px;
  transform: scale(-100%);
  -webkit-transform: scale(-100%);
  -moz-transform: scale(-100%);
  -ms-transform: scale(-100%);
  -o-transform: scale(-100%);
  width: 50px;
  height: 50px;
}
#mobile-menu {
  background-color: #ecefef;
  width: 100%;
  height: 100%;
  padding: 20px;
  position: fixed;
  overflow: hidden;
}
#mobile-menu ul {
  margin-top: 30%;
  max-width: 60%;
}
#mobile-menu h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
#mobile-menu a {
  color: #121212 !important;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

@media (max-width: 460px) {
  #navbar {
    background-color: #fff;
    align-content: center;
    border-bottom: 1px solid #cecece;
  }
  .section:not(:last-of-type) {
    padding-top: 120px;
  }
  #hero {
    padding-top: 0;
  }
}
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                   Modals                                   */
/* -------------------------------------------------------------------------- */
#main-wrapper.has-modal {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
#modal-wrapper {
  display: none;
  position: fixed;
  z-index: +999999;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
#modal {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 40px 20px;
}
#modal .bottom {
  padding: 20px;
}
.full-btn {
  width: 100%;
  line-height: 55px;
  text-align: center;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 500;
}
@media (min-width: 460px) {
  #modal {
    display: block;
    background-color: #fff;
    width: 800px;
    min-height: 500px;
    max-height: 800px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;

    overflow: hidden;

    box-shadow: 0 0px 80px rgba(219, 7, 205, 0.2);
  }
}
span.lead {
    font-size: clamp(0.5rem, 0.6rem, 1rem);
}
#swiper {
  position: absolute;
  margin-inline-start: 0;
  width: 400%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.step {
  float: inline-start;
  width: calc(25% - 40px);
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.step:not(:first-of-type) {
  margin-inline-start: 20px;
}
#modal .bottom {
  left: 0;
  padding-bottom: 10px;
  z-index: 9999;
}
#modal h2 {
  margin-bottom: 8px;
}
#modal label {
  display: block;
}
#modal input {
  line-height: 45px;
  width: 100%;
  padding: 0 20px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
}
