:root {

  --e-global-font: Poppins;

  /* footer */

  --efooter-my: auto;
  --efooter-bg: #161C28;
  --efooter-position: relative;

  --efooter-py: 1.5rem;

}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--e-global-font), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size-adjust: 100%;
  line-height: 1.4;
  position: relative;
  font-size: .95rem;
}


img {
  max-width: 100%;
}

ul,
ol,
ul>ul,
ul>ol,
ol>ol,
ol>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #161C28;
}

a>*,
button>* {
  margin: 0;
  padding: 0;
  pointer-events: none;
}

button:hover,
a:hover {
  color: currentColor;
  opacity: .8;
}

button {
  color: #161C28;
  outline: none;
  border: 1px solid transparent;
}

button,
[role="button"] {
  cursor: pointer;
}

.container {
  width: 80%;
}

@media (max-width: 1000px) {
  .container {
    width: 100%;
  }
}

.epage-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}


.einput {
  display: block;
  width: 100%;
  padding: .65rem 1rem;
  border-radius: 6px;
  outline: none;
  border: 1px solid transparent;
  font-size: .875rem;
  font-family: Poppins;
  background-color: transparent;
}

.efooter {
  margin-top: var(--efooter-my);
  background-color: var(--efooter-bg);
  position: var(--efooter-position);
  color: #fff;
  font-family: Poppins;
  padding: calc(var(--efooter-py) + .15rem) 0 2.5rem;
}

.efooter-page-logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  color: #0F8CE9;
}

.efooter-page-logo+* {
  font-weight: 300;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}

.efooter form {
  position: relative;
}

.enewsletter form .einput {
  padding: .85rem 1rem;
  border-color: #a6a6a6;
  border-radius: 50px;
  color: #fff;
  transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
}

.ecapture-form button:hover,
.ecapture-form input:hover,
.ecapture-form textarea:hover,
.enewsletter form .einput:hover {
  border-color: rgba(15, 140, 233, .82);
}

.ecapture-form button:focus,
.ecapture-form input:focus,
.ecapture-form textarea:focus,
.enewsletter form .einput:focus {
  border-color: rgba(15, 140, 233, .8);
  box-shadow: 0 0 0 0.2rem rgba(15, 140, 233, .25);
}

.efooter-column-title {
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
}

.efooter-column-list {
  display: flex;
  flex-direction: column;
}

.efooter-column-item {
  color: #a6a6a6;
  display: block;
  font-size: .875rem;
  cursor: pointer;
  font-weight: 300;
}

.efooter-column-item+.efooter-column-item {
  margin-top: 1rem;
}

.efooter-column-item:hover {
  color: rgba(255, 255, 255, .8);
}

.efooter-social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #304967;
  background-color: #304967;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 6px;
  font-size: .8rem;
}

.efooter-item {
  display: flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 300;
  color: #fff;
  /* color: #304967; */
  gap: 10px;
  padding-right: 10px;
}

.efooter-big-title {
  font-weight: 700;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .efooter-big-title {
    font-size: 1.25rem;
  }
}

.enewsletter form .einput-footer-send {
  top: 50%;
  right: 4px;
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  padding: .7rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-color: #0F8CE9;
  color: #ffff;
  cursor: pointer;
}

.enewsletter form .einput::-webkit-input-placeholder {
  color: #a6a6a6
}

.enewsletter form .einput::-moz-placeholder {
  color: #a6a6a6
}

.enewsletter form .einput:-ms-input-placeholder {
  color: #a6a6a6
}

.enewsletter form .einput::-ms-input-placeholder {
  color: #a6a6a6
}

.enewsletter form .einput::placeholder {
  color: #a6a6a6
}

.esection-card {
  padding: 1.5rem 0 2.15rem;
  position: relative;
}

.ecapture-form {
  width: 80%;
  background-color: #141e2a;
  border-radius: 10px;
  padding: 3rem 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.025);
  box-shadow: 0 10px 45px rgba(48, 73, 103, 0.1);
}

@media (max-width: 992px) {
  .ecapture-form {
    width: 100%;
    margin-top: 2rem;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border: none;
  }
}


.ecapture-form button {
  outline: none;
  border: 1px solid transparent;
  padding: .6rem 1rem;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  background-color: #0F8CE9;
  transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
}

.ecapture-form input,
.ecapture-form textarea {
  color: #fff;
  background-color: #2a3748;
  transition: box-shadow .25s ease-in-out, border-color .25s ease-in-out;
}

.ecapture-form textarea {
  height: 140px;
  resize: none;
}


