@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');




@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Eurostile';
    src: url('../fonts/EurostileBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*==Font-setup==*/
*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

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

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/*==container-setup==*/
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  padding: 18px 0;
}

.header-area .container {
  max-width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
  padding: 3px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}


.header-main {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 64px;
}

.logo-item img {
  max-width: 180px;
  width: 100%;
  transition: opacity 0.2s ease;
}

.logo-item img:hover {
  opacity: 0.8;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 500;
  font-size: 14.5px;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
}

.main-nav > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.04);
}

.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  width: auto;
  height: 2px;
  background: #F26C0B;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav > ul > li:hover > a {
  color: #F26C0B;
}

.main-nav > ul > li:hover > a::after {
  transform: scaleX(1);
}

.main-nav > ul > li > a .fa-angle-down {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.main-nav > ul > li:hover > a .fa-angle-down {
  transform: rotate(180deg);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-btn {
  position: relative;
  background: #F26C0B;
  border: 1px solid #F26C0B;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-btn:hover {
  background: #e0600a;
  box-shadow: 0 4px 16px rgba(242, 108, 11, 0.35);
  transform: translateY(-1px);
}

.header-btn:active {
  transform: translateY(0);
}

.header-btn a {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.header-btn a span img {
  margin-right: 0;
  display: block;
  width: 16px;
  height: 16px;
}

.elepes-img2 img {
  display: none;
}

.header-btn a:hover {
  opacity: 1;
}

.call-mobil {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F26C0B;
}

.call-mobil a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.elepes-img img {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 165px;
  height: 35px;
  z-index: 1;
}

.main-nav > ul > li:has(.submenu)::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 100%;
  width: calc(100% + 120px);
  height: 16px;
}

.submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  padding: 10px;
  z-index: 10;
  align-items: initial !important;
  justify-content: flex-start !important;
  border-radius: 14px;
  border: 1px solid #e9eaeb;
  gap: 4px;
}

.main-nav ul li:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.submenu li {
  display: block;
}

.submenu li a {
  font-weight: 600;
  font-size: 15px;
  color: #111827 !important;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  column-gap: 10px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.submenu-ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #616977;
  font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.submenu li a:hover {
  background: #f6f7f9 !important;
  color: #F26C0B !important;
  transform: translateX(1px);
}

.submenu li a:hover .submenu-ico {
  color: #F26C0B;
  background: rgba(242, 108, 11, 0.1);
}

/* Mega menu */
.submenu.mega-menu {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  align-items: start !important;
  min-width: 720px;
  gap: 0;
  padding: 24px 16px 12px;
  left: 0;
  transform: translateX(0) translateY(6px);
}

.submenu.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 38px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #e9eaeb;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  z-index: 11;
}

.main-nav ul li:hover .submenu.mega-menu {
  transform: translateX(0) translateY(0);
}

.mega-col {
  padding: 0 16px;
  justify-self: stretch;
}

.mega-col:not(:last-child) {
  border-right: 1px solid #f0f1f3;
}

.mega-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9ca3af;
  padding: 4px 14px 10px;
  margin: 0;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-list li a {
  justify-content: flex-start;
  width: 100%;
  text-align: left;
}

/* Mega menu — larger icons */
.submenu.mega-menu .submenu-ico {
  width: 36px;
  height: 36px;
  font-size: 15px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.submenu.mega-menu .mega-list li a {
  grid-template-columns: 36px 1fr;
  align-items: start;
  column-gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Mega menu — two-line text */
.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mega-item-title {
  font-weight: 600;
  font-size: 14.5px;
  color: #111827;
  line-height: 1.3;
  display: block;
}

.mega-item-desc {
  font-weight: 400;
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.3;
  display: block;
  white-space: nowrap;
}

/* Mega menu — icon default (gray) */
.submenu.mega-menu .submenu-ico {
  background: #f3f4f6;
  color: #6b7280;
}

/* Mega menu — hover effects */
.submenu.mega-menu .mega-list li a:hover {
  background: #f8f9fb !important;
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.submenu.mega-menu .mega-list li a:hover .mega-item-title {
  color: #F26C0B !important;
}

.submenu.mega-menu .mega-list li a:hover .submenu-ico {
  transform: scale(1.08);
  background: rgba(242, 108, 11, 0.12);
  color: #F26C0B;
}

/* Mega menu — footer */
.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid #f0f1f3;
  padding: 14px 24px;
  margin-top: 10px;
  text-align: center;
}

.mega-footer a {
  font-weight: 600;
  font-size: 13.5px;
  color: #F26C0B !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 8px;
  transition: background 0.15s ease, gap 0.2s ease;
}

.mega-footer a:hover {
  background: rgba(242, 108, 11, 0.06);
  gap: 10px;
}

.mega-footer a i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.mega-footer a:hover i {
  transform: translateX(3px);
}

.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}

.menu-btn:hover {
  background: #f6f7f9;
}

.menu-btn span {
  height: 3px;
  background: red;
  margin-top: 4px;
  display: block;
}

.mobil-brand img {
  max-width: 200px;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  left: -400px;
  max-width: 400px;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  display: none;
  box-shadow: 18px 0 60px rgba(0, 0, 0, 0.14);
}

.sidebar-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-wrap {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.close-icon {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.close-icon:hover {
  background: #f6f7f9;
}

.close-icon i {
  font-size: 20px;
  color: #F26C0B;
}

.menu-item a {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 10px;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.menu-item a:hover,
.menu-item a:active {
  background: #f6f7f9;
  color: #F26C0B;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 6px;
}

.sub-menu.open {
  opacity: 1;
  padding: 6px 6px 2px;
}

.sub-menu .sub-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-radius: 10px;
  background: #f5f5f5;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
  text-decoration: none;
}

.sub-menu .sub-item .submenu-ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e9eb;
  border-radius: 8px;
  color: #616977;
  font-size: 14px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.sub-menu .sub-item:hover {
  color: #F26C0B;
  background: #f6f7f9;
  transform: translateX(1px);
}

.sub-menu .sub-item:hover .submenu-ico {
  color: #F26C0B;
  background: rgba(242, 108, 11, 0.1);
}

/* Mobile sidebar — two-line text */
.sub-menu .sub-item {
  align-items: start;
}

.sub-menu .sub-item .submenu-ico {
  margin-top: 2px;
}

.sub-menu .sub-item .mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sub-menu .sub-item .mega-item-title {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  line-height: 1.3;
}

.sub-menu .sub-item .mega-item-desc {
  font-weight: 400;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}

.sub-menu .sub-item:hover .mega-item-title {
  color: #F26C0B;
}

.sub-menu-group {
  padding: 12px 12px 4px;
}

.sub-menu-group:first-child {
  padding-top: 4px;
}

.sub-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9ca3af;
}

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

.dropdown {
  transition: transform 0.2s ease;
  float: right;
}

/*==overlay-css==*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*==hero-section==*/
.hero-area {
  background: url('../images/hero-bg.png') no-repeat;
  background-position: center;
  background-size: cover;
  padding: 180px 0 140px 0;
  position: relative;
  overflow: hidden;
}

.hero-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-area::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border: 40px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-vector img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 620px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.hero-bord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  padding: 4px 16px 4px 4px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-family: 'Neue Montreal';
  font-weight: 500;
  font-size: 13px;
  color: #1a1a1a;
  white-space: nowrap;
}

.hero-bord-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F26C0B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-col {
  display: flex;
  align-items: center;
}
.hero-left {
  max-width: 520px;
}

.hero-left h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #ffffff;
  letter-spacing: -2%;
  line-height: 65px;
  padding-bottom: 20px;
  border-bottom: 3px solid #F26C0B;
  display: inline-block;
}

.hero-left p {
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
  margin-top: 20px;
  line-height: 28px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  line-height: 1;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

.domain-search-box {
  max-width: 640px;
  margin: 31px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.domain-search-box:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
}

.domain-search-box input {
  border: none;
  outline: none;
  padding: 14px 20px 14px 24px;
  font-size: 15px;
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  border-radius: 100px;
  width: 100%;
  background: none;
  color: #ffffff;
}

.domain-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.domain-search-btn {
  border-radius: 100px;
  background: #ffffff;
  border: none;
  color: #F26C0B;
  font-family: 'Neue Montreal', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}

.domain-search-btn:hover {
  background: #f0f0f0;
}

.domain-search-btn span {
  position: relative;
  z-index: 2;
}

.domain-search-btn .ellipes3-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.domain-search-btn .ellipes3-img img {
  width: 105px;
  height: 35px;
}

.hero-right-img {
  height: 100%;
}
.hero-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-right {
  position: relative;
  height: 100%;
}

.hero-img-bord {
  width: auto;
  display: grid;
  grid-template-columns: 36px auto;
  border-radius: 60px;
  padding: 4px 16px 4px 4px;
  column-gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.img-bord-left {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F26C0B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-bord-right {
  font-weight: 500;
  font-size: 13px;
  color: #1a1a1a;
  white-space: nowrap;
}

.hero-img-bord2 {
  width: auto;
}

.hero-img-box {
  max-width: 231px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 16px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.hero-img-bord1 {
  position: absolute;
  top: 74px;
  transform: rotate(-6deg);
  left: -82px;
}

.hero-img-bord2 {
  position: absolute;
  bottom: 171px;
  transform: rotate(-6deg);
  left: -82px;
}

.hero-img-box h3 {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}

.hero-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.33);
  margin-top: 16px;
}

.hero-img-box ul {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 16px;
}

.hero-box-inner {
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: -1px;
  text-transform: uppercase;
  width: 36px;
  height: 36px;
  background: #F26C0B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-box-inner i {
  font-size: 16px;
}

.hero-img-box ul li h4 {
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.hero-img-box ul li p {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.5px;
  margin-top: 3px;
}

/*==references-section==*/
.references-area {
  background: #f8f8f8;
  padding: 40px 0;
  overflow: hidden;
}

.references-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999999;
  margin-bottom: 28px;
}

.references-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.references-logo img {
  max-height: 34px;
  max-width: 160px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.references-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/*==hosting-section==*/
.hosting-area {
  padding-bottom: 151px;
}

.hosting-main {
  max-width: 1061px;
  margin: auto;
  display: grid;
  grid-template-columns: 50% auto;
  column-gap: 71px;
  align-items: center;
}

.hosting-left img {
  width: 100%;
  border-radius: 12px;
}

.bord-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  padding: 4px 16px 4px 4px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E5E5;
  font-family: 'Neue Montreal';
  font-weight: 500;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.bord-all-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F26C0B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

.hosting-right h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
  line-height: 58px;
  margin-top: 15px;
}

.hosting-right p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 26px;
  letter-spacing: -1%;
  margin-top: 15px;
}

.hosting-right p:nth-of-type(1) {
  margin-top: 73px;
}

.main-btn-all {
  display: inline-block;
  background: #F26C0B;
  border-radius: 70px;
  margin-top: 35px;
  position: relative;
  transition: 0.3s all ease;
}

.main-btn-all:hover {
  background: #d95d08;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 108, 11, 0.4);
}

.main-btn-all a {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  padding: 15px 21px;
  display: block;
  border-radius: 70px;
  position: relative;
  z-index: 2;
}

.main-btn-epelis img {
  width: 165px;
  height: 35px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
}

/*==customers-section==*/
.customers-area {
  background: #F8F9FA;
  padding: 64px 0 140px 0;
}

.customers-toppr {
  display: grid;
  grid-template-columns: 55% auto;
  column-gap: 20px;
  align-items: end;
}

.customers-toppr-left h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  line-height: 58px;
  margin-top: 5px;
}

.customers-toppr-right p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -1%;
  line-height: 26px;
  max-width: 348px;
  margin-left: auto;
}

