:root {
  --sofiarc-font: "poppins", sans-serif;
  --sofiarc-text:#6F7180;
  --sofiarc-text-rgb: 112, 120, 130;
  --sofiarc-text-dark:#89B6E0;
  --sofiarc-text-dark-rgb: 69, 110, 161;
  --sofiarc-base :#56a1cc;
  --sofiarc-base-rgb: 51, 193, 237;
  --sofiarc-primary:#89B6E0;
  --sofiarc-primary-rgb:0, 102, 161;
  --sofiarc-gray: #E5E5E5;
  --sofiarc-gray-rgb: 229, 229, 229;
  --sofiarc-white: #FFFFFF;
  --sofiarc-white-rgb: 255, 255, 255;
  --sofiarc-white2: #ECF0F5;
  --sofiarc-white2-rgb: 220, 220, 220;
  --sofiarc-black: #0066a1;
  --sofiarc-black-rgb: 10, 34, 65;
  --sofiarc-black2: #0B2241;
  --sofiarc-black2-rgb: 11, 34, 65;
  --sofiarc-border-color: #D9E1EB;
  --sofiarc-border-color-rgb: 217, 225, 235;
  --sofiarc-radius: 20px;
  --section-space: 120px;
  --section-space2: 116px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  font-size: 14px;
  color: var(--sofiarc-text, #707882);
  font-weight: 500;
  line-height: 1.875;
  background-color: var(--sofiarc-white, #FFFFFF);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--sofiarc-base, #33C1ED);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sofiarc-font, "poppins", sans-serif);
  color: var(--sofiarc-black, #0A2241);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--sofiarc-base, #33C1ED);
}

.background-white {
  background-color: var(--sofiarc-white, #FFFFFF);
}

.background-white-2 {
  background-color: var(--sofiarc-white2, #ECF0F5);
}

.background-black {
  background-color: var(--sofiarc-black, #0A2241);
}

.background-black-2 {
  background-color: var(--sofiarc-black2, #0B2241);
}

.sofiarc-text {
  color: var(--sofiarc-text, #707882);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.section-space {
  padding: var(--section-space, 120px) 0;
}
@media (max-width: 767px) {
  .section-space {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding: 80px 0;
  }
}

.section-space-two {
  padding-top: var(--section-space2, 118px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-two {
    padding-top: 96px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-two {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-top-two {
  padding-top: var(--section-space2, 118px);
}
@media (max-width: 767px) {
  .section-space-top-two {
    padding-top: 96px;
  }
}
@media (max-width: 575px) {
  .section-space-top-two {
    padding-top: 76px;
  }
}

.section-space-bottom {
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.multiple-section {
  position: relative;
  background-color: var(--sofiarc-primary, #2C51A3);
}
.multiple-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* section title */
.sec-title--center {
  text-align: center;
  margin-bottom: 49px;
}
.sec-title--center .sec-title__top {
  justify-content: center;
}
.sec-title__top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-title__top img {
  max-width: 100%;
  height: auto;
  animation: rotate 3s linear infinite;
}
.sec-title__tagline {
  margin: 0;
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 14px;
  }
}
.sec-title__title {
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 25px;
  }
}

/* button */
.sofiarc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--sofiarc-base, #33C1ED);
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  padding: 12px 20.5px;
  cursor: pointer;
  transition: 500ms;
  text-transform: capitalize;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
}
.sofiarc-btn::before, .sofiarc-btn::after {
  content: "";
  background-color:#1CB6A3
;
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.sofiarc-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.sofiarc-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.sofiarc-btn:hover::before, .sofiarc-btn:hover::after {
  width: calc(50% + 6px);
}
.sofiarc-btn__icon {
  display: inline-flex;
  font-size: 11px;
  color: var(--sofiarc-white, #FFFFFF);
  transition: all 500ms ease;
}
.sofiarc-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sofiarc-btn:hover .sofiarc-btn__icon {
  transform: rotate(45deg);
}
.sofiarc-btn--normal {
  border-radius: 10px;
}
.sofiarc-btn--normal::before {
  border-radius: 10px 0 0 10px;
}
.sofiarc-btn--normal::after {
  border-radius: 0 10px 10px 0;
}

/*video button*/
.video-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: var(--sofiarc-white, #FFFFFF);
  font-size: 15px;
  color: var(--sofiarc-base, #33C1ED);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}
.video-btn__ripple::before, .video-btn__ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--sofiarc-base-rgb, 51, 193, 237), 0.7);
  -webkit-animation: producVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}
.video-btn__ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-btn__ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

@keyframes popupVideo {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
.video-btn-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: var(--sofiarc-white, #FFFFFF);
  font-size: 15px;
  color: var(--sofiarc-base, #33C1ED);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-btn-two svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn-two:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}
.video-btn-two:hover > span {
  border-color: var(--sofiarc-base, #33C1ED);
}
.video-btn-two > span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 1px solid var(--sofiarc-white, #FFFFFF);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-animation: pulse-animate 4s linear infinite;
  animation: pulse-animate 4s linear infinite;
}
.video-btn-two span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.video-btn-two span:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.video-btn-two span:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@-webkit-keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
/* client */
.client-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.client-info__image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--sofiarc-white, #FFFFFF);
}
.client-info__image img + img {
  margin-left: -14px;
}
.client-info .sofiarc-ratings {
  margin-bottom: 7px;
  gap: 6px;
}
.client-info .sofiarc-ratings__icon {
  color: var(--sofiarc-black, #0A2241);
}
.client-info__text {
  margin: 0;
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: capitalize;
}

/* progress bar */
.progress-box__title {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .progress-box__title {
    font-size: 14px;
  }
}
.progress-box__bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: RGBA(var(--sofiarc-base-rgb, 51, 193, 237), 0.2);
  border-radius: 100px;
}
.progress-box__bar__inner {
  height: 100%;
  width: 0px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  border-radius: inherit;
  transition: all 800ms linear;
}
.progress-box__number {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  font-size: 14px;
  color:white;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .progress-box__number {
    font-size: 14px;
  }
}

/* social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--sofiarc-text, #707882);
  border: 1px solid rgba(var(--sofiarc-border-color-rgb, 217, 225, 235), 0.2);
  border-radius: 50%;
}
.social-links a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
  border-color: var(--sofiarc-base, #33C1ED);
}

/* ratings */
.sofiarc-ratings {
  display: flex;
  align-items: center;
  gap: 9px;
}
.sofiarc-ratings__icon {
  display: inline-flex;
  align-items: baseline;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
  transition: all 500ms ease;
}
.sofiarc-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--sofiarc-base, #33C1ED);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--sofiarc-text, #707882);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--sofiarc-text, #707882);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--sofiarc-black, #0A2241);
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sofiarc-black, #0A2241);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 45px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--sofiarc-base, #33C1ED);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--sofiarc-black, #0A2241);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.post-pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--sofiarc-white2, #ECF0F5);
  color: var(--sofiarc-text, #707882);
  text-transform: capitalize;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50%;
  line-height: 39px;
  border: 1px solid transparent;
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon {
  display: inline-flex;
  font-size: 14.77px;
  color: var(--sofiarc-text, #707882);
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination a:hover {
  border-color: var(--sofiarc-base, #33C1ED);
  color: var(--sofiarc-base, #33C1ED);
  background-color: transparent;
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--sofiarc-base, #33C1ED);
}
.post-pagination li.active a {
  background-color: var(--sofiarc-base, #33C1ED);
  color: var(--sofiarc-white, #FFFFFF);
}
.post-pagination li.active a .post-pagination__icon {
  color: var(--sofiarc-white, #FFFFFF);
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--sofiarc-base, #33C1ED);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sofiarc-black, #0A2241);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

.sofiarc-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.sofiarc-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.sofiarc-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--sofiarc-black, #0A2241);
  background-color: var(--sofiarc-white2, #ECF0F5);
  border-radius: 50%;
  border: 1px solid var(--sofiarc-border-color, #D9E1EB);
  transition: all 400ms ease;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
  border-color: var(--sofiarc-base, #33C1ED);
}
@media (max-width: 767px) {
  .sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
  }
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--sofiarc-text, #707882);
  transition: all 400ms ease;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: RGBA(var(--sofiarc-base-rgb, 51, 193, 237), 0.1);
  transition: all 400ms ease;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--sofiarc-base, #33C1ED);
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after, .sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 60px;
}
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.sofiarc-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* ui datepicker */
.ui-datepicker.ui-widget-content {
  border: 1px solid var(--sofiarc-border-color, #D9E1EB);
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  color: var(--sofiarc-primary, #2C51A3);
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  width: 307px;
  padding: 5px 8px 3px;
  background-color: var(--sofiarc-white, #FFFFFF);
}
@media (max-width: 360px) {
  .ui-datepicker.ui-widget-content {
    width: 270px;
  }
}

.ui-datepicker .ui-datepicker-header {
  padding: 6px 0;
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  color: var(--sofiarc-white, #FFFFFF);
  border-radius: 6px;
  border: 0;
  background-image: none;
  background-color: var(--sofiarc-base, #33C1ED);
}

.ui-datepicker-calendar th span {
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  color: var(--sofiarc-base, #33C1ED);
}
.ui-datepicker-calendar td {
  background-color: var(--sofiarc-white, #FFFFFF);
  background-image: none;
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  color: var(--sofiarc-white, #FFFFFF);
}
.ui-datepicker-calendar td a {
  border-color: var(--sofiarc-base, #33C1ED);
  background-color: var(--sofiarc-text, #707882);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: transparent;
  background-color: var(--sofiarc-white2, #ECF0F5);
  background-image: none;
  color: var(--sofiarc-black, #0A2241);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
  border-radius: 5px;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--sofiarc-white, #FFFFFF);
  color: var(--sofiarc-black, #0A2241);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  border-color: var(--sofiarc-primary, #2C51A3);
}

.ui-datepicker .ui-datepicker-prev {
  cursor: pointer;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.ui-datepicker .ui-datepicker-prev:hover {
  left: 6px;
}

.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}
.ui-datepicker .ui-datepicker-next:hover {
  right: 6px;
}


/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  display: none;
  background-color: var(--sofiarc-black, #0A2241);
}
@media (min-width: 992px) {
  .topbar-one {
    display: block;
  }
}
.topbar-one .container-fluid {
  max-width: 1830px;
}
.topbar-one__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .topbar-one__inner {
    flex-direction: row;
  }
}
.topbar-one__info {
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .topbar-one__info {
    display: none;
  }
}
.topbar-one__info li + li {
  margin-left: 31px;
}
.topbar-one__info li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  line-height: 1.4;
}
.topbar-one__info li:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.topbar-one__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info li a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__icon {
  margin-right: 10px;
  position: relative;
  display: inline-flex;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
}
.topbar-one__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar-one__info__icon--email {
  top: 1px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
  z-index: 99;
}
.main-header .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1830px;
}
.main-header__inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 25px 0px;
  }
}
.main-header__logo img {
  max-width: 100%;
  height: auto;
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__sidebar-btn {
  position: relative;
  margin-right: 139px;
  width: 29.71px;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 1799px) {
  .main-header__sidebar-btn {
    margin-right: 80px;
  }
}
@media (max-width: 1350px) {
  .main-header__sidebar-btn {
    margin-right: 120px;
  }
}
@media (max-width: 1199px) {
  .main-header__sidebar-btn {
    display: none;
  }
}
.main-header__sidebar-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--sofiarc-black, #0A2241);
  border-radius: var(--sofiarc-radius, 20px);
  transition: all 400ms ease;
}
.main-header__sidebar-btn span:nth-child(1) {
  width: 14.48px;
}
.main-header__sidebar-btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.main-header__sidebar-btn:hover span {
  width: 100%;
  background-color: var(--sofiarc-base, #33C1ED);
}
.main-header__nav {
  margin-right: 60px;
}
@media (max-width: 1799px) {
  .main-header__nav {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .main-header__nav {
    margin-right: 0px;
  }
}




.main-header__btn {
  margin-left: 60px;
}
@media (max-width: 1799px) {
  .main-header__btn {
    margin-left: 40px;
  }
}
@media (max-width: 1399px) {
  .main-header__btn {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-header__btn {
    display: inline-flex;
  }
}
@media (max-width: 991px) {
  .main-header__btn {
    display: none;
  }
}

.main-header--three {
  position: relative;
  background-color:#1cb6a4;
  border-top: 19px solid var(--sofiarc-black, #0A2241);

}
.main-header--three .container-fluid {
  max-width: 1651px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding: 23.5px 0px;
  }
}
@media (max-width: 991px) {
  .main-header--three .main-header__inner {
    padding: 24.36px 0px;
  }
}
@media (max-width: 360px) {
  .main-header--three .main-header__inner {
    padding: 28.82px 0px;
  }
}
.main-header--three .main-header__left {
  margin-right: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__left {
    margin-right: 0;
  }
}
.main-header--three .main-header__logo {
  position: relative;
}
.main-header--three .main-header__logo::before {
  content: "";
  width: 330px;
  height: calc(100% + 49.72px);
  background-color: var(--sofiarc-black, #0A2241);
  position: absolute;
  top: calc(50% - 1px);
  left: -176px;
  transform: translateY(-50%);
}
@media (max-width: 360px) {
  .main-header--three .main-header__logo::before {
    height: calc(100% + 58.72px);
    left: -205px;
  }
}
.main-header--three .main-header__logo a {
  position: relative;
  z-index: 1;
}
@media (max-width: 360px) {
  .main-header--three .main-header__logo img {
    width: 135px;
  }
}
.main-header--three .main-header__logo__shape {
  width: 66px;
  height: 118px;
  position: absolute;
  top: -43px;
  right: -55px;
  background-color: var(--sofiarc-black, #0A2241);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.000000 118.000000"><g transform="translate(0.000000,118.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1180 l0 -1181 55 13 c195 47 214 78 625 1005 196 443 373 824 393 847 43 47 171 116 216 116 26 0 31 32 31 190 l0 190 -660 0 -660 0 0 -1180z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 66.000000 118.000000"><g transform="translate(0.000000,118.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1180 l0 -1181 55 13 c195 47 214 78 625 1005 196 443 373 824 393 847 43 47 171 116 216 116 26 0 31 32 31 190 l0 190 -660 0 -660 0 0 -1180z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 360px) {
  .main-header--three .main-header__logo__shape {
    top: -48px;
  }
}
.main-header--three .main-header__sidebar-btn {
  margin-left: 120px;
  margin-right: 0;
}
@media (max-width: 1599px) {
  .main-header--three .main-header__sidebar-btn {
    margin-left: 80px;
  }
}
.main-header--three .main-header__sidebar-btn span {
  background-color: var(--sofiarc-white, #FFFFFF);
}
.main-header--three .main-header__sidebar-btn:hover span {
  background-color: var(--sofiarc-black, #0A2241);
}
.main-header--three .mobile-nav__btn span {
  background-color: var(--sofiarc-white, #FFFFFF);
}
.main-header--three .main-header__nav {
  margin-right: 59px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__nav {
    margin-right: 0px;
  }
}
.main-header--three .main-menu .main-menu__list > li + li {
  margin-left: 38px;
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 38.5px;
  padding-bottom: 38.5px;
}
.main-header--three .main-menu .main-menu__list > li > a,
.main-header--three .main-header__cart,
.main-header--three .main-header__search {
  color: var(--sofiarc-white, #FFFFFF);
}
.main-header--three .main-menu .main-menu__list > li.current > a,
.main-header--three .main-menu .main-menu__list > li:hover > a {
  color: white;
}
.main-header--three .main-header__cart,
.main-header--three .main-header__search {
  color: var(--sofiarc-white, #FFFFFF);
}
.main-header--three .main-header__cart:hover,
.main-header--three .main-header__search:hover {
  color: var(--sofiarc-black, #0A2241);
}
.main-header--three .main-header__btn {
  margin-left: 90px;
  background-color: var(--sofiarc-black, #0A2241);
}
.main-header--three .main-header__btn:hover, .main-header--three .main-header__btn:hover .sofiarc-btn__icon {
  color: var(--sofiarc-base, #33C1ED);
}
@media (max-width: 1599px) {
  .main-header--three .main-header__btn {
    margin-left: 40px;
  }
}
@media (max-width: 1199px) {
  .main-header--three .main-header__btn {
    display: inline-flex;
  }
}
@media (max-width: 991px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}
.main-header--three .main-header__btn::before, .main-header--three .main-header__btn::after {
  background-color: var(--sofiarc-white, #FFFFFF);
}



.main-header {
  position: relative;
  width: 100%;
  transition: all 0.35s ease-in-out;
}

.main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}



.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--sofiarc-white, #FFFFFF);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--sofiarc-black-rgb, 10, 34, 65), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned.main-header--two {
  background-color: transparent;
  box-shadow: none;
}
.sticky-header--cloned.main-header--two .container-fluid {
  box-shadow: 0px 3px 18px rgba(var(--sofiarc-black-rgb, 10, 34, 65), 0.07);
}
.sticky-header--cloned.main-header--three {
  background-color:#007ec2;
}
.sticky-header--cloned.main-header--four {
  border-color: transparent;
  background-color: var(--sofiarc-black, #0A2241);
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--sofiarc-black, #0A2241);
  transition: all 500ms ease;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}
.mobile-nav__btn:hover span {
  background-color: var(--sofiarc-base, #33C1ED);
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 45px;
  padding-bottom: 45px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 39px;
}
.main-menu .main-menu__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--sofiarc-black, #0A2241);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.375;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--sofiarc-base, #33C1ED);
}
.main-menu .main-menu__list > li.current > a {
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  padding: 15px 20px 11px;
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  background-color: var(--sofiarc-white, #FFFFFF);
  z-index: 99;
  box-shadow: 0px 10px 60px 0px RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.07);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  margin-bottom: 4px;
  padding: 7px 25px 8px 15px;
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  font-size: 14px;
  color: var(--sofiarc-black, #0A2241);
  font-weight: 600;
  line-height: 26px;
  display: flex;
  text-transform: capitalize;
  border-radius: 5px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 15px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--sofiarc-white, #FFFFFF);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--sofiarc-base, #33C1ED);
  color: var(--sofiarc-white, #FFFFFF);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

/*--------------------------------------------------------------
  # Megamenu Popup
  --------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--sofiarc-white, #FFFFFF);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--sofiarc-black, #0A2241);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}


/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--sofiarc-white, #FFFFFF);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--sofiarc-black, #0A2241);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}
.mobile-nav__content .main-header__logo--mobile {
  display: none;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  line-height: 1;
  color: var(--sofiarc-white, #FFFFFF);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__close:hover {
  color: var(--sofiarc-base, #33C1ED);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list--two li:first-child {
  border-top: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list > li.current > a,
.mobile-nav__content .main-menu__list > li:hover > a {
  color: var(--sofiarc-base, #33C1ED);
  text-shadow: 0 0 0.5px currentColor;
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--sofiarc-white, #FFFFFF);
  font-size: 14px;
  font-family: var(--sofiarc-font, "Manrope", sans-serif);
  text-transform: capitalize;
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li ul li a {
  font-size: 14px;
  font-weight: 500;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--sofiarc-base, #33C1ED);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--sofiarc-base, #33C1ED);
  border: none;
  outline: none;
  color: var(--sofiarc-white, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}
.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--sofiarc-white, #FFFFFF);
  color: var(--sofiarc-black, #0A2241);
}

.mobile-nav__social a {
  width: 32px;
  height: 32px;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mobile-nav__contact li {
  color: var(--sofiarc-white, #FFFFFF);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.mobile-nav__contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--sofiarc-base, #33C1ED);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--sofiarc-white, #FFFFFF);
}
.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--sofiarc-white, #FFFFFF);
}
.page-header .container-fluid {
  max-width: 1830px;
}
.page-header__inner {
  position: relative;
  padding-top: 109px;
  padding-bottom: 111px;
  border-radius: var(--sofiarc-radius, 20px);
}
@media (max-width: 575px) {
  .page-header__inner {
    padding-top: 89px;
    padding-bottom: 91px;
  }
}
.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: inherit;
}
.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: RGBA(var(--sofiarc-white2-rgb, 236, 240, 245), 0.23);
  border-radius: inherit;
}
.page-header .container {
  position: relative;
  z-index: 10;
}
@media (max-width: 575px) {
  .page-header .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-header__content {
  text-align: center;
}
.page-header__title {
  margin-bottom: 19px;
  font-size: 45px;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.222;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .page-header__title {
    font-size: 35px;
  }
}
@media (max-width: 430px) {
  .page-header__title {
    font-size: 30px;
  }
}

.sofiarc-breadcrumb {
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
.sofiarc-breadcrumb__icon {
  margin-right: 10px;
  display: inline-flex;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
}
.sofiarc-breadcrumb__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sofiarc-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sofiarc-black, #0A2241);
  text-transform: capitalize;
  line-height: 1.4;
}
.sofiarc-breadcrumb li:not(:last-of-type)::after {
  content: "\e94b";
  position: relative;
  top: 0;
  margin-left: 7px;
  margin-right: 7px;
  font-family: "icomoon" !important;
  font-size: 12px;
  color: var(--sofiarc-black, #0A2241);
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sofiarc-breadcrumb li span,
.sofiarc-breadcrumb li a {
  display: inline-flex;
}
.sofiarc-breadcrumb li:not(:first-child) span {
  color: var(--sofiarc-base, #33C1ED);
}
.sofiarc-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sofiarc-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.sofiarc-breadcrumb li a:hover {
  color: var(--sofiarc-base, #33C1ED);
}




/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes moveHorizontal2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-13px, 0, 0);
    transform: translate3d(-13px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}




/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--sofiarc-base, #33C1ED);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--sofiarc-base, #33C1ED);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--sofiarc-base, #33C1ED);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}
/* feature................................................................. */
.features-one {
  padding-top: 267px;
  padding-top: 60px;
  position: relative;
  background-color: var(--mediox-white2, #ECF0F5);
}
.features-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.25;
}
.features-one .container {
  position: relative;
  z-index: 1;
}
.features-one__card {
  position: relative;
  border-radius: 10px;
}
.features-one__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  background-color: var(--sofiarc-white, #FFFFFF);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0px 4px 50px rgba(54, 193, 236, 0.1);
}
.features-one__card__content {
  position: relative;
  padding: 0 30px 23px;
  z-index: 1;
}
.features-one__card__icon {
  margin-bottom: 19px;
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: var(--sofiarc-base, #33C1ED);
  font-size: 40px;
  color: var(--sofiarc-white, #FFFFFF);
  z-index: 1;
  transition: all 500ms ease;
}
.features-one__card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.features-one__card__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color:#1CB6A3;
  transition: transform 400ms ease, opacity 400ms ease;
}
.features-one__card:hover .features-one__card__icon::after {
  opacity: 1;
  transform: scale(1);
}
.features-one__card__title {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.388;
  text-transform: capitalize;
}
.features-one__card__text {
  margin: 0;
  line-height: 1.625;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/

@keyframes titleShapeMove {
  0% {
    width: 0;
  }
  15% {
    width: 362px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 362px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@media (max-width: 991px) {
  @keyframes titleShapeMove {
    0% {
      width: 0;
    }
    15% {
      width: 300px;
    }
    85% {
      opacity: 1;
    }
    90% {
      width: 300px;
      opacity: 0;
    }
    100% {
      width: 0;
      opacity: 0;
    }
  }
}
@media (max-width: 767px) {
  @keyframes titleShapeMove {
    0% {
      width: 0;
    }
    15% {
      width: 250px;
    }
    85% {
      opacity: 1;
    }
    90% {
      width: 250px;
      opacity: 0;
    }
    100% {
      width: 0;
      opacity: 0;
    }
  }
}
@media (max-width: 575px) {
  @keyframes titleShapeMove {
    0% {
      width: 0;
    }
    15% {
      width: calc(100% + 30px);
    }
    85% {
      opacity: 1;
    }
    90% {
      width: calc(100% + 30px);
      opacity: 0;
    }
    100% {
      width: 0;
      opacity: 0;
    }
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-profile__image {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}
.about-profile__name {
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}
.about-profile__designation {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.about-one {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.about-one .container {
  position: relative;
  z-index: 1;
}
.about-one__image {
  position: relative;
}
.about-one__image__one {
  width: calc(100% + 19px);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 942.000000"><g transform="translate(0.000000,942.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M470 9405 c0 -8 -14 -17 -37 -21 -135 -24 -304 -164 -379 -314 -58 -116 -54 205 -54 -4370 0 -4579 -4 -4254 54 -4371 79 -156 236 -283 396 -318 43 -9 647 -11 2675 -9 1441 2 2634 7 2650 12 134 35 300 171 361 297 77 156 68 6 75 1344 4 798 9 1215 17 1245 44 186 180 350 357 429 17 7 64 22 105 32 70 18 129 19 931 19 950 0 895 -4 1037 67 147 74 254 205 309 378 5 17 15 29 21 27 9 -1 12 593 12 2534 0 1598 -4 2533 -9 2529 -12 -7 -31 26 -31 52 0 44 -76 169 -145 239 -98 100 -200 156 -320 176 -40 7 -969 11 -2735 12 -2133 1 -2674 4 -2672 14 1 9 -266 12 -1308 12 -1140 0 -1310 -2 -1310 -15z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 942.000000"><g transform="translate(0.000000,942.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M470 9405 c0 -8 -14 -17 -37 -21 -135 -24 -304 -164 -379 -314 -58 -116 -54 205 -54 -4370 0 -4579 -4 -4254 54 -4371 79 -156 236 -283 396 -318 43 -9 647 -11 2675 -9 1441 2 2634 7 2650 12 134 35 300 171 361 297 77 156 68 6 75 1344 4 798 9 1215 17 1245 44 186 180 350 357 429 17 7 64 22 105 32 70 18 129 19 931 19 950 0 895 -4 1037 67 147 74 254 205 309 378 5 17 15 29 21 27 9 -1 12 593 12 2534 0 1598 -4 2533 -9 2529 -12 -7 -31 26 -31 52 0 44 -76 169 -145 239 -98 100 -200 156 -320 176 -40 7 -969 11 -2735 12 -2133 1 -2674 4 -2672 14 1 9 -266 12 -1308 12 -1140 0 -1310 -2 -1310 -15z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1199px) {
  .about-one__image__one {
    width: 100%;
    -webkit-mask: unset;
    mask: unset;
  }
}
.about-one__image__one img {
  width: 100%;
  display: block;
}
@media (max-width: 1199px) {
  .about-one__image__one img {
    border-radius: 40px;
  }
}
.about-one__experience {
  padding: 26.5px 28px 29.5px;
  position: relative;
  position: absolute;
  right: -19px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 40px;
}
@media (max-width: 1199px) {
  .about-one__experience {
    right: 30px;
    bottom: 30px;
  }
}
@media (max-width: 412px) {
  .about-one__experience {
    padding-top: 20px;
    padding-bottom: 23px;
  }
}
@media (max-width: 412px) {
  .about-one__experience {
    right: 20px;
    bottom: 20px;
  }
}
.about-one__experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.7);
  border-radius: inherit;
}
.about-one__experience__content {
  position: relative;
  z-index: 1;
}
.about-one__experience__year {
  margin-bottom: 7px;
  font-size: 60px;
  color: transparent;
  font-weight: 800;
  text-transform: capitalize;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--sofiarc-white, #FFFFFF);
  line-height: 1;
}
@media (max-width: 390px) {
  .about-one__experience__year {
    font-size: 50px;
  }
}
.about-one__experience__text {
  display: block;
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 600;
  line-height: 1.562;
}
.about-one__content {
  padding-left: 45px;
}
@media (max-width: 1199px) {
  .about-one__content {
    padding-left: 20px;
  }
}
.about-one .sec-title {
  margin-bottom: 21px;
}
.about-one__text {
  margin-bottom: 30px;
  font-weight: 400;
}
.about-one__inner {
  position: relative;
  padding: 9.5px 0;
  margin-bottom: 50px;
  border-top: 1px solid RGBA(var(--sofiarc-black-rgb, 10, 34, 65), 0.1);
  border-bottom: 1px solid RGBA(var(--sofiarc-black-rgb, 10, 34, 65), 0.1);
}
.about-one__inner::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: RGBA(var(--sofiarc-black-rgb, 10, 34, 65), 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 390px) {
  .about-one__inner::after {
    display: none;
  }
}
@media (max-width: 375px) {
  .about-one__inner__row > * {
    width: 100%;
  }
}
.about-one__funfact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__funfact {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .about-one__funfact {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 390px) {
  .about-one__funfact {
    justify-content: flex-start;
  }
}
.about-one__funfact__number {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 40px;
  color: var(--sofiarc-base, #33C1ED);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.05em;
  text-transform: capitalize;
}
.about-one__funfact__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: RGBA(var(--sofiarc-black-rgb, 10, 34, 65), 0.8);
  text-transform: capitalize;
  line-height: 1.6;
}
.about-one__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.about-one__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 81px;
  bottom: 120px;
  opacity: 0.15;
  animation: moveHorizontal2 2s linear infinite;
}
@media (max-width: 1599px) {
  .about-one__shape-1 {
    left: 40px;
  }
}
@media (max-width: 1199px) {
  .about-one__shape-1 {
    display: none;
  }
}
.about-one__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 42px;
  bottom: 229px;
  opacity: 0.25;
  animation: zump 2s linear infinite;
}
@media (max-width: 1599px) {
  .about-one__shape-2 {
    right: 20px;
    max-width: 100px;
  }
}
@media (max-width: 1399px) {
  .about-one__shape-2 {
    display: none;
  }
}









.about-two {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.about-two .container {
  position: relative;
  z-index: 1;
}
.about-two__image {
  position: relative;
}
@media (max-width: 991px) {
  .about-two__image {
    max-width: 550px;
  }
}
.about-two__image__one {
  position: relative;
  display: table;
  z-index: 1;
}
.about-two__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: var(--sofiarc-radius, 20px);
}
.about-two__image__two {
  padding: 10px;
  display: table;
  position: absolute;
  top: 122px;
  right: -19px;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: var(--sofiarc-radius, 20px);
  z-index: 1;
}
@media (max-width: 1199px) {
  .about-two__image__two {
    top: 180px;
    right: 0;
  }
}
@media (max-width: 480px) {
  .about-two__image__two {
    margin-top: 30px;
    position: static;
  }
}
.about-two__image__two__inner {
  position: relative;
  padding: 60px 0 0 0;
  background-color: var(--sofiarc-base, #33C1ED);
  border-radius: inherit;
}
.about-two__image__two__inner > img {
  position: relative;
  left: -37px;
  max-width: 100%;
  height: auto;
  z-index: 1;
}
@media (max-width: 480px) {
  .about-two__image__two__inner > img {
    left: -15px;
  }
}
.about-two__image__two__shape-box {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  overflow: hidden;
}
.about-two__image__two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 31px;
  right: 29px;
  animation: rotate 4s linear infinite;
}
.about-two__image__two__bg-top {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -66px;
  left: -71px;
  transform: rotate(-135deg);
  border-radius: 260px 260px 10px 260px;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.1);
}
.about-two__image__two__bg-top__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.15);
}
.about-two__image__two__bg-top__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.2);
}
.about-two__image__two__bg-bottom {
  width: 223px;
  height: 223px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -71px;
  bottom: -64px;
  transform: rotate(45deg);
  border-radius: 260px 260px 10px 260px;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.1);
}
.about-two__image__two__bg-bottom__1 {
  width: 174px;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.15);
}
.about-two__image__two__bg-bottom__2 {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  background-color: RGBA(var(--sofiarc-primary-rgb, 44, 81, 163), 0.2);
}
.about-two__image__three {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 17px;
  right: 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .about-two__image__three {
    display: none;
  }
}
.about-two__image__shape {
  width: 482px;
  height: 370px;
  position: absolute;
  left: -38px;
  bottom: -154px;
  background-color: var(--sofiarc-white2, #ECF0F5);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -406 264 -544 55 -87 153 -228 186 -267 14 -17 40 -48 56 -70 75 -97 253 -280 395 -405 72 -64 353 -279 363 -279 3 0 34 -19 69 -43 89 -59 100 -66 123 -77 11 -5 47 -25 80 -44 130 -75 451 -226 545 -256 14 -5 50 -18 80 -30 30 -12 69 -25 85 -30 29 -8 56 -17 135 -45 19 -7 64 -21 100 -30 36 -10 85 -23 110 -30 88 -26 151 -41 390 -91 36 -7 110 -20 165 -28 55 -8 136 -20 180 -27 161 -24 299 -31 710 -36 507 -6 647 2 1065 63 178 25 332 56 510 100 52 13 106 26 120 29 101 24 393 114 500 155 30 12 66 25 80 30 14 4 36 12 50 18 14 5 45 18 70 27 25 10 59 23 75 31 17 7 53 23 80 35 50 22 392 191 430 212 23 14 170 102 199 120 121 75 369 252 416 296 9 9 48 42 87 74 67 55 257 245 298 299 11 15 41 53 66 85 247 312 477 799 604 1276 8 31 22 81 30 110 8 30 15 62 15 72 0 10 6 41 14 69 24 85 73 404 82 529 4 62 10 90 20 94 21 8 21 748 0 756 -10 4 -16 32 -20 94 -10 129 -52 395 -82 516 -53 215 -72 281 -90 325 -8 18 -14 39 -14 47 0 8 -6 29 -14 47 -8 18 -29 69 -47 113 -173 429 -458 778 -807 989 -82 49 -237 126 -254 126 -8 0 -18 4 -23 8 -32 28 -321 106 -438 118 -37 3 -60 11 -64 20 -8 21 -523 21 -523 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 690.000000"><g transform="translate(0.000000,690.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M6610 6886 c0 -10 -19 -16 -67 -20 -134 -12 -425 -82 -583 -141 -161 -60 -422 -182 -527 -246 -35 -22 -65 -39 -68 -39 -12 0 -245 -165 -424 -299 -176 -132 -280 -207 -329 -236 -9 -6 -45 -29 -80 -53 -35 -23 -65 -42 -68 -42 -2 0 -23 -12 -47 -27 -55 -36 -72 -45 -197 -109 -305 -154 -642 -258 -1070 -328 -222 -36 -508 -76 -545 -76 -16 0 -77 -7 -135 -15 -58 -9 -154 -22 -215 -31 -285 -39 -364 -52 -525 -85 -30 -6 -75 -15 -100 -20 -58 -10 -157 -34 -201 -47 -19 -5 -61 -18 -94 -27 -33 -9 -71 -22 -85 -27 -14 -5 -57 -20 -96 -33 -40 -13 -80 -28 -90 -33 -11 -5 -55 -27 -99 -48 -259 -123 -444 -288 -620 -554 -78 -117 -174 -300 -210 -400 -41 -114 -77 -229 -84 -270 -5 -25 -13 -65 -19 -90 -25 -102 -32 -203 -32 -426 0 -129 5 -268 10 -307 19 -134 66 -338 100 -432 12 -33 25 -73 29 -90 26 -94 178 -406 264 -544 55 -87 153 -228 186 -267 14 -17 40 -48 56 -70 75 -97 253 -280 395 -405 72 -64 353 -279 363 -279 3 0 34 -19 69 -43 89 -59 100 -66 123 -77 11 -5 47 -25 80 -44 130 -75 451 -226 545 -256 14 -5 50 -18 80 -30 30 -12 69 -25 85 -30 29 -8 56 -17 135 -45 19 -7 64 -21 100 -30 36 -10 85 -23 110 -30 88 -26 151 -41 390 -91 36 -7 110 -20 165 -28 55 -8 136 -20 180 -27 161 -24 299 -31 710 -36 507 -6 647 2 1065 63 178 25 332 56 510 100 52 13 106 26 120 29 101 24 393 114 500 155 30 12 66 25 80 30 14 4 36 12 50 18 14 5 45 18 70 27 25 10 59 23 75 31 17 7 53 23 80 35 50 22 392 191 430 212 23 14 170 102 199 120 121 75 369 252 416 296 9 9 48 42 87 74 67 55 257 245 298 299 11 15 41 53 66 85 247 312 477 799 604 1276 8 31 22 81 30 110 8 30 15 62 15 72 0 10 6 41 14 69 24 85 73 404 82 529 4 62 10 90 20 94 21 8 21 748 0 756 -10 4 -16 32 -20 94 -10 129 -52 395 -82 516 -53 215 -72 281 -90 325 -8 18 -14 39 -14 47 0 8 -6 29 -14 47 -8 18 -29 69 -47 113 -173 429 -458 778 -807 989 -82 49 -237 126 -254 126 -8 0 -18 4 -23 8 -32 28 -321 106 -438 118 -37 3 -60 11 -64 20 -8 21 -523 21 -523 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 480px) {
  .about-two__image__shape {
    display: none;
  }
}
.about-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 293px;
  left: 139px;
  opacity: 0.25;
  animation: zump 2s linear infinite;
}
@media (max-width: 1799px) {
  .about-two__shape {
    left: 80px;
  }
}
@media (max-width: 1599px) {
  .about-two__shape {
    left: 10px;
  }
}
@media (max-width: 1199px) {
  .about-two__shape {
    display: none;
  }
}
.about-two__content {
  padding-left: 51px;
}
@media (max-width: 1199px) {
  .about-two__content {
    padding-left: 0;
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .about-two__content {
    margin-top: 180px;
  }
}
@media (max-width: 480px) {
  .about-two__content {
    margin-top: 0;
  }
}
.about-two .sec-title {
  margin-bottom: 21px;
}
.about-two__text {
  margin-bottom: 24px;
  font-weight: 400;
}
.about-two__list {
  margin-bottom: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}
.about-two__list li {
  width: calc(50% - 60px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sofiarc-black, #0A2241);
  text-transform: capitalize;
  line-height: 1.875;
}
@media (max-width: 1199px) {
  .about-two__list li {
    width: calc(50% - 15px);
  }
}
@media (max-width: 575px) {
  .about-two__list li {
    width: 100%;
  }
}
.about-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
}






/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-card {
  position: relative;
  border-radius: 30px;
}
.service-card__image {
  position: relative;
  border-radius: 30px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 969.000000"><g transform="translate(0.000000,969.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M577 9676 c-3 -8 -23 -18 -44 -22 -21 -3 -83 -28 -139 -55 -190 -92 -323 -256 -380 -467 -12 -45 -14 -666 -14 -4297 0 -3749 2 -4251 15 -4302 27 -105 99 -234 173 -311 70 -72 186 -153 256 -179 126 -45 -94 -43 4046 -43 3442 0 3906 2 3957 15 105 27 234 99 311 173 104 100 184 235 207 350 4 18 13 36 21 39 21 8 21 5778 0 5786 -8 3 -17 21 -21 39 -9 48 -23 84 -64 168 -28 58 -57 96 -128 168 -50 50 -96 92 -102 92 -5 0 -29 13 -53 28 -24 16 -81 42 -128 58 l-85 29 -885 6 c-941 6 -887 3 -1032 52 -148 51 -302 191 -381 347 -89 176 -87 153 -87 973 0 688 -1 722 -20 798 -11 43 -26 91 -32 106 -32 76 -100 174 -163 238 -96 97 -182 146 -340 193 -16 5 -29 15 -28 21 2 8 -632 11 -2426 11 -2109 0 -2430 -2 -2434 -14z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 969.000000"><g transform="translate(0.000000,969.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M577 9676 c-3 -8 -23 -18 -44 -22 -21 -3 -83 -28 -139 -55 -190 -92 -323 -256 -380 -467 -12 -45 -14 -666 -14 -4297 0 -3749 2 -4251 15 -4302 27 -105 99 -234 173 -311 70 -72 186 -153 256 -179 126 -45 -94 -43 4046 -43 3442 0 3906 2 3957 15 105 27 234 99 311 173 104 100 184 235 207 350 4 18 13 36 21 39 21 8 21 5778 0 5786 -8 3 -17 21 -21 39 -9 48 -23 84 -64 168 -28 58 -57 96 -128 168 -50 50 -96 92 -102 92 -5 0 -29 13 -53 28 -24 16 -81 42 -128 58 l-85 29 -885 6 c-941 6 -887 3 -1032 52 -148 51 -302 191 -381 347 -89 176 -87 153 -87 973 0 688 -1 722 -20 798 -11 43 -26 91 -32 106 -32 76 -100 174 -163 238 -96 97 -182 146 -340 193 -16 5 -29 15 -28 21 2 8 -632 11 -2426 11 -2109 0 -2430 -2 -2434 -14z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.service-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 34, 65, 0) 0%, #0A2241 100%);
  border-radius: inherit;
}
.service-card__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.service-card__icon {
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 25px;
  font-size: 40px;
  color: var(--sofiarc-base, #33C1ED);
  z-index: 1;
  transition: all 500ms ease;
}
.service-card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
@media (max-width: 360px) {
  .service-card__icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
.service-card__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: var(--sofiarc-primary, #2C51A3);
  transition: transform 400ms ease, opacity 400ms ease;
}
.service-card:hover .service-card__icon {
  color: var(--sofiarc-white, #FFFFFF);
}
.service-card:hover .service-card__icon::after {
  opacity: 1;
  transform: scale(1);
}
.service-card__content {
  width: 100%;
  padding: 30px 30px 23px;
  position: relative;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 375px) {
  .service-card__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.service-card__content__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.service-card__total-doctors {
  margin-bottom: 12px;
  padding: 6px 11px;
  display: inline-block;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 100px;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__total-doctors {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .service-card__total-doctors {
    font-size: 14px;
  }
}
.service-card:hover .service-card__total-doctors {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}
.service-card__title {
  margin: 0;
  font-size: 24px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 700;
  line-height: 1.333;
  text-transform: capitalize;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__title {
    font-size: 21px;
  }
}
@media (max-width: 375px) {
  .service-card__title {
    font-size: 21px;
  }
}
.service-card__title:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.service-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card__title a:hover {
  background-size: 100% 1px;
}
.service-card__link {
  display: inline-flex;
  font-size: 20px;
  color: var(--sofiarc-white, #FFFFFF);
  opacity: 0;
  transition: all 500ms ease;
}
.service-card__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__link {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .service-card__link {
    font-size: 14px;
  }
}
.service-card__link:hover {
  color: var(--sofiarc-base, #33C1ED);
  transform: rotate(45deg);
}
.service-card:hover .service-card__link {
  opacity: 1;
}

.service-card-two {
  position: relative;
  border-radius: 30px;
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .service-card-two {
    background-color: var(--sofiarc-white, #FFFFFF);
  }
}
.service-card-two::after {
  content: "";
  width: 160px;
  height: 135px;
  background-color: var(--sofiarc-black, #0A2241);
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 30px 0 0;
  z-index: -1;
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .service-card-two::after {
    display: none;
  }
}
.service-card-two:hover::after {
  background-color: var(--sofiarc-base, #33C1ED);
}
.service-card-two__bg {
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 30px;
}
@media (min-width: 1200px) {
  .service-card-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 627.000000"><g transform="translate(0.000000,627.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M350 6260 c0 -6 -12 -15 -27 -21 -153 -60 -255 -157 -303 -290 -20 -53 -20 -93 -20 -2826 0 -1995 3 -2780 11 -2800 61 -155 156 -254 290 -303 53 -20 100 -20 4191 -20 2989 0 4145 3 4165 11 78 31 141 68 182 109 58 56 108 132 122 182 5 22 17 42 25 45 12 4 14 265 14 1979 0 1737 -2 1974 -15 1974 -8 0 -17 12 -21 28 -22 98 -135 227 -250 283 l-69 34 -590 6 c-329 3 -608 10 -630 16 -111 27 -255 135 -299 223 -57 114 -56 105 -56 523 0 321 -3 400 -16 459 -43 189 -134 291 -327 367 -15 6 -25 16 -22 21 4 7 -1066 10 -3174 10 -2159 0 -3181 -3 -3181 -10z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 627.000000"><g transform="translate(0.000000,627.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M350 6260 c0 -6 -12 -15 -27 -21 -153 -60 -255 -157 -303 -290 -20 -53 -20 -93 -20 -2826 0 -1995 3 -2780 11 -2800 61 -155 156 -254 290 -303 53 -20 100 -20 4191 -20 2989 0 4145 3 4165 11 78 31 141 68 182 109 58 56 108 132 122 182 5 22 17 42 25 45 12 4 14 265 14 1979 0 1737 -2 1974 -15 1974 -8 0 -17 12 -21 28 -22 98 -135 227 -250 283 l-69 34 -590 6 c-329 3 -608 10 -630 16 -111 27 -255 135 -299 223 -57 114 -56 105 -56 523 0 321 -3 400 -16 459 -43 189 -134 291 -327 367 -15 6 -25 16 -22 21 4 7 -1066 10 -3174 10 -2159 0 -3181 -3 -3181 -10z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: rop center;
    mask-position: rop center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
.service-card-two__content {
  position: relative;
  padding: 30px;
  z-index: 1;
}
@media (max-width: 390px) {
  .service-card-two__content {
    padding: 25px;
  }
}
.service-card-two__image {
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .service-card-two__image {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .service-card-two__image {
    display: inline-block !important;
    width: auto !important;
    max-width: 100%;
    height: auto;
  }
}
.service-card-two__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
}
@media (max-width: 390px) {
  .service-card-two__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .service-card-two__title {
    margin: 0;
    padding: 30px 0 112px 60px;
    position: absolute;
    right: 0;
    bottom: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}
.service-card-two__title:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.service-card-two__title a {
  color: inherit;
}
@media (max-width: 1199px) {
  .service-card-two__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .service-card-two__title a:hover {
    background-size: 100% 1px;
  }
}
.service-card-two__link {
  display: inline-flex;
  font-size: 30px;
  color: var(--sofiarc-base, #33C1ED);
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .service-card-two__link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--sofiarc-white, #FFFFFF);
    background-color: var(--sofiarc-base, #33C1ED);
    border-radius: 50%;
  }
}
@media (min-width: 1200px) {
  .service-card-two__link {
    position: absolute;
    top: 37px;
    right: 47px;
    z-index: 1;
  }
}
.service-card-two__link:hover {
  transform: rotate(45deg);
}
@media (max-width: 1199px) {
  .service-card-two__link:hover {
    background-color: var(--sofiarc-primary, #2C51A3);
  }
}
.service-card-two__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 1200px) {
  .service-card-two:hover .service-card-two__link {
    color: var(--sofiarc-white, #FFFFFF);
  }
}

.service-card-three {
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: var(--sofiarc-radius, 20px);
}
.service-card-three__image {
  border-radius: var(--sofiarc-radius, 20px) var(--sofiarc-radius, 20px) 0 0;
}
.service-card-three__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.service-card-three__content {
  position: relative;
  padding: 69px 30px 20px;
  border-left: 1px solid var(--sofiarc-border-color, #D9E1EB);
  border-right: 1px solid var(--sofiarc-border-color, #D9E1EB);
  border-bottom: 1px solid var(--sofiarc-border-color, #D9E1EB);
  border-radius: 0 0 var(--sofiarc-radius, 20px) var(--sofiarc-radius, 20px);
}
.service-card-three__icon {
  position: absolute;
  top: -52px;
  left: 25px;
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--sofiarc-white, #FFFFFF);
  border-radius: 50%;
  background-color: var(--sofiarc-base, #33C1ED);
  border: 5px solid var(--sofiarc-white, #FFFFFF);
  transition: all 500ms ease;
}
.service-card-three__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-card-three:hover .service-card-three__icon {
  color: var(--sofiarc-base, #33C1ED);
  border-color: var(--sofiarc-base, #33C1ED);
  background-color: var(--sofiarc-white, #FFFFFF);
}
.service-card-three__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.375;
  text-transform: capitalize;
}
.service-card-three__title:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.service-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card-three__title a:hover {
  background-size: 100% 1px;
}
.service-card-three__text {
  margin: 0;
  font-weight: 400;
}

.services-section{
 position: relative;
  padding-top: 100px;
    background-color:#5c88a3;

}
.serviceshead{
   position: relative;
  padding-top: 100px;
}
.services-two {
  position: relative;
  padding-top: 297px;
  background-color: #5c88a3;
}
@media (max-width: 767px) {
  .services-two {
    padding-top: 277px;
  }
}
@media (max-width: 575px) {
  .services-two {
    padding-top: 257px;
  }
}
.services-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.1;
}
.services-two .container {
  position: relative;
  z-index: 1;
}
.services-two__top {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid RGBA(var(--sofiarc-border-color-rgb, 217, 225, 235), 0.2);
}
.services-two .sec-title__tagline, .services-two .sec-title__title {
  color: var(--sofiarc-white, #FFFFFF);
}
.services-two__custome-navs {
  position: relative;
  top: -11px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 991px) {
  .services-two__custome-navs {
    top: 0;
  }
}
.services-two__custome-navs button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--sofiarc-black, #0A2241);
  background-color: var(--sofiarc-white, #FFFFFF);
  border: 1px solid var(--sofiarc-border-color, #D9E1EB);
  border-radius: 50%;
  transition: all 400ms ease;
}
.services-two__custome-navs button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-two__custome-navs button:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
  border-color: var(--sofiarc-base, #33C1ED);
}
@media (max-width: 767px) {
  .services-two__custome-navs button {
    width: 55px;
    height: 55px;
  }
}
.services-two__custome-navs button span {
  border: none;
  outline: none;
  color: inherit;
}
.services-two__container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .services-two__container {
    padding-right: 0;
    margin-left: calc((100% - 1200px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
  }
}
.services-two__bottom {
  margin-top: 60px;
  text-align: center;
}
.services-two__bottom__text {
  margin: 0;
  padding: 7px 20px;
  display: inline-block;
  color: var(--sofiarc-white, #FFFFFF);
  text-transform: capitalize;
  line-height: 1.625;
  border-radius: 100px;
  border: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.2);
}
.services-two__bottom__text a {
color: #ffffff; 
 font-weight: 800;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.services-two__bottom__text a:hover {
  background-size: 100% 1px;
}
.services-two__shape {
  position: absolute;
  top: -174px;
  right: 28px;
  animation: moveHorizontal 2s linear infinite;
}
@media (max-width: 1199px) {
  .services-two__shape {
    display: none;
  }
}
.services-two--home3 {
  padding: 0;
  margin-top: 60px;
  background-color: transparent;
}
@media (min-width: 1350px) {
  .services-two--home3 .services-two__carousel.owl-carousel .owl-nav {
    margin: 0;
    width: 100%;
    position: absolute;
    top: 119px;
    left: 0;
    justify-content: space-between;
    z-index: 1;
  }
}
.services-two--home3 .services-two__carousel.owl-carousel .owl-nav button {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.services-two--home3 .services-two__carousel.owl-carousel .owl-nav button:hover {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
  border-color: var(--sofiarc-base, #33C1ED);
}
@media (min-width: 1350px) {
  .services-two--home3 .services-two__carousel.owl-carousel .owl-nav button.owl-prev {
    left: -80px;
  }
}
@media (min-width: 1400px) {
  .services-two--home3 .services-two__carousel.owl-carousel .owl-nav button.owl-prev {
    left: -100px;
  }
}
@media (min-width: 1350px) {
  .services-two--home3 .services-two__carousel.owl-carousel .owl-nav button.owl-next {
    right: -80px;
  }
}
@media (min-width: 1400px) {
  .services-two--home3 .services-two__carousel.owl-carousel .owl-nav button.owl-next {
    right: -100px;
  }
}
.services-two--home3 .service-card-two {
  box-shadow: 0px 4px 50px rgba(54, 193, 236, 0.1);
}


/* why choose---------------------------------------------------- */

.why-choose-two {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.why-choose-two .container {
  position: relative;
  z-index: 1;
}
.why-choose-two__inner {
  position: relative;
  padding: 0 40px 78px;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .why-choose-two__inner {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .why-choose-two__inner {
    padding: 30px;
  }
}
@media (max-width: 430px) {
  .why-choose-two__inner {
    padding: 30px 20px 20px;
  }
}
.why-choose-two__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--sofiarc-white2, #ECF0F5);
  border-radius: inherit;
}
@media (min-width: 1200px) {
  .why-choose-two__bg {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 396.000000"><g transform="translate(0.000000,396.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M140 3946 c0 -8 -10 -18 -22 -21 -33 -10 -87 -65 -104 -104 -12 -28 -14 -302 -14 -1852 0 -1380 3 -1825 12 -1846 17 -41 68 -92 107 -109 51 -21 8691 -21 8742 0 39 17 94 71 104 104 3 12 13 22 21 22 12 0 14 248 14 1830 0 1610 -2 1830 -15 1830 -8 0 -17 11 -21 24 -7 28 -70 91 -101 101 -13 3 -23 13 -23 21 0 12 -143 14 -1030 14 -854 0 -1030 -2 -1030 -13 0 -8 -11 -19 -24 -25 -36 -16 -73 -72 -81 -122 -16 -106 -46 -155 -115 -188 -32 -16 -186 -17 -2095 -17 -1988 0 -2061 1 -2094 19 -68 36 -101 88 -101 158 0 53 -34 116 -77 143 -18 11 -32 26 -33 33 0 9 -209 12 -1010 12 -870 0 -1010 -2 -1010 -14z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
.why-choose-two__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.3;
  border-radius: inherit;
}
.why-choose-two__tab-box {
  position: relative;
  display: block;
  z-index: 1;
}
.why-choose-two__tab-box .tab-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 1;
}
.why-choose-two__tab-box .tab-buttons .tab-btn {
  position: relative;
  padding: 3px 15px;
  display: inline-block;
  background-color: transparent;
  font-size: 14px;
  color: var(--sofiarc-black, #0A2241);
  text-align: center;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.75;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--sofiarc-border-color, #D9E1EB);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.why-choose-two__tab-box .tab-buttons .tab-btn::before, .why-choose-two__tab-box .tab-buttons .tab-btn::after {
  content: "";
  background-color: var(--sofiarc-base, #33C1ED);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.why-choose-two__tab-box .tab-buttons .tab-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.why-choose-two__tab-box .tab-buttons .tab-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.why-choose-two__tab-box .tab-buttons .tab-btn:hover {
  color: var(--sofiarc-white, #FFFFFF);
  border-color: var(--sofiarc-base, #33C1ED);
}
.why-choose-two__tab-box .tab-buttons .tab-btn:hover::before, .why-choose-two__tab-box .tab-buttons .tab-btn:hover::after {
  width: calc(50% + 6px);
}
.why-choose-two__tab-box .tab-buttons .tab-btn.active-btn {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: var(--sofiarc-base, #33C1ED);
}
.why-choose-two__tab-box .tabs-content {
  margin-top: 65px;
  position: relative;
  display: block;
}
@media (max-width: 1199px) {
  .why-choose-two__tab-box .tabs-content {
    margin-top: 40px;
  }
}
.why-choose-two__tab-box .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.why-choose-two__tab-box .tabs-content .tab.active-tab {
  display: block;
}
@media (min-width: 1200px) {
  .why-choose-two__tab-col-1 {
    flex: 0 0 auto;
    width: 54.643%;
  }
}
@media (min-width: 1200px) {
  .why-choose-two__tab-col-2 {
    flex: 0 0 auto;
    width: 45.357%;
  }
}
.why-choose-two__image {
  display: grid;
  grid-template-columns: 376px 176px;
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .why-choose-two__image {
    grid-template-columns: 1fr;
  }
}
.why-choose-two__image img + img {
  margin-top: 30px;
}
.why-choose-two__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .why-choose-two__image__two {
    display: none;
  }
}
.why-choose-two__content {
  padding: 32px 40px;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 30px;
}
@media (max-width: 575px) {
  .why-choose-two__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 430px) {
  .why-choose-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.why-choose-two__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.666;
}
.why-choose-two__text {
  margin-bottom: 35px;
  font-weight: 400;
}
.why-choose-two__list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}
.why-choose-two__list li {
  width: calc(50% - 15px);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sofiarc-black, #0A2241);
  text-transform: capitalize;
  line-height: 1.875;
}
@media (max-width: 1199px) {
  .why-choose-two__list li {
    width: 100%;
  }
}
.why-choose-two__list__icon {
  position: relative;
  top: 1px;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
}
.why-choose-two__shape {
  width: 18px;
  height: 18px;
  position: relative;
  position: absolute;
  animation: 3s rotate linear infinite;
}
@media (max-width: 1199px) {
  .why-choose-two__shape {
    display: none;
  }
}
.why-choose-two__shape--1 {
  right: -70px;
  bottom: 290px;
}
@media (max-width: 1399px) {
  .why-choose-two__shape--1 {
    right: -40px;
  }
}
.why-choose-two__shape--2 {
  top: 243px;
  right: 115px;
}
.why-choose-two__shape::before, .why-choose-two__shape::after {
  content: "";
  width: 18px;
  height: 6px;
  background-color: RGBA(var(--sofiarc-base-rgb, 51, 193, 237), 0.5);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-choose-two__shape::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.why-choose-two__shape-3 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
@media (max-width: 1399px) {
  .why-choose-two__shape-3 {
    left: -50px;
  }
}
@media (max-width: 1199px) {
  .why-choose-two__shape-3 {
    display: none;
  }
}
.why-choose-two__shape-4 {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 91px;
  bottom: 371px;
  animation: shapeMover 3s linear infinite;
}
@media (max-width: 1599px) {
  .why-choose-two__shape-4 {
    right: 60px;
  }
}
@media (max-width: 1399px) {
  .why-choose-two__shape-4 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-card {
  position: relative;
}
.testimonial-card__image {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .testimonial-card__image {
    top: 30px;
    right: 30px;
  }
}
.testimonial-card__image img {
  width: 86px !important;
  height: 86px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .testimonial-card__image img {
    width: 70px !important;
    height: 70px;
  }
}
.testimonial-card__content {
  padding: 32px 30px 33px;
  background-color: var(--sofiarc-white2, #ECF0F5);
  border-radius: 30px;
  transition: all 500ms ease;
}
@media (min-width: 1200px) {
  .testimonial-card__content {
    -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M577 8986 c-3 -8 -23 -18 -44 -21 -21 -4 -84 -29 -139 -56 -191 -93 -323 -256 -380 -467 -22 -82 -21 -7823 1 -7909 8 -32 35 -99 61 -150 91 -181 257 -314 462 -369 82 -22 7823 -21 7909 1 102 26 237 101 313 174 102 100 182 235 205 349 4 18 13 36 21 39 21 8 21 5173 0 5173 -9 0 -18 19 -25 53 -7 28 -29 88 -51 132 -97 195 -285 339 -505 387 -32 7 -331 13 -830 17 -762 6 -781 7 -840 28 -33 12 -74 27 -90 35 -58 25 -172 107 -218 157 -47 50 -137 181 -137 199 0 6 -6 23 -14 39 -50 98 -50 91 -56 868 -7 728 -8 756 -44 851 -78 211 -287 402 -486 445 -31 7 -50 16 -50 25 0 21 -5055 21 -5063 0z"/></g></svg>');
    mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M577 8986 c-3 -8 -23 -18 -44 -21 -21 -4 -84 -29 -139 -56 -191 -93 -323 -256 -380 -467 -22 -82 -21 -7823 1 -7909 8 -32 35 -99 61 -150 91 -181 257 -314 462 -369 82 -22 7823 -21 7909 1 102 26 237 101 313 174 102 100 182 235 205 349 4 18 13 36 21 39 21 8 21 5173 0 5173 -9 0 -18 19 -25 53 -7 28 -29 88 -51 132 -97 195 -285 339 -505 387 -32 7 -331 13 -830 17 -762 6 -781 7 -840 28 -33 12 -74 27 -90 35 -58 25 -172 107 -218 157 -47 50 -137 181 -137 199 0 6 -6 23 -14 39 -50 98 -50 91 -56 868 -7 728 -8 756 -44 851 -78 211 -287 402 -486 445 -31 7 -50 16 -50 25 0 21 -5055 21 -5063 0z"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: auto;
    mask-size: auto;
  }
}
.testimonial-card:hover .testimonial-card__content {
  background-color: var(--sofiarc-base, #33C1ED);
}
.testimonial-card__quote-icon {
  margin-bottom: 31px;
  display: inline-flex;
  font-size: 40px;
  color: var(--sofiarc-base, #33C1ED);
  transition: all 500ms ease;
}
.testimonial-card__quote-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 1199px) {
  .testimonial-card__quote-icon {
    margin-bottom: 50px;
  }
}
.testimonial-card__identity {
  margin-bottom: 14px;
}

.testimonial-card__designation {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.testimonial-card__quote {
  margin-bottom: 34px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 500ms ease;
}
@media (max-width: 991px) {
  .testimonial-card__quote {
    font-size: 18px;
  }
}
.testimonial-card__quote span {
  font-weight: 700;
}
.testimonial-card .sofiarc-ratings {
  gap: 5px;
}
.testimonial-card .sofiarc-ratings__icon {
  color: var(--sofiarc-primary, #2C51A3);
}
.testimonial-card:hover .testimonial-card__quote-icon, .testimonial-card:hover .testimonial-card__name, .testimonial-card:hover .testimonial-card__designation, .testimonial-card:hover .testimonial-card__quote, .testimonial-card:hover .sofiarc-ratings__icon {
  color: var(--sofiarc-white, #FFFFFF);
}

.testimonial-card-two {
  position: relative;
  padding: 30px 40px 0px;
  border-radius: var(--sofiarc-radius, 20px);
  background-color: var(--sofiarc-white2, #ECF0F5);
}
@media (max-width: 767px) {
  .testimonial-card-two {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.testimonial-card-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  opacity: 0;
  mix-blend-mode: multiply;
  border-radius: inherit;
  transition: all 500ms ease;
}
.testimonial-card-two:hover .testimonial-card-two__bg {
  opacity: 0.2;
}
.testimonial-card-two__content {
  position: relative;
  z-index: 1;
}
.testimonial-card-two__top {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.testimonial-card-two__quote-icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--sofiarc-primary, #2C51A3);
}
.testimonial-card-two__quote-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.testimonial-card-two__ratings {
  position: relative;
  padding: 13px;
  background-color: var(--sofiarc-base, #33C1ED);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
  transition: all 500ms ease;
}
.testimonial-card-two__ratings::before, .testimonial-card-two__ratings::after {
  content: "";
  background-color: var(--sofiarc-primary, #2C51A3);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.testimonial-card-two__ratings::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.testimonial-card-two__ratings::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.testimonial-card-two:hover .testimonial-card-two__ratings::before, .testimonial-card-two:hover .testimonial-card-two__ratings::after {
  width: calc(50% + 6px);
}
.testimonial-card-two .sofiarc-ratings {
  gap: 7px;
}
.testimonial-card-two .sofiarc-ratings__icon {
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
}
.testimonial-card-two__quote {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-two__quote {
    margin-bottom: 25px;
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .testimonial-card-two__quote {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-two__quote {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonial-card-two__quote {
    margin-bottom: 30px;
  }
}
@media (max-width: 430px) {
  .testimonial-card-two__quote {
    font-size: 14px;
  }
}
.testimonial-card-two__bottom {
  display: flex;
  align-items: flex-end;
  gap: 40px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial-card-two__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .testimonial-card-two__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card-two__identity {
  position: relative;
  padding: 18px 24px 15px;
  border-radius: 20px 20px 0px 0px;
  background-color: #0066a1;
  overflow: hidden;
  z-index: 1;
}
.testimonial-card-two__identity::before, .testimonial-card-two__identity::after {
  content: "";
  background-color: #1CB6A3;
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.testimonial-card-two__identity::before {
  left: -5px;
  border-radius: 20px 0 0 0;
}
.testimonial-card-two__identity::after {
  right: -5px;
  border-radius: 0 20px 0 0;
}
.testimonial-card-two:hover .testimonial-card-two__identity::before, .testimonial-card-two:hover .testimonial-card-two__identity::after {
  width: calc(50% + 6px);
}
.testimonial-card-two__name {
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.testimonial-card-two__designation {
  margin: 0;
  font-size: 15px;
  color: var(--sofiarc-border-color, #D9E1EB);
  text-transform: capitalize;
}
.testimonial-card-two__image {
  position: relative;
  flex-shrink: 0;
}
.testimonial-card-two__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -10px;
  left: 10px;
  border: 2px solid #1CB6A3;
  border-radius: 1000px 1000px 0px 0px;
}
.testimonial-card-two__image img {
  position: relative;
  max-width: 100%;
  height: auto;
  border-radius: 1000px 1000px 0px 0px;
  z-index: 1;
}




.testimonials-two {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.testimonials-two .container {
  position: relative;
  z-index: 1;
}
.testimonials-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 26px;
  bottom: 55px;
  opacity: 0.3;
  animation: moveHorizontal 2s linear infinite;
}
@media (max-width: 767px) {
  .testimonials-two__shape {
    display: none;
  }
}








/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  padding-top: 52px;
  padding-bottom: 62px;
  background-color: var(--sofiarc-base, #33C1ED);
}
.funfact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.funfact-one .container {
  position: relative;
  z-index: 1;
}
.funfact-one__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.funfact-one__item {
  position: relative;
}
.funfact-one__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 25px);
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translateY(-50%);
  background-color: RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 1199px) {
  .funfact-one__item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .funfact-one__item {
    width: calc(50% - 20px);
    flex: 0 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .funfact-one__item {
    width: 100%;
  }
}
.funfact-one__item__number {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 64px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 991px) {
  .funfact-one__item__number {
    text-align: center;
    justify-content: center;
    font-size: 55px;
  }
}
.funfact-one__item__title {
  margin: 0;
  font-size: 18px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.555;
}
.funfact-one--home2 {
  padding: 0;
  margin-bottom: -169px;
  background-color: transparent;
}
.funfact-one--home2 .funfact-one__inner {
  padding: 21px 39px 32px;
  position: relative;
  background-color: var(--sofiarc-base, #33C1ED);
  border-radius: 0px 0px 30px 30px;
}

.funfact-one--home2 .funfact-one__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.6;
  border-radius: inherit;
}
.funfact-one--home2 .funfact-one__row {
  position: relative;
  z-index: 1;
}
.funfact-one--home3 {
  padding-top: 0;
  padding-bottom: 53px;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.funfact-one--home3 .funfact-one__inner {
  position: relative;
}
.funfact-one--home3 .funfact-one__inner::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--sofiarc-border-color, #D9E1EB);
  position: absolute;
  left: 0;
  bottom: -53px;
}
.funfact-one--home3 .funfact-one__item::after {
  background-color: var(--sofiarc-border-color, #D9E1EB);
}
.funfact-one--home3 .funfact-one__item__number {
  color: var(--sofiarc-base, #33C1ED);
}
.funfact-one--home3 .funfact-one__item__title {
  color: var(--sofiarc-black, #0A2241);
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills-one {
  background-color: var(--sofiarc-white, #FFFFFF);
}
.skills-one .container {
  position: relative;
  z-index: 1;
}
.skills-one .sec-title {
  margin-bottom: 25px;
}
.skills-one__text {
  margin-bottom: 22px;
}
.skills-one__skills .progress-box + .progress-box {
  margin-top: 26px;
}
.skills-one__image {
  position: relative;
}
.skills-one__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.skills-one__award {
  width: 121px;
  height: 121px;
  position: relative;
  position: absolute;
  left: 40px;
  bottom: 40px;
  transform: rotate(-30deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background-color: var(--sofiarc-white, #FFFFFF);
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 375px) {
  .skills-one__award {
    left: 30px;
    bottom: 30px;
  }
}
.skills-one__award::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed var(--sofiarc-white, #FFFFFF);
  border-radius: inherit;
  transition: all 500ms ease;
}
.skills-one__award__text {
  margin: 0;
  display: block;
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
  font-weight: 600;
  line-height: 1.25;
  transition: all 500ms ease;
}
.skills-one__image:hover .skills-one__award {
  background-color: var(--sofiarc-base, #33C1ED);
}
.skills-one__image:hover .skills-one__award::after {
  border-color: var(--sofiarc-base, #33C1ED);
}
.skills-one__image:hover .skills-one__award__text {
  color: var(--sofiarc-white, #FFFFFF);
}
.skills-one--about {
  background-color: var(--sofiarc-white2, #ECF0F5);
}
.skills-one--home2 {
  position: relative;
  background-color: var(--sofiarc-black, #0A2241);
}
.skills-one--home2 .skills-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.skills-one--home2 .sec-title__title,
.skills-one--home2 .skills-one__text,
.skills-one--home2 .progress-box__title {
  color: var(--sofiarc-white, #FFFFFF);
}
.skills-one--home2 .skills-one__image {
  position: relative;
  padding-left: 33px;
}
@media (max-width: 1199px) {
  .skills-one--home2 .skills-one__image {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .skills-one--home2 .skills-one__image {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .skills-one--home2 .skills-one__image {
    margin-top: 0;
  }
}
.skills-one--home2 .skills-one__image::before {
  content: "";
  width: 564px;
  height: 461px;
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translateY(-50%);
  background-image: url(../images/skills-shape-2-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}
@media (min-width: 1200px) and (max-width: 1330px) {
  .skills-one--home2 .skills-one__image::before {
    width: 500px;
    height: 400px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .skills-one--home2 .skills-one__image::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .skills-one--home2 .skills-one__image::before {
    left: 0;
  }
}
@media (max-width: 767px) {
  .skills-one--home2 .skills-one__image::before {
    width: 530px;
  }
}
@media (max-width: 575px) {
  .skills-one--home2 .skills-one__image::before {
    display: none;
  }
}
.skills-one--home2 .skills-one__image::after {
  content: "";
  width: 564px;
  height: 461px;
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translateY(-50%) rotate(15deg);
  background-color: RGBA(var(--sofiarc-base-rgb, 51, 193, 237), 0.1);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 735.000000"><g transform="translate(0.000000,735.000000) scale(0.100000,-0.100000)"  stroke="none"> <path d="M2715 7341 c9 -15 -6 -20 -91 -31 -129 -16 -261 -50 -416 -106 -354 -129 -606 -316 -750 -559 -61 -103 -75 -130 -111 -216 -49 -122 -77 -205 -97 -299 -4 -19 -12 -55 -18 -80 -35 -142 -61 -324 -86 -595 -8 -88 -20 -209 -26 -270 -6 -60 -15 -155 -20 -210 -5 -55 -14 -131 -20 -170 -6 -38 -18 -113 -26 -165 -39 -247 -113 -483 -236 -750 -33 -73 -235 -477 -287 -575 -26 -49 -77 -146 -114 -215 -36 -69 -84 -159 -106 -200 -67 -124 -149 -295 -174 -366 -110 -307 -137 -453 -137 -752 0 -204 3 -238 37 -387 27 -121 87 -282 133 -358 11 -17 23 -39 26 -47 42 -94 277 -390 370 -465 27 -22 55 -46 63 -53 25 -24 173 -117 232 -144 62 -30 150 -59 251 -82 92 -22 388 -22 495 -1 147 29 228 48 268 60 22 7 69 22 105 34 36 11 90 30 120 41 30 12 66 25 80 30 69 22 272 115 515 235 149 73 295 144 325 158 30 13 85 39 123 56 37 17 72 31 78 31 6 0 23 7 37 15 58 32 229 85 376 116 118 25 367 27 464 3 108 -27 211 -67 330 -129 150 -80 253 -152 657 -466 72 -55 139 -105 150 -110 11 -5 34 -18 50 -29 112 -72 352 -173 515 -217 209 -56 267 -63 580 -70 270 -5 385 2 540 34 400 82 669 191 1045 426 134 83 379 304 514 462 166 195 327 477 397 695 29 88 45 146 53 185 5 22 13 60 20 85 6 25 13 71 17 103 4 40 10 57 20 57 21 0 21 465 0 473 -9 4 -17 26 -20 54 -12 100 -52 258 -82 331 -8 18 -14 40 -14 50 0 9 -7 26 -15 36 -8 11 -15 26 -15 33 0 14 -94 210 -141 293 -41 73 -151 240 -208 315 -140 186 -462 524 -676 710 -44 39 -87 76 -95 84 -8 8 -55 47 -105 87 -49 39 -130 104 -178 143 -49 39 -143 113 -210 163 -107 81 -263 203 -277 218 -3 3 -27 24 -55 45 -54 44 -458 379 -516 429 -19 17 -57 49 -84 71 -26 22 -53 45 -59 50 -9 9 -303 249 -431 353 -73 59 -327 256 -376 292 -188 137 -233 170 -307 222 -45 32 -85 58 -88 58 -4 0 -23 13 -43 28 -20 16 -64 46 -99 68 -35 21 -73 46 -86 54 -21 13 -104 63 -158 95 -9 6 -39 22 -65 36 -26 15 -64 36 -83 47 -37 21 -280 142 -340 170 -103 46 -238 98 -340 131 -177 58 -165 55 -382 105 -37 9 -86 17 -110 17 -61 2 -103 13 -100 27 1 9 -62 12 -259 12 -158 0 -258 -4 -254 -9z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 735.000000"><g transform="translate(0.000000,735.000000) scale(0.100000,-0.100000)"  stroke="none"> <path d="M2715 7341 c9 -15 -6 -20 -91 -31 -129 -16 -261 -50 -416 -106 -354 -129 -606 -316 -750 -559 -61 -103 -75 -130 -111 -216 -49 -122 -77 -205 -97 -299 -4 -19 -12 -55 -18 -80 -35 -142 -61 -324 -86 -595 -8 -88 -20 -209 -26 -270 -6 -60 -15 -155 -20 -210 -5 -55 -14 -131 -20 -170 -6 -38 -18 -113 -26 -165 -39 -247 -113 -483 -236 -750 -33 -73 -235 -477 -287 -575 -26 -49 -77 -146 -114 -215 -36 -69 -84 -159 -106 -200 -67 -124 -149 -295 -174 -366 -110 -307 -137 -453 -137 -752 0 -204 3 -238 37 -387 27 -121 87 -282 133 -358 11 -17 23 -39 26 -47 42 -94 277 -390 370 -465 27 -22 55 -46 63 -53 25 -24 173 -117 232 -144 62 -30 150 -59 251 -82 92 -22 388 -22 495 -1 147 29 228 48 268 60 22 7 69 22 105 34 36 11 90 30 120 41 30 12 66 25 80 30 69 22 272 115 515 235 149 73 295 144 325 158 30 13 85 39 123 56 37 17 72 31 78 31 6 0 23 7 37 15 58 32 229 85 376 116 118 25 367 27 464 3 108 -27 211 -67 330 -129 150 -80 253 -152 657 -466 72 -55 139 -105 150 -110 11 -5 34 -18 50 -29 112 -72 352 -173 515 -217 209 -56 267 -63 580 -70 270 -5 385 2 540 34 400 82 669 191 1045 426 134 83 379 304 514 462 166 195 327 477 397 695 29 88 45 146 53 185 5 22 13 60 20 85 6 25 13 71 17 103 4 40 10 57 20 57 21 0 21 465 0 473 -9 4 -17 26 -20 54 -12 100 -52 258 -82 331 -8 18 -14 40 -14 50 0 9 -7 26 -15 36 -8 11 -15 26 -15 33 0 14 -94 210 -141 293 -41 73 -151 240 -208 315 -140 186 -462 524 -676 710 -44 39 -87 76 -95 84 -8 8 -55 47 -105 87 -49 39 -130 104 -178 143 -49 39 -143 113 -210 163 -107 81 -263 203 -277 218 -3 3 -27 24 -55 45 -54 44 -458 379 -516 429 -19 17 -57 49 -84 71 -26 22 -53 45 -59 50 -9 9 -303 249 -431 353 -73 59 -327 256 -376 292 -188 137 -233 170 -307 222 -45 32 -85 58 -88 58 -4 0 -23 13 -43 28 -20 16 -64 46 -99 68 -35 21 -73 46 -86 54 -21 13 -104 63 -158 95 -9 6 -39 22 -65 36 -26 15 -64 36 -83 47 -37 21 -280 142 -340 170 -103 46 -238 98 -340 131 -177 58 -165 55 -382 105 -37 9 -86 17 -110 17 -61 2 -103 13 -100 27 1 9 -62 12 -259 12 -158 0 -258 -4 -254 -9z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (min-width: 1200px) and (max-width: 1330px) {
  .skills-one--home2 .skills-one__image::after {
    width: 515px;
    height: 411px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .skills-one--home2 .skills-one__image::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .skills-one--home2 .skills-one__image::after {
    left: 0;
  }
}
@media (max-width: 575px) {
  .skills-one--home2 .skills-one__image::after {
    display: none;
  }
}
.skills-one--home2 .skills-one__image img {
  position: relative;
  z-index: 1;
  border-radius: 0;
  animation: moveHorizontal 2s linear infinite;
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome-one {
  position: relative;
  background-color: var(--sofiarc-white, #FFFFFF);
}
.welcome-one .container {
  position: relative;
  z-index: 1;
}
.welcome-one__inner {
  position: relative;
  padding: 55px 60px 60px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .welcome-one__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .welcome-one__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.welcome-one__inner__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: 30px;
}
.welcome-one__inner__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #007ec2 0%, rgba(46, 81, 163, 0) 100%);
  border-radius: inherit;
}
.welcome-one__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.welcome-one .sec-title {
  margin-bottom: 10px;
}
.welcome-one .sec-title__tagline, .welcome-one .sec-title__title {
  color: var(--sofiarc-white, #FFFFFF);
}
@media (max-width: 767px) {
  .welcome-one .sec-title__title br {
    display: none;
  }
}
.welcome-one__text {
  margin-bottom: 31px;
  color: var(--sofiarc-white, #FFFFFF);
}
.welcome-one .sofiarc-btn::before, .welcome-one .sofiarc-btn::after {
  background-color: var(--sofiarc-white, #FFFFFF);
}
.welcome-one .sofiarc-btn:hover, .welcome-one .sofiarc-btn:hover .sofiarc-btn__icon {
  color: var(--sofiarc-base, #33C1ED);
}
.welcome-one__image {
  width: 100%;
  max-width: 569px;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 1000px 30px 30px 0px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .welcome-one__image {
    display: none;
  }
}
.welcome-one__image__bg {
  width: calc(100% - 20px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  border-radius: inherit;
}
.welcome-one--home2 {
  padding-top: 181px;
  background-color: var(--sofiarc-white2, #ECF0F5);
}
.welcome-one--home2 .welcome-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: hard-light;
  opacity: 0.2;
}
/* gallery------------------------------------------------------- */
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 103, 163, 0.1),
    rgba(10, 103, 163, 0.8)
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__overlay h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  background-color: var(--sofiarc-white, #FFFFFF);
  counter-reset: chooseNumber;
}
.work-process-one__inner {
  position: relative;
}
.work-process-one .sec-title {
  margin-bottom: 63px;
}
.work-process-one .row {
  position: relative;
  z-index: 1;
}
.work-process-one__item {
  text-align: center;
}
@media (min-width: 1200px) {
  .work-process-one__item--reverse {
    margin-top: -7px;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .work-process-one__item--reverse .work-process-one__item__icon {
    margin: 22px auto 0;
  }
}
.work-process-one__item__icon {
  position: relative;
  margin: 0 auto 22px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sofiarc-white, #FFFFFF);
  border-radius: 50%;
  font-size: 40px;
  color: var(--sofiarc-base, #33C1ED);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 400ms ease;
}
.work-process-one__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.work-process-one__item__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background-color: #1CB6A3;
  transition: transform 400ms ease, opacity 400ms ease;
}
.work-process-one__item:hover .work-process-one__item__icon {
  color: var(--sofiarc-white, #FFFFFF);
}
.work-process-one__item:hover .work-process-one__item__icon::after {
  opacity: 1;
  transform: scale(1);
}
.work-process-one__item__number {
  position: absolute;
  top: 0px;
  left: -6px;
}
.work-process-one__item__number::after {
  content: counter(chooseNumber);
  counter-increment: chooseNumber;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 400;
  background-color: var(--sofiarc-primary, #2C51A3);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.work-process-one__item__title {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
}
.work-process-one__item__text {
  margin: 0;
  font-weight: 400;
  line-height: 1.75;
}
.work-process-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .work-process-one__shape {
    display: none;
  }
}
.work-process-one--home3 {
  position: relative;
  background-color: transparent;
  z-index: 1;
}
.work-process-one--home3 .sec-title__title {
  color: var(--sofiarc-white, #FFFFFF);
}
.work-process-one--home3 .work-process-one__item__number::after {
  background-color: var(--sofiarc-base, #33C1ED);
}
.work-process-one--home3 .work-process-one__item__title,
.work-process-one--home3 .work-process-one__item__text {
  color: var(--sofiarc-white, #FFFFFF);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-bottom: 32px;
  background-color: var(--sofiarc-black, #0A2241);
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main-footer .container {
  position: relative;
  z-index: 1;
}
.main-footer__bottom {
  margin-top: 42px;
}
.main-footer__info {
  position: relative;
  margin-bottom: 32px;
  padding: 41px 36px 41px 46px;
  background-color: var(--sofiarc-base, #33C1ED);
  border-radius: var(--sofiarc-radius, 20px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-footer__info {
    padding: 48px 30px 32px;
  }
}
@media (max-width: 390px) {
  .main-footer__info {
    padding-top: 57px;
  }
}
@media (max-width: 360px) {
  .main-footer__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}
.main-footer__info__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  border-radius: inherit;
}
.main-footer__info__row {
  position: relative;
  z-index: 1;
  align-items: center;
  --bs-gutter-x: 97px;
}
@media (max-width: 1199px) {
  .main-footer__info__row {
    --bs-gutter-x: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-footer__info__row {
    align-items: flex-start;
  }
}
.main-footer__info__col-1 {
  flex: 0 0 auto;
  width: 54.895%;
}
@media (max-width: 1199px) {
  .main-footer__info__col-1 {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .main-footer__info__col-1 {
    width: 100%;
  }
}
.main-footer__info__col-2 {
  flex: 0 0 auto;
  width: 28.3%;
}
@media (max-width: 1199px) {
  .main-footer__info__col-2 {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .main-footer__info__col-2 {
    width: 100%;
  }
}
.main-footer__info__col-3 {
  flex: 0 0 auto;
  width: 26.805%;
}
@media (max-width: 1199px) {
  .main-footer__info__col-3 {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .main-footer__info__col-3 {
    width: 100%;
  }
}
.main-footer__contact {
  display: flex;
  align-items: center;
  gap: 27px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-footer__contact {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 390px) {
  .main-footer__contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-footer__contact__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 14px;
  color: var(--sofiarc-base, #33C1ED);
  background-color: var(--sofiarc-white, #FFFFFF);
  transition: all 500ms ease;
}
.main-footer__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-footer__contact__icon::after {
  content: "";
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.15);
  border-radius: 50%;
  transition: all 500ms ease;
}
.main-footer__contact:hover .main-footer__contact__icon {
  color: var(--sofiarc-white, #FFFFFF);
  background-color: #1CB6A3;
}
.main-footer__contact:hover .main-footer__contact__icon::after {
  border-color: var(--sofiarc-white, #FFFFFF);
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-footer__contact__content {
    text-align: center;
  }
}
.main-footer__contact__title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sofiarc-white, #FFFFFF);
  text-transform: capitalize;
  line-height: 1.357;
}
.main-footer__contact__text {
  margin: 0;
  font-size: 20px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 600;
  line-height: 1.35;
}
.main-footer__contact__text:hover {
  color: var(--sofiarc-black, #0A2241);
}
@media (max-width: 1199px) {
  .main-footer__contact__text {
    font-size: 18px;
  }
}
.main-footer__contact__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__contact__text a:hover {
  background-size: 100% 1px;
}
.main-footer__copyright {
  margin: 0;
  text-align: center;
  color: white;
}

.footer-widget--links {
  margin-top: 11px;
}
@media (max-width: 991px) {
  .footer-widget--links {
    margin-top: 0;
  }
}

.footer-widget__title {
  margin-bottom: 34px;
  position: relative;
  font-size: 20px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize;
}
.footer-widget__title span {
  color: var(--sofiarc-base, #33C1ED);
}
.footer-widget__title::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--sofiarc-white, #FFFFFF);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.footer-widget__title::after {
  content: "";
  width: 66px;
  height: 2px;
  background-color: var(--sofiarc-base, #33C1ED);
  position: absolute;
  left: 26px;
  bottom: -12px;
}
.footer-widget__logo {
  margin-bottom: 21px;
}
.footer-widget__about-text {
  margin-bottom: 21px;
  color: var(--sofiarc-text-dark, #456EA1);
  text-transform: capitalize;
}
.footer-widget__btn {
  margin-bottom: 33px;
  padding: 6px 20.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: transparent;
  font-size: 15px;
  color: var(--sofiarc-base, #33C1ED);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.75;
  border-radius: 100px;
  border: 1px solid RGBA(var(--sofiarc-white-rgb, 255, 255, 255), 0.2);
  overflow: hidden;
  z-index: 1;
  transition: 500ms;
}
.footer-widget__btn::before, .footer-widget__btn::after {
  content: "";
  background-color:#1CB6A3;
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.footer-widget__btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.footer-widget__btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.footer-widget__btn:hover {
  color: var(--sofiarc-white, #FFFFFF);
  border-color: var(--sofiarc-base, #33C1ED);
}
.footer-widget__btn:hover::before, .footer-widget__btn:hover::after {
  width: calc(50% + 6px);
}
.footer-widget__btn__icon {
  display: inline-flex;
  font-size: 11px;
  color: var(--sofiarc-base, #33C1ED);
  transition: all 500ms ease;
}
.footer-widget__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.footer-widget__btn:hover .footer-widget__btn__icon {
  color: var(--sofiarc-white, #FFFFFF);
  transform: rotate(45deg);
}
.footer-widget__links {
  margin: 0;
}
.footer-widget__links li + li {
  margin-top: 10px;
}
.footer-widget__links li {
  font-size: 14px;
  color: var(--sofiarc-text-dark, #456EA1);
  font-weight: 500;
  line-height: 1.75;
  text-transform: capitalize;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links li a:hover {
  color: var(--sofiarc-base, #33C1ED);
  text-shadow: 0 0 0.5px currentColor;
}
.footer-widget__posts {
  margin-bottom: 0;
}
.footer-widget__posts__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 360px) {
  .footer-widget__posts__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-widget__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.footer-widget__posts__image {
  width: 100px;
  flex-shrink: 0;
}
.footer-widget__posts__image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.footer-widget__posts__content {
  width: calc(100% - 100px);
}
@media (max-width: 360px) {
  .footer-widget__posts__content {
    width: 100%;
  }
}
.footer-widget__posts__meta {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 23px;
}
@media (max-width: 375px) {
  .footer-widget__posts__meta {
    gap: 20px;
  }
}
@media (max-width: 360px) {
  .footer-widget__posts__meta {
    gap: 23px;
  }
}
.footer-widget__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--sofiarc-text-dark, #456EA1);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.333;
}
.footer-widget__posts__meta a:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.footer-widget__posts__meta__icon {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: var(--sofiarc-base, #33C1ED);
}
.footer-widget__posts__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 375px) {
  .footer-widget__posts__meta__icon {
    margin-right: 8px;
  }
}
.footer-widget__posts__title {
  margin: 0;
  font-size: 14px;
  color: var(--sofiarc-white, #FFFFFF);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.75;
}
.footer-widget__posts__title:hover {
  color: var(--sofiarc-base, #33C1ED);
}
.footer-widget__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__posts__title a:hover {
  background-size: 100% 1px;
}


/* CONTACT PAGE  */

    .contact-section {
      padding: 80px 20px;
    }

    .contact-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .contact-form-box {
      background: #ffffff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .contact-form-box input,
    .contact-form-box textarea {
      width: 100%;
      padding: 14px 16px;
      margin-bottom: 18px;
      border-radius: 8px;
      border: 1px solid #e1e8f0;
      background: #f4f7fa;
      font-size: 14px;
      outline: none;
    }
     .contact-form-box input::placeholder{
      color: #0066a1;
     }
 .contact-form-box textarea::placeholder {
            color: #0066a1;

    }
    .contact-form-box textarea {
      min-height: 120px;
      resize: none;
    }

    .contact-form-box button {
      background: #56a1cc;
      color: #fff;
      border: none;
      padding: 14px 28px;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.3s;
    }

    .contact-form-box button:hover {
      background: #1cb6a3;
    }

    .contact-info small {
      color: #0066a1;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .contact-info h2 {
      font-size: 40px;
      margin: 12px 0 30px;
      color: #0f172a;
    }

    .contact-info h2 span {
      color: #0066a1;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 22px;
    }

    .info-icon {
      width: 48px;
      height: 48px;
      background: #0066a1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      margin-right: 16px;
    }

    .info-text h4 {
      font-size: 15px;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .info-text p {
      font-size: 14px;
      color: #64748b;
    }

    .clients-box {
      margin-top: 30px;
      background: #ffffff;
      padding: 16px 20px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .clients-box img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
      margin-left: -10px;
      border: 2px solid #fff;
    }

    .clients-box span {
      font-size: 14px;
      font-weight: 600;
      color: #0f172a;
    }

    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
      }

      .contact-info h2 {
        font-size: 32px;
      }
    }

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--sofiarc-white, #FFFFFF);
  box-shadow: 0px 0px 100px 0px rgba(var(--sofiarc-black-rgb, 10, 34, 65), 0.08);
}
body.boxed-wrapper .main-header--two .main-header__call {
  display: none;
}
body.boxed-wrapper .sticky-header--cloned.main-header--two .main-header__call {
  display: flex;
}
@media (max-width: 1599px) {
  body.boxed-wrapper .sticky-header--cloned.main-header--two .main-header__call {
    display: none;
  }
}
@media (min-width: 1600px) {

  body.boxed-wrapper .about-one__shape-1 {
    left: 40px;
  }
  body.boxed-wrapper .about-one__shape-2 {
    max-width: 100px;
    right: 20px;
  }
  body.boxed-wrapper .why-choose-one__shape-5 {
    left: 50px;
  }
  body.boxed-wrapper .appointment-one__shape-1 {
    left: 40px;
  }
  body.boxed-wrapper .appointment-one__shape-2 {
    max-width: 150px;
    left: 20px;
  }
  body.boxed-wrapper .faq-one__image__shape-1 {
    top: -20px;
    right: -130px;
  }
}
