@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&family=Rajdhani:wght@300;400;600;700&display=swap');

:root {
  --3rd-color: #135374;
  --4th-color: #023047;
  --secondary: #fb8500;
  --white: white;
  --primary: #219ebc;
  --orange: #ffb703;
  --grey: #e0e0e0;
  --light-blue: #8ecae6;
  --font-family: "Open Sans", sans-serif;
}

@font-face {
    font-family: 'Iranyekan';
    src: url('https://artifika.co/assets/font/Iranyekan.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

hr {
    background-color: var(--4th-color) !important;
    margin-bottom: 0 !important;
    margin-top: 10px !important;
}

a:hover {
    color: unset !important;
}

.btn-schedule:hover {
    color: white !important;   
}

.header-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-bottom: 1rem; */
    margin-top: 20px;
}

.social-media-links {
    display: flex;
    gap: 1rem; /* Add some space between the icons */
}

.language-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adjust the gap between the dropdown and the flag */
}
.container-custom-header {
    max-width: 75rem !important; 
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

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

.loader-text {
    text-align: center !important;
    color: var(--3rd-color);
    font-size: 3rem;
}


.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--3rd-color);
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--3rd-color);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-2 {
  z-index: 2;
  position: relative;
}

.text-color-black {
  color: var(--3rd-color);
}