.customers-middle {
  display: grid;
  grid-template-columns: 427px auto;
  column-gap: 20px;
  margin-top: 53px;
}

.customers-middle-left {
  background: #E9EAEB;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.customers-big-icon img {
  max-width: 160px;
  position: absolute;
  right: 20px;
  bottom: 21px;
}

.custome-cnt {
  position: relative;
  z-index: 2;
  max-width: 253px;
}

.custom-icon img {
  width: 36px;
}

.customers-middle-left h4 {
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  letter-spacing: -2%;
  margin-top: 24px;
}

.customers-middle-left p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: -1%;
  margin-top: 14px;
  line-height: 24px;
}

.custom-midd-btn {
  margin-top: 128px;
}

.custom-midd-btn a {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  letter-spacing: -1%;
  transition: 0.2s all ease;
}

.custom-midd-btn a:hover {
  color: #F26C0B;
}

.custom-midd-btn a span {
  margin-left: 6px;
  display: inline-block;
  transition: 0.3s all ease;
}

.custom-midd-btn a:hover span {
  transform: translateX(6px);
}

.custom-midd-btn a:hover span img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(89%) saturate(2075%) hue-rotate(3deg) brightness(97%) contrast(94%);
}

.customers-middle-right {
  background: #FFFFFF;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 265px auto;
  column-gap: 54px;
  align-items: flex-end;
}

