/*-- -----[COLORS]----- -- */
:root {
  --pink: #FF5A5F;
  --pink-light: rgba(237, 97, 89, 0.2);
  --purple: #615AED;
  --purple-light: #DDDBFF;
  --purple-dark: #11113A;
  --gray-000: #D1D1D1;
  --gray-100: #F3F3F3;
  --gray-200: #727281;
  --gray-300: #9f9eb1;
  /*-- Font family -- */
  --primary: "Droid Arabic Kufi";
  --secondary: "Droid Arabic Naskh";
}

/*-------------------------------------------------
  .....................color classes................
  -------------------------------------------------*/
.pink {
  color: var(--pink);
}

.bg-pink {
  background-color: var(--pink);
}

.pink-light {
  color: var(--pink-light);
}

.bg-pink-light {
  background-color: var(--pink-light);
}

.purple {
  color: var(--purple);
}

.bg-purple {
  background-color: var(--purple);
}

.purple-light {
  color: var(--purple-light);
}

.bg-purple-light {
  background-color: var(--purple-light);
}

.purple-dark {
  color: var(--purple-dark);
}

.bg-purple-dark {
  background-color: var(--purple-dark);
}

.gray-000 {
  color: var(--gray-000);
}

.bg-gray-000 {
  background-color: var(--gray-000);
}

.gray-100 {
  color: var(--gray-100);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.gray-200 {
  color: var(--gray-200) !important;
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

/*-------------------------------------------------
  .......................|YOUR COMMENT|.................
  -------------------------------------------------*/
.font-primary {
  font-family: var(--primary);
}

.font-secondary {
  font-family: var(--secondary);
}

/*-- -----[GENRAL RESET]----- -- */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--secondary);
  color: var(--gray-200);
  line-height: 34px;
  font-weight: 400;
  background-color: var(--gray-100);
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: currentColor;
}

h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

