@charset "UTF-8";

:root {
  --primaryc: #ff8c00; /* Daha koyu bir turuncu tonu */
  --primarybg: rgba(255, 140, 0, 0.1); /* Arka planda hafif turuncu */
  --primaryhsh: rgba(
    255,
    140,
    0,
    0.35
  ); /* Hover için daha belirgin bir efekt */
  --primaryhbg: #ff8c00cc; /* Opak bir arka plan rengi */
  --caption: #1e2022; /* Koyu gri, metin için okunabilir */
  --bodyc: #4a545d; /* Daha koyu ve net bir gri tonu */
}

:root.ozelgunler {
  --primaryc: #000000; /* Daha koyu bir turuncu tonu */
  --primarybg: rgba(0, 0, 0, 0.1); /* Arka planda hafif turuncu */
  --primaryhsh: rgba(0, 0, 0, 0.35); /* Hover için daha belirgin bir efekt */
  --primaryhbg: #000000cc; /* Opak bir arka plan rengi */
  --caption: #1e2022; /* Koyu gri, metin için okunabilir */
  --bodyc: #4a545d; /* Daha koyu ve net bir gri tonu */
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  color: var(--bodyc);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.75;
}

ul,
ul li,
li {
  list-style: none;

  margin: 0;

  padding: 0;

  color: var(--caption);
}

a {
  text-decoration: none;

  color: var(--caption);
}

a:hover {
  color: var(--primaryc);
}

img {
  -webkit-user-drag: none;

  user-drag: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;

  margin: 0 0 16px;

  color: var(--caption);
}

.h1,
h1 {
  font-size: 2.5rem;
}

.h2,
h2 {
  font-size: 2rem;
}

.h3,
h3 {
  font-size: 1.75rem;
}