.customers-inner1 {
  padding: 28px 0 28px 28px;
}

.customers-inner1 h3 {
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  letter-spacing: -2%;
  margin-top: 24px;
}

.customers-inner1 p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: -1%;
  line-height: 24px;
  margin-top: 14px;
}

.tab-box img {
  width: 100%;
  
}

.customers-btmbar {
  display: grid;
  grid-template-columns: auto 427px;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.customers-btm-left {
  background: #ffffff;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 40px;
  align-items: end;
}

.customers-btm-inner1 {
  padding: 28px 0 28px 28px;
}

.customers-btm-inner1 h3 {
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  letter-spacing: -2%;
  margin-top: 24px;
}

.customers-btm-inner1 p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: -1%;
  line-height: 24px;
  margin-top: 14px;
}

.customers-btm-inner2 img {
  width: 100%;
  vertical-align: middle;
}

.customers-btm-right {
  background: #2B2B2B;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.customers-btm-right h4 {
  font-weight: 500;
  font-size: 28px;
  color: #ffffff;
  letter-spacing: -2%;
  margin-top: 24px;
}

.customers-btm-right p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -1%;
  margin-top: 14px;
  line-height: 24px;
}

.custom-midd-btn2 a {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -1%;
  transition: 0.2s all ease;
}