.link:hover {
  color: currentColor !important;
  opacity: 0.7;
  transition: all 0.3s linear;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

input,
select {
  background-color: transparent;
  border: none;
  outline: none;
}

img, video {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.heading-primary {
  font-size: 121px;
  font-weight: 700;
  line-height: 161px;
  color: #f2f2f2;
  font-family: var(--primary);
}
@media only screen and (max-width: 1700px) {
  .heading-primary {
    font-size: 80px;
    font-weight: 700;
    line-height: 119px;
    color: #f2f2f2;
    font-family: var(--primary);
  }
}
@media only screen and (max-width: 1024px) {
  .heading-primary {
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    color: #f2f2f2;
    font-family: var(--primary);
  }
}
@media only screen and (max-width: 380px) {
  .heading-primary {
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
    color: #f2f2f2;
    font-family: var(--primary);
  }
}

.heading-secondary {
  font-size: 55px;
  font-weight: 700;
  line-height: 104px;
  color: var(--purple-dark);
  font-family: var(--primary);
}
@media only screen and (max-width: 1024px) {
  .heading-secondary {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: var(--purple-dark);
    font-family: var(--primary);
  }
}

.heading-tertiory {
  font-size: 40px;
  font-weight: 700;
  line-height: 76px;
  color: var(--purple-dark);
  font-family: var(--primary);
}

.heading-medium {
  font-size: 33px;
  font-weight: 700;
  line-height: 62px;
  color: var(--purple-dark);
  font-family: var(--primary);
}
@media only screen and (max-width: 1024px) {
  .heading-medium {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: var(--purple-dark);
    font-family: var(--primary);
  }
}

.heading-normal {
  font-size: 28px;
  font-weight: 700;
  line-height: 53px;
  color: var(--purple-dark);
  font-family: var(--primary);
}
@media only screen and (max-width: 768px) {
  .heading-normal {
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: var(--purple-dark);
    font-family: var(--primary);
  }
}

.heading-small {
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  color: var(--purple-dark);
  font-family: var(--primary);
}
@media only screen and (max-width: 768px) {
  .heading-small {
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
    color: var(--purple-dark);
    font-family: var(--primary);
  }
}

.max-content {
  max-width: 1920px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin: 0px autopx;
}

.nav-link-active {
  border: 1px solid currentColor;
  border-radius: 100px;
}

.nav {
  max-width: 1210px;
  height: 75px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  background-color: #F3C1C2;
}
.nav .nav-toggle {
  width: 51px;
  height: 51px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  background-color: #F3C1C2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .nav-menu {
  max-width: 720px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav .nav-menu .nav-close {
  position: absolute;
  top: 15px;
  left: 15px;
}
.nav__logo {
  width: 128px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav__list {
  max-width: 395px;
}
.nav__list li a {
  padding: 1px 15px;
  display: inline-block;
  font-size: 18px;
}
.nav__social {
  max-width: 120px;
}
.nav .mobile-logo {
  width: 111px;
  height: 51px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  background-color: #F3C1C2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav .mobile-logo img {
  width: 80px;
}

.racia-3nav {
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(to right, rgb(97, 90, 237) 0%, rgb(237, 97, 90) 100%);
  margin-bottom: 36px;
  background-size: 115%;
  background-position: center;
}
.racia-3nav .nav-toggle {
  background-position: center !important;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(to right, rgb(97, 90, 237) 0%, rgb(237, 97, 90) 100%);
  background-size: 115%;
}
.racia-3nav .nav__list li a:hover {
  color: var(--pink) !important;
  opacity: 1;
  filter: brightness(250%);
  transition: all 0.3s linear;
}

.btn-behas, .btn-send {
  max-width: 245px;
  height: 91px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  color: #fff;
  font-family: var(--primary);
}
@media only screen and (max-width: 768px) {
  .btn-behas, .btn-send {
    height: 43px;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    color: #fff;
    font-family: var(--primary);
  }
}
.btn-behas:hover, .btn-send:hover {
  background-color: var(--pink);
  filter: drop-shadow(0px 10px 16px rgba(52, 2, 0, 0.18));
}

.btn-send {
  max-width: 100%;
  height: 68px;
}
@media only screen and (max-width: 768px) {
  .btn-send {
    height: 43px;
  }
}

.home-header {
  background-color: var(--pink);
  background-image: url("..//images/home/home-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  min-height: 750px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left;
  padding: 0 20px;
  background-size: cover;
}
@media only screen and (max-width: 1540px) {
  .home-header {
    min-height: 670px;
  }
}
.home-header .header-content .floos {
  transform: translateX(-60px);
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .home-header .header-content .floos {
    transform: translate(0);
  }
}
@media only screen and (max-width: 768px) {
  .home-header .header-content .maharat {
    font-size: 42px;
  }
}
@media only screen and (max-width: 427px) {
  .home-header .header-content .maharat {
    font-size: 32px;
  }
}
.home-header .header-content h1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 1200px) {
  .home-header .header-content {
    width: auto;
  }
  .home-header .header-content img {
    max-width: 390px;
    margin-top: 25px;
    margin-right: auto;
  }
}

.racia-header {
  max-width: 1210px;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 31px;
}
.racia-header__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: var(--gray-300);
  font-family: var(secondary);
  margin-bottom: 19px;
}
.racia-header__text:hover {
  color: var(--pink);
}

.racia-6__header {
  max-width: 1210px;
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (max-width: 1440px) {
  .racia-6__header ul {
    max-width: 90%;
    margin: auto;
  }
}
.racia-6__header ul li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 19px;
  color: var(--gray-300);
  font-family: var(--secondary);
}
.racia-6__header ul li a:hover {
  color: var(--pink);
}
.racia-6__header--image {
  max-width: 928px;
  margin-bottom: 10px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.racia-6__header--image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.racia-10__header {
  margin-bottom: 80px;
}
.racia-10__header .racia-10__header--image {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 500px) {
  .racia-10__header .racia-10__header--image .racia-10__image {
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
}
.racia-10__header .racia-10__header--image .bubble-pink {
  position: absolute;
  top: 101%;
  left: 70%;
}
@media only screen and (max-width: 1024px) {
  .racia-10__header .racia-10__header--image .bubble-pink {
    width: 40px;
    height: 40px;
  }
}
.racia-10__header .racia-10__header--image .bubble-gold {
  position: absolute;
  top: 30%;
  left: 110%;
}
.racia-10__header .racia-10__header--image .bubble-purple {
  position: absolute;
  top: 103%;
  left: 11%;
}
@media only screen and (max-width: 1024px) {
  .racia-10__header .racia-10__header--image .bubble-purple {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .racia-10__header .racia-10__header--image .bubble-purple {
    display: none;
  }
}
.racia-10__header .racia-10__header--image .snake-header {
  position: absolute;
  top: 80%;
  left: -15%;
}

.footer {
  font-size: 16px;
  font-weight: 700;
  line-height: 31px;
  color: #fff;
  font-family: var(--primary);
}

.contact .form-container {
  display: grid;
  grid-template-columns: minmax(300px, 820px) minmax(500px, 1fr);
  gap: 150px;
  padding: 0;
}
.contact .form-container__form {
  padding-right: 160px;
  margin-bottom: 20px;
}
.contact .form-container__form--box {
  margin-bottom: 65px;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 20px;
}
.contact .form-container__form--box .input-text, .contact .form-container__form--box textarea {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  /* color: #d7d7d7; */
  font-family: var(--secondary);
  outline: none;
  border: none;
}
.contact .form-container__form--box .input-text::-moz-placeholder, .contact .form-container__form--box textarea::-moz-placeholder {
  color: currentColor;
}
.contact .form-container__form--box .input-text:-ms-input-placeholder, .contact .form-container__form--box textarea:-ms-input-placeholder {
  color: currentColor;
}
.contact .form-container__form--box .input-text::placeholder, .contact .form-container__form--box textarea::placeholder {
  color: currentColor;
}
.contact .form-container__form--box textarea {
  background-color: transparent;
  height: 38px;
}
.contact .form-container__image {
  width: 100%;
  height: auto;
}
.contact .form-container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.white-box-container {
  z-index: 500;
  max-width: 1210px;
  height: 370px;
  margin-top: -200px;
  padding: 0 25px;
}
.white-box-container .behas-box {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0px 3px 60px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
}
.white-box-container .behas-box .select-container {
  max-width: 930px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.white-box-container .behas-box .form-select {
  background-image: url(..//images/home/arrow.svg);
  height: 72px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #9f9eb1;
  font-family: var(--secondary);
}
.white-box-container .triangle {
  position: absolute;
  bottom: -40px;
  left: -50px;
  z-index: -10;
}
.white-box-container .bubble {
  top: 100%;
  right: -12%;
}

.categroy-container {
  padding-top: 120px;
  margin-bottom: 115px;
}
.categroy-container__detail {
  max-width: 1450px;
  -moz-column-gap: 45px;
       column-gap: 45px;
  row-gap: 90px;
  padding: 0 25px;
}
.categroy-container__detail--box {
  border-radius: 16px;
  height: 288px;
  transition: all 0.3s linear;
  border: 1px solid transparent;
}
.categroy-container__detail--box .cat-text {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: var(--gray-200);
  font-family: var(--secondary);
  display: block;
}
.categroy-container__detail--box .social-media {
  width: 129px;
  margin-bottom: 35px;
}
.categroy-container__detail--box .social-media-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.categroy-container__detail--box:hover {
  transform: scale(1.03);
  border: 1px solid var(--pink);
  box-shadow: 0px 3px 20px rgba(255, 206, 206, 0.16);
}
.categroy-container__detail--box:hover .cat-text {
  color: var(--pink);
}
.categroy-container__detail .box-325, .categroy-container__detail .box-288 {
  max-width: 325px;
}
.categroy-container__detail .box-325-img, .categroy-container__detail .box-288-img {
  top: -25px;
  left: 0;
  z-index: -1;
}
.categroy-container__detail .box-325 {
  position: relative;
}
.categroy-container__detail .box-325 .diamond {
  top: 10%;
  left: 140%;
}
.categroy-container__detail .box-288 {
  max-width: 288px;
}
.categroy-container__detail .box-288 .delivery-dot {
  top: 80%;
  left: -60%;
}
.categroy-container__detail .box-288 .delivery-dot-one {
  top: 0%;
  left: -40%;
}
.categroy-container__detail .box-288 .snake {
  top: 10%;
  left: -40%;
}

.team {
  max-width: 1461px;
  padding: 0 25px;
  padding-bottom: 74px;
}
.team__heading {
  margin-bottom: 53px;
}
.team__heading--text {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-200);
  font-family: var(--secondary);
  margin-top: 16px;
}
.team__members--box {
  max-width: 220px;
}
.team__members--box-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.team__members--box .team-member-name {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: var(--purple-dark);
  font-family: var(--secondary);
  padding-top: 15px;
  padding-bottom: 9px;
}
.team__members--box .team-member-desc {
  font-weight: bold;
  font-size: 24px;
  color: #11113a;
  margin-bottom: 15px;
}
.team__members--box .team-member-rating {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--purple-dark);
  font-family: var(--secondary);
}
.team__members--box .team-member-rating span {
  margin-top: 5px;
}
.team__members--box .purple-ring {
  top: 60%;
  left: 130%;
}

.checkboxes {
  max-width: 1210px !important;
  padding-left: 25px;
  padding-right: 25px;
}
.checkboxes__container--top {
  margin-bottom: 31px;
}
.checkboxes__container--top-tallum {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray-200);
  font-family: var(secondary);
}
.checkboxes__container--top-body .checkbox-self {
  max-width: 250px;
  width: 100%;
}
.checkboxes__container--top-body .checkbox-self__label {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--purple-dark);
  font-family: var(--secondary);
}
.checkboxes__container--top-body .checkbox-self__label-box {
  width: 29px;
  height: 29px;
  border-radius: 4px;
  border: 1px solid var(--purple-dark);
}
.checkboxes__container--top-body .checkbox-self__label-box svg {
  width: 18px;
  height: 18px;
  opacity: 0;
  visibility: hidden;
}
.checkboxes__container--top-body .checkbox-self input[type=checkbox]:checked + label span {
  border-color: var(--pink);
}
.checkboxes__container--top-body .checkbox-self input[type=checkbox]:checked + label span svg {
  opacity: 1;
  visibility: visible;
  fill: var(--pink);
}

.faq {
  max-width: 1210px !important;
  padding-left: 25px;
  padding-right: 25px;
}
.faq .accordion-item {
  margin-bottom: 20px;
  border: none;
}
.faq .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 13px;
}
.faq .accordion-item .accordion-button {
  border-radius: 13px;
}
.faq .accordion-collapse {
  transition: all 0.4s linear !important;
}
.faq .accordion-button::after {
  display: none;
}
.faq .accordion-button {
  height: 85px;
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  color: var(--purple);
  font-family: var(--primary);
}
.faq .accordion-button:focus {
  background-color: var(--purple-light);
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  background-color: var(--purple-light);
  box-shadow: none;
}
.faq .accordion-button .plus-vrt {
  width: 20px;
  height: 6px;
  background-color: var(--purple);
  border-radius: 10px;
  display: block;
  position: relative;
}
.faq .accordion-button .plus-vrt::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 20px;
  background-color: var(--purple);
  display: block;
  border-radius: 10px;
  transition: all 0.4s linear;
}
.faq .accordion-button.collapsed .plus-vrt::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq .accordion-button .plus-vrt::before {
  transform: translate(0) rotate(90deg);
  top: -103%;
  left: 37%;
}
.faq .accordion-body {
  padding: 16px 0;
}
.faq .accordion-body__box {
  border: 1px solid #dddbff;
  background-color: white;
  padding: 26px 60px;
  border-radius: 14px;
  margin-bottom: 7px;
  transition: all 0.3s ease-in;
}
.faq .accordion-body__box p {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--purple);
  font-family: var(--secondary);
}
.faq .accordion-body__box span {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: var(--pink);
  font-family: var(--secondary);
}
.faq .accordion-body__box:hover {
  background-color: var(--pink-light);
}
.faq .accordion-body__box:hover p {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--pink);
  font-family: var(--secondary);
}