.h4,
h4 {
  font-size: 1.5rem;
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

strong {
  font-weight: bold !important;
}

/* ########## TOP HEADER START ########## */

.topHeader {
  background-color: #f1f1f1;

  padding: 10px 0;
}

.topHeader ul {
  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  display: flex; /* Standart syntax */

  gap: 8px;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  flex-wrap: wrap;
}

.topHeader ul li:not(:last-child)::after {
  content: "|";

  font-size: 15px;

  display: -webkit-inline-flex; /* Safari, Chrome */

  display: inline-flex; /* Standart syntax */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  width: 1px;

  height: 30px;

  color: var(--bodyc);

  margin-left: 5px;

  margin-right: 5px;
}

.topHeader ul li a {
  color: var(--bodyc);

  font-size: 12px;

  font-weight: 500;

  display: -webkit-inline-flex; /* Safari, Chrome */

  display: inline-flex; /* Standart syntax */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  text-align: center;

  padding: 5px;

  transition: all 0.2s ease-in-out; /* Standart syntax */

  -webkit-transition: all 0.2s ease-in-out; /* Safari ve Chrome için */

  -moz-transition: all 0.2s ease-in-out; /* Firefox için */

  -o-transition: all 0.2s ease-in-out; /* Opera için */

  line-height: 1;
}

.topHeader ul li a i {
  color: var(--bodyc);
}

.topHeader ul li a:hover {
  color: var(--primaryc);
}

/* ########## TOP HEADER END ########## */

/* ########## MAIN HEADER START ########## */

.headerRow {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-wrap: wrap;

  flex-direction: row;
}

.headerColumn {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-wrap: wrap;

  flex-direction: column;
}

.headerColumn > * {
  flex-shrink: 0;

  width: 100%;

  max-width: 100%;

  padding-right: 10px;

  padding-left: 10px;
}

.headerRow > * {
  flex-shrink: 0;

  width: 100%;

  max-width: 100%;

  padding-right: 10px;

  padding-left: 10px;
}

.colAuto {
  flex: 1 0 0;
}

.newHeader {
  position: relative;

  padding: 10px 0;

  top: 0;
}

.newHeader.fixed {
  position: fixed !important;

  z-index: 9999;

  width: 100%;

  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.newHeader .newLogo a {
  display: block;
}

.newHeader .newLogo {
  display: block;
}

.newHeader .newLogo img {
  width: 250px;
}

.newHeader .newHeaderWrapper {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: space-between;
}

.newHeader .newHeaderWrapper .newHeaderMenu > ul {
  padding: 0;

  margin: 0;

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.haxDropdown {
  padding: 0 25px;

  cursor: pointer;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown {
  padding: 0 25px;

  cursor: pointer;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li a {
  font-size: 14px;

  line-height: 16px;

  font-weight: 500;

  color: var(--caption);

  opacity: 1;
}

.menuBar {
  cursor: pointer;

  font-size: 20px;

  display: none;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li a:hover {
  color: var(--primaryc);
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown {
  position: relative;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown:hover
  a:not(.dropdownColLink) {
  color: var(--primaryc);
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown:hover::before {
  color: var(--primaryc);
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.haxDropdown:hover
  a:not(.dropdownColLink) {
  color: var(--primaryc);
}

/* .newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown:hover::before {



  transform: translateY(-50%) rotateZ(-180deg);



} */

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown::before {
  content: "";

  position: absolute;

  width: 16px;

  height: 16px;

  top: 50%;

  right: 0;

  transform: translateY(-50%);

  font-family: "uicons-regular-rounded";

  transition: 0.3s ease;

  font-size: 65%;

  cursor: pointer;

  content: "\f133";
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown::after {
  content: "";

  width: 100%;

  top: 100%;

  left: 0;

  position: absolute;

  padding: 18px;

  cursor: pointer;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown .dropdownMenu {
  position: absolute;

  transform: translateY(36px);

  top: 100%;

  left: 15px;

  opacity: 0;

  visibility: hidden;

  background: #fff;

  box-shadow: 0 12px 20px 0 rgba(33, 30, 23, 0.16);

  -webkit-box-shadow: 0 12px 20px 0 rgba(33, 30, 23, 0.16);

  -moz-box-shadow: 0 12px 20px 0 rgba(33, 30, 23, 0.16);

  min-width: 641px;

  width: max-content;

  padding: 25px;

  z-index: 2;

  border-top: 0.1875rem solid var(--primaryc);

  border-bottom-right-radius: 0.5rem;

  border-bottom-left-radius: 0.5rem;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li
  .dp {
  position: absolute;

  transform: translateY(46px);

  left: 225px;

  top: -69px;

  opacity: 0;

  visibility: hidden;

  background: #f0f3f7;

  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.03),
    0 50px 100px -20px rgba(50, 50, 93, 0.25);

  -webkit-box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.03),
    0 50px 100px -20px rgba(50, 50, 93, 0.25);

  -moz-box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.03),
    0 50px 100px -20px rgba(50, 50, 93, 0.25);

  min-width: 100px;

  width: max-content;

  transition: all 0.3s ease;

  padding: 25px;

  z-index: 10;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li:hover
  .dp {
  opacity: 1;

  visibility: visible;

  z-index: 999 !important;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li
  .dp::before {
  content: "";

  width: 16px;

  height: 16px;

  background-color: #fff;

  position: absolute;

  left: -7px;

  top: 53px;

  z-index: -1;

  transform: rotate(45deg);
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown .dropdownMenu ul {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-direction: column;

  padding: 0;

  margin: 0;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li {
  position: relative;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li.dpbef::before {
  content: "";

  position: absolute;

  width: 16px;

  height: 16px;

  top: 50%;

  right: -25px;

  transform: translateY(-50%) rotateZ(-90deg);

  background-image: url(/assets/img/downArrow.svg);

  background-size: 16px;

  transition: all 0.4s ease;

  cursor: pointer;

  padding: 10px 0;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  ul
  li.dpbef:hover::before {
  transform: translateY(-50%) rotateZ(-180deg);
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.hostingMenu
  .dropdownMenu {
  left: -185px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.hostingMenu
  .dropdownMenu::before {
  left: 225px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.serverMenu
  .dropdownMenu {
  left: -240px;

  min-width: 600px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.serverMenu
  .dropdownMenu::before {
  left: 285px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.pagesMenu
  .dropdownMenu {
  left: -4px;

  min-width: 100px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.pagesMenu
  .dropdownMenu::before {
  left: 45px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.supportMenu
  .dropdownMenu {
  left: -144px;

  min-width: 280px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.supportMenu
  .dropdownMenu::before {
  left: 192px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.elementsMenu
  .dropdownMenu {
  left: -674px;

  min-width: 816px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.elementsMenu
  .dropdownMenu::before {
  left: 724px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.homeMenu
  .dropdownMenu {
  left: 5px;

  min-width: 826px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown.homeMenu
  .dropdownMenu::before {
  left: 36px;
}

/* .newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown .dropdownMenu::before {



  content: "";



  width: 16px;



  height: 16px;



  background-color: #f0f3f7;



  position: absolute;



  left: 20px;



  top: -8px;



  z-index: -1;



  transform: rotate(45deg);



} */

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu::after {
  content: "";

  width: 100%;

  position: absolute;

  bottom: 100%;

  left: 0;

  padding: 10px;

  cursor: pointer;
}

.newHeader .newHeaderWrapper .newHeaderMenu ul li.hasDropdown .dropdownMenu a {
  transition: all 0.2s ease-in-out;

  -webkit-transition: all 0.2s ease-in-out;

  -moz-transition: all 0.2s ease-in-out;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown:hover
  .dropdownMenu {
  opacity: 1;

  visibility: visible;

  z-index: 999 !important;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: flex-start;

  -ms-flex-align: start; /* Internet Explorer 10 */

  -webkit-align-items: flex-start; /* Eski WebKit tabanlı tarayıcılar */

  -moz-align-items: flex-start; /* Eski Firefox */

  padding: 20px 0;

  min-height: 88px;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink:not(:last-child) {
  border-bottom: 1px solid #e7eaf3;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink
  .dropdownIcon {
  flex: 0 0 32px;

  width: 32px;

  height: 32px;

  border-radius: 0.5rem;

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: center;

  text-align: center;

  margin-right: 10px;

  position: relative;

  color: var(--bodyc);

  font-size: 17px;

  background-color: #f1f1f1;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink
  span
  b,
.dropdownColLink small {
  display: block;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink
  span
  b {
  font-weight: 600;

  font-family: "Poppins", sans-serif;

  font-size: 14px;

  line-height: 24px;

  color: var(--caption);
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink:hover
  span
  b {
  color: var(--primaryc);
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink:hover
  .dropdownIcon {
  color: var(--primaryc);

  background-color: var(--primarybg) !important;
}

.newHeader
  .newHeaderWrapper
  .newHeaderMenu
  ul
  li.hasDropdown
  .dropdownMenu
  .dropdownColLink
  span
  small {
  display: block;

  color: var(--bodyc);

  font-size: 12px;

  padding-top: 5px;
}

.dropdownText b span {
  font-size: 10px;
}

.blinkMe {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.haxDropdown.activeStyle > a {
  border-bottom: 2px solid var(--primaryc);
  color: var(--primaryc) !important;
}

.hasDropdown.activeStyle > a {
  border-bottom: 2px solid var(--primaryc);
  color: var(--primaryc) !important;
}

.dropdownColLink.activeStyle {
  color: var(--primaryc) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--primaryc);
}

.dropdownColLink.activeStyle:last-of-type {
  border-bottom: none !important;
}

a.dropdownColLink.activeStyle span b {
  color: var(--primaryc) !important;
}

.dropdownColLink:hover .dropdownIcon,
.dropdownColLink.activeStyle .dropdownIcon {
  color: var(--primaryc) !important;
  background-color: var(--primarybg) !important;
}

/* ########## MAIN HEADER END ########## */

/* ########## TIMER SETTINGS START ########## */

.timer-wrapper {
  background: var(--primaryc);

  padding: 8px 0;

  position: relative;

  display: block;
}

.timer-wrapper #timer {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-direction: row;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: center;
}

.timer-wrapper #timer-days,
#timer-hours,
#timer-minutes,
#timer-seconds {
  text-align: center;

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-direction: row;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: center;

  font-weight: bold;

  width: 34px;

  height: 34px;

  font-size: 14px;

  line-height: 21px;

  background: #f1f1f1;

  color: var(--bodyc);

  padding: 10px;
}

.timer-wrapper .timer-detail {
  display: none;

  font-weight: 500;

  font-size: 14px;

  opacity: 0.8;
}

.timer-wrapper .title {
  font-weight: 700;

  font-size: 14px;

  line-height: 21px;

  color: #ffffff;

  margin: 0 30px 0 0;
}

#timer .span {
  color: #fff;

  font-weight: 700;

  display: inline-flex;

  display: -webkit-inline-flex; /* Safari, Chrome */

  margin: 0 4px;
}

.timer-wrapper-close {
  cursor: pointer;

  display: inline-flex;

  display: -webkit-inline-flex; /* Safari, Chrome */

  text-align: center;
}

/* ########## TIMER SETTINGS END ########## */

/* ########## SLIDER START ########## */

.owl-carousel .item {
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.owl-carousel .item ul li {
  padding: 3px 0;
}

.owl-theme .owl-dots {
  position: absolute;

  top: 288px;

  right: 32px;
}

.owl-feedback .owl-dots {
  position: absolute;

  top: 360px;

  right: 50%;
}

.slider {
  position: relative;

  width: 100%;

  height: 100%;

  min-height: 359px;
}

.slider .item {
  width: 100%;

  height: 100%;
}

.constant {
  min-height: 330px;
}

.constantTwo {
  min-height: 260px;
}

.slider-content {
  width: 1100px;

  height: auto;

  position: relative;

  padding: 40px;

  margin-top: -200px;

  background: linear-gradient(90deg, #fff 71.9%, #fff 28.5%);

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  justify-content: space-between;

  box-shadow: 0 0 0 1px #ebebeb;

  -webkit-box-shadow: 0 0 0 1px #ebebeb;

  -moz-box-shadow: 0 0 0 1px #ebebeb;

  z-index: 2;

  border-radius: 0.5rem;
}

.slider-content-left {
  width: 740px;
}

.slider-content-left a i {
  font-size: 16px;
}

.fast-menu {
  display: block;

  width: 250px;
}

.fast-menu nav ul li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
}

.fast-menu nav ul li a {
  display: block;

  padding: 5px;

  color: #000;

  font-weight: 500;

  font-size: 15px;

  text-align: center;
}

.fast-menu nav ul li a:hover {
  color: var(--primaryc);
}

.slider h1 {
  color: var(--caption);

  font-weight: 700;

  font-size: 40px;
}

.slider p {
  color: var(--bodyc);

  font-size: 14px;
}

.item-img {
  width: auto;

  height: auto;

  color: #ffffff;

  font-size: 200px;

  text-align: center;
}

/* ########## SLIDER END ########## */

/* ########## HEADPART START ########## */

/* .headPart {



  text-align: center;



} */

.headPart.textLeft {
  text-align: left;
}

.headPart p {
  color: var(--bodyc);

  font-size: 14px;
}

/* ########## HEADPART END ########## */

/* ########## FEATURED START ########## */

.features .feature-text h3 {
  font-size: 16px;

  font-weight: 600;

  margin-bottom: 10px;
}

.features .feature-text p {
  font-size: 13px;

  font-weight: 400;

  margin: 0;
}

.features .area {
  display: flex;

  align-items: center;
}

.features .area i {
  color: rgb(34, 197, 94, 1);

  margin-right: 5px;
}

.features .area span {
  font-size: 15px;
}

.feature-img {
  margin-bottom: 20px;
}

.slider-list-icon.f {
  line-height: 2.7 !important;

  flex: 0 0 62px;

  width: 62px;

  height: 62px;

  border-radius: 50%;

  font-size: 28px;
}

.feature-area {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

  position: relative;

  min-height: 323px;

  border-bottom: 4px solid transparent;

  border-radius: 0.3rem !important;

  cursor: pointer;

  transition-property: all;

  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

  transition-duration: 0.2s;

  padding: 1.5rem;
}

.feature-area:hover {
  border-color: var(--primaryc) !important;

  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ########## FEATURED END ########## */

/* ########## TEAM START ########## */

.team h6 {
  font-size: 18px;
}

.team .teamMember p {
  font-size: 16px;
}

.teamMember {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  justify-content: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  flex-direction: column;

  border: 2px solid transparent;

  box-shadow: 0 0 0 1px #ebebeb;

  -webkit-box-shadow: 0 0 0 1px #ebebeb;

  -moz-box-shadow: 0 0 0 1px #ebebeb;

  padding: 30px 0 30px 0;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -ms-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;

  position: relative;

  margin: 10px 0 10px 0;
}

.teamMember:hover {
  border: 2px solid #5025d1;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -ms-transition: all 0.3s ease-in-out;

  -o-transition: all 0.3s ease-in-out;
}

.teamMember img {
  border-radius: 50%;

  width: 75px;

  display: block;

  text-align: center;
}

/* ########## TEAM END ########## */

/* ########## PACKETS START ########## */

.packets {
  min-height: 200px; /* CLS önleme için minimum yükseklik */
  contain: layout; /* Layout shift'i önlemek için */
  position: relative; /* Layout stability için */
}

.packets .container {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  animation: fadeInContent 0.8s ease-in-out 0.3s forwards;
}

@keyframes fadeInContent {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* CLS önleme için skeleton loading */
.packets-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: block !important;
  animation: hideSkeleton 0.5s ease-in-out 1.5s forwards;
}

@keyframes hideSkeleton {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

.skeleton-box {
  animation: skeleton-loading 1.5s ease-in-out infinite alternate;
}

@keyframes skeleton-loading {
  0% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Paket kartları için sabit boyutlar */
.packets .box {
  text-align: center;
  min-height: 400px; /* Kart yüksekliğini sabitle */
  display: flex;
  flex-direction: column;
  padding: 50px 20px 50px 20px;

  transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;

  -ms-transition: all 0.3s ease-in-out;

  -webkit-box-shadow: 0 0 0 1px #ebebeb;

  -moz-box-shadow: 0 0 0 1px #ebebeb;

  box-shadow: 0 0 0 1px #ebebeb;

  border: 2px solid transparent;

  border-radius: 1rem;
}

.packets .box:hover {
  border: 2px solid var(--primaryc);
}

.packets .box.active {
  border: 2px solid var(--primaryc) !important;
}

.packets .box .h6 {
  font-size: 20px;
}

.packets .box .h6 span {
  font-size: 12px;

  color: #fff;

  margin-left: 5px;
}

.packets .box span {
  color: #000;

  font-family: "Poppins", sans-serif;

  font-weight: 700;

  font-size: 34px;
}

.packets .box span span {
  font-size: 14px;

  font-weight: 600;

  margin-left: 5px;

  opacity: 0.8;

  color: var(--caption);
}

.packets .box ul {
  margin-top: 15px;

  padding: 0 65px;

  text-align: left;
}

.packets .box > span::after {
  content: "";

  display: block;

  width: 100%;

  position: relative;

  top: 0;

  left: 50%;

  margin-left: -50%;

  height: 1px;

  background: radial-gradient(
    at center center,

    #dee4ef 0px,

    rgba(255, 255, 255, 0) 75%
  );
}

.packets .box ul li {
  font-size: 14px;

  line-height: 30px;

  margin-right: 0.25rem;
}

.packets .box ul li i {
  color: #00ae8f;

  font-size: 16px;

  margin-right: 0.5rem !important;
}

.table-build .fa-check {
  color: #00b090;
}

.table-build .fa-x {
  color: #fc5185;

  font-size: 13px;
}

.table-build .fa-cpanel.size {
  font-size: 40px;

  color: #ff6c2c;
}

.table-build .price {
  font-size: 24px;

  font-weight: 700;

  color: var(--caption);

  font-family: "Poppins", sans-serif;
}

.table-build .price.old {
  font-size: 20px;

  color: var(--primaryc);

  font-weight: 700;

  font-family: "Poppins", sans-serif;

  text-decoration: line-through;

  display: block;
}

.table-build thead tr th span {
  color: var(--caption);

  font-weight: 400;

  font-size: 16px;
}

.table-build .price span {
  font-size: 14px;

  font-weight: 600;

  margin-left: 5px;

  opacity: 0.8;

  color: var(--caption);
}

/* ########## PACKETS END ########## */

/* ########## SSS START ########## */

.sss {
  padding: 50px 0;
}

.accordion__item {
  margin: 5px auto;
}

.accordion__item .accordion__title {
  position: relative;

  display: block;

  padding: 13px 60px 13px 8px;

  /* margin-bottom: 2px; */

  font-weight: 600;

  font-family: "Poppins", sans-serif;

  text-decoration: none;

  cursor: pointer;

  color: var(--caption);

  font-size: 16px;

  border-bottom: 2px solid #ebebeb;
}

.accordion__item .accordion__title .accordion__title-text h6 {
  font-weight: 600;

  font-family: "Poppins", sans-serif;

  color: var(--caption);

  font-size: 14px;

  margin-bottom: 0;
}

.accordion__item .accordion-active {
  background-color: transparent;
}

.accordion__item .accordion__title .accordion__arrow {
  position: absolute;

  top: 8px;

  right: 10px;

  display: inline-block;

  vertical-align: middle;

  width: 30px;

  height: 30px;

  text-align: center;

  color: var(--caption);

  line-height: 30px;

  font-size: 22px;

  font-weight: 400;

  margin-right: 5px;

  border-radius: 50%;
}

.accordion__item .accordion__title .accordion__arrow .accordion__arrow-item {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 30px;
  font-size: 22px;
  font-weight: 400;
}

.accordion__item .accordion__rotate {
  transform: rotate(225deg);
}

.accordion__item .accordion__content {
  padding: 18px 15px 15px 8px;

  margin-bottom: 2px;

  display: none;

  color: var(--bodyc);

  background-color: transparent;

  font-size: 13px;
}

/* ########## SSS END ########## */

/* ########## FOOTER START ########## */

.footer {
  background: #f1f1f1;

  padding: 65px 0 30px 0;
}

.footer p {
  margin-top: 14px;

  font-size: 13px;

  color: #8e8e8e;
}

.footer img {
  margin-bottom: 5px;
}

.footer a {
  margin-top: 12px;
}

.footer ul li h6 {
  color: var(--caption);

  font-weight: 600;

  padding-bottom: 10px;
}

.footer ul li a {
  display: block;

  margin-bottom: 5px;

  font-size: 13px;

  color: var(--bodyc);

  transition: all 0.2s ease-in-out;

  -ms-transition: all 0.2s ease-in-out;

  -webkit-transition: all 0.2s ease-in-out;

  -moz-transition: all 0.2s ease-in-out;

  font-weight: 500;
}

.footer ul li a:hover {
  padding-left: 6px;

  color: var(--primaryc);
}

/* ########## FOOTER END ########## */

/* ########## EXTRAS START ########## */

.outline-black-btn,
.outline-blue-btn,
.outline-white-btn,
.outline-sec-btn,
.solid-blue-btn,
.solid-sec-btn,
.solid-white-btn {
  padding: 0.625rem 1.125rem;

  font-family: "Poppins", sans-serif;

  font-weight: 600;

  font-size: 15px;

  transition: all 0.2s ease-in-out;

  -ms-transition: all 0.2s ease-in-out;

  -webkit-transition: all 0.2s ease-in-out;

  -moz-transition: all 0.2s ease-in-out;

  border-radius: 0.3125rem;
}

.solid-blue-btn.sm {
  padding: 0.225rem 0.675rem;
}

.solid-blue-btn {
  background: var(--primaryc) !important;

  color: #fff !important;
}

.solid-blue-btn:hover {
  color: #fff !important;

  transform: translateY(-3px);

  /* box-shadow: 0 4px 11px var(--primaryhsh) */
}

.solid-white-btn {
  background: #fff !important;

  color: #000 !important;
}

.solid-white-btn:hover {
  background: transparent !important;

  border-color: #fff !important;

  color: #fff !important;
}

.solid-sec-btn {
  background: #fc5185 !important;

  color: #fff !important;
}

.solid-sec-btn:hover {
  background: #d63163 !important;

  color: #fff !important;
}

.outline-blue-btn {
  background-color: var(--primarybg) !important;

  border-color: transparent !important;

  color: var(--primaryc);
}

.outline-blue-btn:hover {
  background-color: var(--primaryhbg) !important;

  color: #fff !important;

  transform: translateY(-3px);

  /* box-shadow: 0 4px 11px var(--primaryhsh) */
}

.outline-white-btn {
  color: #fff;

  border-color: #fff;
}

.outline-white-btn:hover {
  background-color: #fff;

  color: #000;
}

.outline-sec-btn {
  color: #fc5185;

  border-color: #fc5185;
}

.outline-sec-btn:hover {
  background-color: #fc5185;

  color: #fff;
}

.outline-black-btn {
  color: #1d1e20 !important;

  background-color: transparent;

  border-color: #1d1e20 !important;
}

.outline-black-btn:hover {
  background-color: #1d1e20 !important;

  color: #fff !important;
}

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

.p-50 {
  padding: 50px;
}

.pt-100 {
  padding: 30px 0;
}

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

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

.bgGray {
  background-color: #fafbff !important;
}

.bgGreen {
  background-color: var(--primaryc) !important;
}

.bgOrange {
  background-color: #ff8622 !important;
}

.bgRed {
  background-color: #ff3722 !important;
}

#goTopButton {
  background-color: var(--primaryc);

  color: #fff;

  font-size: 16px;

  cursor: pointer;

  width: 40px;

  height: 40px;

  position: fixed;

  top: 75%;

  right: 24px;

  z-index: 999999;

  text-align: center;

  line-height: 40px;

  border-radius: 0.5rem;
}

.goWpButton {
  background-color: rgb(77, 194, 71);

  color: #fff;

  font-size: 30px;

  cursor: pointer;

  width: 50px;

  height: 50px;

  position: fixed;

  display: block;

  bottom: 14px;

  left: 16px;

  z-index: 200;

  text-align: center;

  border-radius: 100%;
}

.goPnButton {
  background-color: var(--primaryc);

  color: #fff;

  font-size: 30px;

  cursor: pointer;

  width: 50px;

  height: 50px;

  position: fixed;

  display: block;

  bottom: 84px;

  left: 16px;

  z-index: 200;

  text-align: center;

  border-radius: 100%;
}

.color-1 {
  color: #000 !important;

  background: rgb(225, 225, 225) !important;
}

.color-2 {
  color: #000 !important;

  background-color: rgb(255, 240, 244) !important;
}

.color-3 {
  color: #000 !important;

  background-color: rgb(255, 249, 235) !important;
}

.color-4 {
  color: #000 !important;

  background: rgb(239, 251, 245) !important;
}

.color-5 {
  color: #000 !important;

  background: rgb(245, 239, 251) !important;
}

.txtcg {
  color: #00b090;
}

.txtcr {
  color: #fc5185;
}

.txtpr {
  color: var(--primaryc);
}

.transform-rotate-180 {
  transform: rotate(-180deg);
}

.c-point {
  cursor: pointer;
}

.lead {
  font-size: 1rem;

  font-weight: 400;
}

.vh100 {
  min-height: 100vh;
}

.vh-24 {
  min-height: 280px;
}

/* ########## EXTRAS END ########## */

/* ########## FEEDBACK START ########## */

.feedBack {
  width: 350px;

  height: max-content;

  padding: 30px;

  margin: 10px 0 10px 0;

  background-color: #fff;
}

.feedBacknoWidth {
  height: max-content;

  padding: 30px;

  margin: 10px 0 10px 0;

  background-color: #fff;

  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

  -moz-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

  border-radius: 0.5rem;
}

.feedBackAuthor {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  gap: 10px;
}

.feedBackAuthor img {
  width: 50px !important;
}

.feedBackAuthor span.h6 {
  font-size: 15px;
}

.feedBackAuthor .feedBackAuthorTag {
  font-size: 14px;

  display: block;
}

.feedBackContent {
  display: block;

  margin-top: 15px;
}

.feedBackContent p {
  font-size: 14px;
  line-height: 2;
}

.star {
  width: max-content;

  height: max-content;

  font-size: 14px;

  border-radius: 0.25rem;

  color: #00ae8f;

  display: inline-flex;

  display: -webkit-inline-flex; /* Safari, Chrome */
}

.customPrevBtn,
.customNextBtn {
  padding: 8px 8px;

  line-height: 0;

  margin: 3px 3px 3px 3px;

  border-radius: 50%;

  font-size: 12px;
}

.customPrevBtn:hover,
.customNextBtn:hover {
  background-color: #004bc5;

  color: #fff;
}

/* ########## FEEDBACK END ########## */

/* ########## TAB START ########## */

.tabs-nav-wrap {
  padding: 10px 0;

  text-align: center;
}

.tabs-nav-wrap ul {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-wrap: wrap;

  justify-content: center;

  gap: 5px;
}

.tabs-nav-wrap ul li {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */
}

.tab-content {
  padding: 20px 0;

  display: none;
}

/* ########## TAB END ########## */

/* ########## LOGIN & REGISTER ELEMENTS START ########## */

.leftSide,
.rightSide {
  width: 100%;

  height: 100%;

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  justify-content: center;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;
}

.leftSideContent {
  padding: 0 200px;
}

.lefimg {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;
}

.form-label {
  font-weight: 500;

  color: #000;
}

.formGrp .col-auto a {
  font-size: 14px;
}

.formGrp .col-auto a:hover {
  text-decoration: underline;
}

/* ########## LOGIN & REGISTER ELEMENTS END ########## */

/* ########## MOBİLE ORGANIZING START ########## */

.mobile-menu-wrapper {
  visibility: hidden;

  opacity: 0;

  transform: translateX(-100%);

  display: none;
}

.mobile-close-btn {
  font-size: 26px;

  cursor: pointer;
}

.mobile-menu-wrapper {
  top: 0;

  left: 0;

  height: 100%;

  width: 100%;

  padding: 30px;

  position: fixed;

  background-color: #fff;

  z-index: 1000000000000;

  overflow-y: auto;

  transition: all 0.3s ease;

  -webkit-transition: all 0.3s ease;

  -moz-transition: all 0.3s ease;

  -ms-transition: all 0.3s ease;

  -o-transition: all 0.3s ease;

  display: block;
}

.mobile-menu-wrapper a {
  font-family: "Poppins", sans-serif;

  font-weight: 600;
}

.active {
  visibility: visible;

  opacity: 1;

  transform: translateX(0%);
}

.mobile-menu-upper {
  background-color: #fff;

  padding: 18px 0;

  border-bottom: 1px solid #e7eaf3;
}

.mobile-menu-middle {
  padding-bottom: 8px;

  border-bottom: 1px solid #e7eaf3;
}

.mobile-menu-lower {
  padding-top: 12px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .newHeaderMenu {
    display: none;
  }

  .menuBar {
    display: block;
  }
}

/* ########## MOBİLE ORGANIZING END ########## */

/* ########## TABLE START ########## */

.vps-hosting-pricing-table {
  overflow: visible;

  -webkit-box-shadow: none;

  box-shadow: none;

  border: none;

  border-collapse: unset;

  border-spacing: 0 10px;
}

.vps-hosting-pricing-table > thead {
  background-color: transparent;
}

.vps-hosting-pricing-table.vps-hosting-pricing-table-two {
  border-collapse: collapse;
}

.vps-hosting-pricing-table > thead > tr > th {
  border: none;

  font-size: 12px;

  font-weight: 600;

  font-family: "Poppins", sans-serif;

  vertical-align: middle;
}

.vps-pricing-row {
  text-align: left;

  background-color: #fff;

  border: solid 1px #ebebeb;
}

.vps-hosting-pricing-table-two > thead {
  background: var(--primaryc);

  color: #ffffff;
}

.vps-hosting-pricing-table > tbody > tr > td {
  padding: 0.75rem;

  font-weight: 400;

  font-size: 14px;

  line-height: 1;

  vertical-align: middle;
}

.vps-hosting-pricing-table > tbody > tr > td:first-child {
  font-weight: 600;

  font-size: 14px;
}

.vps-hosting-pricing-table > tbody > tr:nth-child(even) {
  background-color: #faf9f8;
}

.vps-pricing-row > td {
  border: none;
}

.vps-hosting-pricing-table .rate {
  font-size: 22px;

  font-weight: 700;

  color: var(--caption);

  font-family: "Poppins", sans-serif;
}

.vps-hosting-pricing-table .rate.old {
  font-size: 18px;

  color: #ff6464;

  font-weight: 700;

  font-family: "Poppins", sans-serif;

  text-decoration: line-through;

  display: block;
}

.vps-hosting-pricing-table .rate span {
  font-size: 12px;

  font-weight: 600;

  margin-left: 5px;

  opacity: 0.8;

  color: var(--caption);
}

.vps-hosting-pricing-table > tbody > tr > td:first-child::before {
  content: attr(data-value);

  display: none;

  width: initial;

  height: initial;

  background-color: transparent;

  position: relative;

  left: initial;

  top: initial;

  opacity: 1;
}

.vps-pricing-row > td:before {
  content: attr(data-value);

  display: none;
}

table > tbody > tr > td:first-child:before {
  content: "";

  display: block;

  width: 3px;

  height: 100%;

  background-color: #002752;

  position: absolute;

  left: 0;

  top: 0;

  opacity: 0;

  -webkit-transition: all 0.3s ease;

  -moz-transition: all 0.3s ease;

  -ms-transition: all 0.3s ease;

  -o-transition: all 0.3s ease;

  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .vps-hosting-pricing-table > thead {
    display: none;
  }

  .vps-pricing-row {
    display: -webkit-box;

    display: -ms-flexbox;

    display: -webkit-flex; /* Safari 6.1+ */

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    width: 95%;

    float: left;

    margin: 0 15px 28px 15px;
  }

  .vps-hosting-pricing-table > tbody > tr {
    padding: 15px;
  }

  .vps-hosting-pricing-table > tbody > tr > td {
    padding: 10px 15px;

    font-size: 14px;

    font-weight: normal;
  }

  .vps-pricing-row:hover.border-accent-primary > td:first-child {
    margin-bottom: 0;

    border-radius: 0;

    border-left: none;
  }

  .vps-pricing-row > td:first-child {
    border-left: none;

    border-radius: 0;
  }

  .vps-hosting-pricing-table > tbody > tr > td:first-child::before {
    display: block;

    width: 45%;
  }

  .vps-pricing-row > td:before {
    display: block;

    width: 45%;
  }

  .vps-hosting-pricing-table > tbody > tr > td {
    display: -webkit-box;

    display: -ms-flexbox;

    display: -webkit-flex; /* Safari 6.1+ */

    display: flex;

    align-items: center;

    -ms-flex-align: center;

    -webkit-box-align: center;

    -moz-box-align: center;
  }

  .vps-pricing-row > td:last-child::before {
    display: none;
  }

  .vps-pricing-row > td:last-child {
    text-align: center !important;

    margin: auto;
  }

  .pt-100 {
    padding: 60px 0;
  }
}

/* ########## TABLE END ########## */

/* ########## CUSTOM MOBILE MENU START ########## */

#top-nav ul {
  padding-top: 8px;
}

#top-nav ul li {
  display: block;
}

/* #top-nav ul li::before {



  content: "";



  position: absolute;



  width: 16px;



  height: 16px;



  top: 50%;



  right: 0;



  transform: translateY(-50%);



  font-family: "Font Awesome 6 Free";



  transition: 0.3s ease;



  font-size: 65%;



  cursor: pointer;



  content: "\f107";



} */

#top-nav ul li a {
  display: block;

  color: var(--caption);

  padding: 20px 20px;

  text-align: left;

  font-weight: 500;

  font-size: 14px;

  border-bottom: 1px solid #e7eaf3;
}

#top-nav ul li.aa:last-child a,
#top-nav ul li.xx:last-child a {
  border-bottom: none;
}

#top-nav ul li a:hover {
}

/* Dropdown */

li.aa {
  position: relative;

  margin-top: 5px;
}

ul.bb {
  position: absolute;

  min-width: 120px;

  position: relative;
}

ul.bb li {
  display: block !important;

  white-space: nowrap;

  background-color: transparent;

  margin: 5px 0;
}

/* Sub Dropdown */

ul.bb ul.bb {
  left: 100%;

  top: 0;

  overflow-x: scroll;
}

ul.dd {
  position: absolute;

  min-width: 120px;

  position: relative;
}

ul.dd li {
  display: block !important;

  white-space: nowrap;

  margin: 5px 0;
}

/* Sub Sub Dropdown */

ul.dd ul.dd {
  left: 100%;

  top: 0;
}

/* Display none by Default */

ul.bb {
  display: none;

  padding-left: 18px;
}

ul.dd {
  display: none;
}

.opened {
}

/* ########## CUSTOM MOBILE MENU END ########## */

.customBg {
  background: #2f1c6a;
}

.gray-light-bg {
  background: #faf9f8;
}

.colorSuccess {
  color: #00b090;
}

.colorDanger {
  color: #fc5185;
}

.switcher {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-direction: row;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: center;

  margin: 40px 0;
}

.switcher span {
  font-weight: 600;

  font-size: 14px;

  color: var(--caption);
}

.switcher ul {
  cursor: pointer;

  margin: 0 20px;

  width: 56px;

  height: 32px;

  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  flex-direction: row;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  background: #7a7e92;

  padding: 0 4px;

  border-radius: 62px;
}

.switcher ul.primary {
  background-color: var(--primaryc);
}

.switcher ul li {
  border-radius: 100%;

  width: 24px;

  height: 24px;
}

.switcher ul li.active {
  background: #ffffff;

  border-radius: 100%;

  width: 24px;

  height: 24px;
}

.plan {
  position: relative;

  width: 100%;

  display: block;

  padding: 70px 45px 50px 45px;
}

.planbox {
  padding: 70px 45px 50px 45px;

  border: 2px solid transparent;

  box-shadow: 0 0 0 1px #ebebeb;

  -webkit-box-shadow: 0 0 0 1px #ebebeb;

  -moz-box-shadow: 0 0 0 1px #ebebeb;

  transform: translateY(0);

  cursor: pointer;

  transition: all 0.8s ease-in-out;

  -ms-transition: all 0.8s ease-in-out;

  -webkit-transition: all 0.8s ease-in-out;
}

.planbox:hover {
  transform: translateY(-20px);
}

.plan-feature-item {
  width: 100%;

  display: block;

  padding: 15px;

  min-width: 150px;

  border: 2px solid transparent;

  box-shadow: 0 0 0 1px #ebebeb;

  -webkit-box-shadow: 0 0 0 1px #ebebeb;

  -moz-box-shadow: 0 0 0 1px #ebebeb;
}

.plan-feature-item i {
  color: #673de6;
}

.plan-feature-item-head {
  font-weight: 700;
}

.packetnumber {
  font-weight: 700;
}

.packetprice {
  font-weight: 700;

  font-size: 32px;
}

.teamMember:hover .hoverContent {
  opacity: 0.92;
}

.teamMember .hoverContent {
  background: linear-gradient(90deg, rgb(48, 28, 106), rgb(48, 28, 106, 0.875));

  color: #fff;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  padding: 15px 15px;

  text-align: center;

  opacity: 0;

  transition: all 0.4s;

  -ms-transition: all 0.4s;

  -webkit-transition: all 0.4s;

  -moz-transition: all 0.4s;

  flex-wrap: wrap;

  cursor: pointer;
}

.teamMember .hoverContent p {
  font-size: 14px;
}

.teamMember.set {
  width: 350px;
  height: max-content;
}

.filter-dark {
  filter: grayscale(100%);
}

.clientsImg {
  width: 100px;
}

.popup-item {
  transition: all 0.6s ease-in-out;

  -ms-transition: all 0.6s ease-in-out;

  -webkit-transition: all 0.6s ease-in-out;

  -moz-transition: all 0.6s ease-in-out;

  transform: translateY(0);
}

.popup-item:hover {
  transform: translateY(-20px);
}

.single-offer-box {
  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  display: flex;
}

.single-offer-box .content {
  margin: 12px;

  border: 1px solid #222;

  width: 100%;

  background: #f0f3f7;
}

.discount-price {
  font-size: 26px;

  font-weight: 700;

  font-family: "Poppins", sans-serif;

  color: #000;
}

.discount-price-old {
  font-size: 14px;

  font-weight: 700;

  font-family: "Poppins", sans-serif;

  color: #000;

  opacity: 0.7;
}

.discount-price-old span {
  font-size: 20px;
}

.pass {
  padding: 10px 15px;

  background: #222;

  color: #fff;
}

.pass::before {
  content: "";

  position: absolute;

  bottom: -8px;

  left: calc(50% - 20px);

  border-left: 20px solid transparent;

  border-right: 20px solid transparent;

  border-top: 10px solid #222;
}

.offer-price-content span {
  color: #000;
}

.discount-price small {
  font-size: 18px;
}

.breadcrumb-item {
  font-size: 14px;
}

.breadcrumb-item.active {
  font-weight: 500;

  font-size: 14px;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);

    transform: translate3d(0, 100%, 0);

    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);

    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);

    transform: translate3d(0, 100%, 0);

    visibility: visible;
  }
}

.slider-nav {
  position: absolute;
  top: 180px;
  z-index: 1;
}

.slider-nav.left {
  left: 10px;
}

.slider-nav.right {
  right: 10px;
}

.domain-search-list {
  display: block;

  position: relative;
}

.domain-search-list li a {
  display: inline-block;

  padding: 0 12px;

  text-align: center;

  font-weight: 600;

  color: inherit;
}

.domain-search-list li a img {
  max-width: 55px;

  max-height: 26.2px;
}

body:before {
  position: relative;

  display: block;

  content: "";

  left: 0;

  top: 0;

  right: 0;

  width: 100%;

  height: 3px;

  background: var(--primaryc);
}

.helpWrapper .bg {
  border-radius: 0.5rem;
}

.helpWrapper .bg .s {
  padding: 30px;

  border-radius: 0.5rem;
}

.helpWrapper .bg .s p {
  font-size: 14px;
}

.mydropdown-item-icon {
  font-size: 10px;
}

.videobtn {
  color: var(--caption);
  background-color: #f2f2f2;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 12px;
}

.videobtn i {
  color: var(--primaryc);

  font-size: 10px;
}

.slider-list-icon {
  flex: 0 0 32px;

  width: 32px;

  height: 32px;

  border-radius: 0.5rem;

  display: inline-flex;

  display: -webkit-inline-flex; /* Safari, Chrome */

  flex-wrap: wrap;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;

  justify-content: center;

  text-align: center;

  margin-right: 10px;

  position: relative;

  color: var(--primaryc);

  font-size: 17px;

  background-color: var(--primarybg) !important;

  line-height: 2.2 !important;
}

.slider-list-text {
  font-weight: 500;

  color: var(--caption);

  font-size: 13px;
}

.slider-list li {
  display: flex;

  display: -webkit-box; /* Safari, iOS Safari */

  display: -webkit-flex; /* Safari 6.1+ */

  display: -ms-flexbox; /* IE 10 */

  cursor: pointer;

  align-items: center;

  -ms-flex-align: center;

  -webkit-box-align: center;

  -moz-box-align: center;
}

.slider-list li:hover .slider-list-text {
  color: var(--primaryc);
}

.widget {
  margin-bottom: 30px;
}

.widget-search {
  padding: 0;

  border: 0;
}

.widget .widget-title {
  margin-bottom: 24px;
}

.widget .widget-title > h6 {
  text-transform: uppercase;

  font-family: "Poppins", sans-serif;

  letter-spacing: 1px;

  font-weight: 600;

  font-size: 12px;

  margin: 0;

  color: #788487;
}

.widget ul {
  margin-bottom: 0;
}

.widget a {
  color: #000;

  font-weight: 500;

  display: block;

  font-size: 15px;
}

.widget a:hover {
  color: var(--primaryc);
}

.widget-categories ul li:first-child,
.widget-recent-entries ul li:first-child,
.widget-recent-entries-custom ul li:first-child {
  padding-top: 0;
}

.widget-categories ul li,
.widget-recent-entries ul li,
.widget-recent-entries-custom ul li {
  padding: 10px 0;

  margin: 0;
}

.widget-recent-entries-custom .wi,
.widget-recent-entries-custom .wb {
  vertical-align: middle;

  display: table-cell;
}

.post-wrapper {
  padding: 0 0 35px;
}

.post-preview {
  padding-bottom: 5px;

  border-radius: 0.1875rem;

  transition: all 0.3s ease-in-out;

  -ms-transition: all 0.3s ease-in-out;

  -webkit-transition: all 0.3s ease-in-out;

  -moz-transition: all 0.3s ease-in-out;
}

.post-header {
  margin: 15px 0 20px;
}

.post-meta {
  list-style: none;

  font-size: 0.8125rem;

  padding: 0;

  margin: 0;
}

.post-meta > li {
  position: relative;

  display: inline-block;

  padding: 0 14px 0 0;

  margin: 0 14px 0 0;
}

.post-meta > li:not(:last-child):after {
  position: absolute;

  content: "/";

  right: -5px;

  top: 0;
}

.post-content p {
  margin-bottom: 5px;
}

.tag-cloud > h6,
.post-tags > h6 {
  background: #f4f4f4;

  border-radius: 0.1875rem;

  position: relative;

  display: inline-block;

  padding: 6px 15px;

  margin: 5px 8px 5px 0;

  text-transform: uppercase;

  font-size: 11px !important;

  color: #757575;

  font-weight: 500;

  font-family: "Poppins", sans-serif;

  cursor: pointer;
}

.widget-search .search-button {
  background-color: transparent;

  border: none;

  position: absolute;

  top: 50%;

  height: 100%;

  right: 0.875rem;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  -webkit-transition: all 0.3s ease-out;

  transition: all 0.3s ease-out;

  color: #ddd;
}

.form-control {
  border-color: #ebebeb;

  padding: 0.75rem 0.85rem;

  height: calc(2.2em + 0.75rem + 2px);
}

.widget-search form {
  position: relative;
}

.post-preview img {
  border-radius: 0.1875rem;

  width: 100%;

  display: block;

  margin-bottom: 30px;
}

.post-header .post-title a:hover {
  color: var(--primaryc);
}

.widget-recent-entries-custom .wi {
  float: left;

  width: 80px;
}

.widget-recent-entries-custom .wb {
  padding-left: 16px;

  width: 100%;
}

.post-date {
  font-size: 13px;

  color: #a3a6a8;

  display: block;

  margin: 0;
}

.tag-cloud > h6:hover,
.post-tags > h6:hover {
  background: var(--primaryc);

  color: #fff;

  opacity: 1;
}

@media (max-width: 767.98px) {
  body {
    overflow-x: hidden;
  }

  .newHeader {
    padding: 20px;
  }

  .topHeader ul {
    float: right;
  }

  .owl-theme .owl-dots {
    position: absolute;

    display: block;

    top: 220px;

    left: 353px;
  }

  .footer ul {
    margin-left: 0;
  }

  .footer ul li h6 {
    margin-top: 15px;
  }

  #goTopButton {
    top: 75%;
  }

  .newHeaderMenu {
    display: none;
  }

  .menuBar {
    display: block;
  }

  .list-group {
    flex-wrap: wrap;
  }

  .parallax-container {
    height: max-content;
  }

  .slider-content-ix {
    margin-top: -26px;
  }

  .slider-nav {
    display: none;
  }

  .offer-block {
    width: 95%;

    margin: 0 15px 28px 15px;
  }

  .cookie-policy {
    width: 300px !important;
  }

  .box2:hover {
    transform: none !important;
  }
}

.sticky-top-blog {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 820;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 820;
}

.single-blog-card {
  margin-bottom: 25px;

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

  transition-property: all;

  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

  transition-duration: 0.2s;

  border-bottom: 4px solid transparent;

  border-radius: 0.3rem !important;

  position: relative;

  min-height: 323px;
}

.single-blog-card:hover {
  border-color: var(--primaryc) !important;

  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.single-blog-card span.category {
  z-index: 2;

  top: 10px;

  right: 10px;
}

.card-text {
  font-size: 13px;
}

.post-meta {
  list-style: none;

  font-size: 0.8125rem;

  padding: 0;

  margin: 0;
}

a.detail-link {
  display: inline-block;

  text-decoration: none;

  color: #495057;

  font-weight: 600;

  font-size: 13px;

  font-family: "Poppins", sans-serif;
}

a.detail-link:hover,
.single-blog-card .card-body h3 a:hover {
  color: var(--primaryc);
}

a.detail-link span {
  font-size: 12px;

  vertical-align: middle;

  -webkit-transition-duration: 0.3s;

  transition-duration: 0.3s;

  color: var(--primaryc);
}

a.detail-link:hover span {
  -webkit-transform: translateX(3px);

  transform: translateX(3px);

  margin-left: 8px;
}

.softwaresys-item {
  background-color: #fff;

  border-radius: 8px;

  padding: 20px;

  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;

  transition: 0.2s all;

  cursor: pointer;

  color: var(--caption);
}

.softwaresys-item:hover {
  background-color: var(--primaryc);

  color: #fff;

  transform: translateY(-5px);
}

.softwaresys-item span {
  font-size: 16px;

  font-weight: 500;
}

.indirim {
  position: absolute;

  top: -21px;

  right: 18px;

  padding: 4px;

  font-weight: 700;

  font-size: 11px;

  line-height: 11px;
}

.indirim-bg {
  color: #000;

  background-color: var(--primarybg);
}

.indirimmobile {
  padding: 4px;

  font-weight: 700;

  font-size: 11px;

  line-height: 11px;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

.indirim.sunucu {
  right: 11px;
}

.filter-dark {
  filter: grayscale(100%);
}

.cookie-policy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #333;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  font-size: 14px;
}
.cookie-policy.aktif {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-policy .closebtn {
  cursor: pointer;
  font-size: 20px;
}

.cookie-policy .h6 {
  font-size: 14px;
}

.cookie-policy p {
  font-size: 12px;
}

.se img {
  border-radius: 1rem;
}

.se p {
  font-size: 14px;
}

.error {
  width: 100%;

  height: 100%;

  position: fixed;

  z-index: 999999999999999999999999;

  background-color: #fff;
}

.offer-block {
  position: relative;

  overflow: hidden;
}

.gradient-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    90deg,
    rgba(241, 241, 241, 1) 25%,

    rgba(241, 241, 241, 0.9) 100%
  );

  z-index: -1;
}

.offer-bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  z-index: -2;
}

.box2 {
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1);
  transition-duration: 0.5s;
  cursor: pointer;
}

.box2:hover {
  transform: scale(1.1);
}

.box2:hover .upperbox2 {
  background-color: var(--primaryhbg);
}

.box2 .upperbox2 {
  background-color: var(--primaryc);

  border-top-left-radius: 0.5rem;

  border-top-right-radius: 0.5rem;

  padding: 1.25rem;

  transition-duration: 0.5s;
}

.box2 .upperbox2 .h6 {
  font-weight: 600;
}

.box2 .middlebox2 {
  padding-top: 1.0rem;

  padding-bottom: 1.0rem;

  padding-left: 1rem;

  padding-right: 1rem;
}

.box2 .middlebox2 .infoname {
  font-size: 11px;

  font-weight: 400;

  color: var(--bodyc);

  display: block;
}

.box2 .middlebox2 .infodetails {
  font-size: 18px;

  font-weight: 600;

  color: var(--caption);
}

.box2 .lowerbox2 {
  border-bottom-left-radius: 0.5rem;

  border-bottom-right-radius: 0.5rem;

  padding: 1rem;

  background-color: #faf9f8;
}

.pricearea .p {
  font-size: 38px;

  font-weight: 600;

  color: var(--primaryc);
}

.pricearea .p.s {
  font-size: 28px !important;
}

.pricearea .p span {
  font-size: 12px;

  font-weight: 500;

  color: var(--primaryc);
}

.btn.dblock {
  display: block;
}

::selection {
  background-color: var(--primaryhsh);
}

.mys .one,
.mys .two {
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.mys .md,
.ps .md {
  background-color: var(--primaryc);
}

.mys .mt,
.ps .mt {
  font-size: 12px;
  font-weight: 600;
  transition: color 0.3s ease; /* Burada sadece color geçişi */
}

.mys .one p,
.mys .two p {
  color: #000; /* Seçili olmayanlar siyah */
}

/* Seçili olanlar beyaz */
.mys .md p {
  color: #fff;
}

.kategori-item {
  padding: 10px 10px;

  font-size: 16px;

  font-weight: 500;
}

.kategori-item.active {
  color: var(--primaryc);
}

.slider-bg {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 800 600' fill='none' stroke='%23EBEBEB' stroke-width='1'%3E%3Ccircle cx='50' cy='100' r='3'/%3E%3Ccircle cx='150' cy='200' r='3'/%3E%3Ccircle cx='250' cy='400' r='3'/%3E%3Ccircle cx='350' cy='300' r='3'/%3E%3Ccircle cx='450' cy='150' r='3'/%3E%3Ccircle cx='550' cy='250' r='3'/%3E%3Ccircle cx='650' cy='450' r='3'/%3E%3Ccircle cx='750' cy='350' r='3'/%3E%3Cpath d='M50,100 L150,200 L250,400 L350,300 L450,150 L550,250 L650,450 L750,350'/%3E%3Cpath d='M50,100 L250,400 L450,150 L650,450'/%3E%3Cpath d='M150,200 L350,300 L550,250 L750,350'/%3E%3Cpath d='M50,100 L350,300 L750,350'/%3E%3Cpath d='M250,400 L550,250'/%3E%3C/svg%3E")
      no-repeat center center,
    linear-gradient(
      90deg,
      rgba(241, 241, 241, 1) 25%,
      rgba(241, 241, 241, 0.9) 100%
    );
  background-size: cover, cover;
}

/* Küçük cihazlarda sadece gradient göster */
@media (max-width: 768px) {
  .slider-bg {
    background: linear-gradient(
      90deg,
      rgba(241, 241, 241, 1) 25%,
      rgba(241, 241, 241, 0.9) 100%
    );
    background-size: cover;
  }
}

.google-yorum {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  gap: 20px;
}

.google-yorum a {
  display: block;
}

.google-yorum span {
  color: #000;
  font-size: 12px;
}

.google-yorum span span {
  font-weight: 600;
}

.box2.paket3 .upperbox2 {
  padding: 1rem;
  background-color: inherit;
  border-bottom: 1px solid rgb(231, 234, 243);

  text-align: center;
  background-color: rgb(250, 249, 248);
}

.box2.paket3 .lowerbox2 {
  background-color: inherit;
}

.box2.paket3 .lowerbox2 a {
  font-size: 13px;
}

.box2.paket3 .infodetails i {
  font-size: 22px;
}

.box2.paket3 .infodetails {
  font-size: 0.875em;
}

.box2.paket3 {
  border: 1px solid rgb(231, 234, 243);
  box-shadow: none;
  border-radius: 0.5rem;
}

.box2.paket3:hover {
  transform: scale(1);
}

.box2.paket3 .middlebox2 {
  padding-top: 1.5rem;
  padding-bottom: 0.3rem;
}

.box2.paket3 .middlebox2 .col {
  border-bottom: 1px solid rgb(231, 234, 243);
}

.brand-section .brand-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding-top: 20px;
}

.brand-section .brand-slider {
  display: flex;
  gap: 50px;
  width: fit-content; /* Dinamik genişlik */
  animation: brandSlideAnimation 15s linear infinite;
}

.brand-section .brand-slide {
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-section .brand-slide img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
}

/* Kayan efekt için animasyon */
@keyframes brandSlideAnimation {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.copy-button i {
  line-height: 2.2 !important;
}

.paket-alan {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 223px;
  border-bottom: 4px solid transparent;
  border-radius: 0.3rem !important;
  cursor: pointer;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
  padding: 1.5rem;
}

.paket-alan:hover {
  border-color: var(--primaryc) !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.paket-alan ul li {
  font-size: 15px;
}

.announcement-wrapper {
  overflow: hidden;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--primaryc);
  text-transform: uppercase;
  height: 30px;
}

.announcement-text {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

.module .row .col-md-4 {
  display: flex;
}

.module .single-blog-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.module .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#top-nav ul li a.activeStyle {
  color: var(--primaryc) !important;
}

li.activeStyle > a {
  color: var(--primaryc) !important;
}

#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