.custom-midd-btn2 a:hover {
  color: #F26C0B;
}

.custom-midd-btn2 a:hover span img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(89%) saturate(2075%) hue-rotate(3deg) brightness(97%) contrast(94%);
}

/*==choose-section==*/
.choose-area {
  position: relative;
  background: #ffffff;
  padding: 80px 0 40px 0;
}

.choose-vector img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.choose-main {
  max-width: 1011px;
  margin: auto;
  position: relative;
  z-index: 2;
}

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

.choose-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
}

.choose-title p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -1%;
  color: rgba(0, 0, 0, 0.7);
  line-height: 26px;
  margin-top: 10px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 56px;
  row-gap: 56px;
  margin-top: 75px;
}

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

.choose-item img {
  max-width: 44px;
}

.choose-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  margin-top: 20px;
}

.choose-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: -1%;
  margin-top: 10px;
}

.desk-none {
  display: none;
}

/*==drives-section==*/

.drives-area {
  background: #ffffff;
  padding: 100px 0 80px 0;
}

.drives-main {
  display: grid;
  grid-template-columns: 45% 40%;
  column-gap: 80px;
  align-items: center;
}

.drives-left {
  padding-right: 96px;
}

.drives-left h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
}

.drives-left p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 26px;
  margin-top: 20px;
}

.drives-right {
  position: relative;
}
.drives-right img {
  width: 100%;
  display: block;
}

.mobil-chose-item {
  position: relative;
}

.drives-tag {
  position: absolute;
  white-space: nowrap;
  border-radius: 60px;
  padding: 8px 18px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #1a1a2e;
  z-index: 2;
}
.drives-tag i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.drives-tag-dark {
  top: 55%;
  right: -5%;
  transform: rotate(-6deg);
}
.drives-tag-dark i {
  background: #333;
}
.drives-tag-orange {
  top: 75%;
  right: -8%;
  transform: rotate(-6deg);
}
.drives-tag-orange i {
  background: #f97316;
}