.maharat {
  max-width: 1210px;
  padding-left: 25px;
  padding-right: 25px;
}
.maharat h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: var(--purple-dark);
  font-family: var(--primary);
  margin-bottom: 42px;
}
.maharat .categroy-container {
  margin-bottom: 50px;
}

.racia-6__body {
  max-width: 988px;
  padding-left: 25px;
  padding-right: 25px;
}
.racia-6__body--heading-bottom p,
.racia-6__body--heading-bottom span,
.racia-6__body--heading-bottom h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 33px;
  color: var(--purple-dark);
  font-family: var(--secondary);
}
.racia-6__body--heading-bottom h2 {
  font-size: 20px;
}

.racia-6__faq {
  margin-bottom: 35px;
}
.racia-6__faq--body p {
  font-family: var(--secondary);
}
.racia-6__faq .accordion {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2666666667);
}

.shark__heading {
  max-width: 500px;
  padding-left: 20px;
  padding-right: 20px;
}
.shark__heading ul {
  max-width: 120px;
}
.shark__heading--buttons {
  margin-bottom: 34px;
}
.shark__heading--buttons .btn-left,
.shark__heading--buttons .btn-right {
  /* width: 150px; */
  height: 50px;
  border: 1px solid var(--purple);
  border-radius: 5px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--purple);
  font-family: var(--secondary);
  transition: all 0.1s linear;
}
.shark__heading--buttons .btn-left:hover,
.shark__heading--buttons .btn-right:hover {
  transform: translateY(-2px);
}
.shark__heading--buttons .btn-left:active,
.shark__heading--buttons .btn-right:active {
  transform: translateY(0);
}
.shark__content {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 25px;
  margin-bottom: 89px;
}
.shark__content--body a {
  max-width: 888px;
  margin: auto;
  border: 1px solid #dddbff;
  border-radius: 14px;
  padding: 26px 20px;
  transition: all 0.3s linear;
}
.shark__content--body a:hover {
  background-color: var(--pink-light);
  max-width: 1060px;
}
.shark__content--body a p {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--purple);
  font-family: var(--secondary);
}
.shark__content--body a span {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--pink);
  font-family: var(--secondary);
}