.current-section-item {
  width: 280px;
  min-width: 280px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.current-section-item .content-img {
  width: 280px;
  display: none;

}

.current-section-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.current-section-item span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-top: .5rem;
  margin-bottom: .75rem;
}

.enavbar {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 1999999;
}

.enavbar .container {
  height: 100%;
  display: flex;
  padding-top: 1.5rem;
  align-items: center;
  position: relative;
}

.enavbar-header .logo {
  display: flex;
  position: relative;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.enavbar-header .logo span {
  font-size: 1rem;
  font-weight: 700;
  margin-top: -4px;
}

.enavbar-header .logo small {
  font-size: .7rem;
  display: block;
}

.enavbar-header .logo img {
  width: 52px;
  -o-object-fit: contain;
  object-fit: contain;
}

.enavbar-list {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.toggler-hamburger {
  background-color: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  font-size: 1.15rem;
  display: none;
  border-color: rgba(255, 255, 255, .5);
}

.toggler-hamburger:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .not-show {
    display: none;
  }

  .toggler-hamburger {
    display: flex;
  }
}

.enavbar-list li:has(.btn-login)+li {
  margin-left: -15px;
}

.enavbar-list li:has(.btn-login) a,
.enavbar-list li:has(.btn-login)+li a {
  padding: .6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50px;
  border: 1px solid #0f8be9;
}

.enavbar-list li:has(.btn-login)+li a {
  background-color: #0f8be9;
}

.enavbar-link>* {
  margin: 0;
  padding: 0;
}

.enavbar-link {
  color: #fff;
}

.enavbar-link:hover {
  color: #fff;
}

.epage-header {
  position: relative;
  width: 100%;
  height: 110vh;
  height: 110dvh;
  top: -100px;
}


.epage-header .overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.25), #000);
}

.epage-header img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  position: absolute;
}


.header-captions {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 11;
}


.header-captions h4 {
  font-weight: 800;
  font-size: 2.15rem;
  font-family: Montserrat;
}

.header-captions h4+* {
  font-size: 1.15rem;
  font-weight: 300;
  font-family: Montserrat;
  margin-top: 1.15rem;
  display: block;
}

.caption-actions {
  margin-top: 3rem;
  gap: 18px;
}

.ebtn,
.caption-actions a {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  border: 1px solid #0f8be9;
}

.ebtn,
.caption-actions a:first-of-type {
  color: #fff;
  background-color: #0f8be9;
}


.caption-actions a:last-of-type {
  color: #fff;
}


.header-captions-dots {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  gap: 6px;
}

.header-captions-dots .dot {
  width: 24px;
  height: 10px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  opacity: .2;
}

.header-captions-dots .dot.active {
  opacity: 1;
  background-color: #0f8be9;
}

.ratings {
  display: flex;
  gap: 1.5rem;
}

.ratings-control {
  position: relative;
  padding: .5rem 0 .75rem;
}

.control-rates {
  display: flex;
  align-items: center;
  font-size: .875rem;
  gap: 3.5px;
  color: #F89220;
}


.big-title {
  font-size: 2.25rem;
}

.content-about-image {
  width: 100%;
  height: 480px;
  position: relative;
}

.content-about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}


.service-card {
  width: 25%;
  min-width: 280px;
  padding: 1.5rem 2rem 2.5rem;
  background-color: #fff;
  border: 1px solid #0f8be94e;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.025);
  position: relative;
  border-radius: 10px;
  transition: .25s ease-in-out;

}

.service-card>i {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  color: #0f8be9;
  border: 1px solid #0f8be9;
  border-radius: 50%;
}



.service-card:hover {
  border-color: transparent;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.05);
}

.service-card.active {
  color: #fff;
  background-color: #0F8CE9;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.05);
}

.service-card.active ul {
  color: #000;
}

.service-card>span {
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-top: .5rem;
  margin-bottom: .75rem;
}

.service-card small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}


.service-card ul {
  background-color: #F9FAFB;
  padding: 1.5rem 1rem;
  margin-top: .5rem;
  border-radius: 10px;
}

.service-card li+li {
  margin-top: .5em;
}

.service-card li div {
  gap: 10px;
}


.service-card li div i {
  color: #0f8be9;
}

.service-card:has(a) {
  border-color: transparent;
  box-shadow: none;
}

.service-card a {
  color: #0f8be9;
  font-weight: 600;
}

.service-card ul:has(a) {
  border: 1px solid #0f8be920;
}

.service-card ul:has(a:hover) {
  background-color: #0f8be9;
}