/*==work-section==*/

.villa-section {
   background: #ffffff;
   padding-bottom: 150px;
   display: none;
}

.villa-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  line-height: 58px;
  text-align: center;
}

.villa-container {
  display: grid;
  grid-template-columns: 43% auto;
  column-gap: 111px;
  margin-top: 50px;
  align-items: center;
}

.work-cnt h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #666666;
  letter-spacing: -2%;
}

.work-cnt p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -1%;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 20px;
}

.work-line {
  height: 2px;
  background: #878787;
  margin-top: 30px;
} 

.work-line-upper {
  height: 100%;
  width: 62px;
  background: transparent;
}

.work-cnt2 {
  margin-top: 30px;
}

.villa-features li {
  cursor: pointer;
}


.villa-features li.active h4 {
    color: #000000;
}

.villa-features li.active p {
    color: #000000;
}

.villa-features li.active .work-line {
    height: 2px;
} 

.villa-features li.active .work-line-upper {
    background: #F26C0B;
} 

.villa-image-desktop img {
  width: 100%;
  border-radius: 28px;
  height: 600px;
}

.villa-image-mobile {
  display: none;
}

.villa-image-mobile img {
  width: 100%;
  border-radius: 15px;
}

.mobil-villa-wrap {
  margin-top: 30px;
}

.bord-all400 {
  display: none;
}

/*==price-section==*/
.price-area {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 60px;
}

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

.price-title h2 {
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  line-height: 58px;
  letter-spacing: -2%;
}

.price-title ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 11px;
  margin-top: 16px;
}

.price-title ul li img {
  width: 23px;
  display: block;
}

.price-title ul li {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #191D23;
}

.price-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 15px;
  max-width: 1184px;
  margin: auto;
  margin-top: 50px;
}

.price-item {
  background: #F5F5F5;
  padding: 40px 24px;
  border-radius: 4px;
  position: relative;
}

.price-vector {
  position: absolute;
  width: 100%;
  height: 262px;
  background: rgba(249, 187, 143,0.3);
  filter: blur(214px);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.price-item2 {
  background: #F26C0B;
  border-radius: 12px;
  box-shadow: 0 10px 25px 0 #CCD9FF;
}

.price-top-cnt {
  position: relative;
  z-index: 2;
}

.price-top-cnt h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #191D23;
}

.price-top-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: #4D4D4D;
  margin-top: 8px;
}

.price-top-cnt h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  margin-top: 10px;
}

.price-top-cnt h2 span {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #4B5768;
}

.price-btn a {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #F26C0B;
  border: 1.5px solid #F26C0B;
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 11px;
  margin-top: 20px;
}

.price-btn2 a {
  background: #ffffff;
  border-radius: 4px;
  border: none;
  color: #6B330C;
}

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

.price-list ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 10px;
  margin-top: 20px;
}

.price-list ul li {
   font-family: "Manrope", sans-serif;
   font-weight: 500;
   font-size: 16px;
   color: #A0ABBB;
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 20px;
}

.price-item2 h4,
.price-item2 h2,
.price-item2 h2 span,
.price-item2 p {
  color: #ffffff;
}

.price-item2 ul li {
  color: #ffffff;
}

.price-item3 ul li {
  color: #191D23;
}

.price-item1 ul li:nth-of-type(1),
.price-item1 ul li:nth-of-type(2) {
  color: #191D23;
}

/*==price-section==*/
.articles-area {
  background: #ffffff;
  padding-bottom: 150px;
}

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

.articles-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  line-height: 58px;
}

.articles-title p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #191D23;
  margin-top: 8px;
  line-height: 26px;
}

.articles-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 92px;
  margin-top: 54px;
}

.articles-img img {
  width: 100%;
  transition: 0.2s all ease;
}

.articles-img img:hover {
  opacity: 0.8;
}

.articles-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -2%;
  margin-top: 22px;
  transition: 0.2s all ease;
}

.articles-item h3 a {
  color: #000000;
  transition: 0.2s all ease;
}

.articles-item h3:hover a {
  color: #F26C0B;
}

.articles-item p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -1%;
  margin-top: 12px;
}

