@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap");

:root {
  --primary: #ee2c82;
  --secondary: #00a8e8;
  --tertiary: #030303;
  --quarternary: #3b3b3b;
  --border-primary: #ee2c82;
  --yellow: #eac739;
  --ff-light: "Comfortaa", sans-serif;
  --ff-medium: "Comfortaa", sans-serif;
  --ff-bold: "Comfortaa", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-light);
}
body {
  margin: 0;

  font-family: var(--ff-light); /* Light font */
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1600px;
}
.navbar .badge {
  margin: 0 5px;
}
.badge {
  padding: 20px 30px !important;
  font-size: 20px;
  border-radius: 10px;
  font-weight: 400 !important;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
  .navbar-brand img {
    width: 150px;
  }
}

@media (max-width: 430px) {
  .badge {
    padding: 20px 30px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
    text-transform: uppercase;
  }
}
.form-control {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px 15px;
}
p {
  font-family: var(--ff-light);
}
.input input,
.input select {
  background: #ffffff;
  border: 1px solid #0000004d;
  border-radius: 10px;
  height: 56px;
}
.input textarea {
  border-radius: 10px;
  border: 1px solid #0000004d;
  min-height: 100px;
}
::placeholder {
  color: #120f0f !important;
  font-family: var(--ff-medium); /* Light font */
  font-size: 17px;
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-overlay {
  background-color: #000000cc;
}
.bg-white {
  background-color: #ffffff !important;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-bold {
  font-weight: 600 !important;
}
.web-btn {
  min-width: 230px;
}

.header {
  z-index: 9999;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: var(--primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: var(--primary) !important;
}
button {
  outline: 0;
  border: 0;
}
a:hover {
  opacity: 1 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-bold);
}
h1 {
  font-size: 60px;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  font-weight: 700;
}
h3 {
  font-size: 32px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  font-weight: 700;
}
h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em !important;
}
h6 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 430px) {
  h1 {
    font-size: 30px;
    font-weight: 700;
  }
  h2 {
    font-size: 24px;
    font-weight: 700;
  }
  h3 {
    font-size: 22px;
    font-weight: 700;
  }
  h4 {
    font-size: 20px;
    font-weight: 700;
  }
  h5 {
    font-size: 18px;
    font-weight: 400;
  }
}
.shadow {
  box-shadow: 0px 5px 20px 0px #00000029;
}
.secondary-shadow {
  box-shadow: var(--secondary) 5px 5px;
}
.primary-shadow {
  box-shadow: var(--primary) 5px 5px;
}
.header {
  box-shadow: 0px 5px 20px 0px #00000029;
}
.rounded-5 {
  border-radius: 5px !important;
}
.rounded-10 {
  border-radius: 10px !important;
}
.rounded-15 {
  border-radius: 15px !important;
}
.rounded-20 {
  border-radius: 20px !important;
}

p,
a,
span,
li,
div {
  font-family: var(--ff-medium);
}
.text-body {
  font-size: 20px !important;
  line-height: 30px !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  opacity: 0.65;
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}
.contact-list li span {
  font-size: 24px;
}
@media screen and (max-width: 530px) {
  .contact-list li span {
    font-size: 16px;
  }
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}

.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-primary-light {
  background-color: #d02e461a !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-secondary-light {
  background-color: #2c8d3e1a !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-light {
  background-color: #f1f1f1 !important;
}

.bg-gradient {
  background: #ee2c82;
  background: -moz-linear-gradient(90deg, #ee2c82 41%, #001d75 100%);
  background: -webkit-linear-gradient(90deg, #ee2c82 41%, #001d75 100%);
  background: linear-gradient(90deg, #ee2c82 41%, #001d75 100%) !important;
}

/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #ee2c82 !important;
}
.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}
.border-2 {
  border-width: 2px !important;
}
/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-light) !important;
}

.font-secondary {
  font-family: var(--ff-medium) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #ffffff !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.text-lighten {
  color: #0000004d !important;
}
/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}

/****************************
  *********NAVIGATION**********
  ****************************/
nav li a {
  margin: 0;
  border-radius: 20px;
  padding: 10px 0px !important;
  background-color: transparent;
  color: #333;
  transition: background-color 0.25s, color 0.25s;
}
@media screen and (min-width: 1400px) {
  nav li a {
    padding: 10px 15px !important;
  }
}

