.twoline {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
}

.oneline {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
}

.nohight {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.blinking-cursor {
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
}

body {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fff;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.fit-image-auto {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.fit-image-auto:hover {
  transform: scale(1.06);
}

.line2-only {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
}

.overflowh {
  overflow: hidden;
}

.container {
  max-width: 1070px;
}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: '';
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  /* most of the rest of this is opinion */
  font-family: "Poppins", sans-serif;
  text-align: center;
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000;
  /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

header {
  float: left;
  width: 100%;
  position: absolute;
  z-index: 9000;
}

header .header-middle {
  float: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0;
}

header .header-middle .logo {
  float: left;
}

header .header-middle .logo svg {
  float: left;
}

header .header-middle .logo img {
  float: left;
  max-width: 150px;
  position: absolute;
  top: -3px;
}

header .header-middle .next-link {
  float: right;
  margin: 10px 0 10px 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .next-link {
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .next-link {
    display: block;
  }
}

@media (max-width: 576px) {
  header .header-middle .next-link {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .next-link .book-a-demo {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .next-link .book-a-demo {
    display: none;
  }
}

@media (max-width: 576px) {
  header .header-middle .next-link .book-a-demo {
    display: none;
  }
}

header .header-middle .next-link .mobile-menu-open {
  float: left;
  display: none;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .next-link .mobile-menu-open {
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .next-link .mobile-menu-open {
    display: block;
  }
}

@media (max-width: 576px) {
  header .header-middle .next-link .mobile-menu-open {
    display: block;
  }
}

header .header-middle .next-link .mobile-menu-open svg {
  width: 36px;
  float: right;
  height: 36px;
}

header .header-middle .next-link .mobile-menu-open.active .menu-bger {
  display: none;
}

header .header-middle .next-link .mobile-menu-open.active .close-menu {
  display: block;
}

header .header-middle .next-link .mobile-menu-open .close-menu {
  display: none;
}

header .header-middle .next-link .boolademo {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #C7391E;
  padding: 9px 25px;
  font-weight: 600;
  margin-left: 20px;
  color: #fff;
}

header .header-middle .next-link .boolademo svg {
  margin-left: 10px;
}

header .header-middle .menu-main-set {
  float: right;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .menu-main-set {
    padding: 0;
    background: #fff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 94px;
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .menu-main-set {
    padding: 0;
    background: #fff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 94px;
    display: none;
  }
}

@media (max-width: 576px) {
  header .header-middle .menu-main-set {
    padding: 0;
    background: #fff;
    width: 100%;
    position: fixed;
    left: 0;
    top: 94px;
    display: none;
  }
}

header .header-middle .menu-main-set.active {
  display: block;
}

header .header-middle .menu-main-set .book-a-demo-mobile {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #C7391E;
  padding: 9px 25px;
  font-weight: 600;
  margin-left: 20px;
  float: left;
  color: #fff;
  width: calc(100% - 50px);
  text-align: center;
  display: none;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .menu-main-set .book-a-demo-mobile {
    display: block;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .menu-main-set .book-a-demo-mobile {
    display: block;
  }
}

@media (max-width: 576px) {
  header .header-middle .menu-main-set .book-a-demo-mobile {
    display: block;
  }
}

header .header-middle .menu-main-set ul {
  float: left;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .menu-main-set ul {
    width: 100%;
    padding: 0;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .menu-main-set ul {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 576px) {
  header .header-middle .menu-main-set ul {
    width: 100%;
    padding: 0;
  }
}

header .header-middle .menu-main-set ul li {
  float: left;
  list-style: none;
  margin-left: 20px;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .menu-main-set ul li {
    width: 100%;
    border-bottom: 1px solid #ededed;
    margin: 0;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .menu-main-set ul li {
    width: 100%;
    border-bottom: 1px solid #ededed;
    margin: 0;
  }
}

@media (max-width: 576px) {
  header .header-middle .menu-main-set ul li {
    width: 100%;
    border-bottom: 1px solid #ededed;
    margin: 0;
  }
}

header .header-middle .menu-main-set ul li a {
  color: #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 46px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 992px) {
  header .header-middle .menu-main-set ul li a {
    color: #141517;
    text-align: center;
    width: 100%;
    float: left;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  header .header-middle .menu-main-set ul li a {
    color: #141517;
    text-align: center;
    width: 100%;
    float: left;
  }
}

@media (max-width: 576px) {
  header .header-middle .menu-main-set ul li a {
    color: #141517;
    text-align: center;
    width: 100%;
    float: left;
  }
}

.main-welcome {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 1000px;
  z-index: 10;
}

@media (max-width: 576px) {
  .main-welcome {
    height: 70vh;
  }
}

.main-welcome .homepahe-sliderl {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  height: 100%;
}

.main-welcome .homepahe-sliderl img {
  float: left;
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

@media (min-width: 576px) and (max-width: 768px) {
  .main-welcome .homepahe-sliderl img {
    height: 100vh;
  }
}

@media (max-width: 576px) {
  .main-welcome .homepahe-sliderl img {
    height: 70vh;
  }
}

.main-welcome .homepahe-sliderl .item img {
  transform: scale(1) rotate(0deg);
  transition: transform 40s ease;
  transform-origin: center center;
  will-change: transform;
}

.main-welcome .homepahe-sliderl .owl-item.active img {
  transform: scale(1.4) rotate(3deg);
}

.main-welcome .middle-content-text {
  position: relative;
  z-index: 8000;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
  position: relative;
}

.main-welcome .middle-content-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 23, 23, 0.75);
}

.main-welcome .middle-content-text h2 {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.1125rem;
  margin: 0;
  text-transform: uppercase;
}

.main-welcome .middle-content-text h1 {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 900;
  line-height: 6.3125rem;
  /* 105.208% */
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 576px) and (max-width: 768px) {
  .main-welcome .middle-content-text h1 {
    font-size: 3.6rem;
    line-height: 3.8rem;
  }
}

@media (max-width: 576px) {
  .main-welcome .middle-content-text h1 {
    font-size: 2.6rem;
    line-height: 2.8rem;
  }
}

.main-welcome .middle-content-text h3 {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  margin: 2px 0 10px;
  line-height: normal;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.main-welcome .middle-content-text p {
  color: #fff;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  margin: 0;
  line-height: normal;
  letter-spacing: 0.07rem;
  float: left;
  width: 65%;
}

@media (max-width: 576px) {
  .main-welcome .middle-content-text p {
    display: none;
  }
}

.main-welcome .middle-content-text .button-layer {
  float: left;
  width: 100%;
}

.main-welcome .middle-content-text .button-layer .popup-get-start {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #C7391E;
  padding: 9px 35px;
  font-weight: 600;
  margin-top: 10px;
  float: left;
  color: #fff;
}

.main-welcome .middle-content-text .button-layer .popup-get-start svg {
  margin-left: 10px;
}

.second-section-with-location {
  float: left;
  width: 100%;
  margin-top: -115px;
  z-index: 6000;
  position: relative;
}

.second-section-with-location .middle-size-set {
  max-width: 683px;
}

.second-section-with-location .middle-size-set .mid-pack {
  border-radius: 5px;
  border: 1px solid #ededed;
  background: #FBFBFB;
  float: left;
  width: 100%;
  padding: 20px;
  box-shadow: 0px 0px 43px -12px rgba(0, 0, 0, 0.25);
}

.second-section-with-location .middle-size-set .mid-pack .left-image {
  border-radius: 4px;
  width: 83px;
  height: 82px;
  float: left;
  margin-right: 20px;
  border: 4px solid #C7391E;
}

@media (max-width: 576px) {
  .second-section-with-location .middle-size-set .mid-pack .left-image {
    display: none;
  }
}

.second-section-with-location .middle-size-set .mid-pack .left-image img {
  float: left;
  width: 100%;
  object-fit: cover;
}

.second-section-with-location .middle-size-set .mid-pack .mid-content {
  float: left;
  width: calc(100% - 205px);
  margin: 10px 0;
}

@media (max-width: 576px) {
  .second-section-with-location .middle-size-set .mid-pack .mid-content {
    width: calc(100% - 122px);
  }
}

.second-section-with-location .middle-size-set .mid-pack .mid-content h2 {
  color: #141517;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin: 0;
  letter-spacing: 1.2px;
}

.second-section-with-location .middle-size-set .mid-pack .mid-content p {
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  letter-spacing: 0.7px;
}

.second-section-with-location .middle-size-set .mid-pack .last-review {
  loat: left;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  height: 83px;
  width: 100px;
}

.second-section-with-location .middle-size-set .mid-pack .last-review svg {
  float: right;
  margin-right: 10px;
}

.second-section-with-location .middle-size-set .mid-pack .last-review p {
  color: #FF9F0A;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-style: normal;
  margin: 0;
  float: right;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 1.5px;
}

.second-section-with-location .navigationn-section {
  float: left;
  width: 100%;
}

.second-section-with-location .navigationn-section .left-side-navi {
  float: left;
  width: 100px;
}

.second-section-with-location .navigationn-section .left-side-navi .right-side-arrow {
  float: left;
  padding: 10px;
  cursor: pointer;
}

.second-section-with-location .navigationn-section .left-side-navi .left-arrow {
  float: left;
  padding: 10px;
  cursor: pointer;
}

.second-section-with-location .navigationn-section .right-side-dots {
  display: block;
  float: right;
  margin: 15px 15px 0 0;
}

.second-section-with-location .navigationn-section .right-side-dots:marker {
  display: none;
}

.second-section-with-location .navigationn-section .right-side-dots #dont-container {
  float: right;
}

.second-section-with-location .navigationn-section .right-side-dots button {
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border-radius: 50px;
  opacity: 0.5;
  border: 0 none;
  background: #fff;
  padding: 0;
}

.second-section-with-location .navigationn-section .right-side-dots button span {
  display: none;
}

.second-section-with-location .navigationn-section .right-side-dots button.active {
  opacity: 1;
  width: 30px;
}

.welcome-alma-section {
  float: left;
  width: 100%;
  margin-bottom: 120px;
  padding-top: 160px;
}

.welcome-alma-section .image-sith-yel-border {
  float: left;
  width: 100%;
  border-radius: 3px;
  position: relative;
}

.welcome-alma-section .image-sith-yel-border:after {
  content: "";
  float: left;
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  background: #FF9F0A;
  left: -30px;
  border-radius: 5px;
  bottom: -30px;
  z-index: -1;
}

.welcome-alma-section .image-sith-yel-border img {
  float: left;
}

.welcome-alma-section .r-side-content {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: flex-start;
  height: 100%;
}

@media (min-width: 576px) and (max-width: 768px) {
  .welcome-alma-section .r-side-content {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .welcome-alma-section .r-side-content {
    margin-top: 30px;
  }
}

.welcome-alma-section .r-side-content h1 {
  color: #9FA2A8;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  float: left;
  width: 100%;
  line-height: normal;
  letter-spacing: 1.2px;
}

.welcome-alma-section .r-side-content h2 {
  color: #141517;
  font-family: "Noto Serif", serif;
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

@media (min-width: 576px) and (max-width: 768px) {
  .welcome-alma-section .r-side-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .welcome-alma-section .r-side-content h2 {
    font-size: 40px;
  }
}

.welcome-alma-section .r-side-content p {
  float: left;
  width: 100%;
  color: #5C5C5C;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
  margin: 0;
}

.our-cliets {
  float: left;
  width: 100%;
  margin-bottom: 100px;
}

.our-cliets .main-title-client {
  float: left;
  width: 100%;
  color: #515151;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.0625rem;
  margin-bottom: 40px;
}

.our-cliets .logo-image {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  align-content: center;
  flex-wrap: nowrap;
}

.our-cliets .logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  float: left;
  filter: grayscale(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.our-cliets .logo-image img:hover {
  filter: grayscale(0);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  padding: 0;
}

.map-box {
  grid-column: span 2;
  grid-row: span 2;
  background: white;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .map-box {
    grid-column: span 6;
    grid-row: span 2;
  }
}

.map-box img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.map-box .get-direction {
  display: block;
  width: 220px;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  position: absolute;
  left: calc(100% / 2 - 110px);
  bottom: 20px;
  z-index: 500;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: normal;
}

.icons-box {
  grid-column: span 2;
  background: #141517;
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 576px) {
  .icons-box {
    grid-column: span 6;
    grid-row: span 2;
  }
}

.icons-box .features-list {
  float: left;
  width: 100%;
  padding: 0 15px 20px;
  border-bottom: 1px solid #ffffff40;
}

.icons-box .features-list span {
  width: calc(100% / 4);
  float: left;
  text-align: center;
  display: inline-block;
  margin-top: 30px;
}

.icons-box .features-list span svg {
  float: left;
  width: 100%;
  height: 42px;
}

.icons-box .social-iocns {
  float: left;
  width: 100%;
  padding: 20px;
}

.icons-box .social-iocns h2 {
  float: left;
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.0625rem;
  margin: 0;
}

.icons-box .social-iocns a {
  margin-top: 15px;
  float: left;
  width: calc(100% / 4);
  text-align: center;
}

.testimonial-box {
  grid-column: span 2;
  grid-row: span 1;
  border: 1px solid #C7391E;
  border-radius: 12px;
  padding: 20px;
  background: white;
  color: #141517;
}

@media (max-width: 576px) {
  .testimonial-box {
    grid-column: span 6;
    grid-row: span 2;
  }
}

.testimonial-box .label {
  background: #C7391E;
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 0 3px 3px;
  margin-bottom: 10px;
  font-family: #9FA2A8;
  font-size: 0.625rem;
  font-style: normal;
  float: left;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  margin-top: -20px;
}

.testimonial-box .avatars {
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
  margin: 10px 0;
}

.testimonial-box .avatars img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: -20px;
  border: 2px solid #ededed;
}

.testimonial-box .avatars span {
  color: #868686;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.5px;
  margin-left: 30px;
}

.testimonial-box .stars {
  color: gold;
  font-size: 35px;
  margin: 10px 0;
}

.testimonial-box p {
  font-style: italic;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  float: left;
  width: 100%;
  margin-bottom: 0;
  line-height: normal;
  letter-spacing: 0.7px;
}

.image-box {
  grid-column: span 4;
  grid-row: span 1;
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #141517;
}

@media (max-width: 576px) {
  .image-box {
    grid-column: span 6;
    grid-row: span 2;
  }
}

.image-box .label {
  background: #C7391E;
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 0 3px 3px;
  margin-bottom: 10px;
  font-family: #9FA2A8;
  font-size: 0.625rem;
  font-style: normal;
  float: left;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
  position: absolute;
  left: 20px;
  top: 0;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.image-box .caption {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000 85.73%);
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.image-box .caption h2 {
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  letter-spacing: 0.075rem;
}

.image-box .caption p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  opacity: 0.8;
  line-height: normal;
  letter-spacing: 0.06125rem;
  margin-bottom: 0;
}

.image-box .caption a {
  float: left;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.06125rem;
  margin-bottom: 0;
  padding: 2px;
  text-align: center;
  font-weight: 500;
  background-color: #C7391E;
  width: 120px;
  margin-top: 10px;
  position: relative;
  z-index: 300;
  border-radius: 50px;
}

.mian-bg-background {
  float: left;
  position: relative;
  width: 100%;
  margin-top: -58px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  border-bottom: 1px solid #ededed;
}

.mian-bg-background .middle-bloacks-content {
  float: left;
  width: 100%;
  margin-bottom: 100px;
}

.main-title-pack {
  float: left;
  width: 100%;
  text-align: left;
}

.main-title-pack.max-sizeee {
  max-width: 600px;
}

.main-title-pack.max-sizeee h2 {
  line-height: 65px;
}

.main-title-pack.cwnterre {
  text-align: center;
}

.main-title-pack.cwnterre p {
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  width: 100%;
  float: none;
  margin: 0 auto;
  max-width: 600px;
}

.main-title-pack h2 {
  color: #2D2D2D;
  font-family: "Noto Serif", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 45px;
  /* 70.313% */
  letter-spacing: 5.12px;
  float: left;
  width: 100%;
}

@media (min-width: 576px) and (max-width: 768px) {
  .main-title-pack h2 {
    font-size: 42px;
    line-height: 43px;
  }
}

@media (max-width: 576px) {
  .main-title-pack h2 {
    font-size: 30px;
    line-height: 32px;
  }
}

.main-title-pack h1 {
  color: #2D2D2D;
  float: left;
  width: 100%;
  font-family: "Noto Serif", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.8px;
}

@media (min-width: 576px) and (max-width: 768px) {
  .main-title-pack h1 {
    font-size: 24px;
    line-height: 25px;
  }
}

@media (max-width: 576px) {
  .main-title-pack h1 {
    font-size: 18px;
    line-height: 20px;
  }
}

.main-title-pack p {
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  float: left;
  width: 100%;
  margin: 0 auto;
  max-width: 730px;
}

.sliding-image {
  float: left;
  width: 100%;
  padding: 100px 0;
}

.sliding-image .second-row {
  float: left;
  width: 100%;
}

.sliding-image .second-row .grid-slider-mask {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sliding-image .second-row .sliding-strip {
  display: flex;
  width: max-content;
  will-change: transform;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.sliding-image .second-row .sliding-grid {
  float: left;
  width: 100%;
  margin-right: 30px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 30px;
  padding: 0;
}

.sliding-image .second-row .sliding-grid .grid-blocks {
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}

.sliding-image .second-row .sliding-grid .grid-blocks span {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 5px 20px;
  border-radius: 5px;
  background: #141517;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  /* 187.5% */
  letter-spacing: 1.2px;
}

.sliding-image .second-row .sliding-grid .grid-blocks img {
  float: left;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block1 {
  grid-column: span 1;
  grid-row: span 1;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block2 {
  grid-column: span 2;
  grid-row: span 2;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block3 {
  grid-column: span 1;
  grid-row: span 1;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block4 {
  grid-column: span 1;
  grid-row: span 1;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block5 {
  grid-column: span 1;
  grid-row: span 1;
}

.sliding-image .second-row .sliding-grid .grid-blocks.block6 {
  grid-column: span 2;
  grid-row: span 1;
}

.facilitys-slider {
  float: left;
  width: 100%;
  background: #FBFBFB;
  border-bottom: 1px solid #ededed;
  border-top: 1px solid #ededed;
  padding: 100px 0;
}

.facilitys-slider .main-title-pack {
  margin-top: 60px;
}

.facilitys-slider .randome-image-slide {
  float: left;
  width: 100%;
  margin-left: -15px;
}

@media (min-width: 576px) and (max-width: 768px) {
  .facilitys-slider .randome-image-slide {
    display: none;
  }
}

@media (max-width: 576px) {
  .facilitys-slider .randome-image-slide {
    display: none;
  }
}

.facilitys-slider .randome-image-slide img {
  width: 100%;
  float: left;
}

.facilitys-slider .sliding-features {
  float: left;
  width: 100%;
  margin-top: 40px;
}

.facilitys-slider .sliding-features .featuers-slider-pack {
  float: left;
  width: 100%;
  padding: 50px 30px;
  background: #fff;
  border: 1px solid #ededed;
}

.facilitys-slider .sliding-features .featuers-slider-pack .iocn-placement {
  float: left;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background: #454545;
}

.facilitys-slider .sliding-features .featuers-slider-pack .iocn-placement svg {
  float: left;
  width: 100%;
  padding: 10px;
}

.facilitys-slider .sliding-features .featuers-slider-pack h2 {
  float: left;
  width: 100%;
  color: #141517;
  font-family: "Noto Serif", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 120% */
  letter-spacing: 1px;
  margin: 20px 0 40px 0;
  position: relative;
}

.facilitys-slider .sliding-features .featuers-slider-pack h2:after {
  content: "";
  background-color: #C7391E;
  float: left;
  width: 100px;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -20px;
  border-radius: 50px;
}

.facilitys-slider .sliding-features .featuers-slider-pack ul {
  float: left;
  width: 100%;
  margin-top: 15px;
}

.facilitys-slider .sliding-features .featuers-slider-pack ul li {
  color: #5C5C5C;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}

.pricing-packages {
  float: left;
  width: 100%;
  padding: 100px 0;
}

.pricing-packages .main-title-pack.max-sizeee {
  margin-bottom: 60px;
}

.pricing-packages .packages-of-drop {
  float: left;
  width: 100%;
  border-radius: 1.875rem;
  border: 1px solid #ededed;
}

.pricing-packages .packages-of-drop .title-section {
  border-radius: 1.875rem 1.875rem 0rem 0rem;
  background: #FF9F0A;
  float: left;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.pricing-packages .packages-of-drop .title-section h1 {
  float: left;
  width: 100%;
  margin: 0;
  color: "Poppins", sans-serif;
  font-family: #141517;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.015rem;
}

.pricing-packages .packages-of-drop .container-of-text {
  float: left;
  width: 100%;
  padding: 30px;
}

.pricing-packages .packages-of-drop .container-of-text .top-section {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ededed;
}

.pricing-packages .packages-of-drop .container-of-text .top-section p {
  float: left;
  text-align: center;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
  letter-spacing: 0.00875rem;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .pricingg {
  float: left;
  width: 100%;
  margin: 0 0 15px;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .pricingg .pricess {
  float: none;
  display: flex;
  max-width: fit-content;
  margin: 0 auto;
  color: #141517;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  position: relative;
  line-height: normal;
  letter-spacing: 0.02rem;
  flex-direction: column;
  align-items: flex-end;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .pricingg .pricess .monthly {
  float: right;
  color: #808080;
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 0.9375rem;
  letter-spacing: 0.00813rem;
  text-align: center;
  padding: 3px 10px;
  background: #ededed;
  width: max-content;
  border-radius: 4px;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .dropdown-section {
  float: none;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .dropdown-section label {
  float: left;
  width: 100%;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  color: #808080;
  padding-left: 15px;
}

.pricing-packages .packages-of-drop .container-of-text .top-section .dropdown-section select {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  stroke-width: 3px;
  border-radius: 20px;
  border: 3px solid #48B02C;
}

.pricing-packages .packages-of-drop .top-list-of-set {
  float: left;
  width: 100%;
  margin-top: 30px;
}

.pricing-packages .packages-of-drop .top-list-of-set .packagezx {
  float: left;
}

.pricing-packages .packages-of-drop .top-list-of-set .packagezx h2 {
  float: left;
  width: 100%;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.0125rem;
  margin: 0;
  margin-bottom: 10px;
}

.pricing-packages .packages-of-drop .top-list-of-set .packagezx ul {
  float: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-packages .packages-of-drop .top-list-of-set .packagezx ul li {
  float: left;
  width: 100%;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.01rem;
  margin-top: 10px;
}

.pricing-packages .packages-of-drop .top-list-of-set .packagezx ul li::before {
  content: "";
  float: left;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background-color: #48B02C;
  margin-top: 5px;
  margin-right: 10px;
}

.contact-bottom {
  float: left;
  width: 100%;
  margin: 0 0 100px 0;
}

.contact-bottom .contact-popup-card {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
  padding: 60px 0;
  border-radius: 30px;
}

.contact-bottom .contact-popup-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.42);
  z-index: 20;
}

.contact-bottom .contact-popup-card img {
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.contact-bottom .contact-popup-card .middle-text {
  position: relative;
  text-align: center;
  padding: 0 40px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-bottom .contact-popup-card .middle-text h2 {
  color: #fff;
  margin: 0;
  font-family: "Noto Serif", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 5.9375rem;
  /* 148.438% */
  letter-spacing: 0.32rem;
}

.contact-bottom .contact-popup-card .middle-text p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.0625rem;
}

.contact-bottom .contact-popup-card .middle-text .contact-button {
  float: left;
  text-align: center;
  border-radius: 50px;
  background-color: #C7391E;
  width: 100%;
  margin-top: 10px;
  max-width: 240px;
  padding: 15px 30px;
}

.contact-bottom .contact-popup-card .middle-text .contact-button svg {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #AF1C00;
  float: left;
  padding: 8px;
}

.contact-bottom .contact-popup-card .middle-text .contact-button p {
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  float: left;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.075rem;
  margin: 0;
  margin-left: 10px;
}

.main-footer-design {
  float: left;
  width: 100%;
  text-align: center;
  background-color: #141517;
}

.main-footer-design .footer-content {
  float: left;
  width: 100%;
}

.main-footer-design p {
  float: left;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  padding: 20px 0;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.075rem;
}

.popup-screen-user-contact {
  position: fixed;
  left: 0;
  top: -200%;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  z-index: 9000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.popup-screen-user-contact .popup-midle {
  position: fixed;
  left: calc(100% / 2 - 225px);
  top: 40px;
  width: 100%;
  max-width: 450px;
  background: #fff;
  padding: 20px;
  border: 1px solid #ededed;
  border-radius: 10px;
}

.popup-screen-user-contact .popup-midle .title-top-titlw {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededed;
  text-align: center;
}

.popup-screen-user-contact .popup-midle .title-top-titlw .close-button {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 45px;
  height: 45px;
  line-height: 42px;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
  color: #141517;
  background-color: #fff;
  border-radius: 50px;
}

.popup-screen-user-contact .popup-midle .title-top-titlw h2 {
  float: left;
  width: 100%;
  color: #141517;
  font-family: "Noto Serif", serif;
  margin: 0;
  font-size: 2rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.16rem;
}

.popup-screen-user-contact .popup-midle .title-top-titlw p {
  float: left;
  width: 100%;
  margin: 0;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.06125rem;
}

.popup-screen-user-contact .popup-midle .contact-fomr {
  float: left;
  width: 100%;
}

.popup-screen-user-contact .popup-midle .contact-fomr p {
  float: left;
  width: 100%;
}

.popup-screen-user-contact .popup-midle .contact-fomr p label {
  float: left;
  width: 100%;
  color: #797E84;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.08rem;
}

.popup-screen-user-contact .popup-midle .contact-fomr p input, .popup-screen-user-contact .popup-midle .contact-fomr p textarea {
  float: left;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #ededed;
}

.popup-screen-user-contact .popup-midle .contact-fomr input.wpcf7-form-control.wpcf7-submit.has-spinner {
  float: left;
  width: 100%;
  background: #C7391E;
  padding: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}

.popup-screen-user-contact .popup-midle .contact-fomr .wpcf7-response-output {
  float: left;
  margin-top: 0;
  width: 100%;
}

.popup-screen-user-contact.active {
  opacity: 1;
  top: 30px;
  top: 0;
  visibility: visible;
}

.popup-contact-btnx {
  cursor: pointer;
}

.get-quatation {
  float: left;
  width: 100%;
  text-align: center;
  padding: 15px;
  background-color: #48B02C;
  border-radius: 50px;
  margin-top: 15px;
  color: #fff;
}

.middle-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  height: 100%;
}