.service-card ul:has(a:hover) a * {
  color: #fff;
  opacity: 1;
}

.esection-title {
  font-size: 1.85rem;
  font-weight: 700;
  display: block;
  text-align: center;
}


.colored-title {
  color: #0f8be9;
  font-weight: 700;
}


.section-icard {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem 2rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow .25s ease-in-out, -webkit-transform .25s ease-in-out;
  transition: box-shadow .25s ease-in-out, transform .25s ease-in-out;
  transition: box-shadow .25s ease-in-out, transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

@media (max-width: 1143px) {
  .col-4:has(.section-icard) {
    width: 50%;
    margin-top: 2rem;
  }

  .header-captions h4,
  .big-title,
  .esection-title {
    font-size: 1.5rem;
  }

}

.section-icard:hover {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.05);
}

.section-icard:hover .text-muted {
  color: #000 !important;
}

.section-icard .text-muted {
  transition: color .25s ease-in-out;
}

.section-icard .count {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
}


.section-icard .title {
  display: block;
  margin-top: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.section-icard .title+* {
  display: block;
}

@media (max-width: 1280px) {
  .header-captions .lg\:col-6 {
    width: 70% !important;
  }
}

@media (max-width: 1120px) {
  .header-captions .lg\:col-6 {
    width: 90% !important;
  }
}

@media (max-width: 992px) {
  .header-captions .lg\:col-6 {
    width: 100% !important;
  }

  .col-4:has(.section-icard) {
    width: 100%;
    margin-top: 2rem;
  }
}


@media (max-width: 540px) {
  .header-captions {
    text-align: center;
  }
}



.scrollTop {
  width: 45px;
  height: 45px;
  right: 1.5rem;
  bottom: -5rem;
  position: fixed;
  aspect-ratio: 1 / 1;
  z-index: 111;
  border-radius: 2px;
  color: #fff;
  background-color: #0f8be9;
  transition: color .25s ease-in-out, -webkit-transform .45s ease-in-out;
  transition: color .25s ease-in-out, transform .45s ease-in-out;
  transition: color .25s ease-in-out, transform .45s ease-in-out, -webkit-transform .45s ease-in-out;
}


.scrollTop:hover {
  color: #fff;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.scrollTop.active {
  -webkit-animation: push .25s ease-in-out forwards;
  animation: push .25s ease-in-out forwards;
}

@-webkit-keyframes push {
  to {
    bottom: 1.5rem;
  }
}

@keyframes push {
  to {
    bottom: 1.5rem;
  }
}


.epage-header {
  overflow: hidden;
}

.epage-header img.animate {
  -webkit-animation: zoomIn 1s ease-in-out;
  animation: zoomIn 1s ease-in-out;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}


.header-captions.animate {
  margin-top: 2rem;
  -webkit-animation: slideUp .5s ease-in forwards;
  animation: slideUp .5s ease-in forwards;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0.5;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }

  100% {
    opacity: 1;
    margin-top: 0rem;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0.5;
    -webkit-filter: blur(20px);
    filter: blur(20px);
  }

  100% {
    opacity: 1;
    margin-top: 0rem;
  }
}


.image-gallery div {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
  gap: 1.25rem;
}

.image-gallery img {
  display: block;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 1.25rem;
}

@media (max-width: 48rem) {
  .image-gallery div {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}

@media (max-width: 32rem) {
  .image-gallery div {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}



.content-mobile-nav {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 19999919;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
}

.mobile-nav {
  top: 0;
  right: -160%;
  width: 380px;
  max-width: 96%;
  height: 100%;
  position: fixed;
  background-color: var(--efooter-bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.025);
}

.content-mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.content-mobile-nav.active .mobile-nav {
  -webkit-animation: showRight .25s forwards;
  animation: showRight .25s forwards;
}

@-webkit-keyframes showRight {
  to {
    right: 0;
  }
}

@keyframes showRight {
  to {
    right: 0;
  }
}


.mobile-nav .enavbar-list {
  flex-direction: column;
  padding: 2rem 0 1.5rem;
}


.mobile-nav .enavbar-list li {
  width: 100%;
  padding: 0 2.25rem;
}


.mobile-nav .enavbar-list li:first-of-type p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.mobile-nav .enavbar-list li:first-of-type button {
  background-color: none;
  width: 38px;
  height: 38px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}


.content-section-card-img {
  top: -20%;
  right: 0;
  z-index: -1;
  position: absolute;
}


.ebtn:hover {
  color: #fff;
}
