@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
:root {
  --whiteColor: #fff;
  --greenColorLight: #262626;
  --greenColorDark: #9b9a84;
  --colorPurple: #63224d;
  --colorOrange: #f0881b;
  --textColor: #333;
  --fontFamPrimary: "Marcellus", serif;
  --fontFamSecondary: "Sora", sans-serif;
  --header: 10rem;
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size-adjust: 100%;
  margin-right: 0 !important;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
body {
  color: var(--textColor);
  font-family: var(--fontFamSecondary);
  background-color: var(--whiteColor);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
.offscroll {
  overflow-y: hidden !important;
}
body::-webkit-scrollbar {
  width: 1rem;
}
body::-webkit-scrollbar-track {
  background-color: var(--whiteColor);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--colorPurple);
}
::-moz-selection {
  background-color: var(--colorPurple);
  color: #fff;
}
::selection {
  background-color: var(--colorPurple);
  color: #fff;
}
br {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontFamPrimary);
  margin: 0;
}
p,
figure,
address {
  margin: 0;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
}
span,
i {
  display: inline-block;
}
button {
  padding: 0;
  border: none;
  outline: none;
}
.equal [class^="col"] {
  display: flex;
}
.p0 {
  padding: 0;
}
.mt1 {
  margin-top: 1rem;
}
.mt2 {
  margin-top: 2rem;
}
.mb1 {
  margin-bottom: 1rem;
}
.mb2 {
  margin-bottom: 2rem;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: all 300ms ease;
  background-color: #fff;
}
.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menulinks {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.menulinks ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
}
.mainli {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.maina {
  color: var(--textColor);
  text-transform: uppercase;
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.mainli:hover .maina {
  color: var(--colorOrange);
}
.maina i {
  transition: transform 300ms ease;
}
.mainli:hover .maina i {
  transform: rotate(-45deg);
}
.headersideend {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 0.5rem;
}
.headersideend a {
  border-radius: 0.3rem;
  padding: 1rem 1.2rem;
  position: relative;
  transition: all 300ms ease;
}
.colorselect1 {
  background-color: var(--colorPurple);
  color: #fff;
}
.colorselect2 {
  background-color: var(--colorOrange);
  color: #fff;
}
.headersideend a:hover {
  background-color: var(--textColor);
  color: var(--whiteColor);
}
.slide {
  height: 55rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .slide {
    height: 65rem;
  }
}
@media (min-width: 1200px) {
  .slide {
    height: calc(100% + var(--header));
  }
}
.logo {
  height: 100%;
  width: 15rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 350px) {
  .logo {
    width: 18rem;
  }
}
@media (min-width: 992px) {
  .logo {
    width: 20rem;
  }
}
.logo img {
  object-fit: contain;
}
.swiperslide {
  height: 100%;
}
.slideside {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.slideside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--greenColorLight);
  opacity: 0.5;
}
.slideside .container {
  height: 100%;
  padding: 0;
}
.slidetext {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: grab;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .slidetext {
    max-width: 50rem;
  }
}
@media (min-width: 992px) {
  .slidetext {
    max-width: 65rem;
  }
}
@media (min-width: 1200px) {
  .slidetext {
    max-width: 80rem;
  }
}
@media (min-width: 1600px) {
  .slidetext {
    max-width: 90rem;
  }
}
.slidetext:active {
  cursor: grabbing;
}
.slidetext h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .slidetext h1 {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .slidetext h1 {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .slidetext h1 {
    font-size: 6rem;
  }
}
@media (min-width: 1200px) {
  .slidetext h1 {
    font-size: 7.5rem;
  }
}
@media (min-width: 1600px) {
  .slidetext h1 {
    font-size: 8rem;
  }
}
.slidetext p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .slidetext p {
    font-size: 1.6rem;
  }
}
@media (min-width: 1600px) {
  .slidetext p {
    font-size: 1.8rem;
  }
}
.swiperslide .swiper-slide-active .slidetext h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.6s;
}
.swiperslide .swiper-slide-active .slidetext p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.2s;
}
.dropdownMenu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: -5rem;
  background-color: var(--whiteColor);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  border-radius: 0 0 0.3rem 0.3rem;
}
.mainli:hover .dropdownMenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdownMenu a {
  width: 100%;
  display: block;
  border-radius: 0.3rem;
  padding: 1rem;
  font-size: 1.5rem;
  color: var(--textColor);
  transition: all 300ms ease;
}
.dropdownMenu a:not(:last-child) {
  margin-bottom: 0.2rem;
}
.dropdownMenu a:hover {
  background-color: var(--colorPurple);
  color: #fff;
}
.padding {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .padding {
    padding: 8rem 0;
  }
}
.mainlink {
  display: inline-block;
  border-radius: 0.3rem;
  padding: 1.2rem 2.4rem;
  background: var(--colorPurple);
  color: #fff;
  position: relative;
  transition: all 300ms ease;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 1200px) {
  .mainlink {
    padding: 1.5rem 3rem;
  }
}
.mainlink::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--colorOrange);
  transform: scalex(0);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in-out;
  transform-origin: right center;
  z-index: -1;
}
.mainlink:hover::before {
  transform: scalex(1);
  transform-origin: left center;
}
.mainlink:hover {
  color: var(--whiteColor);
}
.services {
  background-color: #f6f2ed;
}
.serviceshead {
  text-align: center;
  margin-bottom: 4rem;
}
.serviceshead h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--greenColorDark);
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .serviceshead h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .serviceshead h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .serviceshead h2 {
    font-size: 4rem;
  }
}
.mobilemenuicon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--colorPurple);
  font-size: 2rem;
}
@media (min-width: 576px) {
  .mobilemenuicon {
    margin-left: 1rem;
  }
}
.mobilemenu {
  padding: 1rem 0;
  display: none;
  background-color: var(--whiteColor);
}
.mobilemenucontent {
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
}
.mobilemenucontent a {
  font-size: 1.5rem;
  color: var(--textColor);
  display: block;
  width: 100%;
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
}
.mobiledropdown {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
  color: var(--textColor);
}
.mobilemenucontent a:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.mobiledropdown:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.mobileran {
  text-align: center;
  background-color: var(--colorOrange);
  color: #fff !important;
}
.mobileran:hover {
  background-color: var(--colorPurple) !important;
  color: #fff !important;
}
.dropdowncontent {
  background-color: #fbfbfb;
  padding: 1rem;
  border-radius: 0.3rem;
  display: none;
}
.back2top {
  width: 5rem;
  height: 5rem;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorPurple);
  color: #fff;
  font-size: 2rem;
  position: fixed;
  z-index: 100;
  bottom: -12rem;
  right: 2rem;
  transition: all 300ms ease;
  cursor: pointer;
  opacity: 0;
}
@media (min-width: 768px) {
  .back2top {
    width: 6rem;
    height: 6rem;
    font-size: 2.5rem;
  }
}
.back2top:hover {
  background-color: var(--colorOrange);
  color: var(--whiteColor);
}
.back2top i {
  animation: upNdown ease-in-out 1.2s infinite;
}
@keyframes upNdown {
  0% {
    transform: translateY(0.5rem);
  }
  100% {
    transform: translateY(-0.5rem);
  }
}
.back2Act {
  bottom: 2rem;
  opacity: 1;
}
.loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--whiteColor);
}
.loaderimage {
  width: 20rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .loaderimage {
    width: 30rem;
  }
}
.footer {
  padding: 5rem 0 2rem 0;
}
.pageheader {
  padding: 15rem 0 5rem 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(240, 137, 26, 0.14) 0,
    rgba(240, 137, 26, 0.14) 2px,
    transparent 0,
    transparent 50%
  );
  background-size: 32px 32px;
  background-color: #63224d;
}
.pageheaderside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .pageheaderside {
    flex-direction: initial;
    align-items: center;
    justify-content: space-between;
    row-gap: 0;
  }
}
.pageheaderside h1 {
  color: var(--whiteColor);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--fontFamPrimary);
}
@media (min-width: 768px) {
  .pageheaderside h1 {
    font-size: 1.8rem;
    white-space: nowrap;
    overflow: hidden;
    width: 50%;
    text-overflow: ellipsis;
  }
}
@media (min-width: 1200px) {
  .pageheaderside h1 {
    font-size: 2.5rem;
  }
}
.breads {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2rem;
}
@media (min-width: 768px) {
  .breads {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}
.breads li {
  position: relative;
  color: var(--greenColorDark);
}
.breads li:not(:last-child)::after {
  content: "\F3C1";
  font-family: "remixicon";
  position: absolute;
  right: -1.3rem;
  font-size: 0.5rem;
  color: var(--whiteColor);
  top: 0.9rem;
}
.breads li a {
  transition: color 300ms ease;
  color: var(--whiteColor);
}
.breads li:hover a {
  color: var(--colorOrange);
}
.breads li.active {
  font-weight: 700;
  color: var(--colorOrange) !important;
}
.cleantext p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cleantext p {
    font-size: 1.6rem;
  }
}
.cleantext h1,
.cleantext h2,
.cleantext h3,
.cleantext h4,
.cleantext h5,
.cleantext h6 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--colorPurple);
  font-weight: 600;
}
.cleantext ul,
.cleantext ol {
  padding-left: 3rem;
  margin-bottom: 1rem;
}
.cleantext li {
  font-size: 1.5rem;
  font-weight: 300;
  position: relative;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .cleantext li {
    font-size: 1.6rem;
  }
}
.cleantext li strong {
  font-weight: 700;
  color: var(--colorPurple);
  display: block;
}
.cleantext li::before {
  content: "\EB7B";
  font-family: "remixicon";
  position: absolute;
  left: -3rem;
  color: var(--colorOrange);
}
.serviceimages {
  border-radius: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.pl {
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .pl {
    padding-left: 3rem;
    padding-top: 0;
  }
}
.otherbox {
  padding: 1rem;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background-color: #fff;
  margin: 0 0 2rem 0;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
.otherbox a {
  border-radius: 0.3rem;
  padding: 1rem;
  color: var(--textColor);
  transition: all 300ms ease;
  width: 100%;
  display: block;
  font-size: 1.5rem;
}
.otherbox a:hover {
  background-color: var(--colorPurple);
  color: var(--whiteColor);
}
.otherbox a:not(:last-child) {
  margin-bottom: 0.3rem;
}
@media (min-width: 992px) {
  .affix {
    position: sticky;
    top: 11rem;
  }
}
@media (min-width: 768px) {
  .questionside {
    width: 80rem;
    margin: 0 auto;
  }
}
.questionitem {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.questionitemtitle {
  padding: 1.5rem;
}
.questionitemtitle h3 {
  color: var(--greenColorLight);
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .questionitemtitle h3 {
    font-size: 1.8rem;
  }
}
.questionitem .content {
  padding: 1.5rem;
  border-top: 0.1rem solid #eaeaea;
  display: none;
}
.questionitem .content p {
  font-size: 1.5rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .questionitem .content p {
    font-size: 1.6rem;
  }
}
.blogs {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blogsimage {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  height: 30rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
}
.blogsimage a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blogsimage img {
  transition: all 300ms ease;
  height: 100%;
  object-fit: cover;
}
.blogs:hover .blogsimage img {
  transform: scale(1.1);
}
.blogs .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
@media (min-width: 1200px) {
  .blogs .content {
    padding: 2rem 4rem;
  }
}
.blogs .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--colorPurple);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blogs .content h3 {
    font-size: 1.8rem;
  }
}
.blogs .content h3 a {
  color: var(--colorPurple);
  transition: color 300ms ease;
}
.blogs .content p {
  font-weight: 300;
  flex: 1;
}
.blogs:hover .content h3 a {
  color: var(--colorOrange);
}
.emp {
  width: 20rem;
  object-fit: contain !important;
}
.randevu {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.3rem;
}
@media (min-width: 992px) {
  .randevu {
    width: 80rem;
    padding: 5rem;
  }
}
.form-group {
  margin-bottom: 1rem;
}
label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.form-control {
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 300;
  transition: all 300ms ease;
}
.form-control,
.form-control:hover,
.form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-control:hover,
.form-control:focus {
  border: 0.1rem solid var(--colorPurple);
}
.randevutitle {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.randevutitle h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorPurple);
}
.randevutitle p {
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.contactbox {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contactboxtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.contactboxtitle h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--colorPurple);
}
@media (min-width: 768px) {
  .contactboxtitle h2 {
    font-size: 3rem;
  }
}
.contactboxtitle p {
  font-weight: 300;
}
.contactboxitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contactboxicon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--colorOrange);
  color: #fff;
  transition: all 300ms ease;
}
.contactboxitem .content {
  width: calc(100% - 3.5rem);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .contactboxitem .content {
    padding-right: 8rem;
  }
}
.contactboxitem .content a {
  font-weight: 300;
  color: var(--textColor);
  transition: color 300ms ease;
}
.contactboxitem .content a {
  color: var(--greenColorLight);
}
.contactboxitem .content a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.contactboxitem .content h3 {
  font-weight: 600;
  color: var(--greenColorLight);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contactBG {
  padding: 2rem;
  border-radius: 0.3rem;
  background-color: #fff;
}
@media (min-width: 768px) {
  .contactBG {
    padding: 5rem;
  }
}
.empty {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background-color: #fff;
  border-radius: 0.3rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .empty {
    width: 80rem;
    padding: 5rem;
  }
}
.empty h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--greenColorDark);
  margin-bottom: 1rem;
}
.empty h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.empty p {
  font-weight: 300;
}
.personitem {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
}
.personcontenttext {
  flex: 1;
}
.personimages {
  border-radius: 0.5rem;
  overflow: hidden;
}
.personimages img {
  height: 100%;
  object-fit: cover;
}
.personcontent {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 992px) {
  .personcontent {
    padding: 0;
  }
}
.personcontenttext p {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.personcontenthead {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}
.personcontenthead h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--colorPurple);
}
.personcontenthead span {
  display: block;
  width: 100%;
  margin-bottom: 0.3rem;
  font-weight: 300;
}
.personlink {
  font-size: 1.5rem;
  background-color: var(--colorOrange);
  color: #fff;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.personlink:hover {
  background-color: var(--colorPurple);
  color: var(--whiteColor);
}
.homeaboutimageside {
  width: 100%;
  display: flex;
  column-gap: 2rem;
  align-items: flex-end;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .homeaboutimageside {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  .homeaboutimageside {
    margin-bottom: 0;
  }
}
.homeabscards {
  position: absolute;
  border-radius: 1rem;
  padding: 1rem;
  top: 0;
  left: 0;
  right: 30%;
  bottom: 68%;
  background-color: #8282820d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .homeabscards {
    align-items: flex-start;
    padding: 2rem;
  }
}
.homeabscards h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--colorPurple);
}
@media (min-width: 576px) {
  .homeabscards h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .homeabscards h2 {
    font-size: 2rem;
  }
}
.homeabscards p {
  font-size: 1.4rem;
  font-weight: 300;
  display: none;
}
@media (min-width: 576px) {
  .homeabscards p {
    display: block;
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .homeabscards p {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .homeabscards p {
    font-size: 1.5rem;
  }
}
.homeaboutimage {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.homeshapes {
  -webkit-mask-image: url("../images/aboutshape.svg");
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  width: calc(100% / 1.145);
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
@media (min-width: 992px) {
  .homeaboutcontent {
    padding-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .homeaboutcontent {
    padding-left: 5rem;
  }
}
.homeaboutcontenttitle {
  margin-bottom: 2rem;
}
.homeaboutcontenttitle h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--colorPurple);
}
@media (min-width: 576px) {
  .homeaboutcontenttitle h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .homeaboutcontenttitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .homeaboutcontenttitle h2 {
    font-size: 5rem;
  }
}
.homeaboutcontenttext {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.homeaboutcontenttext p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .homeaboutcontenttext p {
    font-size: 1.6rem;
  }
}
.homeaboutgrid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1200px) {
  .homeaboutgrid {
    display: grid;
  }
}
.homeaboutgridlist {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.homeaboutgridlist a {
  font-size: 1.5rem;
  color: var(--textColor);
  transition: color 300ms ease;
}
.homeaboutgridlist a:hover {
  color: var(--colorOrange);
}
.servicesBG {
  background-color: #f9f9f9;
}
.gflextitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .gflextitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.gflextitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 3;
}
.gflextitlebadge {
  margin-bottom: 1rem;
}
.gflextitlebadge p {
  font-size: 1.6rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--colorOrange);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .gflextitlebadge p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .gflextitlebadge p {
    font-size: 2rem;
  }
}
.gflextitlebadge p::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--colorPurple);
}
.gflextitleleft h2 {
  font-size: 2.5rem;
  color: var(--colorPurple);
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .gflextitleleft h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .gflextitleleft h2 {
    margin-bottom: 0;
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .gflextitleleft h2 {
    font-size: 4.5rem;
  }
}
.gflextitleright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 2;
}
.gflextitleright a {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  position: relative;
  font-size: 1.5rem;
  z-index: 0;
  color: #fff;
  background-color: var(--colorPurple);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .gflextitleright a {
    padding: 1.5rem 2rem;
  }
}
.gflextitleright a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--colorOrange);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.gflextitleright a:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.gflextitleright a:hover {
  color: var(--whiteColor);
}
.servicesBox {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.servicesBoximage {
  width: 100%;
}
.servicesBoximage img {
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: all 1.5s ease-in-out;
  filter: brightness(50%);
}
.servicesBox:hover .servicesBoximage img {
  transform: scale(1.1);
}
.servicesBoxtitle {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 1;
  right: 5rem;
}
@media (min-width: 768px) {
  .servicesBoxtitle {
    right: 10rem;
  }
}
.servicesBoxtitle h3 {
  font-size: 1.6rem;
}
@media (min-width: 1200px) {
  .servicesBoxtitle h3 {
    font-size: 2rem;
  }
}
.servicesBoxtitle h3 a {
  color: #fff;
  transition: color 300ms ease;
}
.servicesBoxtitle h3:hover a {
  color: #fff;
}
.servicesBoxLinks {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.servicesBoxLinks a {
  font-size: 1.4rem;
  color: #fff;
}
@media (min-width: 576px) {
  .servicesBoxLinks a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .servicesBoxLinks a {
    font-size: 1.6rem;
  }
}
.servicesBoxLinks a:hover {
  color: #fff;
}
.servicesBoxLinks i {
  color: #fff;
  font-size: 2rem;
}
.headerBG {
  background-color: #fff;
}
.ctasides {
  background-color: var(--colorPurple);
  border-radius: 1rem;
}
.ctacontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}
@media (min-width: 576px) {
  .ctacontent {
    padding: 5rem;
  }
}
@media (min-width: 992px) {
  .ctacontent {
    padding: 2rem;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .ctacontent {
    padding: 0 0 0 2rem;
  }
}
.ctacontentbange {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ctacontentbange p {
  font-size: 1.6rem;
  position: relative;
  padding-left: 1rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.ctacontentbange p::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
}
.ctacontent h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .ctacontent h2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .ctacontent h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .ctacontent h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .ctacontent h2 {
    font-size: 5rem;
  }
}
.ctacontent p {
  font-size: 1.4rem;
  color: #fff;
}
@media (min-width: 576px) {
  .ctacontent p {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .ctacontent p {
    font-size: 1.6rem;
  }
}
.ctabuttonside {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  position: relative;
}
.ctabuttonside a {
  padding: 1rem 2rem;
  background-color: #fff;
  color: var(--colorPurple);
  font-size: 1.6rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.ctabuttonside a:hover {
  background-color: var(--colorOrange);
  color: #fff;
}
.ctaarrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  position: absolute;
  right: -10rem;
  animation: move 3s ease-in-out infinite;
}
@keyframes move {
  0% {
    right: -10rem;
  }
  50% {
    right: -8rem;
  }
  100% {
    right: -10rem;
  }
}
@media (min-width: 768px) {
  .ctamainimage {
    width: 50%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .ctamainimage {
    width: 100%;
  }
}
.parallax {
  background-image: url("../images/sss.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  opacity: 0.8;
}
.ssscontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.ssscontent h2 {
  color: #fff;
  font-size: 2.5rem;
}
@media (min-width: 576px) {
  .ssscontent h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .ssscontent h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .ssscontent h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .ssscontent h2 {
    font-size: 4.5rem;
  }
}
.sssbadge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  margin-bottom: 1rem;
}
.sssbadge p {
  color: #fff;
  font-size: 1.6rem;
}
.sssbadge i {
  color: var(--greenColorDark);
}
.ssscontentboxes {
  margin-top: 2rem;
  padding: 3rem;
  background-color: var(--greenColorLight);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ssscontentboxes h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .ssscontentboxes h3 {
    font-size: 2rem;
  }
}
.ssscontentboxes ul li {
  padding: 0.5rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.ssscontentboxes ul li a {
  font-size: 1.5rem;
  color: #fff;
}
@media (min-width: 1200px) {
  .ssscontentboxes ul li a {
    font-size: 1.6rem;
  }
}
.sssaccordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .sssaccordion {
    margin-top: 0;
  }
}
.sssaccordionheader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
}
.sssaccordionheader h3 {
  color: #fff;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .sssaccordionheader h3 {
    font-size: 2rem;
  }
}
.sssaccordionheader i {
  color: #fff;
  font-size: 1.6rem;
}
.sssaccordioncontent {
  width: 100%;
  padding: 1rem 0;
  display: none;
}
.sssaccordioncontent.active {
  display: block;
}
.sssaccordioncontent p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 200;
}
@media (min-width: 992px) {
  .sssaccordioncontent p {
    font-size: 1.6rem;
  }
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footerbox h3 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--colorPurple);
}
@media (min-width: 1400px) {
  .footerbox h3 {
    font-size: 4rem;
  }
}
.footercontactbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footercontactbox {
    margin-bottom: 0;
  }
}
.footercontactbox span {
  width: 100%;
  display: block;
  color: var(--colorPurple);
  opacity: 0.8;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.footercontactbox a {
  color: var(--textColor);
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.footercontactbox a:hover {
  color: var(--colorOrange);
}
.footerbox h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: var(--colorPurple);
}
.footerbox p {
  font-size: 1.5rem;
  font-weight: 300;
}
.footersocial {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.footersocial a {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--colorPurple);
  border: 0.1rem solid var(--colorPurple);
  border-radius: 50%;
  transition: all 300ms ease;
  font-size: 1.6rem;
}
.footersocial a:hover {
  color: var(--colorOrange);
  border: 0.1rem solid var(--colorOrange);
}
@media (min-width: 1200px) {
  .fpl4 {
    padding-left: 4rem;
  }
}
.deep {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  border-top: 0.1rem solid #eaeaea;
  padding-top: 2rem;
}
@media (min-width: 1200px) {
  .deep {
    justify-content: space-between;
  }
}
.deepleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
  flex-wrap: wrap;
}
.deepleft a {
  font-size: 1.2rem;
  color: var(--textColor);
  transition: all 300ms ease;
}
.deepleft a:hover {
  color: var(--colorOrange);
  text-decoration: underline;
}
@font-face {
  font-family: pill;
  src: url("../fonts/magnolia_sky.ttf");
}
.deepright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.deepright a {
  font-size: 2rem;
  color: var(--textColor);
  font-family: pill;
  transition: all 300ms ease;
}
.deepright a:hover {
  color: #ed4a37;
}
.marquee {
  padding: 2rem 0;
  background-color: var(--colorPurple);
  overflow: hidden;
}
.marqueewrapper {
  display: flex;
  column-gap: 5rem;
}
.marqueewrapper a {
  white-space: nowrap;
  color: #fff;
  font-size: 1.5rem;
  transition: all 300ms ease;
}
.marqueewrapper a:hover,
.marqueewrapper a:focus {
  color: var(--colorOrange);
}
.blogBoxes {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.blogBoxesimg {
  border-radius: 1rem;
  overflow: hidden;
}
.blogBoxesimg img {
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: all 2s ease-in-out;
}
.blogBoxes:hover .blogBoxesimg img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.blogBoxes .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.blogBoxes .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.blogBoxes .content h3 a {
  color: var(--textColor);
  transition: color 300ms ease;
}
.blogBoxes:hover .content h3 a {
  color: var(--colorOrange);
}
.blogBoxes .content p {
  font-size: 1.5rem;
  flex: 1;
  font-weight: 300;
}
.swiperblog .swiper-slide {
  height: auto !important;
  display: flex;
}
.bloglinks {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--textColor);
  transition: all 300ms ease;
  margin-top: 1rem;
}
.bloglinks:hover {
  color: var(--colorOrange);
}
.swiperblog .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.swiperblog .swiper-pagination-bullet {
  width: 1.8rem;
  height: 0.5rem;
  border-radius: 0.1rem;
  background-color: var(--colorPurple);
  opacity: 1;
}
.swiperblog .swiper-pagination-bullet-active {
  background-color: var(--colorOrange) !important;
}