.nav-link {
  font-family: var(--ff-light);
  font-size: 20px;
  position: relative;
  color: #000000 !important;
  cursor: pointer;
}
a.nav-link.active {
  color: #000 !important;
  text-decoration: underline;
}
@media (max-width: 430px) {
  #phone-no {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.web-btn {
  padding: 15px 30px;
  border-radius: 30px;
}
.weblist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.weblist li {
  margin-bottom: 10px;
}
.weblist li::marker {
  content: url(../images/check-double-fill.svg);
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -2em;
}
img.img-fluid.position-absolute.top-0.end-0 {
  margin-right: -5px;
}

.swiper-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #ee2c82;
  color: white;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  border-radius: 50%;
  font-weight: bold;
  position: relative;
  margin: 20px 20px !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 20px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-next:after {
  content: "next";
  font-size: 20px;
}
.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 60px !important;
}

div#header {
  z-index: 19999999999;
  position: relative;
}
.-mr-5 {
  margin-right: -5px;
}

.hero-section {
  background: linear-gradient(180deg, #ffffff 60%, #00a8e8 40%);
}

@media screen and (max-width: 475px) {
  .reverse-md {
    flex-direction: column-reverse;
  }
  .hero-section {
    background: linear-gradient(180deg, #ffffff 80%, #00a8e8 20%);
  }
}
@media (min-width: 768px) {
  .text-md-end {
    text-align: end !important;
  }
  .w-md-85 {
    width: 85% !important;
  }
}
.unstyled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show-menu {
  display: block !important;
  background: #fff;
  height: 400px;
  padding: 10px;
}

.swiper-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
}
@media screen and (min-width: 1400px) {
  .swiper-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 30px;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 50%;
    margin: 1.75rem auto;
  }
}
li.nav-item.dropdown:hover ul.dropdown-menu {
  display: block;
}
.hover-card {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.hover-card:hover .d-none {
  display: block !important;
}
.card-list {
  padding: 20px 0;
  border-bottom: 1px solid #00000033;
  color: #000000;
  font-weight: 500;
}
.card-list.text-primary {
  padding: 20px 0;
  border-bottom: 1px solid #d02e46;
  color: #000000;
  font-weight: 500;
}
.card-list a {
  color: #000000;
  font-weight: 500;
}

.broader-none {
  border: 0 !important;
}
.office-swiper .hover-card img {
  height: 540px;
  object-fit: cover;
  border-radius: 20px;
}
.office-swiper {
  overflow: hidden;
}

.accordion-item {
  background: rgba(0, 168, 232, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px 10px;
}
.accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #000000bf !important;
}
.accordion-button {
  color: #000 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 24px !important;
  font-weight: bold !important;
}
.accordion-body {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.accordion-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 30%;

  width: 30px;
  height: 30px;
  background-image: url('data:image/svg+xml,%3Csvg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="14.5" stroke="black" stroke-opacity="0.75"/%3E%3Cpath d="M13 14C13.5523 14 14 13.5523 14 13V10C14 9.44772 14.4477 9 15 9H15.5C16.0523 9 16.5 9.44772 16.5 10V13C16.5 13.5523 16.9477 14 17.5 14H20.5C21.0523 14 21.5 14.4477 21.5 15V15.5C21.5 16.0523 21.0523 16.5 20.5 16.5H17.5C16.9477 16.5 16.5 16.9477 16.5 17.5V20.5C16.5 21.0523 16.0523 21.5 15.5 21.5H15C14.4477 21.5 14 21.0523 14 20.5V17.5C14 16.9477 13.5523 16.5 13 16.5H10C9.44772 16.5 9 16.0523 9 15.5V15C9 14.4477 9.44772 14 10 14H13Z" fill="black"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="15" cy="15" r="14.5" stroke="black" stroke-opacity="0.75"/%3E%3Cpath d="M14 14H16.5H20.5C21.0523 14 21.5 14.4477 21.5 15V15.5C21.5 16.0523 21.0523 16.5 20.5 16.5H16.5H14H10C9.44772 16.5 9 16.0523 9 15.5V15C9 14.4477 9.44772 14 10 14H14Z" fill="black"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
}

.faqs-accordion .accordion-item {
  background: #fff;
  border-width: 0px 0px 1px 0px;
  border-radius: 0;
  margin-bottom: 15px;
  padding: 20px 10px;
}
.faqs-accordion .accordion-button:not(.collapsed) {
  border-bottom: 0px !important;
}
@media screen and (max-width: 500px) {
  .accordion-item {
    padding: 20px 0px !important;
    margin-bottom: 0px !important;
  }
  button.accordion-button {
    padding: 20px 0px !important;
  }
  .accordion-body {
    padding: 10px 0px !important;
  }
  .accordion-button::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hover-card ul {
    overflow: auto;
  }
}
div#content {
  margin-top: 104.8px;
}
li.nav-item {
  padding: 0 15px;
}