.africle-btn a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #F26C0B;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.africle-btn a img {
  width: 9px;
  margin-left: 12px;
  display: block;
}

/*==faq-section==*/
.faq-area {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 150px;
}

.faq-main {
  max-width: 1062px;
  margin: auto;
}

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

.faq-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
}

.faq-title p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #191D23;
  margin-top: 15px;
}


.accordion-main-wrap {
  margin-top: 62px;
}

.ac {
  border: 1px solid #E4E4E7;
  background: #F8F9FA;
}

.ac:nth-of-type(1) {
  border-radius: 10px 10px 0 0;
}

.ac-trigger {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000000;
  padding: 35px 33px;
  cursor: pointer;
  position: relative;
}

.ac.is-active .ac-trigger {
  padding-bottom: 23px;
}

.ac-trigger::after {
  content: "\2b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.ac.is-active .ac-trigger::after {
  content: "\f068";
}

.ac-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.ac-panel-cnt {
  padding: 0 33px 33px 33px;
}

.ac-panel-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: -1%;
  line-height: 26px;
}

/*==further-section==*/
.further-area {
  background: url('../images/further-bg.png') no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 86px;
}

.further-main {
  max-width: 1157px;
  margin: auto;
}

.further-main-img {
  position: relative;
}

.further-cnt {
  position: absolute;
  max-width: 473px;
  width: 100%;
  top: 215px;
  left: 65px;
}

.further-cnt h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
  letter-spacing: -2%;
  line-height: 58px;
}

.further-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -1%;
  margin-top: 10px;
  line-height: 26px;
}


.further-main-img img {
  width: 100%;
}

.main-btn-all500 {
  background: #2B2B2B;
}

/*==footer-section==*/
.footer-area {
  background: #000000;
  padding-top: 57px;
  padding-bottom: 20px;
}

.footer-topper {
  display: grid;
  grid-template-columns: 290px auto;
  column-gap: 105px;
}

.footer-topper-left p {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: -2%;
  opacity: 0.5;
  line-height: 24px;
}

.footer-img img {
  max-width: 290px;
  margin-top: 15px;
}

.footer-topper-left ul {
  display: flex;
  align-items: center;
  column-gap: 26px;
  margin-top: 15px;
}

.footer-topper-left ul li img {
  max-width: 20px;
}

.footer-topper-left ul li i {
  color: #ffffff;
  font-size: 20px;
}

.footer-topper-left ul li i:hover {
  opacity: 0.8;
}

.footer-topper-left ul li img:hover {
  opacity: 0.8;
}

.footer-topper-right {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 85px;
}

.footer-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #BCBABA;
  text-transform: uppercase;
  letter-spacing: -4%;
}

.footer-item ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 15px;
}

.footer-item ul li a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  transition: 0.2s all ease;
}

.footer-item ul li a:hover {
  color: #F26C0B;
}

.footer-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 36px;
  padding-top: 22px;
}

.footer-btm p {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.6;
  text-align: center;
}

.footer-btm p a {
  color: #F26C0B;
}

/*===add-page-new==*/
.hero-left-new {
  max-width: 608px;
}

.hero-left-new-list ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 10px;
  margin-top: 36px;
}

.hero-left-new-list ul li {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 32px auto;
  column-gap: 8px;
  align-items: center;
}

/*==sound-section==*/
.sound-area {
  position: relative;
  background: #ffffff;
  padding: 100px 0 200px 0;
}

.sound-vector img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.sound-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  text-align: center;
  letter-spacing: -2%;
}

.sound-main {
  max-width: 1011px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 56px;
  margin-top: 75px;
}

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

.sound-item img {
  max-width: 44px;
}

.sound-item h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  margin-top: 20px;
  letter-spacing: -2%;
}

.sound-item p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  margin-top: 10px;
  line-height: 24px;
  letter-spacing: -1%;
}

.sound-btm {
  max-width: 500px;
  margin: auto;
  background: #FEF6F1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 28px 16px;
  border-radius: 14px;
  text-align: center;
  margin-top: 55px;
}

.sound-btm h4 {
  font-weight: 700;
  font-size: 28px;
  color: #F26E0F;
  letter-spacing: -2%;
}