.styleguide-row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-light {
  font-weight: 300;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.icon-1-1-small {
  width: 2rem;
  height: 2rem;
}

.button {
  float: none;
  clear: none;
  background-color: #386eec;
  background-image: linear-gradient(to bottom, var(--secondary), var(--secondary));
  color: var(--white);
  text-align: center;
  border-radius: 200px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: 0;
  padding: 1rem 3rem;
  font-family: Poppins, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: block;
  position: static;
  overflow: auto;
}

.button:hover {
  transform: scale(1.03);
  box-shadow: -6px 0 10px rgba(254, 127, 102, .2), 6px 0 10px rgba(254, 127, 102, .2), 0 10px 20px rgba(254, 127, 102, .2);
}

.button._100 {
  width: 100%;
}

.heading-medium {
  font-family: Poppins, sans-serif;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-large {
  font-family: Poppins, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-weight-bold {
  font-weight: 700;
}

.text-size-large {
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}

.icon-medium {
  height: 3rem;
}

.text-size-regular {
  font-size: 1.25rem;
}

.text-weight-normal {
  font-weight: 400;
}

.styleguide-section {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: Poppins, sans-serif;
  display: grid;
}

.text-align-center {
  text-align: center;
}

.z-1 {
  z-index: 1;
  position: relative;
}

.icon-small {
  height: 2rem;
}

.show-mobile-portrait {
  display: none;
}

.text-style-italic {
  font-style: italic;
}

.hide {
  display: none;
}

.styleguide-section-type {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.text-size-medium {
  font-family: Poppins, sans-serif;
  font-size: 20px;
}

.text-align-left {
  text-align: left;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-muted {
  opacity: .7;
}

.text-size-small {
  width: 550px;
  font-family: Open Sans, sans-serif;
  font-size: 1.1rem;
}

.rich-text {
  font-family: Poppins, sans-serif;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text blockquote {
  border-left-color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rich-text ul {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 2.5rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.icon-large {
  height: 4rem;
}

.max-width-medium {
  aspect-ratio: auto;
  object-fit: scale-down;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 32rem;
  display: flex;
}

.heading-xlarge {
  font-family: Poppins, sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1.1;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.form-text-field {
  background-color: rgba(0, 0, 0, 0);
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-size-tiny {
  font-size: .875rem;
}

.icon-1-1-medium {
  width: 3rem;
  height: 3rem;
}

.container-large {
  width: 100%;
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.styleguide-classes {
  display: none;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.styleguide-column {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide-column._2-column {
  grid-template-columns: 1fr 1fr;
}

.page-padding {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.page-padding.footer {
  background-color: var(--3rd-color);
  margin-top: 0;
}

.text-align-right {
  text-align: right;
}

.show-tablet {
  display: none;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.text-color-white {
  color: var(--white);
}

.show-mobile-landscape {
  display: none;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-1-1-large {
  width: 4rem;
  height: 4rem;
}

.error-message {
  margin-top: .75rem;
  padding: .75rem;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.main-wrapper {
  overflow: hidden;
}

.main-wrapper.overflow-visible {
  overflow: visible;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .125rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .125rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xhuge {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-style-nowrap {
  white-space: nowrap;
}

.heading-small {
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.heading-xsmall {
  font-family: Poppins, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
}

.text-weight-medium {
  font-weight: 500;
}

.styleguide-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.license-heading-text {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.license-image {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.license-images-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.inline-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: border-color .2s;
}

.inline-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .7);
}

.inline-link.black {
  color: var(--3rd-color);
  border-bottom-color: rgba(0, 0, 0, .2);
}

.inline-link.black:hover {
  border-bottom-color: var(--3rd-color);
}

.license-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  display: grid;
}

.license-item.last {
  margin-bottom: 0;
}

.changelog-component {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.instructions-list {
  max-width: 650px;
}

.instructions-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.instructions-list-item {
  margin-bottom: 2rem;
}

.utility-image {
  width: 100%;
}

.home-hero-section {
  position: relative;
  overflow: hidden;
}

.home-hero-component {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.text-span {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(75deg, #fec166, #f36364);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.home-hero-button-wrap {
  grid-column-gap: 1.75rem;
  align-items: center;
  display: flex;
}

.home-hero-images-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.home-hero-images-flex {
  align-items: center;
  margin-bottom: .4rem;
  display: flex;
}

.home-hero-image {
  outline-color: var(--white);
  outline-offset: 0px;
  object-fit: cover;
  border-radius: 50%;
  outline-width: 1px;
  outline-style: solid;
  width: 4rem;
  height: 4rem;
  margin-left: -.75rem;
  margin-right: -.75rem;
}

.home-hero-image.middle {
  margin-top: -2rem;
}

.logos-section {
  overflow: hidden;
}

.logos-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logos-grid {
  grid-column-gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.logos-grid-item {
  width: 8rem;
}

.home-hero-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 40vw;
  max-width: 40rem;
  height: 40vw;
  max-height: 40rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: -25%;
  right: auto;
}

.bg-circle {
  background-color: var(--secondary);
  background-image: linear-gradient(110deg, var(--secondary), var(--orange));
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.bg-circle.home-hero {
  background-color: var(--orange);
  border-radius: 50%;
}

.bg-circle.about {
  position: static;
}

.bg-border-circle {
  outline-offset: 0px;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-radius: 50%;
  outline: 1px solid #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: 1%;
  right: 0%;
}

.bg-border-circle.about {
  outline-color: var(--white);
  position: relative;
}

.bg-border-circle.home-hero {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  outline-color: var(--3rd-color);
  color: var(--primary);
  -webkit-text-stroke-color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.services-section {
  background-color: var(--primary);
  overflow: hidden;
}

.services-component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.tag {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  border: 1px solid var(--white);
  color: var(--3rd-color);
  text-align: center;
  -webkit-text-stroke-color: var(--3rd-color);
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 200px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 4rem;
  padding: .438rem 35px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.tag.pricing {
  border-color: var(--3rd-color);
  background-color: var(--white);
  outline-color: var(--grey);
  outline-offset: 0px;
  color: var(--3rd-color);
  outline-width: 1px;
  outline-style: solid;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: .25rem;
  padding-bottom: .25rem;
  position: absolute;
  top: -3%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.tag.blue {
  border-color: var(--3rd-color);
}

.services-items-wrap {
  grid-row-gap: 5.8rem;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

.faq-items-wrap {
    /* grid-row-gap: 5.8rem; */
    flex-direction: column;
    width: 100%;
    margin-top: 3rem;
    display: flex;
}

.faq-icon {
    width: 2%;
}

.services-item {
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  font-size: 5.625rem;
  line-height: 1;
  display: flex;
  position: relative;
}

.faq-item {
    color: var(--3rd-color);
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    font-size: 5.625rem;
    line-height: 1;
    display: flex;
    position: relative;
  }

.services-icon {
  flex: none;
}

.services-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.faq-line {
    background-color: black;
    width: 100%;
    height: 1px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

.services-item-up {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.services-item-down {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2rem;
  display: flex;
  overflow: hidden;
}

.services-item-down-content-wrap {
  /* max-width: 29rem; */
  /* margin-left: auto; */
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

.services-item-pointer {
  grid-column-gap: .625rem;
  align-items: center;
  display: flex;
}

.services-item-pointer-circle {
  background-color: var(--white);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
  overflow: hidden;
}

.services-item-down-pointers-wrap {
  grid-row-gap: .5rem;
  flex-direction: column;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.about-section {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400vh;
  display: flex;
  position: relative;
}

.work-heading {
  z-index: 2;
  max-width: 40rem;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  left: auto;
  /* right: 40px; */
}

.about-sticky-div {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-bg-circle {
  z-index: 1;
  background-color: var(--3rd-color);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  position: absolute;
}

.about-main {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.about-main-inside {
  z-index: 2;
  grid-column-gap: 4.3rem;
  grid-row-gap: 3rem;
  grid-template: ". Area"
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.about-main-content {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.home-about-image {
  object-fit: cover;
  width: 100%;
  max-width: 33rem;
  height: 40rem;
  margin-top: 11rem;
}

.work-section {
  background-color: var(--3rd-color);
  color: var(--white);
}

.work-component {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.work-list {
  grid-row-gap: 9rem;
  flex-direction: column;
  display: flex;
}

.work-item-link {
  color: var(--white);
  width: 100%;
}

.work-item-link.black-text {
  color: var(--3rd-color);
}

.work-item-image-wrapper {
  background-color: #f0f0f0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 3rem;
  padding-top: 4rem;
  display: flex;
  overflow: hidden;
}

.work-item-image {
  width: 80%;
}

.work-item-details-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.work-item-details-up {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.work-tags-wrap {
  grid-column-gap: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.work-tag-circle {
  background-color: var(--white);
  border-radius: 50%;
  flex: none;
  width: .438rem;
  height: .438rem;
}

.work-tag-circle.black {
  background-color: var(--3rd-color);
}

.home-about-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 60vw;
  max-width: 40rem;
  height: 60vw;
  max-height: 40rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: -31%;
}

.testimonial-section {
  margin-top: 6rem;
}

.testimonial-component {
  background-color: var(--primary);
  color: var(--white);
  padding: 4.8rem 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  height: auto;
}

.testimonial-slider-mask, .testimonial-slide {
  height: auto;
}

.testimonial-slider-left-arrow {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.375rem;
  height: 3.375rem;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 7%;
}

.testimonial-slider-right-arrow {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.375rem;
  height: 3.375rem;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.testimonial-slide-inside {
  z-index: 2;
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  justify-items: stretch;
  height: 100%;
  display: grid;
}

.testimonial-slide-image {
  object-fit: cover;
  height: 36rem;
}

.testimonial-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
  position: absolute;
  top: -14%;
  bottom: auto;
  left: -22%;
  right: auto;
}

.process-component {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.process-steps-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 8rem;
  display: grid;
  position: relative;
}

.process-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.process-number-circle {
  z-index: 2;
  background-image: linear-gradient(50deg, var(--orange), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  margin-bottom: 7.5rem;
  font-size: 3.25rem;
  line-height: 1;
  display: flex;
  position: relative;
}

.process-floating-img-1 {
  z-index: 1;
  width: 23vw;
  max-width: 19.875rem;
  position: absolute;
  top: 24%;
  bottom: auto;
  left: 21%;
  right: auto;
}

.process-floating-img-2 {
  z-index: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  width: 25vw;
  max-width: 21rem;
  position: absolute;
  top: -8%;
  bottom: auto;
  left: auto;
  right: 20%;
}

.pricing-tables-wrap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 11rem;
  display: grid;
}

.pricing-table {
  outline-color: var(--3rd-color);
  outline-offset: 0px;
  border-radius: 6px;
  outline-width: 1px;
  outline-style: solid;
  flex-direction: column;
  padding: 5rem 1.5rem 6rem;
  display: flex;
}

.pricing-table.popular {
  background-color: var(--3rd-color);
  color: var(--white);
  margin-top: -5rem;
  position: relative;
}

.text-size-xlarge {
  letter-spacing: -2px;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.pricing-pointers-wrap {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.pricing-pointer {
  grid-column-gap: 1rem;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.pricing-pointer-icon {
  flex: none;
}

.footer {
  background-color: var(--white);
  color: var(--white);
  margin-top: 6rem;
}

.footer-up {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
}

.social-links-container {
  grid-column-gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.social-link-item {
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  transition: opacity .2s;
  display: flex;
}

.social-link-item:hover {
  opacity: .6;
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 8rem;
  /* display: block; */
  display: flex;
}

.footer-cta-text {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.footer-links-wrap {
  grid-column-gap: 6rem;
  grid-row-gap: 3.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-links-column {
  flex-direction: column;
  align-items: flex-start;
  font-family: Poppins, sans-serif;
  display: flex;
}

.footer-link {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-down {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 1.125rem;
}

.work-cms-hero-content {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  display: flex;
}

.link {
  grid-column-gap: .625rem;
  align-items: center;
  padding-bottom: 4px;
  display: flex;
  position: relative;
}

.link-arrow-icon {
  width: 1rem;
}

.link-line {
  background-color: rgba(21, 21, 21, .2);
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-line-hover {
  background-color: #151515;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.work-cms-image {
  width: 100%;
}

.work-cms-images-list {
  grid-row-gap: 3.5rem;
  flex-direction: column;
  display: flex;
}

.more-work-component {
  padding-top: 3rem;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: block !important;
}

.navbar-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar-logo {
  padding-left: 0;
}

.navbar-inside {
  z-index: auto;
  background-color: var(--3rd-color);
  color: var(--white);
  border-radius: 100rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-family: Open Sans, sans-serif;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  bottom: auto;
}

.navbar-link {
  color: var(--white);
  text-align: left;
  flex: 0 auto;
  align-self: center;
  margin-left: 20px;
  margin-right: auto;
  padding: 5px 0 5px 5px;
  font-family: Poppins, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  position: relative;
}

.navbar-menu {
  grid-column-gap: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.navbar-menu-inside {
  grid-column-gap: 2rem;
  text-align: left;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.text-span-2 {
  color: var(--primary);
}

.heading-2 {
  aspect-ratio: auto;
  color: var(--4th-color);
  object-fit: fill;
  width: 600px;
  min-width: 600px;
  margin-top: auto;
  padding-left: 0;
  font-family: Space Grotesk, sans-serif;
  font-size: 60px;
  position: relative;
}

.text-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  /* font-family: Vollkorn, serif; */
  font-weight: 300;
  display: flex;
}

.text-block-2, .body {
  font-family: Poppins, sans-serif;
}

.text-block-3 {
  color: var(--white);
  font-family: Poppins, sans-serif;
}

.text-span-3 {
  color: var(--primary);
}

.bold-text {
  overflow-wrap: normal;
  object-fit: fill;
  flex: none;
  align-self: auto;
  width: 600px;
  min-width: 0;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  position: static;
  font-size: 20px;
}

.text-block-4 {
  float: right;
  width: 800px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.text-block-5 {
  margin-top: 40px;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 400;
}

.text-block-6 {
  color: var(--white);
  object-fit: fill;
  font-family: Poppins, sans-serif;
  display: block;
}

.heading-3, .heading-4 {
  font-family: Open Sans, sans-serif;
}

.text-block-7 {
  font-family: Poppins, sans-serif;
  font-size: 40px;
}

.text-block-8 {
  float: right;
  width: 800px;
  min-width: 0;
  font-family: Poppins, sans-serif;
}

.text-block-9 {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 48px;
}

.text-block-10 {
    color: var(--white);
    font-family: Poppins, sans-serif;
    font-size: 25px;
}

.text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15, .text-block-16, .text-block-17, .text-block-18, .text-block-19 {
  font-family: Poppins, sans-serif;
}

.text-block-20 {
  color: var(--3rd-color);
}

.service-description{
    width: 100% !important;
}

.faq-description {
    font-size: 16px;
}

.heading-5 {
  font-family: Poppins, sans-serif;
}

.blog-slider {
  background-color: #fff;
  border: 0 solid #fff;
  padding: 60px 0px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  border: 0px solid var(--3rd-color);
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  font-family: Poppins, sans-serif;
}

.team-slider-wrapper {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 50%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
    margin-bottom: 18px;
    border-radius: 20px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
}

.team-member-text {
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.text-block-21, .text-block-22, .text-block-23, .text-block-24, .heading-6 {
  font-family: Poppins, sans-serif;
}

.heading-7 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.heading-8, .heading-9, .heading-10 {
  font-family: Poppins, sans-serif;
}

.heading-11 {
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
}

.text-block-25, .text-block-26, .text-block-27, .figure-caption {
  font-family: Poppins, sans-serif;
}

.paragraph {
  color: var(--white);
}

.text-span-4 {
  color: var(--primary);
}

.team-circles {
  /* border: 1px solid #fff; */
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 30px;
  display: flex;
  position: relative;
}

.container-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-2 {
  text-align: center;
  /* max-width: 800px; */
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: 20px;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-card p {
    font-size: 16px;
}

.team-member-position {
  margin-bottom: 24px;
}

.paragraph-2 {
    text-align: center;
    font-size: 20px;
}

.bold-text-2 {
  font-weight: 500;
}

.bold-text-3 {
  width: 250px;
  max-width: 250px;
  font-weight: 500;
}

.text-block-29 {
  float: right;
  width: 800px;
}

.text-block-30 {
  float: right;
  width: 800px;
  min-width: 0;
  height: auto;
  font-family: Poppins, sans-serif;
}

.text-span-5 {
  font-weight: 600;
}

.text-field, .text-field-2 {
  border-radius: 50px;
}

.text-field-3 {
  border-radius: 20px;
  height: 100px;
  border: 1px solid #023047;
}

.button-2 {
  background-color: var(--secondary);
  text-align: center;
  border-radius: 50px;
  width: 100%;
  height: 60px;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 1.125rem;
  font-weight: 600;
}

.field-label, .field-label-2 {
  margin-top: 20px;
}

.footer-subscribe {
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: rgba(26, 27, 31, .8);
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.button-primary.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #1a1b1f;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
}

.footer-link-three:hover {
  color: rgba(26, 27, 31, .75);
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #3a4554;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.process-floating-img-2-copy {
  z-index: 1;
  /* background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'); */
  background-position: 0 0;
  background-size: auto;
  width: 25vw;
  max-width: 21rem;
  position: absolute;
  top: -8%;
  bottom: auto;
  left: auto;
  right: 20%;
}

@media screen and (min-width: 1440px) {
  label {
    font-size: 1.1rem;
  }

  .button {
    margin-left: auto;
    margin-right: 0;
  }

  .text-size-small {
    width: auto;
    min-width: auto;
    font-family: Poppins, sans-serif;
  }

  .tag {
    align-self: flex-start;
  }

  .tag.pricing.blue {
    margin-left: auto;
  }

  .tag.blue {
    clear: none;
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .work-heading {
    width: 600px;
    height: 450px;
    font-size: 48px;
    line-height: 1.5;
  }

  .pricing-table {
    justify-content: flex-start;
    align-items: flex-start;
    width: 400px;
    display: flex;
  }

  .footer-main {
    padding-bottom: 4rem;
  }

  .footer-cta-text {
    font-size: 20px;
  }

  .navbar-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .navbar-inside {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 1;
    order: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: center;
    align-items: center;
    display: flex;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  }

  .navbar-link {
    z-index: auto;
    object-fit: fill;
    flex: 0 auto;
    order: 0;
    align-self: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    right: auto;
  }

  .navbar-menu {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .navbar-menu-inside {
    mix-blend-mode: normal;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .heading-2 {
    width: 600px;
    min-width: 400px;
    font-size: 60px;
  }

  .text-block {
    object-fit: fill;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: visible;
  }

  .bold-text {
    width: 600px;
    min-width: 600px;
  }

  .centered-subheading {
    border-width: 0;
  }

  .container-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .centered-subheading-2 {
    margin-top: auto;
  }

  .team-member-image {
    width: 160px;
    height: 160px;
    max-height: none;
  }

  .image {
    margin-right: 80px;
  }

  .image-arabic {
    margin-left: 80px !important;
    margin-right: 0 !important;
  }

  .paragraph-2 {
    margin-top: 60px;
  }

  .text-field {
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .text-field-2 {
    border-radius: 50px;
    height: auto;
  }

  .text-field-3 {
    border-radius: 20px;
    height: 100px;
  }

  .button-2 {
    background-color: var(--secondary);
    text-align: center;
    border-radius: 50px;
    width: 100%;
    height: 60px;
  }

  .text-block-31 {
    width: 500px;
    font-size: 1.1rem;
  }

  .footer-form-two {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    object-fit: contain;
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    display: block;
  }

  .footer-form-input {
    border-radius: 20px;
  }

  .button-primary.footer-form-button {
    background-color: var(--primary);
    border-radius: 20px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.5rem;
  }

  .hide-tablet {
    display: none;
  }

  .styleguide-section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .text-size-medium {
    font-size: 1.5rem;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .license-image {
    height: 320px;
  }

  .license-item {
    grid-template-columns: 1fr;
  }

  .logos-grid {
    grid-column-gap: 3rem;
  }

  .services-item-up {
    font-size: 4.5rem;
  }

  .about-main-inside {
    grid-template-columns: 1fr;
  }

  .home-about-image {
    margin-top: 0;
  }

  .home-about-bg-circle-wrap {
    bottom: 25%;
  }

  .testimonial-slider-left-arrow {
    right: 10%;
  }

  .testimonial-slide-inside {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-bg-circle-wrap {
    width: 50vw;
    height: 50vw;
    top: -5%;
  }

  .process-steps-wrap {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-top: 6rem;
  }

  .process-number-circle {
    z-index: 2;
    margin-bottom: 1.5rem;
  }

  .process-floating-img-1, .process-floating-img-2 {
    display: none;
  }

  .pricing-tables-wrap {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-table.popular {
    margin-top: 0;
  }

  .social-link-item {
    flex: none;
  }

  .footer-main {
    grid-row-gap: 6rem;
    flex-direction: column;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .footer-cta-text {
    font-size: 20px;
  }

  .work-cms-hero-content {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-menu-inside {
    grid-column-gap: 1.5rem;
    align-items: center;
    display: flex;
  }

  .container {
    max-width: 728px;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .container-2 {
    max-width: 728px;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 160px;
    height: 160px;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .process-floating-img-2-copy {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  h4 {
    font-size: 1rem;
  }

  .button {
    display: none;
  }

  .btn-schedule {
    display: block !important;
    margin-bottom: 40px;
    width: 100% !important;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .heading-large, .text-size-large {
    font-size: 2rem;
  }

  .styleguide-section-type {
    font-size: .875rem;
  }

  .text-size-medium {
    font-size: 1.4rem;
  }

  .heading-xlarge {
    font-size: 2.8rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-small {
    font-size: 1rem;
  }

  .styleguide-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .license-image {
    height: 250px;
  }

  .instructions-list {
    padding-left: 20px;
  }

  .logos-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    max-width: 22rem;
    display: grid;
  }

  .home-hero-bg-circle-wrap {
    width: 50vw;
    height: 50vw;
    bottom: 13%;
    left: -33%;
  }

  .services-items-wrap {
    grid-row-gap: 5rem;
  }

  .work-heading {
    font-size: 3rem;
  }

  .home-about-image {
    height: 32rem;
  }

  .work-list {
    grid-row-gap: 8rem;
  }

  .work-item-image-wrapper {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }

  .work-item-image {
    width: 92%;
  }

  .work-item-details-up {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .work-tags-wrap {
    font-size: 1rem;
  }

  .home-about-bg-circle-wrap {
    width: 70vw;
    height: 70vw;
  }

  .testimonial-section {
    margin-top: 5rem;
  }

  .testimonial-component {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .testimonial-slider-left-arrow {
    right: 16%;
  }

  .testimonial-slide-image {
    height: 30rem;
  }

  .testimonial-bg-circle-wrap {
    width: 60vw;
    height: 60vw;
    bottom: 13%;
    left: -33%;
  }

  .pricing-tables-wrap {
    max-width: 90%;
  }

  .footer {
    margin-top: 5rem;
  }

  .footer-cta-text {
    font-size: 20px;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-inside {
    border-radius: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar-link {
    margin-left: 0;
  }

  .navbar-menu {
    background-color: var(--3rd-color);
    padding: 2rem 1.25rem 4rem;
  }

  .navbar-menu-button, .navbar-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar-menu-inside {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-slider, .team-circles {
    padding: 60px 15px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .w-slider-mask {
    overflow: hidden !important;
  }
  
  .navbar-item:hover .sub-menu {
    display: none !important;
  }

  
  
}

@media screen and (max-width: 479px) {
  body {
    font-size: 1.15rem;
  }

  .button {
    aspect-ratio: auto;
    width: 0%;
    max-width: none;
    max-height: none;
    display: none;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .license-images-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-component {
    align-items: stretch;
  }

  .home-hero-button-wrap {
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .home-hero-bg-circle-wrap {
    width: 80vw;
    height: 80vw;
    bottom: 37%;
    left: -68%;
  }

  .services-items-wrap {
    grid-row-gap: 3.5rem;
  }

  .services-icon {
    width: 25px;
  }

  .services-item-up {
    font-size: 12vw;
  }

  .work-heading {
    font-size: 2.6rem;
  }

  .home-about-image {
    height: 27rem;
  }

  .work-list {
    grid-row-gap: 7rem;
  }

  .work-item-image-wrapper {
    padding-top: 0;
  }

  .work-item-image {
    width: 100%;
  }

  .home-about-bg-circle-wrap {
    width: 100vw;
    height: 100vw;
    bottom: 15%;
    right: -60%;
  }

  .testimonial-component {
    padding-bottom: 10rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-slider-left-arrow {
    top: auto;
    bottom: -10%;
    left: 0%;
    right: auto;
  }

  .testimonial-slider-right-arrow {
    top: auto;
    bottom: -10%;
    left: 23%;
    right: auto;
  }

  .testimonial-slide-image {
    height: 25rem;
  }

  .testimonial-bg-circle-wrap {
    width: 80vw;
    height: 80vw;
    bottom: 37%;
    left: -54%;
  }

  .pricing-tables-wrap {
    max-width: 100%;
  }

  .pricing-table {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-up {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta-text {
    font-size: 20px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .heading-2 {
    font-size: 4rem;
  }

  .container {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .container-2 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .container-3 {
    max-width: none;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .button-primary.footer-form-button {
    position: relative;
    right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4cc-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4d7-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4e1-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4eb-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4f5-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4ff-f6d7b722, #w-node-aff5b0f8-ed50-e491-f727-661efdc25319-f6d7b722, #w-node-_97bebab8-579c-cb29-d613-23d2968f10ed-f6d7b722, #w-node-e14b1e53-35c3-91ac-e98c-901804ac3efb-f6d7b722, #w-node-_7caab118-b7e9-68c4-f293-39b65acf60d8-f6d7b722, #w-node-_6d267e2a-fb12-eef2-c55a-d9ac064d0a5a-f6d7b722, #w-node-aa3f049c-cb0e-aceb-2ee5-610f09c91204-f6d7b722, #w-node-_94dbb7c0-da5b-921e-5712-4e463e5790b7-f6d7b722, #w-node-fd768fbd-5b70-5afb-9992-e7a48de37ccf-f6d7b722, #w-node-fd768fbd-5b70-5afb-9992-e7a48de37cd0-f6d7b722, #w-node-_05167895-bb17-5c41-7429-5a824eae19c8-f6d7b722, #w-node-_05167895-bb17-5c41-7429-5a824eae19c9-f6d7b722, #w-node-_3139d13b-b3d4-e761-cf77-b957dacfffc6-f6d7b722, #w-node-_8dadf7de-9783-0782-eed0-ad5e846ce42d-f6d7b722, #w-node-_87eb6487-9980-e768-3c4b-9c25514e015f-f6d7b722, #w-node-_80b60902-d2ac-b7f7-0401-e31296a7b12b-f6d7b728, #w-node-_80b60902-d2ac-b7f7-0401-e31296a7b136-f6d7b728, #w-node-ee3c1a51-07e8-ecf0-f78a-c8ac8a67235b-f6d7b728, #w-node-d170356f-0559-5c56-bdb5-1310644a454b-f6d7b728, #w-node-_91a56518-ef94-09d5-0b48-9e77584626f9-f6d7b728, #w-node-_88b9da4a-addd-05cb-7982-da66080519e2-f6d7b728, #w-node-_80b60902-d2ac-b7f7-0401-e31296a7b13c-f6d7b728, #w-node-_80b60902-d2ac-b7f7-0401-e31296a7b147-f6d7b728, #w-node-_80b60902-d2ac-b7f7-0401-e31296a7b156-f6d7b728 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4d7-f6d7b722, #w-node-b3903556-a43b-9f0d-2d0b-4d86ea2fb4e1-f6d7b722, #w-node-_97bebab8-579c-cb29-d613-23d2968f10ed-f6d7b722, #w-node-_3139d13b-b3d4-e761-cf77-b957dacfffc6-f6d7b722 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (min-width: 900px) and (max-width: 1135px) {
    .navbar-menu-inside {
        grid-column-gap: unset !important;
    }
}

@media screen and (max-width: 991px) {
    .services-item-up {
        font-size: 4.5rem;
    }

    .tag-industry, .service-tag {
        margin-bottom: 0rem !important;
    }
    
    .ath_carousel_se_04_carousel .owl-stage {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

@media screen and (max-width: 767px) {

    .navbar-inside {
        justify-content: space-between !important;
    }

    .text-block {
        display: flow-root;
        width: 100%;
    }
    .heading-2 {
        width: 100%;
        min-width: 100%;
    }
    .service-heading {
        font-size: 25px;
    }

    .blog-slider, .team-circles{
        padding: 0px 15px !important;
    }

    .padding-huge-industry {
        padding-top: 3rem !important
    }

    .padding-blog, .padding-faq {
        padding-top: 3rem !important;
    }

    .language-picker, .language-picker-arabic {
        display: none !important;
    }

    .navbar-menu-arabic {
        align-items: end !important
    }

    .mobile-menu {
        display: block !important;
    }

    .container-custom-header {
        display: none !important;
    }
    
    .faq-items-wrap {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-bottom: 3rem !important;
    }
}


@media screen and (max-width: 479px) {
    .heading-2 {
        width: 100%;
        min-width: 100%;
    }
    .service-heading {
        font-size: 25px;
    }

    .team-block-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-up {
        align-items: center !important;
    }

    .container-custom-header {
        display: none !important;
    }

    .loader-text {
        font-size: 2rem !important;
    }

    .custom-card-contact {
        padding: 35px !important;
    }

    .custom-card {
        padding: 40px !important;
    }
}


@media screen and (max-width: 600px) {

    .team-member-name-two {
        font-size: 20px !important;
    }

    .footer-down {
        flex-direction: column;
        align-items: center;
    }
}

#language-select-arabic {
    border: 0;
    border-radius: 0px 10px 10px 0px;
    color: black;
}

.language-picker-arabic {
    /* margin: unset;
    display: flex;
    align-items: center; */
    margin-left: 0 !important;
    margin-right: auto !important;
}

.language-flag-arabic {
    width: 40px;
    height: auto;
    margin-right: 0px;
}

#language-select {
    border: 0;
    border-radius: 10px;
    color: var(--3rd-color);
    
}

.language-picker {
    margin-left: 5rem;
    display: flex;
    align-items: center;
}

.language-flag {
    width: 40px;
    height: auto;
    margin-right: 5px;
}

.mobile-active {
    border: 2px solid white;
}

.mobile-menu {
    display: none;
}

/* Chat bubble container */
.chat-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}

/* Chat bubble button */
.chat-bubble {
    width: 70px;
    height: 40px;
    /*background-color: #ffce1f;*/
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

/* Iframe container */
.iframe-container {
    position: fixed;
    bottom: 90px;
    right: 35px;
    z-index: 999;
    display: none;
    background-color: #f7f9fb;
    border-radius: 30px;
    /* Ensure content doesn't overflow rounded corners */
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
    border: none;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #fff;
    color: #ffce1f;
    border: 2px solid #ffce1f;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.text-bubble {
    position: fixed;
    right: 30px;
    bottom: 80px;
    padding: 13px 40px 13px 20px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    background-color: white;
}
/* Media query for smaller screens */
@media screen and (max-height: 800px) {
    .iframe-container iframe {
        height: 600px;
    }
}

/* Media query for larger screens */
@media screen and (min-height: 800px) {
    .iframe-container iframe {
        height: 700px;
    }

    .header-up {
        margin: 15px 0px 0px 0px !important;
    }
}

@media screen and (max-width: 768px) {
    .iframe-container iframe {
        width: 350px;
    }

    .header-up {
        margin: 15px 0px 0px 0px !important;
    }
}

@media (max-width: 1200px) and (min-width: 767px) {
    .container-large {
        width: 100% !important;
    }
    
    .container-custom-header {
        width: 93% !important;
    }
}

@media only screen and (max-width: 380px) {
    .iframe-container iframe {
        width: 320px;
    }
}

.container {
    height: fit-content !important;
}

/* Products */
.product-tag {
    border: 1px solid var(--3rd-color) !important;
}

.text-block-product {
    color: var(--3rd-color);
}

.product-description{
    width: 100% !important;
    color: var(--3rd-color);
}

.product-icon {
    display: flex;
    width: 45px;
}

.custom-card {
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 65px;
}

.custom-card-contact {
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 65px;
    background: white;
}

.product-items-wrap {
    margin-top: unset !important;
    /* width: 60% !important; */
    flex: 1;
    grid-row-gap: 2rem !important;
    /* min-width: 300px; Adjust this value as needed */
}

.products-item-down {
    padding-top: unset !important;
}

#product-video {
    border-radius: 10px;
    background: black;
    width: 100% !important;
}


/* Industries */
.industry-section-bg {
    background: #f7f9fb !important;
}

/* FAQ */
#faq {
    background: #f7f9fb !important;
}

/* Trusted Brands */
.trusted-brands {
    padding-bottom: 40px;
}

.contact-heading, .contact-description, .w-form {
    color: var(--3rd-color);
}

.footer-down {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}

.footer-section {
    /* flex: 1; */
    margin: 5px;
    min-width: 250px; /* Adjust based on your design */
}

.tag-work {
    /*width: 220px !important;*/
}

.work-disp {
    font-size: 20px;
}

.text-block-12, .text-block-23, .footer-link {
    font-size: 16px;
}

.services-item-up h5 {
    font-size: 18px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-right: 1rem;
}

.form-group:last-child {
    margin-right: 0;
}

label {
    font-size: 14px;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.text-arabic {
    text-align: right;
}

.text-field {
    padding: 20px 0px 20px 10px;
    border: 1px solid #023047;
}

.text-field-2 {
    padding: 12px 0px 10px 10px;
    border: 1px solid #023047;
}

/* select{
    outline: none;
    background-color: none;
    background-color: rgba(244,241,229,1.00);
    font-weight: 500;
    padding: 3px 0px 3px 3px;
    margin: 5px 1px 3px 0px;
    border: none;
    border: 1px solid #DDDDDD;
    border-radius: 10px !important;
} */

#language-selectSelectBoxItText {
    font-weight: bold;
    color: -var(--3rd-color);
}

#language-selectSelectBoxIt {
    background: transparent;
    border: 0;
}

#language-selectSelectBoxIt {
    width: 60px !important;
}

#language-selectSelectBoxItOptions {
    background: #F7F9FB !important;
    border: 0 !important;
    padding: 10px;
    height: auto;
}

.selectboxit-option, .selectboxit-optgroup-header {
    text-indent: 4px !important;
}

.selectboxit-options a {
    border-radius: 10px;
    /* background: #DDE2E4 !important; */
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    background: #DDE2E4 !important;
    color: var(--3rd-color) !important;
    font-weight: bold !important;
    /* display: inline !important; */
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product-hr {
    width: 100%;
    margin: 0 0 10px 0;
}

.header-up-ar {
    direction: ltr !important;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.change-product-heading {
    color: #219EBC;
}

/* Circle */
.ath_hover {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0px !important;
    overflow: hidden;

}

.ath_hover::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(244, 229, 172, .4);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* .ath_hover:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
} */

.ath_hover img {
    transition: all .3s;
}

/* .ath_hover:hover img {
    transform: scale(1.2);
} */

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.owl-carousel .owl-nav .owl-prev:focus,
.owl-carousel .owl-nav .owl-next:focus {
    outline: none;
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}


/*ath_carousel_se_04 start*/
.ath_carousel_se_04 {
    overflow: hidden;
}


.ath_carousel_se_04 .product-grid3 {
    border: none;
    box-shadow: none;
}

.ath_carousel_se_04 .owl-theme .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.ath_carousel_se_04 .owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.ath_carousel_se_04 .owl-theme .owl-dots .owl-dot span {
    border-radius: 10px;
    width: 9px;
    height: 9px;
    margin: 4px;
    border: 2px solid #94a5b4;
    display: block;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* .ath_carousel_se_04 .owl-theme .owl-dots .owl-dot:hover span {
    border-color: var(--4th-color);;
} */

.ath_carousel_se_04 .owl-theme .owl-dots .owl-dot.active span {
    border-color: var(--4th-color);
    background-color: var(--4th-color);
}

.ath_carousel_se_04 .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 42%;
    right: -20px;
    padding: 0px 1px !important;
    background: rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 5px;
    font-size: 32px;
    line-height: 32px;
    color: var(--4th-color);;
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

/* .ath_carousel_se_04 .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--4th-color);;
    color: #fff;
} */

.ath_carousel_se_04 .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 42%;
    left: -20px;
    padding: 0px 1px !important;
    background: rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 5px;
    font-size: 32px;
    line-height: 32px;
    color: var(--4th-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

/* .ath_carousel_se_04 .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--4th-color);;
    color: #fff;
} */

.ath_carousel_se_04 .owl-arrow .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.8rem;
}

.ath_carousel_se_04 .owl-arrow .owl-nav .owl-prev,
.ath_carousel_se_04 .owl-arrow .owl-nav .owl-next {
    display: inline-block;
    transition: all 0.6s ease-in-out;
    color: #000000;
}

.ath_carousel_se_04_carousel .owl-stage {
    padding-left: 0 !important;
    padding-right: 100px; 
}

.product-read-more:hover {
    color: #023047 !important;
}

.product-read-more {
    color: #023047 !important;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .ath_carousel_se_04 .owl-carousel .owl-nav button.owl-prev {
        top: 42%;
        left: 0px;

    }

    .ath_carousel_se_04 .owl-carousel .owl-nav button.owl-next {
        top: 42%;
        right: 0px;

    }
}

@media (max-width: 1215px) and (min-width: 991px) {
  .w-button {
    padding: 1rem 2rem !important;
  }

  .navbar-menu-inside {
    grid-column-gap: 0rem !important;
  }
}

/* sub-menu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    /*left: 10%;*/
    width: 50%;
    background-color: #F7F9FB;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
    z-index: 1000;
    border-radius: 4px;
    color: var(--4th-color);
}

.sub-menu-link {
    display: block;
    font-size: 15px;
    /*padding: 10px 20px;*/
    padding: 0 10px 0 10px;
    color: var(--3rd-color);
    text-decoration: none;
}

.sub-menu-link:hover,
.sub-menu-link:focus {
    color: var(--4th-color);
    background: #DDE2E4 !important;
    border-radius: 50px;
    /*margin: 0px 5px 0px 5px;*/
}

/* Show sub-menu on hover */
.navbar-item:hover .sub-menu {
    display: block;
}

.text-right {
    text-align: right;
}