.racia-10__container .team {
  padding: 0;
}
.racia-10__container .team__heading {
  max-width: 472px;
  width: 100%;
}
.racia-10__container .team__heading .gold-small {
  margin-top: -10px;
}
.racia-10__container .masharak__heading {
  border-radius: 13px;
  margin-bottom: 85px;
}
@media only screen and (max-width: 640px) {
  .racia-10__container .masharak__heading {
    margin-bottom: 50px;
  }
}
.racia-10__container .masharak__heading h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 83px;
  color: var(--purple);
  font-family: var(--primary);
}
@media only screen and (max-width: 1024px) {
  .racia-10__container .masharak__heading h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 60px;
    color: var(--purple);
    font-family: var(--primary);
  }
}
@media only screen and (max-width: 768px) {
  .racia-10__container .masharak__heading h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 60px;
    color: var(--purple);
    font-family: var(--primary);
  }
}
@media only screen and (max-width: 640px) {
  .racia-10__container .masharak__heading h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 60px;
    color: var(--purple);
    font-family: var(--primary);
  }
}
.racia-10__container .masharak__slider .team__members--box .image-bubble {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  z-index: -10;
}
.racia-10__container .masharak__slider .team__members--box .green-diamond {
  top: 11%;
  left: 108%;
}
@media only screen and (max-width: 1024px) {
  .racia-10__container .masharak__slider .team__members--box .green-diamond {
    display: none;
  }
}
.racia-10__container .masharak__slider .team__members--box .pink-ellipse {
  top: -15%;
  left: 130%;
}
@media only screen and (max-width: 768px) {
  .racia-10__container .masharak__slider .team__members--box .pink-ellipse {
    width: 40px;
    height: 40px;
    left: 100%;
  }
}
.racia-10__container .masharak__slider .team__members--box .purple-dot {
  top: 33%;
  left: -46%;
}
.racia-10__container .masharak__slider .team__members--box .purple-ellipse {
  top: 33%;
  left: -46%;
}
@media only screen and (max-width: 768px) {
  .racia-10__container .masharak__slider .team__members--box .purple-ellipse {
    width: 40px;
    height: 40px;
    left: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .racia-10__container .masharak__slider .team__members--box .purple-ellipse {
    left: -50%;
  }
}
.racia-10__container .masharak__slider .team__members--box .purple-cone {
  top: -30%;
  left: 25%;
  z-index: -10;
}
@media only screen and (max-width: 768px) {
  .racia-10__container .masharak__slider .team__members--box .purple-cone {
    display: none;
  }
}
.racia-10__container .masharak__slider .team__members--box .purple-4th-dot {
  top: -9%;
  left: -46%;
}
@media only screen and (max-width: 1024px) {
  .racia-10__container .masharak__slider .team__members--box .purple-4th-dot {
    display: none;
  }
}
.racia-10__container .masharak__slider .team__members--box .masharak-snake {
  top: 54%;
  left: -77%;
}

@media only screen and (max-width: 1536px) {
  .contact .form-container {
    gap: 40px;
  }
  .contact .form-container__form {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1340px) {
  .home-header {
    background-image: none;
    background-color: var(--pink);
  }
  .home-header .header-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 500px);
  }
  .home-header .header-content .header-img {
    width: 100%;
    height: auto;
    display: block !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 1280px) {
  .categroy-container__detail {
    row-gap: 45px;
  }
  .categroy-container__detail .box-325,
.categroy-container__detail .box-288 {
    max-width: 240px;
  }
  .categroy-container__detail--box {
    height: 240px;
  }
  .categroy-container__detail--box .social-media {
    width: 80px;
  }
  .categroy-container__detail--box .cat-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-200);
    font-family: var(--secondary);
  }
}
@media only screen and (max-width: 1024px) {
  .nav__list {
    max-width: 330px;
  }
  .home-header {
    min-height: 650px;
    background-position: left;
  }
  .home-header .header-content {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 400px);
  }
  .team__heading {
    margin-bottom: 35ppx;
  }
  .team__heading--text {
    font-size: 16px;
    line-height: 18px;
  }
  .team__members--box {
    max-width: 140px;
  }
  .team__members--box .team-member-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--purple-dark);
    font-family: var(--secondary);
    padding-bottom: 6px;
  }
  .team__members--box .team-member-desc {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .contact .form-container {
    grid-template-columns: 1fr;
  }
  .contact .form-container__form {
    padding-right: 0px;
    padding: 0 28px;
  }
  .contact .form-container__form--box .input,
.contact .form-container__form--box textarea {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #d7d7d7;
    font-family: var(--secondary);
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    position: relative;
    z-index: 5000;
    background-color: transparent;
    border: none;
    box-shadow: none;
    height: auto;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .nav .nav-menu {
    padding-top: 70px;
    max-width: 70vw;
    width: 0;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    top: -26px;
    right: -34px;
    z-index: 500;
    height: 100vh;
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    background-color: rgba(243, 193, 194, 0.69);
    height: 100vh;
    border-bottom-left-radius: 300px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    transform: translateX(100%);
    visibility: hidden;
    transition: all 0.3s linear;
    transform-origin: right;
  }
  .nav .nav-menu .nav__list {
    flex-direction: column;
    max-height: 40vh;
    margin-bottom: 80px;
  }
  .nav .nav-menu-active {
    transform: translateX(0);
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .racia-3nav {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .racia-3nav .nav-menu {
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(to right, rgb(97, 90, 237) 0%, rgb(237, 97, 90) 100%);
    background-position: center !important;
    background-size: 120%;
  }
  .racia-3nav .mobile-logo {
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(to right, rgb(97, 90, 237) 0%, rgb(237, 97, 90) 100%);
    background-position: center !important;
    background-size: 120%;
  }
  .home-header {
    background-color: var(--pink);
    background-image: none;
    min-height: auto;
    height: 460px;
  }
  .home-header .header-content {
    height: 338px;
    background-image: url("..//images/home/home-mobilehero.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    grid-template-columns: 1fr;
  }
  .home-header .header-content .header-img {
    display: none !important;
  }
  .home-header .header-content h1 {
    height: auto;
  }
  .home-header .header-content h1 span {
    font-size: 50px;
  }
  .white-box-container {
    margin-top: -60px;
    padding: 0 16px;
  }
  .white-box-container .behas-box .select-container {
    grid-template-columns: 1fr;
  }
  .white-box-container .behas-box .form-select {
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #9f9eb1;
    font-family: var(--secondary);
  }
  .categroy-container {
    padding-top: 140px;
  }
  .categroy-container__detail {
    -moz-column-gap: 4px;
         column-gap: 4px;
    row-gap: 9px;
    padding: 0 12px;
  }
  .categroy-container__detail .box-325,
.categroy-container__detail .box-288 {
    max-width: 200px;
  }
  .categroy-container__detail--box {
    height: 176px;
  }
  .categroy-container__detail--box .social-media {
    width: 80px;
  }
  .categroy-container__detail--box .cat-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: var(--gray-200);
    font-family: var(--secondary);
  }
  .team__members--box .purple-ring {
    display: none;
  }
  .footer {
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    color: #fff;
    font-family: var(--primary);
  }
}
@media only screen and (max-width: 620px) {
  .home-header {
    height: 460px;
  }
  .home-header .header-content {
    height: 338px;
  }
  .home-header .header-content .heading-primary {
    font-size: 38px;
  }
}
@media only screen and (max-width: 427px) {
  .nav .nav-menu {
    max-width: 80vw;
  }
  .categroy-container__detail {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  .categroy-container__detail .box-325,
.categroy-container__detail .box-288 {
    max-width: 200px;
  }
  .categroy-container__detail--box {
    height: 146px;
  }
  .categroy-container__detail--box .social-media {
    width: 60px;
    margin-bottom: 12px;
  }
  .categroy-container__detail--box .cat-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--gray-200);
    font-family: var(--secondary);
  }
  .team__members--box {
    max-width: 100px;
  }
  .team__members--box .team-member-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--purple-dark);
    font-family: var(--secondary);
  }
  .contact .form-container__form {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 1480px) {
  .racia-header,
.checkboxes,
.faq,
.maharat {
    max-width: 90% !important;
  }
  .racia-3nav {
    max-width: 90%;
  }
  .racia-header__image {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .checkboxes__container--top-body {
    row-gap: 20px !important;
  }
}
@media only screen and (max-width: 768px) {
  .racia-3nav {
    margin-bottom: 20px;
  }
  .racia-header,
.checkboxes,
.faq,
.maharat {
    max-width: 100% !important;
  }
  .racia-header__image {
    height: 140px;
    -o-object-fit: cover !important;
       object-fit: cover !important;
    border-radius: 14px;
  }
  .checkboxes {
    padding: 0 10px;
  }
  .checkboxes .heading-medium {
    font-size: 24px;
    line-height: 24px;
  }
  .checkboxes__container:last-child .checkboxes__container--top-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .checkboxes__container--top {
    margin-bottom: 29px;
  }
  .checkboxes__container--top-body {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  .checkboxes__container--top-body .checkbox-self {
    max-width: 100%;
  }
  .checkboxes__container--top-body .checkbox-self__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--purple-dark);
    font-family: var(--secondary);
  }
  .checkboxes__container--top-body .checkbox-self__label-box {
    width: 16px;
    height: 16px;
  }
  .checkboxes__container--top-body .checkbox-self__label-box svg {
    width: 10px;
    height: 10px;
  }
  .faq {
    padding: 0 16px;
  }
  .accordion .accordion-button {
    height: 67px;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    color: var(--purple);
    font-family: var(--primary);
  }
  .accordion .accordion-button .plus-vrt {
    width: 20px;
    height: 4px;
  }
  .accordion .accordion-button .plus-vrt::before {
    width: 4px;
  }
  .accordion .accordion-button .plus-vrt::before {
    top: -198%;
    left: 39%;
  }
  .accordion-body__box {
    padding: 14px 20px !important;
  }
  .accordion-body__box p {
    font-size: 15px !important;
    line-height: 18px !important;
  }
  .accordion-body__box span {
    font-size: 13px !important;
    line-height: 15px !important;
  }
  .accordion-body__box span svg {
    width: 12px;
    height: 12px;
  }
  .maharat {
    padding: 0 16px;
  }
  .maharat h2 {
    margin-bottom: 20px;
  }
  .maharat .categroy-container {
    margin-bottom: 20px;
  }
  .maharat .categroy-container__detail {
    padding: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 427px) {
  .accordion-body__box {
    padding: 10px 20px !important;
  }
  .accordion-body__box p,
.accordion-body__box a {
    font-size: 12px !important;
    line-height: 13px !important;
    font-family: var(--secondary);
  }
  .accordion-body__box p svg,
.accordion-body__box a svg {
    width: 11px;
    height: 11px;
  }
}
@media only screen and (max-width: 1024px) {
  .wrapper {
    max-width: 90%;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .racia-6__header {
    padding: 14px;
  }
  .racia-6__header ul li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: var(--gray-300);
    font-family: var(--secondary);
  }
  .racia-6__header--image {
    height: 222px;
  }
  .racia-6__header--image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
  }
  .racia-6__body {
    padding: 16px;
  }
  .racia-6__body .heading-tertiory {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
  }
  .racia-6__body .racia-6__faq {
    padding: 0;
  }
  .racia-6__body .shark {
    margin-bottom: 30px;
  }
  .racia-6__body .shark__heading {
    padding: 0;
  }
  .shark__content {
    padding: 0 16px;
  }
  .shark__content--body p,
.shark__content--body span {
    font-size: 14px !important;
    line-height: 18px;
  }
  .shark__content--body span svg {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 427px) {
  .shark__content--body p,
.shark__content--body span {
    font-size: 10px !important;
    line-height: 18px !important;
  }
  .shark__content--body span svg {
    width: 8px;
    height: 8px;
  }
}/*# sourceMappingURL=main.css.map */