/*==package-section==*/
.package-area {
  background: #ffffff;
  padding-bottom: 130px;
  display: none;
}

.package-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
}

.package-title h2 {
  text-align: center;
}

.package-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 71px;
  align-items: center;
  margin-top: 50px;
}

.package-right img {
  width: 100%;
  border-radius: 23px;
}


/*==range-slider==*/
.range-slide-top {
  margin-top: 24px;
}

.range-slide-01 h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #191D23;
  margin-bottom: 14px;
}

.range-wrap {
  position: relative;
  height: 15px;
}

.track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 9px;
  background: #EDEDED;
  border-radius: 10px;
  z-index: 1;
}

.progress {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 9px;
  background: #F26C0B;
  border-radius: 10px;
  z-index: 2;
}

.range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  height: 50px;
  background: transparent;
  z-index: 4;
  pointer-events: all;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.range::-moz-range-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.range::-ms-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.thumb {
  font-weight: 700;
  font-size: 14px;
  color: #191D23;
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid #000000;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.minmax {
  font-weight: 700;
  font-size: 14px;
  color: #737373;
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
}

/*==dropdown-css==*/
.package-dropdown {
  margin-top: 24px;
}

.package-drop-title2 {
  margin-top: 24px;
}

.package-drop-title h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #191D23;
}

.dropdown2 {
  position: relative;
  margin-top: 6px;
  border: 1px solid #E3E5E8;
  border-radius: 12px;
  background: #ffffff;
}

.dropdown-input2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #191D23;
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  background: url('../images/angle2.png') no-repeat;
  background-position: 96% 50%;
}

.dropdown-input2::placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #191D23;
  opacity: 1;
}

.dropdown-menu2 {
  padding: 0;
  margin: 0;
  margin-top: 8px;
  border: 1px solid #D0D5DD;
  border-top: none;
  border-radius: 0 0 5px 5px;
  position: absolute;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown2.active2 .dropdown-menu2 {
  max-height: 500px;
  opacity: 1;
  transform: scaleY(1);
}

.dropdown2.drop-up2 .dropdown-menu2 {
  bottom: 100%;
  top: auto;
  margin-top: 0;
  margin-bottom: 6px;
  border-radius: 5px 5px 0 0;
  border-top: 1px solid #ddd;
  border-bottom: none;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu2 li {
  font-weight: 400f;
  font-size: 14px;
  color: #191D23;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s all ease;
  text-align: left;
}

.dropdown-menu2 li:hover {
  background-color: #F26C0B;
  color: #ffffff;
}

.submit-main-btn {
  position: relative;
  background: #F26C0B;
  border-radius: 70px;
  display: inline-block;
  overflow: hidden;
  transition: 0.2s all ease;
  margin-top: 24px;
}

.submit-main-btn button {
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  background: none;
  border: none;
  padding: 15px 53px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 70px;
}

.submit-main-btn:hover {
  box-shadow: 3px 4px 0px 0px #000;
  transform: translateX(-3px) translateY(-3px);
  opacity: 0.9;
}

/*==end-section==*/
.end-area {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 40px;
}

.end-main {
  margin-top: 75px;
}

.end-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -2%;
  text-align: center;
  line-height: 58px;
}

.ac-cd10 {
  border-radius: 10px;
  position: relative;
}

.ac-trigger-cd10 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -2%;
  padding: 18px 0;
  cursor: pointer;
  position: relative;
  color: #666666;
  border-bottom: 1px solid #878787;
}

.ac-cd10.is-active-cd10 .ac-trigger-cd10 {
  border-bottom: 0;
  color: #000000;
}

.ac-trigger-cd10::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.ac-cd10.is-active-cd10 .ac-trigger-cd10::after {
  content: "\f106";
}

.ac-panel-cd10 {
  height: 0;
  overflow: hidden;
  transition: .3s;
}

.ac-panel-cnt-cd10 {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding-right: 370px;
}

.ac-cd10.is-active-cd10 .ac-panel-cnt-cd10 {
  border-bottom: 3px solid #F26C0B;
  padding-bottom: 31px;
}

.ac-image-cd10 {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 310px;
  height: 310px;
  opacity: 0;
  transition: .4s;
  pointer-events: none;
  z-index: 2;
}

.ac-image-cd10 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ac-cd10.is-active-cd10 .ac-image-cd10 {
  opacity: 1;
}

/*==vps-section==*/
.vps-area {
  background: #F8F9FA;
  padding: 72px 0;
}

.vps-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
  line-height: 58px;
  text-align: center;
}

.vps-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 41px;
  column-gap: 30px;
}

.vps-flex {
  display: grid;
  grid-template-columns: 264px auto;
  column-gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

.vps-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  letter-spacing: -2%;
}

.vps-item p {
  font-weight: 400;
  font-size: 16px;
  color: #262626;
  letter-spacing: -4%;
}

.vps-flex-left img {
  width: 100%;
  border-radius: 8px;
  vertical-align: middle;
}

.vps-flex-right {
  display: flex;
  flex-direction: column;
}

.vps-topper {
  margin-top: auto;
}

.vps-btm-border {
  text-align: center;
  margin-top: 41px;
}

/*==with-section==*/
.with-area {
  background: #ffffff;
  padding: 130px 0;
  display: none;
}

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

.container-title h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
}

.container-title p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 5px;
}

.about-timeline-area {
  padding-top: 60px;
}

.with-main {
  max-width: 1010px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 56px;
  margin-top: 75px;
}

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

.with-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  letter-spacing: -2%;
  margin-top: 24px;
}

.with-item p {
  font-weight: 400;
  font-size: 16px;
  color: #000000E5;
  letter-spacing: -1%;
  margin-top: 14px;
}

/*==contact-hero-section==*/
.contact-hero-area {
  background: #F26C0B;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.1) 0%, transparent 40%);
  padding: 170px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.contact-hero-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-area::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border: 40px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-main {
  max-width: 750px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.contact-hero-main .bord-all {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #1a1a1a;
}

.contact-hero-main h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
  line-height: 62px;
  margin-top: 24px;
}

.contact-hero-main p {
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
  line-height: 28px;
  margin-top: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*==contact-form-section==*/
.contact-form-area {
  background: #ffffff;
  padding: 130px 0 150px 0;
}

.contact-form-main {
  display: grid;
  grid-template-columns: 58% auto;
  column-gap: 60px;
  align-items: center;
}

.contact-form-left h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #000000;
  letter-spacing: -2%;
  line-height: 58px;
  margin-top: 15px;
}

.contact-form-left > p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 26px;
  margin-top: 15px;
}

.contact-form-wrap {
  margin-top: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #191D23;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #191D23;
  padding: 12px 14px;
  border: 1px solid #E3E5E8;
  border-radius: 12px;
  outline: none;
  background: #ffffff;
  transition: 0.2s all ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #F26C0B;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #A0ABBB;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-right {
  position: static;
}

/*==contact-sidebar==*/
.contact-sidebar {
  background: #F8F9FA;
  border-radius: 28px;
  padding: 40px 32px;
  border: 1px solid #E5E5E5;
}

.contact-sidebar-item {
  display: grid;
  grid-template-columns: 48px auto;
  column-gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #E5E5E5;
}

.contact-sidebar-item:first-child {
  padding-top: 0;
}

.contact-sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-sidebar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F26C0B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-sidebar-icon img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.contact-sidebar-icon i {
  font-size: 18px;
  color: #ffffff;
}

.contact-sidebar-cnt h4 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}

.contact-sidebar-cnt p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 4px;
  line-height: 22px;
}

.contact-sidebar-cnt a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #F26C0B;
  display: block;
  margin-top: 4px;
  transition: 0.2s all ease;
}

.contact-sidebar-cnt a:hover {
  opacity: 0.8;
}

.contact-sidebar-cnt span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #F26C0B;
  display: block;
  margin-top: 4px;
}

/*==map-section==*/
.map-area {
  background: #ffffff;
  padding: 0 0 40px 0;
}

.map-main {
  border-radius: 20px;
  overflow: hidden;
}

.map-main iframe {
  display: block;
  border-radius: 20px;
  border: 0;
}

