/*------------------------------------------------------------------

Project: Megabre - Creative Solutions at the Peak
Description: Megabre Responsive Premium Template Designed for hosting providers
Author: Megabre Team
Copyright: 2024 Megabre
Version: 1.0

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1 - General Styles
2 - Sections
3 - Header
4 - Banner
5 - Buttons
6 - OWL Carousel
7 - Tables
8 - Tabs
9 - Services
10 - Testimonials
11 - Team
12 - Forms
13 - Countdown
14 - Cart
15 - Case Study
16 - Faq
17 - Blog
18 - Footer
19 - Filter
20 - Overview
21 - Range
22 - Switch
23 - Others
24 - Responsive
--------------------------------------------------------------------*/
/* ===== CSS VARIABLES ===== */
:root {
    /* Font Family */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Colors - Yeni tema renkleri */
    --primary-color: #22badf;
    --primary-dark: #007297;
    --primary-light: #0187b6;
    --accent-color: #22badf;
    --accent-dark: #007297;
    --accent-light: #0187b6;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/*-----------------------------------
    1 - General Styles
------------------------------------*/
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    background-color: #f6f6f6;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pb-80 {
    padding-bottom: 80px !important;
}
.pb-100 {
    padding-bottom: 100px !important;
}
.pt-80 {
    padding-top: 80px !important;
}
.pt-100 {
    padding-top: 100px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mt-150 {
    margin-top: 150px !important;
}
/* Kullanılmayan .mt-400 sınıfı kaldırıldı */
.mb-80 {
    margin-bottom: 80px !important;
}
.bg-green {
    background-color: #22badf !important;
    color: #ffffff !important;
}
.bg-blue {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}
/* Kullanılmayan renk utility sınıfları kaldırıldı */
.c-green {
    color: #22badf !important;
}
.c-blue {
    color: var(--primary-color) !important;
}
/* Kullanılmayan text color sınıfları kaldırıldı */
/* Kullanılmayan background opacity sınıfları kaldırıldı */
/* Kullanılmayan text decoration sınıfları kaldırıldı */
/* Kullanılmayan border sınıfları kaldırıldı */
.golink {
    font-family: var(--font-primary);
    color: #22badf !important;
    cursor: pointer !important;
}
.golink:hover {
    color: #22badf;
    text-decoration: underline;
    cursor: pointer;
}

.clear {
    clear: both;
}
.hidden {
    display: none;
}

/* Kullanılmayan utility sınıfları kaldırıldı */
.tooltip {
    z-index: 999;
}
.form-control {
    font-size: 15px;
    font-family: var(--font-primary);
    -webkit-border-radius: 0;
    border: 0;
    outline: solid 1px #efefef;
    color: #000000;
    box-shadow: none;
}
.form-control:focus {
    border: 0;
    outline: solid 1px #22badf;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.full {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.item2{
  background-image: url("../img/topbanner02.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}





.vc-parent {
    position: relative;
    width: 100%;
    height: 100%;
    display: table;
}
.vc-child {
    display: table-cell;
    vertical-align: middle;
}

/* Kullanılmayan opacity sınıfları kaldırıldı */

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="tel"], input[type="url"], textarea, select {
    border: 0 !important;
    outline: solid 1px #efefef !important;
}
input:-webkit-autofill {
    background-color: rgb(230, 255, 243) !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
}
/*-----------------------------------
    2 - Sections
------------------------------------*/



.sec-normal {
    padding: 60px;
    position: relative;
    z-index: 0;
}

.sec-bg1 {
    background-color: #ffffff;
    padding-top: 20px;;
}
.sec-bg2 {
    background-color: #efefef;
}

.sec-grad-white-to-grey {
    background: linear-gradient(120deg, #ffffff 70%, #f3f3f3 0%) !important;
}

.sec-grad-white-to-green {
    background: linear-gradient(120deg, #fff 70%, var(--success-color) 0%) !important;
}

.sec-grad-blue-to-blue {
    background: linear-gradient(120deg, var(--primary-color) 70%, var(--primary-light) 0%) !important;
}
/* Kullanılmayan gradient sınıfı kaldırıldı */
.sec-grad-blue-to-purple {
    background: linear-gradient(120deg, var(--primary-color) 70%, #0187b6 0%) !important;
}

.sec-grad-grey-to-green {
    background: linear-gradient(120deg, #f3f3f3 70%, #22badf 0%) !important;
}
.sec-grad-grey-to-blue {
    background: linear-gradient(120deg, #f3f3f3 70%, var(--primary-light) 0%) !important;
}
.sec-grad-grey-to-grey {
    background: linear-gradient(120deg, #f6f6f6 70%, #f3f3f3 0%) !important;
}

.total-grad {
    background: linear-gradient(-60deg, var(--accent-color) 0%,var(--primary-color) 100%) !important;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Eksik gradient sınıfları eklendi - PHP'de kullanılan ama CSS'te tanımlı olmayan */
.total-grad-inverse {
    background: linear-gradient(-60deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.total-grad-purple {
    background: linear-gradient(-60deg, #22badf 0%, #007297 100%) !important;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.total-grad-blue-light {
    background: linear-gradient(-60deg, var(--accent-light) 0%, var(--primary-light) 100%) !important;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Header menüsü için eksik CSS sınıfları - Menüyü düzelttik */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px;
    width: 100%;
}

.sec-grad-white-to-grey {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 300px;
}

.total-grad-pink-blue-intense {
    background: linear-gradient(-60deg, #e91e63 0%, var(--primary-color) 100%) !important;
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.opa-pink {
    height: 500px;
    width: 100%;
    max-width: 1900px;
    min-width: 1900px;
    -webkit-transform: scaleX(-1) scaleY(-1) rotate(-240deg);
    -ms-transform: scaleX(-1) scaleY(-1) rotate(-240deg);
    transform: scaleX(-1) scaleY(-1) rotate(-240deg);
    background-image: linear-gradient(-50deg,rgb(34, 186, 223) 0%,rgba(34, 186, 223, 0.1) 100%);
    position: absolute;
    top: 0;
    right: -70px;
}

.section-heading {
    font-family: var(--font-primary);
    font-size: 32px;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    color: #181b22;
    line-height: 34px;
    text-align: center;
}
.section-heading.light {
    color: #fff;
}
.section-subheading {
    font-family: var(--font-primary);
    color: #000000;
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    line-height: 30px;
}

/*-----------------------------------
    3 - Header
------------------------------------*/
.main-header {
    z-index: 10;
    position: relative;
    width: 100%;
    font-size: 12px;
    background-color: #fff;
    border-bottom: solid 1px #efefef;
    padding: 10px 0px 8px 0px;
}
.main-header .fa-search {
    font-size: 16px;
}
.main-header.top {
    padding-top: 10px;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: none;
}
.main-header .dropdown {
    margin-right: 10px;
    border-right: solid 1px #e8e8e8;
    display: inline-block;
}
.menu-wrap.top .main-header .dropdown {
    margin-right: 10px;
    border-right: solid 1px #333;
    display: inline-block;
}
.menu-wrap.top .main-header .dropdown {
    margin-right: 10px;
    border-right: solid 1px #333;
    display: inline-block;
}
.menu-wrap.top .main-header .header-info .phone {
    border-right: solid 1px #333;
}
.main-header .header-info {
    font-family: var(--font-primary);
    vertical-align: sub;
    display: inline-block;
    width: 100%;
}
.main-header .col-sm-9 {
    padding: 7px 15px;
}
.main-header .header-info .cart {
    padding: 0px;
    font-size: 14px;
}
.main-header .header-info .cart .icon-cart {
    vertical-align: text-top;
    margin-right: 3px;
    font-size: 18px;
}
.main-header .header-info a {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: #5b6164;
    cursor: pointer;
    margin-right: 15px;
    vertical-align: middle;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.main-header .header-info .dropdown-menu {
    border-top: none;
    border: solid 1px #efefef;
    margin-top: 10px;
    border-radius: 0px;
}
.main-header .header-info .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
}
.main-header .header-info .phone {
    padding-right: 15px;
    border-right: solid 1px #e8e8e8;
}
.main-header .header-info .register {
    padding-left: 15px;
    border-left: solid 1px #e8e8e8;
}
.main-header .header-info span {
    color: #000000;
}
.main-header.top .header-info a {
    color: #7f7f7f;
}
.main-header.top .header-info li a {
    color: #121e25;
}
.main-header .header-info a:last-child {
    margin-right: 0;
}
.main-header .header-info a:hover {
    text-decoration: none;
    color: #22badf;
}
.main-header .header-info .fa.fa-shopping-cart {
    padding-right: 5px;
}
.main-header .header-info .fa.fa-mobile {
    font-size: 16px;
}
.main-header .header-info i img {
    margin-top: -4px;
}
.main-header .header-info {
    padding-left: 0;
}
.main-header {
    border: none;
    background-color: #0f1419;
    padding-top: 22px;
    padding-bottom: 19px;
    z-index: 9;
    position: relative;
}
.nav-menu {
    position: relative;
    width: 100%;
    z-index: 9;
}
.nav-menu .navigation{
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-menu .main-menu li {
    list-style-type: none;
}
.nav-menu .main-menu {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

.nav-menu .main-menu a:hover,
.nav-menu .main-menu a:active,
.nav-menu .main-menu a:focus {
    text-decoration: none;
}
.menu-wrap .logo-menu {
    width: 350px;
    height: auto;
    max-width: 100%;
    float: left;
}


.nav-menu .main-menu > .menu-item {
    float: left;
    list-style-type: none;
    display: inline-block;
    margin: 0;
}

/* Home button için v-stroke efektini devre dışı bırak */
.nav-menu .main-menu > .menu-item:first-child a.v-stroke:before,
.nav-menu .main-menu > .menu-item:first-child a.v-stroke:after {
    display: none;
}
.nav-menu .main-menu > .menu-item a:hover,
.nav-menu .main-menu > .menu-item a:active {
    text-decoration: none;
}
.nav-menu .main-menu > .menu-item > .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    padding: 20px 30px;
    border-radius: 12px;
    background-color: #fff;
}

.nav-menu .main-menu > .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service i {
    display: table;
    font-size: 20px;
    margin: 0;
}
.nav-menu .main-menu .menu-item .menu-large .menu-item {
    padding: 10px 18px 10px 15px;
}
.nav-menu .main-menu .menu-item .menu-large .menu-item a {
    color: #e8e8e8;
    font-size: 13px;
    white-space: nowrap;
}
.nav-menu .main-menu .menu-item .menu-large .menu-item a:hover {
    color: #22badf;
}
.nav-menu .main-menu .menu-item .menu-large .media-body {
    display: table-cell;
    vertical-align: top;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service {
    margin: 10px 0px;
    display: flex;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service .media {
    padding: 0 0px 10px 0;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service .media-left i {
    text-align: left;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body a {
    padding: 0;
    color: #313131;
    font-weight: bold;
    display: inline-block;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body a:hover {
    color: #22badf
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body p {
    font-size: 12px;
}

/* Service Info Icon Styles */
.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-icon:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: scale(1.1);
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-icon i {
    color: #212b43;
    font-size: 14px;
    margin: 0;
}



/* Service item positioning for info icon */
.nav-menu .main-menu .menu-item .menu-large .service-list .service {
    position: relative;
    padding-right: 50px;
}

/* Info Tooltip Styles */
.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg);
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-tooltip .tooltip-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6b7280;
    transition: all 0.2s ease;
}

.nav-menu .main-menu .menu-item .menu-large .service-list .service .service-info-tooltip .tooltip-close:hover {
    background: #e5e7eb;
    color: #374151;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service.special i{
    color: #22badf;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service.special .media-body a{
    color: #21252E;
    border: none;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service.special .media-body a:hover{
    color: #22badf;
}
.nav-menu .main-menu .menu-item .menu-large .service-list .service.special .media-body p{
    color: #21252E;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer {
    display: block;
    margin-top: 20px;
    float: right;
    width: 245px;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner {
    border: dashed 2px #22badf;
    padding: 20px;
    text-align: center;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .title {
    color: #22badf;
    font-size: 22px;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner p {
    font-style: italic;
    color: #000000;
    font-size: 14px;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .icon-coupon {
    display: inline-block;
    top: 10px;
    position: absolute;
    color: #000000;
    font-size: 32px;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .val {
    font-size: 13px;
    text-decoration: line-through;
}
.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .dis {
    font-size: 20px;
    margin-bottom: 20px;
}
.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item {
    padding: 10px 0px;
}
.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item:last-child {
    padding-bottom: 20px;
}
.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a {
    color: #5b6164;
    font-size: 13px;
    white-space: nowrap;
}
.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a:hover {
    color: #22badf;
}
.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item > .sub-menu {
    opacity: 0;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}
.nav-menu .main-menu .menu-item {
    list-style-type: none;
}
.menu.badge.feat {
    margin-top: 3px;
    position: absolute;
    right: -1px;
    border-radius: 0px;
}
.plans.badge.feat {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}
a.plans.badge.feat {
    background-color: #22badf;
    border: solid 1px #22badf;
    color: #fff;
    cursor: pointer;
}
a.plans.badge.feat:hover {
    background-color: transparent;
    border: solid 1px #22badf;
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.nav-menu .main-menu a {
    font: 16px var(--font-primary);
    margin-right: 20px;
    color: #fff;
    position: relative;
    padding: 25px 0px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.nav-menu .main-menu a.v-stroke:hover::after{
    height: 35px;
    transition: all 0.2s ease-in-out;
}
.nav-menu .main-menu a.v-stroke:before{
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 2px;
    height: 0px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}
.nav-menu .main-menu a.v-stroke:hover::before{
    height: 30px;
    transition: all 0.2s ease-in-out;
}
.nav-menu .main-menu a.h-stroke:hover::after{
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.nav-menu .main-menu a.h-stroke:before{
    content: '';
    position: absolute;
    top: 50px;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 0%;
    background: #ffffff;
    transition: all 0.2s ease-in-out;
}
.nav-menu .main-menu a.h-stroke:hover::before{
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.active {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
}
.menu-wrap.navigation-menu .nav-menu .main-menu a {
    font-family: var(--font-primary);
}
.nav-menu .menu-toggle {
    background-color: transparent;
    border: none;
    outline: none;
    display: none;
    float: right;
}
.nav-menu .menu-toggle .icon {
    display: block;
    width: 24px;
    height: 4px;
    border-radius: 0px;
    background-color: #0f1419;
    margin-top: 0px;
    margin-bottom: 3px;
}
.menu-wrap {
    position: absolute;
    width: 100%;
    padding: 13px 0px 13px 0px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu-wrap.line {
    background-color: transparent;
    border-bottom: 1px solid #e6e7e8;
    border-top: 0;
}
.menu-wrap.fixed {
    box-shadow: 0 2px 8px 0 rgba(62,62,79,.23);
    padding-top: 0;
    padding: 13px 0px 13px 0px;
    background: linear-gradient(89deg,#f2f2f2 15%,#0088b8 98%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.menu-wrap.fixed .main-header{
    display: none;
}
.menu-wrap.fixed .main-menu > .menu-item > a:before {
    bottom: -12px;
}
.menu-wrap.fixed .main-menu > .menu-item > .sub-menu {
    box-shadow: 0 2px 8px 0 rgba(62,62,79,.23);
    top: 50px !important;
}
.menu-wrap.fixed .main-menu > .menu-item > .sub-menu.menu-large{
    box-shadow: 0 2px 8px 0 rgba(62,62,79,.23);
    top: 50px !important;
}

/* Fixed menu text colors - white text on blue background */
.menu-wrap.fixed .nav-menu .main-menu > .menu-item > a {
    color: #fff !important;
}

.menu-wrap.fixed .nav-menu .main-menu > .menu-item > a:hover {
    color: #0187b6 !important;
}
.menu-wrap.fixed.navigation-menu {
    background-color: #0f1419;
    border-bottom: solid 1px #34393e;
}
.menu-wrap.fixed.navigation-menu {
    height: 52px;
}
.menu-wrap.light.fixed .logo-menu {
    top: -25px;
}
.menu-wrap.active .menu-toggle {
    top: 0px !important;
    right: 0px;
}
.menu-wrap.mobile .logo-responsive{
    display: none;
}
.navigation-menu {
    position: absolute;
    padding-top: 65px;
    background-color: rgba(15, 20, 25, 0.8);
}
.navigation-menu.dark {
    padding-top: 0px !important;
    background-color: rgba(15, 20, 25, 0.9);
}
.navigation-menu .main-menu > .menu-item > a:hover {
    color: #22badf;
}

.menu-wrap .main-menu > .menu-item > a {
    color: #181b22;
    font-weight: 500;
}

.menu-wrap .main-menu > .menu-item > a:hover {
    color: #22badf;
}
.navigation-menu .main-menu > .menu-item.active a:before {
    opacity: 1;
}
.navigation-menu{
    padding-top: 0px;
}
.navigation-menu .main-header{
    padding-top: 10px;
}
.navigation-menu.fixed {
    padding-top: 0px !important;
}
.navigation-menu .nav-menu {
    padding: 0;
}
.navigation-menu .nav-menu .main-menu {
    margin-bottom: 0;
    padding: 0;
}
.navigation-menu .nav-menu .main-menu > .menu-item > a {
    padding: 16.5px 30px;
    display: inline-block;
    color: #fff;
    margin: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.navigation-menu.top .nav-menu .main-menu > .menu-item > a {
    padding: 7px 20px 25px 20px;
    border-left: none;
}
.navigation-menu.top.fixed .nav-menu .main-menu > .menu-item > a {
    padding: 16px 20px 25px 20px;
}
.navigation-menu.top .main-menu > .menu-item > .menu-large {
    top: 117px;
}
.navigation-menu .nav-menu .main-menu > .menu-item > a:hover {
    color: #22badf !important;
}
.navigation-menu .nav-menu .main-menu > .menu-item > a:before {
    content: none;
}
.navigation-menu .nav-menu .main-menu > .menu-item.active > a {
    color: #fff;
}
.navigation-menu .nav-menu .main-menu > .menu-item:first-child {
    padding-left: 0px;
}
.navigation-menu.top .nav-menu .main-menu > .menu-item:last-child {
    border-right: none;
}
.navigation-menu .nav-menu .main-menu > .menu-item.menu-item.menu-item-has-children > a:after {
    position: static;
    margin-left: 10px;
    color: #fff;
}
.navigation-menu .nav-menu .menu-toggle .icon {
    background-color: #FFF;
}
.navigation-menu .main-menu > .menu-item > .sub-menu {
    padding-left: 5px;
    top: 51px;
    margin-left: 1px;
}
.navigation-menu.top .main-menu > .menu-item > .sub-menu {
    margin-left: 0px;
}
.navigation-menu .main-menu > .menu-item > .menu-large {
    top: 113px;
}
.navigation-menu.fixed .main-menu > .menu-item > .menu-large {
    top: 51px;
}
.navigation-menu.dark .menu-item a {
    color: #fff;
}
.navigation-menu.dark .menu-item a:hover {
    color: #fff;
}
.menu-item div.badge {
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    padding: 6px 10px 5px;
}
#nav-toggle { 
    position: relative;
    cursor: pointer;
    padding: 17px 37px 20px 2px;
}
.menu-wrap #nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
    cursor: pointer;
    height: 2px;
    width: 36px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
}
#nav-toggle span:before {
    top: -10px; 
}
#nav-toggle span:after {
    bottom: -10px;
}
.active #nav-toggle span:before {
    background: #22badf !important;
}
.active #nav-toggle span:after {
    background: #22badf !important;
}
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
    transition: all 250ms ease-in-out;
}
#nav-toggle.active span {
    background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
    top: 0;
}
#nav-toggle.active span:before {
    transform: rotate(45deg);
}
#nav-toggle.active span:after {
    transform: rotate(-45deg);
}
/*-----------------------------------
    4 - Banner
------------------------------------*/
.top-banner .box-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px;
    display: inline-block;
}
.top-banner .box-container .heading {
    color: #fff;
}
.top-banner .box-container .subheading {
    color: #fff;
}
.top-banner .box-container .subheading span {
    width: 100%;
    text-align: center;
}
.top-banner .subheading {
    font-family: var(--font-primary);
    color: #fff;
    position: relative;
    line-height: 32px;
    font-size: 18px;
    margin-bottom: 20px;
}
.top-banner .subheading.left {
    margin-left: 0;
}
.top-banner.top-classic .heading {
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--font-primary); font-weight: 700;
    font-size: 48px;
}
.top-banner.top-classic .subheading {
    color: #fff;
}
.top-banner .subheading {
    color: #fff
}
.top-banner .subheading span{
    width: 100%;
    text-align: center;
    font-family: var(--font-primary); font-weight: 300;
}
.top-banner.overlay .heading {
    color: #fff
}
.top-banner.overlay .subheading {
    color: #fff
}
.top-banner.overlay .btn {
    font-size: 18px;
    padding: 15px;
    font-family: var(--font-primary);
}
.top-banner.modern {
    padding-top: 100px;
}
.top-banner.modern .banner-wrap {
    width: 100%;
    float: left;
}
.top-banner.modern .heading {
    width: 100%;
    float: left;
    text-align: left;
    text-transform: capitalize;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 52px;
    line-height: 48px;
    font-family: var(--font-primary); font-weight: 700;
}
.top-banner.modern .subheading {
    float: left;
    color: #fff;
    line-height: 32px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 18px;
    color: #fff;
    font-family: var(--font-primary); font-weight: 300;
}
.top-banner .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 3;
}

.hero-image-content {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-buttons {
    z-index: 3;
    position: relative;
}

.top-banner .heading {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    color: #fff;
    display: inline-block;
    line-height: 40px;
    font-family: var(--font-primary); font-weight: 700;
    font-size: 42px;
    z-index: 3;
}
.top-banner.top-classic .subheading {
    float: left;
    width: 100%;
    color: #fff;
    display: inline-block;
    margin-bottom: 30px;
    margin-top: 0px;
    font-family: var(--font-primary); font-weight: 300;
}
.top-banner .subheading {
    float: left;
    width: 100%;
    color: #fff;
    display: inline-block;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    z-index: 3;
}
.top-banner.modern .btn {
    float: left;
    z-index: 3;
}
.top-header {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 60px;
}
.top-header.overlay:before {
    background-color: rgba(0, 0, 0, 0.7);
}
.top-header .wrapper .heading {
    font-family: var(--font-primary); font-weight: 700;
    font-size: 42px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 10px;
}

.top-header .wrapper .subheding {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #eaeaea;
    margin-bottom: 20px;
}
.top-header .specs {
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    text-align: center;
    font-family: var(--font-primary);
}
.top-header .specs img {
    margin-bottom: 10px;
}
.top-header .specs div {
    padding: 0px 20px;
}
.top-header .specs div:first-child {
    padding-left: 0px;
}
.top-header .specs div:last-child {
    padding-right: 0px;
}
.top-header .specs img {
    height: 70px;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px 0 rgba(0,0,0,.2);
}
.top-header .wrapper .subheding {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #eaeaea;
}
.top-header .wrapper .subheding .link {
    color: #fff;
    padding-left: 8px;
    padding-right: 10px;
}
.top-header .wrapper .subheding i{
    font-size: 10px;
}
.top-header .wrapper .subheding .link:first-child {
    padding-left: 0px;
}
.top-header .wrapper .subheding .link.active {
    color: #22badf;
    font-weight: bold;
}
.top-header .wrapper .subheding .link:hover {
    text-decoration: none;
    color: #22badf;
}
.top-header .wrapper .round {
    position: relative;
}
.top-header .wrapper .round:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #fff;
    display: inline-block;
    border-radius: 3px;
    position: absolute;
    top: 16px;
    left: 2px;
}
/*-----------------------------------
    5 - Buttons
------------------------------------*/
.btn {
    cursor: pointer !important;
    border: 1px solid #000000;
    border-radius: 50px;
    color: #000000;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    padding: 17px 26px;
    position: relative;
    background-color: transparent;
    letter-spacing: 0.02em;
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px 0 rgba(62,62,79,.23);
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}
/* Kullanılmayan .btn-default-purple sınıfı kaldırıldı - CSS optimizasyonu */
.btn-default-white {
    color: #fff;
    border: 1px solid #fff;
    position: relative;
    z-index: 3;
}
.btn-default-white:hover {
    background-color: #22badf;
    border: 1px solid #22badf;
    color: #ffffff;
}
.btn-default-green {
    color: #22badf;
    border: 1px solid #22badf;
    position: relative;
    z-index: 3;
}
.btn-default-green:hover {
    background-color: #22badf;
    color: #ffffff;
}
.btn-default:hover {
    outline: medium none !important;
    text-decoration: none !important;
    color: #fff !important;
    background-color: #000000 !important;
    border-color: #000000 !important;
}
.btn-default-grad-purple-fill {
    color: #ffffff;
    border: none;
    background-size: 300% 100%;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #3fc6f1, #0187b6 40%, #0187b6 40%, #3fc6f1);
    position: relative;
    z-index: 3;
}
.btn-default-grad-purple-fill:hover {
    color: #ffffff;
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(to right, #3fc6f1, #0187b6 40%, #0187b6 40%, #3fc6f1);
}
.btn-default-blue-fill {
    background-color: #3eb1fc !important;
    color: #fff !important;
    border: none;
    position: relative;
    z-index: 3;
}
.btn-default-blue-fill:hover {
    background-color: #000000 !important;
    color: #fff !important;
    border: none;
}
.btn-default-green-fill {
    background-color: #22badf !important;
    border: none;
    position: relative;
    z-index: 3;
}
.btn-default-green-fill:hover {
    background-color: #000000 !important;
    color: #fff !important;
    border: none;
}
.btn-default-purple-fill {
    background-color: #0187b6 !important;
    color: #fff !important;
    border: none;
    position: relative;
    z-index: 3;
}
.btn-default-purple-fill:hover {
    background-color: #000000 !important;
    color: #fff !important;
    border: none;
}
.btn-default-fill {
    background-color: #000000 !important;
    color: #fff !important;
    border: none;
    position: relative;
    z-index: 3;
}
.btn-default-fill:hover {
    background-color: #22badf !important;
    color: #fff !important;
    border: none;
}
.btn.question {
    top: -2px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    padding: 8px 12px;
    font-size: 10px;
}
.btn.focus, .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}
.btn-secondary:not(:disabled):not(.disabled).active {
    opacity: 1;
    color: #fff !important;
    background-color: #22badf;
    border: solid 1px #22badf;
    border-radius: 15px;
    padding: 12px;
}
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border: solid 1px #dedede;
    border-radius: 15px;
    padding: 12px;
    color: #000000;
}
.btn-secondary:not(:disabled):not(.disabled) {
    opacity: 0.6;
    background-color: #fff;
    border-color: #efefef;
    border-radius: 15px;
    padding: 12px;
}
.btn-group>.btn:not(:first-child) {
    opacity: 0.6;
    background-color: #fff;
    border: solid 1px #d6d6d6;
    border-radius: 15px;
    padding: 12px;
    color: #000000;
}
.btn-group .btn+.btn {
    margin-left: 5px;
}
.btn-secondary:hover {
    background-color: #000000;
}
/*-----------------------------------
    6 - OWL Carousel
------------------------------------*/
/* Kullanılmayan .owl-item.loading sınıfı kaldırıldı */
.owl-item, .item {
    height: 70vh;
}

/* Sadece diğer sayfalardaki slider'lar için yükseklik sınırı */
.owl-carousel:not(.home-slider) .owl-item,
.owl-carousel:not(.home-slider) .item {
    height: 400px;
}
.owl-carousel .fix .top-banner .heading {
    margin-bottom: 3px !important;
}
/* Owl Carousel navigation buttons are completely hidden */
.owl-carousel .owl-nav {
    display: none !important;
}

.owl-carousel .owl-dots {
    display: none !important;
}
.owl-carousel .vc-parent.fix {
    height: 100vh !important;
}

/* Sadece diğer sayfalardaki slider'lar için yükseklik sınırı */
.owl-carousel:not(.home-slider) .vc-parent.fix {
    height: 400px !important;
    max-height: 400px;
}
.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}
/* Kullanılmayan OWL Controls sınıfları kaldırıldı - navigation gizli */
.owl-carousel .owl-video-tn {
  background-size: cover;
  padding-bottom: 56.25%;
  padding-top: 25px;
}
.owl-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
.custom-img-right {
    width: 400px;
    height: 400px;
    position: relative;
    object-fit: contain;
    z-index: 1;
}
.custom-img-left {
    opacity: 0.2;
    height: 600px;
    position: absolute;
    top: 10%;
    left: -23%;
}
.chars {
    position: absolute;
    display: inline-grid;
    text-align: center;
    right: -400px;
    top: -200px;
}
.chars div{
        padding-top: 20px;
    }
.chars p{
    color: #fff;
    font-size: 13px;
}
/*-----------------------------------
    7 - Tables
------------------------------------*/


/* Pricing Tables */
.pricing {
    text-align: center;
}
.pricing .wrapper {
    border-radius: 15px;
    padding: 50px 0px 0px;
    margin-top: 50px;
    margin-bottom: 30px;
}
.pricing.special .wrapper.active{
    padding-bottom: 52px;
} 
.pricing.special .wrapper{
    position: relative;
    border: solid 1px #efefef;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1)
} 
.pricing.special .wrapper:hover{
    border: solid 1px #3fc6f1;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}
.pricing .wrapper .title {
    font-family: var(--font-primary); font-weight: 600;
    color: #22badf;
    font-size: 18px;
}
.pricing.tablepage .wrapper {
    position: relative;
    border: solid 1px #efefef;
    background-color: #fff;
}
.pricing.tablepage .wrapper.active {
    position: relative;
    border: solid 1px #21252E;
    background-color: #21252E;
    border-radius: 0px;
}
.pricing .wrapper.active i {
    font-size: 42px;
    color: #121e25;
    margin-bottom: 20px;
}
.pricing.tablepage .wrapper.active i {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}
.pricing .wrapper.first i {
    font-size: 42px;
    color: #181b22;
    margin-bottom: 20px;
}
.pricing .wrapper.third i {
    font-size: 42px;
    color: #181b22;
    margin-bottom: 20px;
}
.pricing.tablepage .wrapper {
    position: relative;
    background-color: #fff;
}
.pricing.tablepage .wrapper img {
    width: 100%;
}
.pricing.tablepage .wrapper.active .price {
    color: #121e25;
}
.pricing.tablepage .wrapper.active .price {
    color: #ffffff;
}
.pricing.tablepage .wrapper.active .title {
    color: #121e25;
    font-family: var(--font-primary);
}
.pricing.tablepage .wrapper.active .title {
    color: #ffffff;
    font-family: var(--font-primary);
}
.pricing.tablepage .wrapper.active .period {
    color: #181b22;
}
.pricing.tablepage .wrapper.active .period {
    color: #ffffff;
}
.pricing .wrapper.active .list-info {
    margin: 30px;
}
.pricing.tablepage .wrapper.active .list-info li {
    color: #121e25;
}
.pricing.tablepage .wrapper.active .list-info li {
    color: #9e9e9e;
}
.pricing .table .title {
    color: #3eb1fc;
    font-size: 18px;
    font-family: var(--font-primary); font-weight: 600;
}
.pricing .price {
    color: #181b22;
    font-family: var(--font-primary);
    font-size: 28px;
}
.pricing .price sup {
    top: -.3em;
    font-size: 18px;
}
.period {
    font-family: var(--font-primary);
    font-size: 18px;
}
.fromer {
    font-family: var(--font-primary); font-style: italic;
    line-height: 26px;
    font-size: 14px;
    color: #000000;
}
.pricing .info {
    font-family: var(--font-primary);
    color: #000000;
    font-size: 13px;
    margin: 15px 0px;
}
.pricing .heading {
    text-transform: capitalize;
    color: #181b22;
    font: bold 48px var(--font-primary);
}
.pricing .subheading {
    color: #181b22;
    margin-top: 10px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
}
.pricing .list-info {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #3eb1fc;
    margin: 0px;
    list-style-type: none;
    padding: 25px;
}
.pricing.special .wrapper a {
    margin: 20px 0px;
}
.pricing.special .list-info li {
    padding: 12px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #fff;
}
.pricing.tablepage .list-info li {
    border-top: 1px solid #efefef;
    padding: 12px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #121e25;
}
.pricing.tablepage .active .list-info li {
    border-top: 1px solid #34383a;
}
.pricing.tablepage .active .list-info li {
    border-top: 1px solid #63b790;
}
.pricing .list-info li sub {
    bottom: -0.3px;
}
.pricing .wrapper i {
    font-size: 42px;
    color: #121e25;
    margin-bottom: 20px;
}
.pricing .wrapper.active i {
    font-size: 42px;
    color: #121e25;
    margin-bottom: 20px;
}
.pricing.table.tablepage {
    background-color: #efefef;
}
.pricing .wrapper.active {
    border: 1px solid #22badf;
    background-color: #22badf;
}
.pricing.p-top {
    padding-top: 68px;
}
.section-heading.light {
    color: #fff;
}
.section-subheading.small-text {
    font-size: 18px;
}
.section-offer {
    text-align: center;
}
.pricing.slider {
    background-color: #FFF;
    padding-top: 60px;
    padding-bottom: 30px;
}

.pricing.slider .heading {
    font: normal 24px var(--font-primary);
    text-align: left;
    color: #181b22;
    margin-bottom: 3px;
}
.pricing.slider .subheading {
    text-align: left;
    color: #181b22;
}
.pricing.slider .swiper-pagination-switch {
    display: none;
}
.pricing.slider .desc {
    font: 16px var(--font-primary);
    color: #858f95;
    margin-top: 32px;
    line-height: 24px;
}
.pricing.slider .section-subheading {
    margin-bottom: 72px;
}
.pricing.slider .wrapper {
    padding-bottom: 0;
    margin-top: 0px;
    border: solid 1px #90A4AE;
}
.pricing.slider .info {
    background-color: #efefef;
    margin-right: 30px;
    margin-top: -15px;
    padding: 17px 0 26px 25px;
    position: relative;
}
.pricing.slider .soc-icons i {
    font-size: 22px;
    color: #181b22;
}
.pricing.slider .btn {
    border-radius: 0px;
    margin-top: 24px;
    width: 100%;
    left: 0;
    text-align: center;
    padding: 27px 22px;
}
.pricing.slider .btn:hover {
    background-color: #0f1419;
    color: #22badf;
    border-color: #181b22;
}
.pricing.slider .slides-toggle .slide {
    width: 25px;
    height: 42px;
    position: absolute;
    top: 40%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.pricing.slider .slides-toggle .slide-prev {
    background-image: url("../img/arrow-left-2.png");
    left: -83px;
}
/* Kullanılmayan pricing slider navigation sınıfları kaldırıldı */
.pricing.slider .soc-icons {
    display: inline-block;
    float: right;
    margin-top: -13px;
    margin-right: 8px;
}
.pricing.slider .info {
    margin-right: 26px;
}
/* Kullanılmayan swiper wrapper sınıfları kaldırıldı */
.newproducts .pricing .wrapper {
    font-family: var(--font-primary);
} 
.newproducts .pricing .wrapper .list-info i {
    padding-left: 5px;
    vertical-align: text-top;
    color: #fff;
    font-size: 20px;
}
.newproducts .pricing .list-info {
    padding: 40px;
    margin: 0px;
}
/* Vertical Table */
.best-plans.pricing .wrapper {
    margin-top: 58px;
    padding-top: 38px;
    padding-bottom: 33px;
}
.best-plans.pricing .wrapper.act {
    background-color: #242830;
}
.best-plans.pricing .wrapper.act .title {
    color: #fff;
}
.best-plans.pricing .wrapper.act .period {
    color: #fff;
}
.best-plans.pricing .wrapper.act .btn:hover {
    border-color: #fff;
}
.best-plans.pricing .wrapper .title {
    font-size: 18px;
}
.best-plans.pricing .wrapper .price {
    font-size: 45px;
    margin-top: 5px;
}
.best-plans.pricing .wrapper .price sup {
    top: -16px;
    font-size: 24px;
}
.best-plans.pricing .wrapper .period {
    margin-top: -4px;
    margin-bottom: 23px;
    font-size: 11px;
}
.best-plans.pricing .wrapper .btn {
    padding: 11px 15px;
    font-size: 10px;
}
.best-plans.pricing .wrapper.m-top {
    margin-top: 0;
}
.best-plans .table {
    margin-top: 12px;
    margin-bottom: 0;
}
.best-plans .table div.title-table {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #242830;
    display: inline-block;
    text-decoration: underline;
}
.best-plans .table td i.fa-times {
    font-size: 22px;
    color: #22badf
}
.best-plans .table td i.fa-check {
    font-size: 22px;
    color: #000000;
}
.best-plans .table td {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #000000;
    border-top: none;
    border-left: solid 1px #efefef;
    border-bottom: solid 1px #efefef;
    padding: 20px;
    vertical-align: middle;
}
.best-plans .table.sample td {
    border-left: none !important;
    text-align: center !important;
}
.best-plans .table.sample td:first-child {
    min-width: 0px;
}
.best-plans .compare td {
    border-left: none !important;
}
.best-plans .compare.min td {
    min-width: 300px;
}
.best-plans .compare.min .form-contact {
    padding: 0px !important;
}
.best-plans .table tbody td.section-bar {
    color: #181b22;
    font-size: 16px;
    padding-right: 65px;
    background-color: #22badf;
    border: none;
}
.best-plans .table tbody td.section-bar span{
    margin-right: 30px;
    font-size: 12px;
}
.best-plans .table td:first-child {
    min-width: 200px;
    text-align: left;
    border-left: none;
}
.best-plans .table td .fa-check {
    font-size: 29px;
}
.host-plan {
    background-color: #22badf;
    padding-top: 60px;
    padding-bottom: 60px;
}
.host-plan .section-heading {
    font-size: 37px;
    margin-bottom: 23px;
}
.host-plan .section-subheading {
    font-size: 18px;
    margin-bottom: 80px;
}
.host-plan .wrapper {
    background-color: #fff;
    color: #181b22;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 32px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.host-plan .wrapper:hover {
    background-color: #22badf;
    color: #fff;
}
.host-plan .wrapper i {
    font-size: 42px;
}
.host-plan .wrapper .heading {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.host-plan .wrapper .desc {
    font-family: var(--font-primary);
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 24px;
}
/* Horizontal Table */
.horiz-plans .section-subheading {
    margin-bottom: 68px;
}
.horiz-plans .btn.left {
    margin-right: 35px;
    padding: 15px 33px;
    background-color: #f44336;
    font-size: 18px;
}
.section-plans .heading {
    font-family: var(--font-primary);
    font-size: 26px;
    margin-bottom: 15px;
}
.section-plans .desc {
    font-size: 14px;
    color: #000000;
    line-height: 28px;
}
.wrapper-h-plans {
    position: relative;
    background-color: #fff;
    border: solid 1px #efefef;
}
.wrapper-h-plans .plans-detail{
    width: 100%;
}
.wrapper-h-plans .plans-detail i {
    font-size: 28px;
}
.wrapper-h-plans .plans-detail span {
    font-size: 14px;
    color: #000000;
    vertical-align: super;
    margin-left: 5px;
}
.h-plans-info {
    color: #fff;
    padding: 40px 30px;
    height: 100%;
}
.h-plans-info .price {
    font-size: 22px;
    margin-bottom: 2px;
}
.h-plans-info .price .title {
    font-size: 37px;
    margin-left: 14px;
    font-weight: bold;
}
.h-plans-info .price .title .line {
    font-size: 18px;
    display: inline-block;
    margin-left: -20px;
}
.h-plans-info .price .title .title-price {
    margin-left: -5px;
    display: inline-block;
    text-transform: lowercase;
}
.h-plans-info .price .symbol {
    font-size: 30px;
    display: inline-block;
}
.h-plans-info .price .dec {
    font-size: 30px;
    display: inline-block;
}
.h-plans-info .heading {
    padding: 10px;
    border: dashed 1px #fff;
    margin: 10px 0px 18px;
    font-size: 16px;
}
.h-plans-info .title {
    font-family: var(--font-primary);
    margin-bottom: 2px;
}
.h-plans-info .desc {
    text-transform: lowercase;
    font-family: var(--font-primary);
    line-height: 17px;
}
.h-plans-info .call-title {
    font-size: 20.5px;
    color: #434353;
    font-weight: bold;
    margin-bottom: 6px;
}
.h-plans-info .call-link {
    color: #434353;
    display: block;
    margin-bottom: 20px;
    font: bold 29px var(--font-primary);
}
.h-plans-info .btn.modern {
    padding: 13px 20px;
    font-size: 16px;
    border-width: 2px;
}
.h-plans-info .header-wrap {
    text-align: left;
}
.h-plans-info .header-wrap .price{
    font-size: 22px;
}
/*-----------------------------------
    8 - Tabs
------------------------------------*/
.tabs-item.active {
    display: block;
}
.tabs-item {
    display: none;
}
.tabs-header li {
    display: inline-block;
    list-style-type: none;
}
.tabs-header ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
}
.tabs.offers-tabs .tabs-header li {
    font-family: var(--font-primary);
    font-size: 15px;
    border-bottom: solid 1px transparent;
    padding: 0px 0px 10px 0px;
    cursor: pointer;
    color: #181b22;
    margin-top: 30px;
    -webkit-transition: 0.3s;
    margin-top: 50px;
    flex: 0 0 25%;
    max-width: 25%;
}
.tabs.offers-tabs .tabs-header .active {
    border-bottom: solid 1px #22badf;
    color: #22badf;
}
.tabs.offers-tabs .tabs-header i {
    font-size: 48px;
}
.tabs.offers-tabs .tabs-header div {
    margin-top: 15px;
}
.tabs.offers-tabs .tabs-header li:hover {
    color: #22badf;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.tabs.offers-tabs .tabs-content .heading {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #181b22;
    margin-bottom: 10px;
}
.tabs.offers-tabs .tabs-content p {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 26px;
}
.tabs.offers-tabs .tabs-content .info {
    font-size: 13px;
    font-family: var(--font-primary);
    line-height: 26px;
    margin-bottom: 25px;
}
.tabs.offers-tabs .tabs-content .tabs-item.active {
    position: relative;
}
/*-----------------------------------
    9 - Services
------------------------------------*/
.services .heading {
    font-family: var(--font-primary);
    font-size: 20px;
    color: #464646;
    text-transform: capitalize;
}
.services .info {
    font-size: 16px;
    color: #81868e;
}
.services .info .mark-text {
    color: #181b22;
    font-weight: bold;
}
.services .icon-group {
    margin-top: 100px;
}
.services .icon-group .icon {
    background-color: #0f1419;
    display: block;
    padding: 17px;
    border-radius: 50%;
    margin-bottom: 14px;
}
.services .icon-group .icon.active {
    background-color: #22badf;
}
.services .service-wrap .line {
    height: 1px;
    width: 100%;
    background-color: #eaeaeb;
    position: relative;
}
.services .service-wrap .line:before {
    content: "";
    height: 2px;
    background-color: #22badf;
    width: 50%;
    position: absolute;
    top: -1px;
}
.services .service-wrap .info {
    padding-right: 80px;
}
.services .service-wrap .service-section {
    border-radius: 15px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
    padding: 50px;
    margin-top: 50px;
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.services .service-wrap .service-section .title {
    font-family: var(--font-primary); font-weight: 600;
    font-size: 16px;
    color: #21252E;
    margin-top: 20px;
    margin-bottom: 14px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.services .service-wrap .service-section .subtitle {
    line-height: 26px;
    font-size: 13px;
    font-family: var(--font-primary);
    color: #000000;
}
.services .service-wrap .service-section.service {
    border-right: 0;
}
.services .service-wrap .service-section i {
    font-size: 60px;
}
.services .service-wrap {
    border-bottom: 0;
}

.services .service-wrap .row {
    gap: 15px 0;
}
.services.padd {
    padding-top: 75px;
}


/*-----------------------------------
    10 - Testimonials
------------------------------------*/


/*-----------------------------------
    11 - Team
------------------------------------*/
/* Kullanılmayan line-icon2 sınıfı kaldırıldı */
/*-----------------------------------
    12 - Forms
------------------------------------*/
.form-contact {
    border-radius: 15px;
    width: 100%;
    position: relative;
    padding: 80px;
    display: inline-block;
}
.form-contact .info a{
    color: #22262f;
}




.comments-form .input.textarea {
    height: 150px;
}





.comments-form .btn-check:checked:before {
    background-image: url("../img/check.png");
    background-repeat: no-repeat;
    background-position: center;
}


.register .comments-form .label-form:hover {
    color: #22badf;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.register .comments-form .link {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #000000;
    margin: 0px 50px 0px 0px;
    text-decoration: underline;
}
.register .comments-form .link:hover {
    color: #22badf;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.register.contact-us.other .comments-form .input{
    background-color: #fff;
}
.register.contact-us.other .info .social-icons i {
    border: 1px solid #546E7A;
}
.register.contact-us form {
    padding-top: 0px;
}
.register.contact-us .comments-form {
    width: 70%;
    margin-top: 0;
}
.register.contact-us .subtitle,
.register.contact-us .title {
    font-family: var(--font-primary);
    font-size: 32px;
    text-transform: capitalize;
}
.register.contact-us .title {
    font: 30px var(--font-primary);
    letter-spacing: -0.5px;
    margin-bottom: 22px;
}
.register.contact-us .info {
    font-family: var(--font-primary);
    margin-bottom: 20px;
    font-size: 16px;
}
.register.contact-us .social-icons{
    margin-top: 10px;
}
.register.contact-us .info:last-child {
    margin-bottom: 0px;
}
.register.contact-us .info a:hover {
    text-decoration: none;
    color: #21252E;
}
.register.contact-us .info .social-icons i {
    width: 55px;
    color: #424242;
    border: 1px solid #eaeaeb;
    padding: 15px 20px;
    display: inline-block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.register.contact-us .info .social-icons i:hover {
    color: #22badf;
}
.register.contact-us .contact-info {
    margin: 5px 0px;
}
.register.contact-us .contact-info .heading {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #21252E;
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 11px;
    display: inline-block;
}
.register.contact-us .icon-container {
    height: 32px;
    line-height: 30px;
    background-color: #22badf;
    color: #21252E;
    width: 32px;
    display: inline-block;
    text-align: center;
    margin-right: 12px;
    background-color: #22badf;
}
.login-form {
    width: 100%;
}
.login-form .wrapper {
    padding: 30px;
}
.login-form .title {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #181b22;
    margin-bottom: 6px;
    margin-top: 0;
}
.login-form .title i{
    font-size: 16px;
    color: #181b22;
}
.login-form .subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    margin-bottom: 25px;
}
.login-form input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #efefef;
    -webkit-text-fill-color: #909296;
    color: #909296;
}
.login-form::-webkit-input-placeholder {
    font-family: var(--font-primary);
    color: #909296;
    letter-spacing: 1px;
}
.login-form:-moz-placeholder {
    font-family: var(--font-primary);
    color: #909296;
    letter-spacing: 1px;
}
.login-form::-moz-placeholder {
    font-family: var(--font-primary);
    color: #909296;
    letter-spacing: 1px;
}
.login-form:-ms-input-placeholder {
    font-family: var(--font-primary);
    color: #909296;
    letter-spacing: 1px;
}
.login-form .field:focus {
    border-color: #22badf;
}
.login-form .field {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #121e25;
    background-color: #efefef;
    padding: 15px 20px;
    width: 100%;
    border: 1px solid transparent;
    outline: 0;
    margin-bottom: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.login-form .label-form {
    font-family: var(--font-primary);
    font-size: 14px;
    padding-top: 20px;
    padding-left: 15px;
}
.login-form a.link {
    font-family: var(--font-primary);
    font-size: 14px;
    margin-left: 20px;
    text-decoration: underline;
}
.login-form a.link:hover {
    color: #21252E;
}
.login-form .label-form .btn-check {
    position: relative;
    visibility: hidden;
}
.login-form .label-form .btn-check:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #121e25;
    background-color: #fff;
    position: absolute;
    top: -5px;
    left: -16px;
    visibility: visible;
}
.login-form .label-form .btn-check:checked:before {
    background-image: url("../img/check.png");
    background-repeat: no-repeat;
    background-position: center;
}
.login-form .btn {
    margin-right: 20px;
    font-size: 14px;
    font-family: var(--font-primary);
}
.login-form .btn:hover {
    background-color: #0f1419;
    color: #22badf;
    border-color: #181b22;
}
.modal-content {
    border-radius: 0px;
    background-color: transparent;
}
.modal-dialog {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}
.modal-content iframe.movie{
    width: 100%;
    height: 450px;
}
.register .social {
    padding: 15px 0px;
}
.register .btn-social.btn-facebook {
    background-color: #3b5998;
    padding: 15px 30px;
    color: #fff;
    cursor: pointer;
    margin-right: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.register .btn-social.btn-facebook:hover {
    background-color: #273c68;
    text-decoration: none;
}
.register .btn-social.btn-twitter{
    background-color: #55acee;
    padding: 15px 30px;
    color: #fff;
    cursor: pointer;
    margin-right: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.register .btn-social.btn-twitter:hover {
    background-color: #3e80b2;
    text-decoration: none;
}
.subcribe .heading {
    font-family: var(--font-primary); font-weight: 700;
    color: #fff;
    font-weight: bold;
    margin-left: 46px;
}
.subcribe.news {
    margin: 40px 0px;
}
.subcribe input:-moz-placeholder {
    font-size: 18px;
    font-family: var(--font-primary);
    color: #67687b;
}
.subcribe input::-webkit-input-placeholder {
    font-size: 13px;
    font-family: var(--font-primary);
    color: #67687b;
}
.general-input {
    position: relative;
    width: 100%;
    display: flex;
}
.fill-input {
    width: 100%;
    font-size: 15px;
    font-family: var(--font-primary);
    color: #000000;
    border: transparent;
    border-radius: 50px;
    padding: 15px 20px 15px 30px;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 2px 8px 0 rgba(62,62,79,.23);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.fill-input:focus {
    border-color: #22badf;
}
.general-input input.btn {
    border: none;
    right: 0px;
    position: absolute;
    padding: 19px 30px;
}
.subcribe .form {
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    width: 100%;
}
.subcribe .form span{
    margin-top: 0px;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
}
.subcribe .form p{
    color: #000000;
    font: 13px var(--font-primary);
}
.subcribe form p{
    font-size: 14px;
    font-family: var(--font-primary);
    color: #000000;
}
/*-----------------------------------
    13 - Countdown
------------------------------------*/
.countdown .wrapper {
    width: 100%;
    position: relative;
}
.countdown .wrapper .heading {
    font-size: 18px;
    font-family: var(--font-primary);
    color: #181b22;
    text-align: center;
}
.countdown .wrapper .clock {
    text-align: left;
    font-family: var(--font-primary);
    font-size: 52px;
}
.countdown .wrapper .clock span {
    border-radius: 15px;
    margin: 21px 21px 15px 0px;
    display: inline-block;
    padding: 10px 40px;
    border: solid 1px #efefef;
    text-align: center;
}
.countdown .wrapper .clock span:last-child {
    margin: 0px;
}
.countdown .wrapper .clock .divider {
    font-size: 22px;
    color: #4c515b;
    display: block;
    margin-top: -120px;
    margin-right: -10px;
    text-align: right;
}
.countdown .wrapper .clock .title {
    border: none;
    font-family: var(--font-primary);
    padding: 0px;
    font-size: 16px;
    display: block;
    color: #000000;
    margin: 0px;
}
/*-----------------------------------
    14 - Cart
------------------------------------*/
.main-header a.cart {
    background-color: transparent;
}
.cart.end {
    padding-top: 100px;
}
.cart .section-subheading {
    margin-top: 10px;
}
.cart .table {
    text-align: center;
    width: 100%;
}
.cart .table thead tr th {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #464646;
    border-bottom: 0;
    text-align: center;
    border: 1px solid #ccd0d1;
    padding-top: 22px;
    padding-bottom: 22px;
}
.cart .table thead tr th:first-child {
    text-align: left;
    border-left: none;
}
.cart .table thead tr th:last-child {
    border-right: none;
}
.cart .table tbody .wp-close {
    font-size: 14px;
    color: #9e9e9e;
    text-align: left;
    cursor: pointer;
}
/* Kullanılmayan wp-close sınıfları kaldırıldı */
.cart .table tbody .section-bar {
    color: #fff;
    font-size: 14px;
    padding: 20px;
    background-color: #121e25;
    border: none;
}
.cart .table tbody .title-table {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #242830;
    display: inline-block;
    text-decoration: underline;
}
.cart .table tbody .quantity {
    border: 1px solid #90A4AE;
    font: 16px var(--font-primary);
    color: #181b22;
    background-color: #fff;
    padding: 8px 0;
    outline: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cart .table tbody .quantity:focus {
    border-color: #C1C0C0;
}
.cart .table tbody .quantity {
    padding: 8px 18px;
}
.cart .table tbody .price {
    font: bold 14px var(--font-primary);
    color: #696969;
}
.cart .table tbody .total {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #21252E;
}
.cart .table tbody .section-bar .check {
    margin-right: 120px;
}
.cart .table tbody .title {
    color: #5b6164;
    font-family: var(--font-primary);
    font-size: 14px;
}
.cart .table tbody td {
    border: 1px solid #ccd0d1;
    padding-top: 12px;
    padding-bottom: 12px;
    vertical-align: middle;
}
.cart .table tbody td:first-child {
    border-left: none;
}
.cart .table tbody td:nth-child(6) {
    font-size: 16px;
    font-family: var(--font-primary); font-weight: 700;
}
.cart .table tbody td:nth-child(6) .orig-price {
    text-decoration: line-through;
}
.cart .table tbody td:nth-child(6) .sales-price {
    color: #22badf;
}
.cart .table tbody td:last-child {
    border-right: none;
}
.cart .data-cart {
    text-align: center;
    margin-top: 37px;
}
.cart .data-cart .order-total,
.cart .data-cart .order-suma {
    background-color: #0f1419;
    font: bold 19px var(--font-primary);
    color: #fff;
    text-transform: capitalize;
    padding: 26px 57px;
    border-right: 1px solid #50555e;
    display: inline-block;
}
.cart .data-cart .order-suma {
    font: bold 19px var(--font-primary);
    border-right: 0;
    margin-left: -3.5px;
    padding: 26px 47px;
}
.cart .data-cart .links {
    margin-top: 70px;
    margin-bottom: 85px;
}
.cart .data-cart .btn.shop {
    background-color: transparent;
    font: bold 22px var(--font-primary);
    color: #181b22;
    border: 3px solid #181b22;
    padding: 24px 66px;
}
.cart .data-cart .btn.shop:hover {
    background-color: #0f1419;
    color: #22badf;
    border-color: #181b22;
}
.cart .data-cart .btn.order {
    font: bold 22px var(--font-primary);
    background-color: #22badf;
    color: #181b22;
    margin-left: 20px;
    padding: 24px 66px;
    border-width: 3px;
}
.cart .data-cart .btn.order:hover {
    background-color: #0f1419;
    color: #22badf;
    border-color: #181b22;
}
.cart .data-cart.m-top {
    margin-bottom: 69px;
}
.cart .form {
    margin-top: 90px;
    margin-bottom: 140px;
}
.cart .form .field {
    font-size: 16px;
    font-family: var(--font-primary);
    color: #6a6967;
    background-color: #efefef;
    outline: none;
    border: 1px solid transparent;
    margin-bottom: 33px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
    padding: 27px 35px;
}
.cart .form .field:focus {
    border-color: #9d9c9a;
}
.cart::-webkit-input-placeholder {
    font-family: var(--font-primary);
    color: #6a6967;
}
.cart:-moz-placeholder {
    font-family: var(--font-primary);
    color: #6a6967;
}
.cart::-moz-placeholder {
    font-family: var(--font-primary);
    color: #6a6967;
}
.cart:-ms-input-placeholder {
    font-family: var(--font-primary);
    color: #6a6967;
}
.cart .header {
    font-size: 14px;
    font-family: var(--font-primary);
    color: #181b22;
    margin-bottom: 37px;
    letter-spacing: 0.5px;
}
.cart .payment-form {
    padding: 0 79px;
}
.cart .payment-form .wrapper {
    background-color: #efefef;
    padding: 22px 23px 0;
    margin-top: 18px;
    margin-bottom: 74px;
}
.cart .payment-form .wrapper .pay-label {
    font: bold 16px var(--font-primary);
    color: #696969;
    display: block;
    cursor: pointer;
    margin-bottom: 17px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f4f3ef;
    padding-left: 60px;
}
.cart .payment-form .wrapper .pay-label:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}
.payment-form .btn-check {
    position: relative;
}
.payment-form .btn-check:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #121e25;
    background-color: #fff;
    position: absolute;
    top: -4px;
    left: 0px;
    visibility: visible;
}
.payment-form .btn-check:checked:before {
    background-image: url("../img/check.png");
    background-repeat: no-repeat;
    background-position: center;
}
.cart .payment-form .btn.btn-submit {
    font: bold 22px var(--font-primary);
    padding: 26px 61px;
}
.cart .payment-form .btn.btn-submit:hover {
    background-color: #0f1419;
    color: #22badf;
    border-color: #181b22;
}
.cart .title-form {
    font-family: var(--font-primary); font-weight: 800;
    font-size: 15px;
    color: #181b22;
    text-align: center;
}
.payment-order .table.payment-form th {
    padding: 20px 0;
    font-family: var(--font-primary);
    color: #121e25;
}
.payment-order .table.payment-form th:first-child {
    font-size: 13px;
    color: #181b22;
    vertical-align: middle;
}
.payment-order .table.payment-form th a {
    margin-left: 20px;
    text-decoration: none;
    color: #121e25;
}
.payment-order .input {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #121e25;
    background-color: #fff;
    padding: 10px 15px;
    width: 100%;
    border: 1px dashed #121e25;
    outline: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.comments-form .input:focus {
    border-color: #22badf;
}
.comments-form .input.textarea {
    height: 150px;
}
.payment-order .btn-order {
    margin-bottom: 60px;
}
/*-----------------------------------
    15 - Case Study
------------------------------------*/
.casestudy .wrapper {
    background-color: #21252E;
}
.casestudy .img {
    position: relative;
}
.casestudy .content-info {
    font-size: 13px;
    font-family: var(--font-primary);
    color: #000000;
    margin-bottom: 20px;
    margin-top: 9px;
    line-height: 30px;
    padding-left: 25px;
}
.casestudy .slider-container {
    height: 100%;
}
.casestudy .casestudy {
    text-align: left;
    margin-left: 11px;
}
.casestudy .social-icons i {
    color: #91a3ad;
    border: 1px solid #91a3ad;
    padding: 10px 12px;
    width: 40px;
    display: inline-block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.casestudy .social-icons i:hover {
    color: #22badf;
}
.casestudy .swiper-pagination-switch {
    display: none;
}
.casestudy .author {
    font-size: 22px;
    font-family: var(--font-primary);
    padding-left: 25px;
    margin-bottom: 15px;
}
.casestudy .slide-next,
.casestudy .slide-prev {
    background-image: url(../img/arrow-right.png);
    background-repeat: no-repeat;
    width: 10px;
    height: 15px;
    position: absolute;
    bottom: 30px;
    right: 69px;
}
.casestudy .slide-next:hover,
.casestudy .slide-prev:hover {
    background-image: url(../img/arrow-right-act.png);
    cursor: pointer;
}
.casestudy .slide-prev {
    background-image: url(../img/arrow-left.png);
    bottom: 30px;
    right: 100px;
}
.casestudy .slide-prev:hover {
    background-image: url(../img/arrow-left-act.png);
}
.casestudy .icon-quote {
    margin-top: -18px;
}
/* Kullanılmayan case study background sınıfları kaldırıldı */
.casestudy .author {
    text-transform: capitalize;
}
/* Kullanılmayan case study swiper sınıfı kaldırıldı */
/*-----------------------------------
    16 - Faq
------------------------------------*/
.faq .accordion.faq .btn {
    margin-top: 83px;
    font-size: 18px;
    padding: 21px 86px;
}
.faq.light {
    background-color: #FFF;
}
.tabs-item .accordion.faq {
    padding-top: 0px;
}
.accordion.faq {
    padding-top: 0px;
}
.accordion.faq .panel-wrap {
    margin-bottom: 5px;
}
.accordion.faq .panel-title {
    border-bottom: solid 1px #efefef;
    background-color: transparent;
    font-family: var(--font-primary);
    color: #000000;
    padding: 20px 10px 20px 0px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.accordion.faq .panel-title .fa-minus {
    display: none;
    color: #21252E;
}
.accordion.faq .panel-title.active {
    font-weight: 700;
    color: #3eb1fc !important;
    border-bottom: solid 1px #22badf;
}
.accordion.faq .panel-title.active .fa-minus {
    display: inline-block;
}
.accordion.faq .panel-title.active .fa-plus {
    display: none;
}
.accordion.faq .panel-title.active .square {
    color: #22badf;
    background-color: #0f1419;
}
.accordion.faq .square {
    
}
.accordion.faq .wrapper-collapse .list {
    background-color: transparent;
    padding: 0;
}
.accordion.faq .wrapper-collapse .list li {
    font-size: 14px;
    font-family: var(--font-primary);
    list-style-type: none;
    padding: 20px 0px;
}
.accordion.faq .btn {
    background-color: #22badf;
    display: inline-block;
    margin-top: 71px;
    font-size: 20px;
    padding: 21px 72px;
}
.accordion.faq .btn:hover {
    background-color: #0f1419;
    color: #22badf;
}
.accordion.faq.light .panel-title.active {
    font-family: var(--font-primary); font-weight: 600;
    background-color: #f2efe8;
}
.accordion.faq.light .wrapper-collapse .list {
    background-color: #f2efe8;
}
.accordion.faq.light .wrapper-collapse .list li {
    border-top: 1px solid #e0ddd7;
}
.accordion .panel-title {
    margin: 0;
    position: relative;
    background-color: #f8f8f8;
    padding: 9px 35px 10px;
    color: #E32526;
    font-size: 16px;
    cursor: pointer;
}
.accordion .panel-collapse {
    display: none;
}

/* Kullanılmayan pagination sınıfları kaldırıldı */
/* Kullanılmayan layout2 blog sınıfları kaldırıldı */
#sidebar { 
    width: 350px;
    height: auto;  
    border-radius: 15px;
    position:fixed; 
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1);
}
.blog .sidebar {
    margin-top: 80px;
    padding: 40px;
    background-color: #fff;
    font-family: var(--font-primary);
}
.blog .sidebar .search-group {
    position: relative;
}
.blog .sidebar .categories {
    margin-top: 50px;
}
.blog .sidebar .heading {
    margin-bottom: 25px;
    cursor: pointer;
}
.blog .sidebar .heading:last-child {
    margin-bottom: 0px !important;
}
.blog .sidebar .categories .heading a {
    font-family: var(--font-primary); font-weight: 300;
    color: #000000;
}
.blog .sidebar .categories .heading a:after {
    content: '';
    color: #22badf;
}
.blog .sidebar .categories .heading span {
    color: #22badf;
    float: right;
}
.blog .sidebar .search-group a {
    top: 12px;
    right: 15px;
    position: absolute;
    font-size: 28px;
}
.blog .sidebar .search-group a:hover {
    text-decoration: none;
    color: #22badf;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.blog .sidebar .categories .line {
    margin-bottom: 12px;
}
/*-----------------------------------
    18 - Footer
------------------------------------*/
.footer {
    position: relative;
    z-index: 0;
    background-color: #fff;
    background-position: center;
    border: none;
}
.footer .tag {
    float: none;
    margin-right: 0;
    margin-left: 0;
}
.footer .footer-top {
    padding: 80px 0px 20px 0px;
}
.footer .footer-top .col-md-3.col-sm-6 {
    margin-bottom: 10px;
}
.footer .logo-footer {
    width: 185px;
}
.footer .heading {
    font-size: 16px;
    font-family: var(--font-primary); font-weight: 600;
    color: #22badf;
    margin-bottom: 10px;
    display: inline-block;
}
.footer .latest-wrap {
    margin-bottom: 30px;
}
.footer .latest-wrap .title {
    font-family: var(--font-primary); font-weight: 700;
    margin-bottom: 7px;
}
.footer .latest-wrap .title a {
    color: #fff;
}
.footer .footer-menu .btn-group {
    margin-right: 20px;
}
.footer .latest-wrap .title a:hover {
    text-decoration: none;
    color: #22badf;
}
.footer .latest-wrap .img {
    float: left;
    margin-right: 11px;
    width: 77px;
    height: 67px;
}
.footer .latest-wrap .date {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #22badf;
}
.footer .latest-wrap .link {
    font-size: 12px;
    font-family: var(--font-primary); font-style: italic;
    font-style: italic;
    text-transform: lowercase;
    color: #efefef;
}
.footer .latest-wrap .link:hover {
    text-decoration: none;
    color: #22badf;
}
.footer .soc-icons {
    padding-top: 0;
    padding-left: 0;
}
.footer .soc-icons a {
    display: inline-block;
    margin: 0px 15px 20px 0px;

}
.footer .soc-icons a:hover {
    color: #22badf;
    text-decoration: none;
}
.footer .soc-icons a:hover i {
    color: #22badf;
}
.footer .contact {
    font-size: 16px;
    font-family: var(--font-primary);
    color: #b9bac8;
}
.footer .contact a {
    color: #b9bac8;
}
.footer .contact a:hover {
    text-decoration: none;
    color: #22badf;
}
.footer .contact a:hover i {
    color: #22badf;
}
.footer .contact i {
    color: #858585;
}
.footer .contact i:before {
    margin-left: 0;
    margin-right: 12px;
    font-size: 18px;
}
.footer .payment-list {
    float: right;
    color: #90A4AE;
    list-style-type: none;
    margin: 0px;
}
.footer .payment-list li {
    display: inline-block;
    margin-right: 3px;
    font-size: 32px;
}
.footer .payment-list li:last-child {
    margin-right: 0px;
}
.footer .payment-list li p {
    margin-bottom: 0px;
    color: #000000;
    font-family: var(--font-primary);
    font-size: 13px;
    margin-right: 10px;
    display: table;
}
.footer .payment-list li i {
    color: #000000;
}
.footer .payment-list li i:hover {
    color: #22badf;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer .copyrigh {
    font-family: var(--font-primary);
    font-size: 13.5px;
    color: #000000;
    padding-top: 10px;
    padding-bottom: 25px;
}
.footer h6 {
    margin-top: 15px;
    color: #B0BEC5;
    line-height: 24px;
}
.footer .footer-menu {
    float: left;
    padding: 0px;
    margin: 0px;
}
.footer .footer-menu .menu-item {
    font-family: var(--font-primary);
    font-size: 13px;
    display: inline-block;
    list-style-type: none;
    margin-left: 27px;
    margin-top: 15px;
}
.footer .footer-menu .menu-item a {
    color: #000000;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.footer .footer-menu .menu-item a:hover {
    text-decoration: none;
    color: #22badf;
}
.footer .footer-menu {
    padding: 0;
    float: none;
}
.footer .footer-menu .menu-item {
    display: block;
    font-size: 14px;
    margin-left: 0;
    text-align: left;
}
.footer .footer-bottom {
    padding: 0px 0px 40px 0px;
}
.footer .footer-bottom .footer-menu{
    position: relative;
    top: 3px;
}
.footer .footer-bottom .footer-menu .menu-item {
    display: inline;
    margin: 0px !important;
    vertical-align: sub;
}
.footer .soc-icons i {
    color: #22badf;
    border: 1px solid #efefef;
    display: block;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 15px;
    width: 42px;
    transition: 0.3s;
    box-shadow: 0 2px 8px 0 rgba(62,62,79,0.15);
}
.footer .soc-icons i:hover {
    color: #22badf;
}
.footer .soc-icons.top-icons i {
    margin-right: 11px;
    margin-left: 11px;
}
.footer .logo-bg {
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0px;
    width: 450px;
    position: absolute;
    opacity: 0.1;
    margin-top: 33px;
}
.top-footer-info {
    border: none;
}
.top-footer-info .footer-feature-inner {
    width: 100%;
    padding: 35px 0px 25px 0px;
    display: inline-block;
}
.top-footer-info .feature-top-item {
    width: 33.33%;
    float: left;
    padding: 0 40px;
}
.top-footer-info .feature-top-item:last-child {
    border: none;
}
.top-footer-info .media {
    color: #fff;
    width: 100%;
    font-family: var(--font-primary);
}
.top-footer-info .media .media-left {
    position: relative;
    font-size: 36px;
    padding-right: 42px;
}
.top-footer-info .media .media-left:before {
    background-color: #22badf;
    content: "";
    height: 40px;
    position: absolute;
    right: 20px;
    top: 3px;
    width: 1px;
}
.top-footer-info .media .media-body{
    color: #000000;
    vertical-align: middle;
    font: 14px var(--font-primary);
}
.top-footer-info .media span {
    color: #fff;
    display: block;
    margin-bottom: 5px;
    font: 14px var(--font-primary);
}
.top-footer-info .media a {
    color: #000000;
    display: block;
    font: 14px var(--font-primary);
}
.top-footer-info .media a:hover {
    color: #22badf;
    text-decoration: none;
}
.top-footer-info .media .contact-us {
    vertical-align: top;
    font-size: 16px;
    padding: 13px 40px;
    background-color: transparent;
    border: solid 1px #181b22;
    color: #181b22;
}
.top-footer-info .media .contact-us:hover {
    background-color: #0f1419;
    color: #fff;
}
/*-----------------------------------
    19 - Filter
------------------------------------*/
.cd-gallery {
    padding: 50px 0px 0px 0px;
}
.cd-gallery li {
    box-shadow: none;
}
.cd-gallery .wrapper .title {
    font-size: 18px;
    font-family: var(--font-primary);
}
.cd-gallery.domains .wrapper .title{
    font-size: 32px;
    font-family: var(--font-primary);
}
.cd-gallery.domains .refine .wrapper{
    padding: 40px !important;
}
.cd-gallery.domains .refine .wrapper a{
    margin: 0px !important;
}
.cd-main-content {
    background: #f3f3f3;
}
.cd-tab-filter a.selected {
    border: none !important;
    background: #22badf !important;
    color: #fff !important;
    box-shadow: none !important;
}
.cd-tab-filter a.selected:hover {
    text-transform: none !important;
    text-decoration: none !important;
}
.refine {
    border-radius: 15px;
    position: relative;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1);
}
.refine .wrapper {
    border: none;
    border-radius: 15px;
    padding: 50px 0px 0px;
}
.refine .list-info {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: #3eb1fc;
    margin: 0px;
    list-style-type: none;
    padding: 25px;
}
.refine .list-info div {
    padding: 12px 0;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #fff;
}
.cd-tab-filter a {
    text-transform: none;
    font-size: 15px !important;
    font-family: var(--font-primary);
    color: #000000;
}
.refine .price {
    color: #181b22;
    font-family: var(--font-primary);
    font-size: 28px;
}
.refine a {
    margin: 20px 0px;
}
.no-touch .cd-tab-filter a:hover {
    text-decoration: none !important;
}
.cd-filter .cd-close {
    font-size: 16px !important;
}
.no-touch .cd-filter .cd-close:hover {
    background-color: #313131 !important;
    text-decoration: none !important;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.cd-filter.filter-is-visible {
    font-family: var(--font-primary);
    box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.1);
}
.cd-filter-block h4 {
    text-transform: capitalize !important;
    font-weight: 100 !important;
    font-size: 14px !important;
}
.cd-filter-block input[type='text'] {
    width: 100%;
    padding: .8em;
    outline: 0;
    border-radius: 50px;
    background-color: #ffffff !important;
    border: solid 1px #efefef !important;
}
.cd-filter-block .cd-filter-content input[type='search'] {
    border: solid 1px #e0e0e0;
    font-size: 14px !important;
    background: transparent;
}
.cd-filter-block .checkbox-label::before, .cd-filter-block .radio-label::before {
    border: solid 1px #e0e0e0 !important;
}
.cd-filter-block .checkbox-label, .cd-filter-block .radio-label {
    display: inline !important;
    font-size: 14px !important;
}
.cd-filter-block select {
    color: #000000;
    border: solid 1px #e0e0e0 !important;
    font-size: 14px !important;
}
.cd-filter-trigger {
    font-size: 18px;
    font-family: var(--font-primary);
    top: 11px;
    line-height: 30px;
    text-transform: capitalize;
    height: 30px;
    padding-left: 35px;
    color: #3eb1fc;
}
.cd-filter-trigger:hover {
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
/* Filter E-Shop */
.eshop .refine img{
    position: relative;
}
.eshop .refine{
    padding: 0px;
    font-family: var(--font-primary);
}
.eshop .refine .wrapper {
    padding: 40px;
}
.eshop .refine .wrapper .title{
    font-family: var(--font-primary); font-weight: 300;
}
a.btn i.icon-cart {
    padding-left: 5px;
    vertical-align: text-top;
    color: #fff;
    font-size: 20px;
}
.blogg {
    position: relative;
    margin-top: 80px;
}
.blogg:hover .action {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transform: scale(1, 1);
    opacity: 1;
}
.blogg .action {
    height: calc(50% - -103px) !important;
}
.blogg .action .metatag {
    display: inline-block;
    margin-top: 25%;
}
.blogg1 {
    position: relative;
    margin-top: 80px;
}
.blogg1:hover .action {
    transform: scale(1, 1);
    opacity: 1;
}
.blogg1 .action {
    height: calc(50% - -53px) !important;
}
.blogg1 .action .metatag {
    display: inline-block;
    margin-top: 25%;
}
.blogg2:hover .action {
    transform: scale(1, 1);
    opacity: 1;
}
.blogg2 .action {
    height: calc(50% - 64px) !important;
}
.blogg2 .action .metatag {
    display: inline-block;
    margin-top: 20%;
}
.blogg2 .action a i {
    font-size: 28px;
    padding: 0px 5px 0px 25px;
}
.eshop .refine:hover .action {
    transform: scale(1, 1);
    opacity: 1;
}
.action {
    position: absolute;
    display: block;
    width: 100%;
    height: calc(50% - 33px);
    background: rgba(0, 0, 0, 0.7);
    top: 0px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
}
.action a {
    color: #fff;
}
.action a:hover {
    color: #22badf;
    text-decoration: none;
}
.action a i {
    color: #fff;
    font-size: 38px;
    padding: 0px 15px;
}
.action a i:hover {
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.action .metatag {
    display: inline-block;
    margin-top: 22%;
}
.action .rating{
    font-size: 24px;
    padding-top: 15px;
    width: 100%;
}
.action .rating i{
    padding: 4.5px;
}
.action .rating i:hover{
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
/*-----------------------------------
    20 - Overview
------------------------------------*/
.overview .overview-info {
    width: 100%;
    display: inline-block;
    padding: 80px 0;
    max-width: 600px;
    text-align: left;
}
.overview .overview-txt {
    line-height: 32px;
    font-family: var(--font-primary);
    color: #000000;
}
.overview .img-over {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1);
}
.overview .img-over img {
    width: 100%;
}
/*----------------------*/
/*      21 Range        */
/*----------------------*/
.wpc-cloud-range .noUi-target {
    background: #000000;
    border-radius: 15px;
    border: none;
    box-shadow: none;
}
.wpc-cloud-range .noUi-connect {
    border-radius: 15px;
    background-color: #22badf;
    border: none;
    box-shadow: none; 
}
.wpc-cloud-range .noUi-background {
    background-color: #f2efe8;
    border-left: 1px solid #b5b4b3;
    border-top-right-radius: 11px;
    border-bottom-right-radius: 11px; 
}
.noUi-marker-horizontal.noUi-marker {
    position: absolute;
    background: #000000;
    border-radius: 50%;
    margin-left: -1px;
    width: 4px;
    height: 4px;
}
.wpc-cloud-range .noUi-tooltip {
    position: absolute;
    width: 100px;
    margin-bottom: 25px;
    padding: 8px 0;
    color: #fff;
    background-color: #414142;
    font-style: normal;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border-radius: 15px;
    border: none;
    line-height: 16px;
}
.wpc-cloud-range .noUi-tooltip:after {
    content: none; 
}
.wpc-cloud-range .noUi-tooltip:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 14px 0 14px;
    border-color: #414142 transparent transparent transparent;
    position: absolute;
    bottom: -6px;
    left: 35px;
}
.wpc-cloud-range .noUi-handle.noUi-handle-lower:after, .wpc-cloud-range .noUi-handle.noUi-handle-lower:before {
    content: none; 
}
.wpc-cloud-range .noUi-horizontal .noUi-handle {
    box-shadow: none;
    left: -8px;
    top: -10px;
    width: 35px;
    height: 35px;
    margin-left: -10px;
    background-color: #22badf;
    border: solid 12px #414142;
    border-radius: 50%;
    cursor: pointer;
    outline: 0;
}
.wpc-cloud-range .info-range {
    font-size: 16px;
    color: #414142;
    letter-spacing: 0.5px;
    margin-top: 30px; 
}
.wpc-vps-info .price-wrap .title {
    background-color: #3eb1fc;
    color: #1f2532;
    text-transform: uppercase;
    font-size: 18px;
    padding:25px 25px;
    display: inline-block;
    position: absolute;
    top: 0;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    transition: 1s; 
}
.wpc-vps-info .price-wrap .title:hover {
    background-color: #1f2532;
    color: #f44336;
    text-decoration: none; 
}
.wpc-cloud-range .info-range .number {
    font-family: var(--font-primary); font-weight: 700; 
}
.wpc-vps-info {
    padding-top: 30px;
}
.wpc-vps-info .title i {
    opacity: 0.3;
    position: absolute;
    right: 30px;
    bottom: 20px;
    font-size: 42px;
}
.wpc-vps-info .title {
    box-shadow: 0 5px 15px 0 rgba(110,110,110,.1);
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    background-color: #fff;
    font-size: 18px;
    color: #3eb1fc;
    padding: 40px;
}
.wpc-vps-info .title .info {
    border-top: solid 1px #efefef;
    margin-top: 15px;
    padding-top: 15px;
    color: #000000;
    display: inline-block;
    width: 100%;
    font: 16px var(--font-primary), sans-serif;
}
.wpc-vps-info .price-wrap .price {
    font: 30px var(--font-primary);
    color: #fff;
    background-color: #1f2532;
    padding: 15px 35px;
    display: inline-block; 
}
.wpc-vps-info .h-plans-info .price {
    font-size: 48px !important;
    font-family: var(--font-primary); font-weight: 700;
    color: #414142;
}
.wpc-vps-info .h-plans-info .infos {
    padding-bottom: 40px;
    line-height: 28px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: #414142;
}
.wpc-cloud-range .slider-ui {
    padding: 80px 0 0 0;
}
/* Kullanılmayan Switch bölümü kaldırıldı - Tasarımda kullanılmıyor */
/*-----------------------------------
    23 - Others
------------------------------------*/
/* Page 404 */
.section-404 {
    text-align: center;
}
.section-404 .img-responsive {
    display: inline-block;
}
.section-404 .input {
    vertical-align: middle;
    border: solid 1px #22badf;
    padding: 15px;
    width: 50%;
}
.section-404 .title {
    font-family: var(--font-primary);
    font-size: 38px;
    color: #212122;
    line-height: 40px;
}
.section-404 i {
    font-size: 32px;
    color: #22badf;
}
.section-404 .subtitle {
    font-family: var(--font-primary); font-weight: 300;
    font-style:italic;
    font-size: 15px;
    color: #000000;
}
.section-404 .input-group {
    width: 100%;
    display: inline-block;
    line-height: 19px;
    margin-top: 40px;
}
/* Get Ready Tab */
.getready{
    padding: 80px 0px;
}
.getready .column-support-txt {
    position: relative;
    display: inline-block;
    font-family: var(--font-primary);
}
.getready .column-support-title {
    font-size: 32px;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}
.getready .column-support-subtitle {
    font-size: 18px;
    line-height: 1;
    font-family: var(--font-primary);
    color: #fff;
}
.getready .btn-floats{
    text-align: right;
}
/* Loader */
#spinner-area {
    background-color: #000;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    margin: auto;
    opacity: 0.9;
}
.spinner {
    position: fixed;
    height: 3em;
    width: 3em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.spinner-txt {
    color: #414142;
    left: -9px;
    margin-top: 50px;
    position: absolute;
}
.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #22badf;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
/* Kullanılmayan sk-bounce animasyonları kaldırıldı */
/* Back To Top */
.cd-top {
    display: inline-block;
    height: 42px;
    width: 42px;
    position: fixed;
    bottom: 100px;
    right: 27px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    border-radius: 15px;
    background: rgba(62, 199, 241, 0.6);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 2px 8px 0 rgba(62,62,79,0.15);
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top i{
    top: 7px;
    color: #fff;
    font-size: 30px;
    display: inline-flex;
    position: absolute;
    right: 30px;
}
.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}
.cd-top.cd-fade-out {
    opacity: .5;
}
.no-touch .cd-top:hover {
    background-color: #e86256;
    opacity: 1;
}
/* Search */
.search-input {
    display: none;
    background-color: #0f1419;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 85px 0 35px 0px;
}
.search-input.special {
    padding: 95px 0 30px 0px;
}
.search-input input.btn {
    width: 100%;
}
.domain-prices {
    margin-top: 10px;
}
.domain-prices ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.domain-prices li {
    display: inline-flex;
    padding: 10px 20px;
    color: #000000;
    position: relative;
    font-size: 18px;
}
.domain-prices li sup{
    font-size: 14px;
    top: -4px;
}
.domain-prices li .price{
    color: #22badf !important;
    margin-left: 3px;
}
/* Full Overlay */
/* Kullanılmayan fullrock overlay sınıfları kaldırıldı */
/* Contact */
.small-contact p{
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    padding-top: 15px;
}
.small-contact .social i{
    color: #22badf;
    margin-right: 15px;
    font-size: 16px;
    border: 1px solid #efefef;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 15px;
    width: 42px;
    transition: 0.3s;
    box-shadow: 0 2px 8px 0 rgba(62,62,79,0.15);
}
.small-contact .social i:hover{
    text-decoration: none;
    color: #22badf;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.small-contact .col-md-4:last-child {
    border-left: solid 1px #efefef;
    padding-left: 100px;
}
.small-contact .col-md-4:last-child a:hover {
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.small-contact .col-md-4:last-child a:hover {
    color: #22badf;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#typed-cursor{
    opacity: 1;
    -webkit-animation: blink 0.9s infinite;
    animation: blink 0.9s infinite;
}
/* Kullanılmayan blink animasyonları kaldırıldı */
/*-----------------------------------
    24 - Responsive
------------------------------------*/
@media (min-width: 1200px) and (max-width: 1700px) {
    .team-about.light .slider-wrap {
        margin-left: 10px;
    }
    .team-about.light .plan-container {
        margin-right: 26px;
    }
    .pricing.slider .slides-toggle .slide-prev {
        left: -10px;
    }
    .pricing.slider .plan-container {
        margin-right: 26px;
    }
    .pricing.slider .slider-wrap {
        margin-left: 15px;
    }
    .cd-filter-block.hider {
        display: none;
    }
}
@media (max-width: 1399px) {
    .team-about.light .slides-toggle .slide-next {
        right: -33px;
    }
    .owl-buttons {
        display: none;
    }
}
@media (max-width: 1280px) {
    .team-about.light .slides-toggle {
        display: none;
    }
}
@media (min-width: 1200px) {
    .navigation-menu .main-menu > .menu-item > .sub-menu {
        min-width: 185px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .blog .sidebar .posts .tabs-header li {
        padding: 0 5px 18px 5px;
    }
    .blog .sidebar .archives .img {
        float: none;
        margin-bottom: 5px;
    }
    .shopping .sidebar .posts .tabs-header li {
        padding: 0 4px 18px 4px;
    }
    .shopping .sidebar .archives .img {
        float: none;
        margin-bottom: 5px;
    }
}
@media (max-width: 1199px) {
    .top-header .wrapper .round:before {
        top: 12px;
    }
    .pricing.slider .info {
        margin-right: 0;
    }
    .pricing.slider .slides-toggle .slide-prev {
        left: -15px;
    }
    .pricing.slider .slides-toggle .slide-next {
        right: -15px !important;   
    }
    .pricing.slider .slides-toggle .slide-prev span {
        display: none !important;
    }
    .pricing.slider .slides-toggle .slide-next span {
        display: none !important;
    }
    .pricing.slider .wrapper {
        width: 300px;
        display: inline-block;
    }
    .tabs.offers-tabs .tabs-content .tabs-item.active:before {
        content: none;
    }
    .history-section .wrappper h3{
        font-size: 20px;
    }
    .history-section .wrappper .desc {
        display: table;
    }
    .product-title h3{
        font-size: 12px;
        padding: 14px;
    }
    .product-meta{
        padding: 0px 15px;
        margin-top: 35%;
    }
    .shopping .sidebar .heading {
        font-size: 14px;
    }
    .shopping .sidebar .carting a.btn:first-child {
        margin-bottom: 6px;
    }
    .shopping .sidebar .carting a.btn{
        padding: 15px 10px;
    }
    #sidebar { 
        width: auto !important; 
    }
    .team-about .subheading {
        margin-bottom: 30px;
    }
    .team-about.modern .info {
        margin-right: 0;
    }
    .team-about.light .slides-toggle .slide-prev {
        left: -53px;
    }
    .team-about.light .info {
        margin-right: 0;
    }
    .team .soc-icons-wrap .icons {
        display: inline-block;
        margin-top: 140px;
        padding: 10px;
    }
    .team-about.modern .line-icon2:before {
        left: 106px;
    }
    .team-about .more-info .soc-icons {
        display: none;
    }
    .team-about .more-info p {
        font-size: 14px;
    }
    .register .comments-form .btn.btn-social {
        font-size: 13px;
        padding: 18px 13px 18px 64px !important;
    }
    .countdown .wrapper .heading {
        font-size: 40px;
    }
    .countdown .wrapper .heading {
        font-size: 20px;
    }
    .countdown .wrapper .clock {
        font-size: 60px;
    }
    .countdown .wrapper .clock span {
        margin: 21px 9px 15px 0px;
        padding: 5px 25px;
    }
    .countdown .wrapper .clock .divider {
        margin-top: -83px;
    }
    .countdown .wrapper .clock .title {
        font-size: 16px;
        margin-top: 10px;
    }
    .btn-order .continue {
        padding: 15px 30px;
        font-size: 16px;
    }
    .btn-order .shopping {
        padding: 15px 30px;
        font-size: 16px;
    }
    .casestudy .icon-quote {
        margin-left: 10px;
    }
    .casestudy .content-info p:last-child {
        display: none;
    }
    .casestudy .content-info hr {
        display: none;
    }
    .blog .sidebar .heading {
        font-size: 14px;
    }
    .wrap-blog.modern .infos i {
        font-size: 22px;
    }
    .blog .sidebar .archives .item-wrap {
        padding-bottom: 0px;
    }
    .wrap-blog .infos i {
        font-size: 22px;
    }
    .footer .footer-menu .menu-item {
        margin-left: 0;
    }
    .footer .soc-icons.m-left {
        padding-left: 90px;
    }
    .top-footer-info .media .media-left {
        margin-right: 12px;
    }
    .action {
        height: calc(50% - 58px) !important;
    }
    .blogg .action {
        height: calc(50% - -15px) !important;
    }
    .blogg .action .metatag {
        margin-top: 25% !important;
    }
    .blogg1 .action {
        height: calc(50% - 2px) !important;
    }
    .blogg2 .action {
        height: calc(50% - 107px) !important;
    }
    .blogg2 .action .metatag {
        margin-top: 20% !important;
    }
    .small-contact .social i {
        font-size: 27px;
    }
    .cd-filter-block.hider {
        display: none;
    }
    .footer .logo-bg {
        margin-top: 56px;
        width: 380px;
    }
}
@media (min-width: 1199px) {
    .product-title h3{
        font-size: 13px;
        padding: 13px;
    }
}
@media (max-width: 1170px) {
    .action {
        height: calc(50% - 0px) !important;
    }
    .action .metatag {
        margin-top: 25% !important;
    }
    .blogg .action {
        height: calc(50% - 15px) !important;
    }
    .blogg .action .metatag {
        margin-top: 25% !important;
    }
}
@media (min-width: 1170px) {
    .cd-gallery li {
        width: 31% !important;
    }
    .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
        color: #000000;
    }
    .no-touch .cd-filter-trigger:hover {
        text-decoration: none;
    }
}
@media (min-width: 767px) and (max-width: 1199px) {
    .main-header .header-info {
        padding-left: 0;
    }
}
@media (min-width: 767px) and (max-width: 991px) {
    .team .soc-icons-wrap .icons {
        padding-top: 80px;
    }
    .main-header .header-info a {
        font-size: 12px;
        margin-right: 10px;
    }
    .main-header .header-info .phone {
        font-size: 14px;
    }
    .nav-menu .main-menu a {
        font: 13px var(--font-primary);
        margin-right: 20px;
    }
    .nav-menu .main-menu .badge{
        margin-right: 10px !important;
    }
}
@media (max-width: 991px) {
    .main-header .soc-icons {
        margin-top: 6px;
    }
    .main-header .header-info .phone {
        font-size: 12px;
    }
    .main-header .header-info span {
        display: none;
    }
    .navigation-menu .nav-menu .main-menu > .menu-item > a {
        padding: 17px 24px;
    }
    .nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body a {
        font-size: 12px;
        font-weight: 300;
    }
    .nav-menu .main-menu .menu-item .menu-large .service-list .service .media-body p {
        font-size: 11px;
    }
    .nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a {
        font-size: 12px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer {
        width: 205px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner{
        padding: 20px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .title {
        font-size: 18px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner p {
        font-size: 14px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .val {
        font-size: 13px;
    }
    .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .dis {
        font-size: 18px;
    }
    .top-banner.top-classic .heading {
        font-size: 38px;
        font-family: var(--font-primary);
        line-height: 45px;
    }
    .top-banner .subheading {
        line-height: 32px;
        font-size: 15px;
        margin-top: 0px;
    }
    .top-banner.top-classic .btn {
        font-size: 14px;
        padding: 17px 30px !important;
    }
    .top-banner.modern .btn {    
        font: 14px var(--font-primary);
        padding: 15px 30px;
    }
    .top-banner.modern .heading {
        font-family: var(--font-primary);
        line-height: 45px;
        font-size: 38px;
    }
    .top-banner .heading {
        font-size: 38px;
        font-family: var(--font-primary);
        line-height: 45px;
    }
    .top-banner .heading span {
        font-size: 36px;
    }
    .chars {
        position: relative;
        display: inline-flex;
        right: 0px;
        top: 0;
    }
    .chars div{
        padding-top: 30px;
    }
    .chars p{
        color: #fff;
        font-size: 13px;
        margin-top: 8px;
        line-height: 26px;
    }
    .top-header .wrapper .subheding {
        font-size: 14px;
    }
    .pricing .heading {
        font-size: 38px;
    }
    .plan-container .title {
        font-size: 20px;
    }
    .pricing.slider .wrapper {
        width: 230px;
        display: inline-block;
    }
    .section-heading.small-text {
        font-size: 28px;
    }
    .section-subheading.small-text {
        font-size: 16px;
    }
    .pricing .list-info li {
        font-size: 13px !important;
    }
    .tabs.offers-tabs .tabs-content .heading {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .tabs.offers-tabs .tabs-content .info {
        font-size: 14px;
    }
    .btn-x {
        padding: 10px 50px;
        font: 16px var(--font-primary);
        border: solid 2px #22badf;
    }
    .tabs.offers-tabs .tabs-header li{
        padding: 10px 28px;
    }
    .shopping.details .tabs.offers-tabs .tabs-header li{
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0px 0px 20px 0px;
        margin: 20px 30px 0px 0px;
    }
    .services.circle-section .heading {
        text-align: center;
        margin-top: 100px;
    }
    .services.circle-section .info {
        text-align: center;
    }
    .services.circle-section .skill-section {
        margin-bottom: 10px;
    }
    .services.circle-section .circle-wrapper {
        margin-top: 52px;
    }
    .services .service-wrap .info {
        padding-bottom: 30px;
        padding-right: 0;
    }
    .services .service-wrap .service-section.service {
        border-top: 1px solid #e7eaed;
        border-right: 1px solid #e7eaed;
    }
    .h-services i {
        font-size: 36px;
    }
    .h-services i:before{
        font-size: 42px;
    }
    .history-section .img {
        margin: 0 auto;
        display: block;
    }
    .history-section .img-wrap:after {
        content: none;
    }
    .history-section .wrappper .title:before {
        display: none;
    }
    .history-section .wrappper img {
        width: 15%;
    }
    .product-title h3{
        font-size: 14px;
        padding: 14px;
    }
    .product-meta{
        padding: 0px 80px;
        margin-top: 35%;
    }
    .shopping.details .sidebar {
        padding-left: 0;
        margin-top: 50px;
    }
    .shopping .sidebar .posts .tabs-header .list {
        display: grid;
        margin-bottom: 0px;
    }
    .shopping .sidebar .tabs .tabs-header li {
        margin: 0px 0px 30px 0px;
    }
    .shopping .featured-section {
        padding-top: 50px;
    }
    .shopping .sidebar .posts .img {
        float: none;
        margin: 0px 0px 10px 0px;
    }
    .shopping .sidebar .tabs .tabs-content {
        margin: 30px 0px;
        text-align: center;
    }
    .shopping .sidebar .carting img {
        display: none;
    }
    .shopping .sidebar {
        padding: 40px !important;
    }
    .shopping .sidebar .carting a.btn:first-child {
        margin-bottom: 15px;
    }
    #sidebar { 
        width: auto !important; 
        position:relative !important; 
        top: 0 !important;
    }
    .shop .select.fisrt {
        margin: 0;
    }
    .shop .select.second {
        margin: 0;
    }
    .shop .select {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .shop .select i {
        right: 10px;
    }
    .products .wrapper .img-wrap > img {
        width: 100%;
    }
    .products .wrapper {
        width: 30%;
    }
    .product-detail .form-addcart .number-wrap {
        margin-left: 0;
        margin-bottom: 30px;
    }
    .product-detail .form-addcart .color-wrap {
        margin-left: 0;
    }
    .product-detail .form-addcart .btn {
        margin-top: 30px;
    }
    .team-about.modern .info {
        width: 100%;
    }
    .team-about.modern .wrapper img {
        width: 100%;
    }
    .team-about.cross .more-info .desc {
        display: none;
    }
    .team-about .more-info .title {
        line-height: 16px;
        margin-bottom: 13px;
    }
    .team-about .more-info {
        padding-top: 19px;
        font-size: 12px;
    }
    .team .soc-icons-wrap .icons {
        display: inline-block;
        margin-top: 30px;
    }
    .team-about .subheading {
        font-size: 16px;
    }
    .team-about .heading {
        font-size: 22px;
    }
    .team-about.modern .line-icon2:before {
        left: 172px;
    }
    .team-about .more-info p {
        font-size: 14px;
    }
    .team-about .more-info .soc-icons i {
        line-height: 17px;
    }
    .comments-form.light.down {
        margin-top: 50px;
    }
    .register.contact-us .contact-info .heading {
        width: 100%;
        margin-top: 10px;
    }
    .register.contact-us .icon-container {
        margin-right: 0px;
    }
    .center.slider .plan-container .period {
        font-size: 14px !important;
    }
    .search-input input.btn {
        padding: 16px 35px !important;
        font-size: 14px !important;
    }
    .countdown .wrapper {
        width: 100%;
    }
    .countdown .wrapper .clock span {
        margin: 21px 9px 15px 0px;
        padding: 10px 35px;
    }
    .cart .payment-form {
        padding: 0;
    }
    .payment-order .table.payment-form th:first-child {
        font-size: 16px;
    }
    .cart .table tbody .section-bar .check {
        width: 100%;
        text-align: center;
        margin-right: 0px;
    }
    .casestudy .sec-bg1 {
        padding: 50px;
        text-align: center;
    }
    .casestudy .content-info div{
        display: none;
    }
    .casestudy .slide-next,
    .casestudy .slide-prev {
        bottom: 20px;
    }
    .casestudy .slide-prev {
        bottom: 20px;
    }
    .casestudy .casestudy {
        text-align: center;
    }
    .casestudy .study-img {
        text-align: center;
    }
    .casestudy .social-icons {
        text-align: center;
        margin-left: 0px;
    }
    .blog .sidebar .posts .heading-article {
        padding-top: 34px;
    }
    .blog .media.right {
        padding-left: 0;
    }
    .blog.shop .testimonials .clients .btn {
        display: block;
    }
    .wrap-blog .heading {
        font-size: 18px;
    }
    .comments-form .btn.submit {
        font: 16px var(--font-primary);
        padding: 15px 45px;
    }
    .blog.blog .wrap-blog .media img {
        display: none;
    }
    .wrap-blog .social-icon {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
    .wrap-blog .wrapper .text-blog {
        text-align: center;
    }
    .footer .footer-menu .menu-item {
        width: 100%;
        font-size: 13px;
    }
    .footer .heading {
        font-size: 15px;
    }
    .footer h6 {
        font-size: 12px;
    }
    .footer .logo-footer {
        width: 150px;
    }
    .footer .soc-icons i {
        height: 34px !important;
        line-height: 34px !important;
        width: 34px !important;
        font-size: 14px;
    }
    .top-footer-info .feature-top-item:last-child {
        border: none;
    }
    .top-footer-info {
        background-color: #232730;
    }
    .top-footer-info .media:last-child {
        margin-bottom: 0px;
    }
    .top-footer-info .media .media-left {
        display: none;
    }
    .top-footer-info .media a {
        font-size: 14px;
    }
    .top-footer-info .media .contact-us {
        padding: 12px 34px;
    }
    .top-footer-info .feature-top-item {
        padding: 0 30px 0px 0px;
    }
    .cd-filter-content a {
        display: none;
    }
    .table td{
        padding: 10px 5px;
    }
    .action {
        height: calc(50% - 39px) !important;
    }
    .blogg .action {
        height: calc(50% - 129px) !important;
    }
    .blogg .action .metatag{
        margin-top: 22% !important;
    }
    .blogg1 .action {
        height: calc(50% - 74px) !important;
    }
    .blogg1 .action .metatag{
        margin-top: 21% !important;
    }
    .blogg2 .action {
        height: calc(50% - 22px) !important;
    }
    .blogg2 .action .metatag{
        margin-top: 23% !important;
    }
    .section-404 {
        background-size: 90%;
    }
    .section-404 .title span:first-child{
        display: block;
    }
    .section-404 .subtitle {
        font-size: 16px;
    }
    .getready .column-support-txt {
        width: 100%;
        margin-bottom: 30px;
    }
    .small-contact .col-md-4:last-child {
        padding-left: 30px;
    }
    .small-contact p {
        font-size: 13px;
    }
    .small-contact .social i {
        font-size: 22px;
    }
    .menu-wrap .logo-menu {
        width: 135px;
        padding-top: 4px;
    }
    .opa-pink {
        display: none;
    }
    .getready .btn-floats{
        text-align: left;
    }
    .overview .overview-info {
        padding: 30px 0;
    }
    .blog .media .media-body {
        padding-left: 0px !important;
    }
    .wpc-vps-info .price-wrap {
        margin-top: 30px; 
    }
    .wpc-vps-info .title .info {
        font-size: 20px; 
    }
    .wpc-vps-info .price-wrap .price {
        margin-bottom: 10px;
        padding: 14px 40px; 
    }
    .wpc-vps-info .price-wrap .title {
        padding: 20.5px 41px; 
    }
    .wpc-vps-info .price-wrap .title {
        position: static; 
    }.footer .logo-bg {
        margin-top: -20px;
        width: 360px;
    }
}
@media (min-width: 991px) {
    .domain-prices li:first-child {
        padding-left: 0px;
    }
    .nav-menu .main-menu > .menu-item > .sub-menu {
        margin-left: -65px;
        display: block !important;
    }
    .nav-menu .main-menu > .menu-item > .sub-menu.menu-large {
        margin-left: -120px !important;
        display: block !important;
    }
}
/* ===========================================
   MOBILE NAVIGATION - COMPLETELY REDESIGNED
   =========================================== */
@media (max-width: 767px) {
    /* Hide desktop header completely */
    .main-header {
        display: none !important;
    }
    
    /* Hide desktop menu completely */
    .menu-wrap:not(.mobile) {
        display: none !important;
    }
    
    /* Mobile menu wrapper */
    .menu-wrap.mobile {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    
    /* Mobile menu container */
    .menu-wrap.mobile .container {
        padding: 0 15px;
    }
    
    /* Mobile logo */
    .menu-wrap.mobile .logo-menu {
        height: 35px;
        width: auto;
        max-width: 120px;
    }
    
    /* Mobile hamburger button */
    .menu-wrap.mobile #nav-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-wrap.mobile #nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .menu-wrap.mobile #nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-wrap.mobile #nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-wrap.mobile #nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile menu overlay */
    .menu-wrap.mobile .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 999;
        padding: 80px 20px 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        list-style: none;
        margin: 0;
    }
    
    .menu-wrap.mobile.active .main-menu {
        transform: translateX(0);
    }
    
    /* Mobile menu items */
    .menu-wrap.mobile .main-menu .menu-item {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu-wrap.mobile .main-menu .menu-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile menu links */
    .menu-wrap.mobile .main-menu .menu-item > a {
        display: block;
        padding: 15px 0;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s;
    }
    
    .menu-wrap.mobile .main-menu .menu-item > a:hover {
        color: #22badf;
    }
    
    /* Home icon fix */
    .menu-wrap.mobile .main-menu .menu-item > a i.fa-home {
        font-size: 18px !important;
        margin-right: 8px;
        color: #22badf;
    }
    
    /* Mobile submenu */
    .menu-wrap.mobile .main-menu .sub-menu {
        /* display: none removed - using max-height animation from custom.css instead */
        /* padding removed - controlled by custom.css for proper animation */
        background: #f8f9fa;
        margin: 0 -20px;
        border-top: 1px solid #e9ecef;
        list-style: none;
    }
    
    /* Removed display: block - using max-height animation from custom.css instead */
    /* .menu-wrap.mobile .main-menu .menu-item.active .sub-menu selector moved to custom.css */
    
    .menu-wrap.mobile .main-menu .sub-menu .menu-item {
        border-bottom: none;
        padding: 0;
        margin: 0;
        display: block;
        width: 100%;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .menu-item a {
        display: block;
        padding: 12px 0 12px 20px;
        font-size: 14px;
        color: #666;
        border-left: 3px solid transparent;
        transition: all 0.3s;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .menu-item a:hover {
        color: #22badf;
        border-left-color: #22badf;
        background: rgba(34, 186, 223, 0.05);
    }
    
    /* Domain search in mobile submenu */
    .menu-wrap.mobile .main-menu .sub-menu .domain-search-input-mobile {
        padding: 15px 0 0 0;
        margin: 10px 0 0 0;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .domain-search-input-mobile form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .domain-search-input-mobile input {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .domain-search-input-mobile .btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 5px;
        width: 100%;
    }
    
    /* Mobile contact info */
    .menu-wrap.mobile .main-menu .menu-item.mt-4 {
        margin-top: 20px !important;
        padding: 20px 0;
        border-top: 2px solid #22badf;
        background: rgba(34, 186, 223, 0.05);
    }
    
    .menu-wrap.mobile .main-menu .menu-item.mt-4 p {
        margin: 5px 0;
        font-size: 14px;
        color: #666;
    }
    
    /* Mobile register button */
    .menu-wrap.mobile .main-menu .menu-item:last-child {
        padding: 20px 0;
        text-align: center;
    }
    
    .menu-wrap.mobile .main-menu .menu-item:last-child .btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Mobile menu toggle arrow */
    .menu-wrap.mobile .main-menu .menu-item-has-children > a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        float: right;
        transition: transform 0.3s;
    }
    
    .menu-wrap.mobile .main-menu .menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }
    
    /* Mobile menu close overlay */
    .menu-wrap.mobile.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    /* Additional mobile menu improvements */
    .menu-wrap.mobile .main-menu .menu-item > a i {
        width: 20px;
        text-align: center;
        margin-right: 10px;
    }
    
    /* Mobile menu scrollbar styling */
    .menu-wrap.mobile .main-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .menu-wrap.mobile .main-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .menu-wrap.mobile .main-menu::-webkit-scrollbar-thumb {
        background: #22badf;
        border-radius: 2px;
    }
    
    .menu-wrap.mobile .main-menu::-webkit-scrollbar-thumb:hover {
        background: #0187b6;
    }
    
    /* Mobile menu animations */
    .menu-wrap.mobile .main-menu .menu-item {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.3s ease forwards;
    }
    
    .menu-wrap.mobile .main-menu .menu-item:nth-child(1) { animation-delay: 0.1s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(2) { animation-delay: 0.15s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(3) { animation-delay: 0.2s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(4) { animation-delay: 0.25s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(5) { animation-delay: 0.3s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(6) { animation-delay: 0.35s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(7) { animation-delay: 0.4s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(8) { animation-delay: 0.45s; }
    .menu-wrap.mobile .main-menu .menu-item:nth-child(9) { animation-delay: 0.5s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile menu responsive adjustments */
    .menu-wrap.mobile .main-menu .menu-item > a {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .menu-wrap.mobile .main-menu .sub-menu .menu-item a {
        font-size: 13px;
        padding: 10px 0 10px 20px;
    }
    
    /* Mobile menu button improvements */
    .menu-wrap.mobile #nav-toggle {
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .menu-wrap.mobile #nav-toggle:hover {
        background: rgba(34, 186, 223, 0.1);
        border-radius: 4px;
    }
    
    .menu-wrap.mobile #nav-toggle.active {
        background: rgba(34, 186, 223, 0.2);
        border-radius: 4px;
    }
    .top-banner .heading {
        font-size: 42px;
        line-height: 50px;
    }
    .top-banner.top-classic .subheading {
        margin-bottom: 20px;
    }
    .top-banner .subheading {
        margin-bottom: 40px;
        margin-left: 0;
    }
    .top-banner.top-classic {
        margin-top: 0;
        padding-top: 80px;
    }
    .top-banner.modern {
        margin-top: 0;
    }
    .top-banner.modern .banner-wrap {
        padding-right: 0;
        text-align: left;
    }
    .hidden-xs{
        display: inline-block !important;
    }
    .top-banner.modern .btn {
        float: left;
    }
    .top-banner.modern .subheading {
        width: 100%;
        display: block;
        text-align: left;
    }
    .top-header {
        padding-top: 110px;
        padding-bottom: 70px;
    }
    .top-header .wrapper{
        text-align: center;
    }
    .top-header .specs {
        display: none;
    }
    .pricing .subheading {
        margin-bottom: 50px;
    }
    h2.section-heading{
        font-size: 26px !important;
    }
    .section-heading.small-text {
        font-size: 28px !important;
    }
    .section-heading.small-text {
        font-size: 28px !important;
    }
    .section-subheading.small-text {
        font-size: 16px !important;
    }
    .section-offer.services .tabs.offers-tabs img {
        margin: 0 auto;
        max-width: 100%;
    }
    .pricing.slider .info {
        margin-top: 0;
    }
    .pricing.slider .swiper-slide {} .pricing.slider .soc-icons {
        display: block;
        float: none;
        margin-top: 10px;
        margin-right: 0;
        text-align: left;
        padding: 0;
    }
    .pricing.slider .slides-toggle {
        display: none;
    }
    .pricing.slider .swiper-wrapper .price {
        font-size: 38px;
    }
    .pricing.slider .swiper-wrapper sup {
        font-size: 26px;
    }
    .pricing.slider .slides-toggle .slide-next {
        right: -15px;
    }
    .pricing.slider .slides-toggle .slide-prev {
        left: -15px;
    }
    .pricing.slider .slides-toggle .slide-prev {
        left: -80px;
    }
    .pricing.slider .slides-toggle .slide-next {
        right: -80px;
    }
    .pricing.slider .wrapper {
        width: 100% !important;
        display: inline-block;
    }
    .pricing .table .title {
        font-size: 16px;
    }
    .best-plans.pricing .wrapper {
        margin-top: 0;
    }
    .best-plans.pricing .wrapper.first {
        margin-top: 50px;
    }
    .best-plans .table-responsive {
        border: none;
        margin-bottom: 0;
    }
    .horiz-plans .btn.left {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .section-plans .heading {
        font-size: 22px;
    }
    .h-plans-info .header-wrap {
        text-align: center;
    }
    .horiz-plans .section-plans {
        text-align: center !important;
    }
    .tabs.offers-tabs .img {
        display: block;
        margin: 0 auto;
    }
    .tabs.offers-tabs .tabs-content .info {
        padding-right: 0;
    }
    .tabs.offers-tabs .tabs-content .heading {
        margin-top: 30px;
    }
    .shopping.details .tabs.offers-tabs .tabs-content .tabs-item.active:before {
        display: none;
    }
    .tabs.offers-tabs .tabs-header li {
        flex: 0 0 50%;
        max-width: 50%;
        margin-top: 20px;
    }
    .circle-section .title-round {
        font-size: 18px;
        font-weight: bold;
    }
    .services.circle-section .heading {
        margin-top: 34px;
    }
    .services.circle-section .info {
        font-size: 14px;
    }
    .services .icon-group {
        margin-top: 30px;
    }
    .services .icon-group .icon {
        display: inline-block;
    }
    .history-section .wrappper.right {
        text-align: center;
        padding: 0 15px;
    }
    .history-section .wrappper {
        text-align: center;
    }
    .service-skills .skills-wrap {
        text-align: center;
    }
    .history-section .history-separate {
        margin-bottom: 0px;
    }
    .history-section .history-separate img {
        padding: 0px 120px 30px;
    }
    .history-section .wrappper img {
        width: 25%;
        margin: 0px 0px 20px 0px;
        float: none;
    }
    .filter-menu ul li{
        font-size: 13px;
    }
    .product-meta{
        padding: 0px 70px;
        margin-top: 35%;
    }
    .shopping .sidebar .carting img {
        display: block;
    }
    .shopping.details .wrappper{
        text-align: center;
    }
    .details .wrappper .value {
        text-align: center;
        float: none;
        margin: 0px;
    }
    .details .wrappper .quantity {
        display: inline-grid;
    }
    .shopping.details .wrappper .metatag{
        display: none;
    }
    .shop .select {
        margin: 0 0 30px;
    }
    .shop .select.second {
        margin: 30px 0 0;
    }
    button.mfp-close {
        margin-right: 40px;
    }
    .products .wrapper {
        width: 49%;
        padding-right: 18px;
        padding-left: 18px;
        float: none;
        display: inline-block;
    }
    .products .btn {
        padding: 25px 38px;
        font-size: 14px;
    }
    .team-about .more-info {
        display: block;
        padding: 30% 100px;
    }
    .team-about.light .slides-toggle {
        display: none;
    }
    .team-about.light .info {
        margin-top: 0;
    }
    .team-about .more-info {
        display: none;
    }
    .team .wrapper .img-section img {
        width: 100%;
    }
    .team-about.modern .info .desc {
        padding: 0px 20px; 
    }
    .team-about.modern .line-icon2:before {
        display: none;
    }
    .team-about .more-info .soc-icons {
        display: block;
    }
    .team .soc-icons-wrap .icons {
        margin-top: 250px;
    }
    .modal-dialog {
        min-height: calc(100vh - 20px);
      }
    .fullrock {
        padding: 100px 15px !important;
    }
    .form-contact {
        padding: 50px 15px !important;
        text-align: center !important;
    }
    .register.contact-us .subtitle {
        text-align: center;
    }
    .comments-form .title-form {
        text-align: center;
    }
    .comments-form .subtitle {
        text-align: center;
    }
    form.comments-form.light {
        text-align: center;
    }
        .comments-form .title-form {
        font-size: 28px;
    }
    .register .comments-form .check-forgot {
        line-height: 30px;
    } 
    .register .btn-social.btn-facebook {
        width: 100%;
        display: inline-block;
    }
    .register .btn-social.btn-twitter {
        width: 100%;
        display: inline-block;
        margin-top: 10px;
    }
    .fill-input {
        font-size: 14px !important;
        padding: 13px 20px 13px 20px !important;
    }
    .general-input input.btn {
        padding: 17px 17px;
    }
    .domain-prices li {
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    .subcribe {
        display: none;
    }
    .countdown .wrapper .clock .divider {
        margin-top: -38px;
        font-size: 25px;
    }
    .countdown .wrapper .clock .title {
        font-size: 12px;
        margin-top: 10px;
    }
    .countdown .wrapper .clock span {
        margin: 5px 9px 10px 0px;
        padding: 0px 35px 10px 40px;
    }
    .cart .table-responsive {
        border: none;
    }
    .cart .data-cart .btn.order {
        margin-left: 0;
        margin-top: 20px;
    }
    .cart.end {
        padding-top: 50px;
    }
    .casestudy .swiper-slide {
        text-align: center;
        padding-top: 50px;
    }
    .casestudy .author {
        padding-left: 0px !important;
    }
    .casestudy .content-info {
        padding-left: 0px !important;
    }
    .casestudy .ml-4 {
        margin-left: 0px !important;
    }
    .casestudy .slide-prev {
        display: none;
    }
    .casestudy .slide-next {
        display: none;
    }
    .casestudy .casestudy {
        text-align: center;
        margin-left: 0px;
    }
    .accordion.faq .panel-title {
        font-size: 15px;
    }
    .accordion.faq .panel-title {
        font-size: 13px;
        line-height: 24px;
    }
    .wrap-blog {
        padding: 0px;
    }
    .wrap-blog > img {
        width: 100%;
    }
    .layout2 .wrap-blog .btn {
        font: 14px var(--font-primary);
        padding: 15px 20px;
    }
    .blog .media.answer {
        padding-left: 30px;
    }
    .wrap-blog .social-icon {
        text-align: center !important;
        margin-top: 15px;
    }
    .footer {
        text-align: center;
    }
    .footer .footer-top {
        padding: 50px !important;
    }
    .footer .footer-top img {
        width: 160px;
    }
    .footer .soc-icons a {
        margin: 0px 8px 0px 5px !important;
    }
    .footer .latest-wrap {
        float: left;
        width: 50%;
    }
    .footer .latest-wrap .img {
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .footer .payment-list li {
        font-size: 18px !important;
    }
    .footer .payment-list li p {
        font-size: 12px !important;
    }
    .footer .footer-bottom .copyrigh {
        margin-bottom: 10px;
        font-size: 14px;
    }
    .footer .footer-menu {
        padding: 0;
        margin-left: 0;
    }
    .footer .footer-menu {
        float: none;
        text-align: center;
        padding: 0;
        margin-left: 0;
    }
    .footer .payment-list {
        float: none;
        text-align: center;
        padding: 0;
        margin-left: 0;
    }
    .footer .footer-menu .menu-item {
        text-align: center;
        font-size: 14px;
    }
    .footer .footer-top .col-md-3.col-sm-6 {
        margin-bottom: 50px;
    }
    .footer .footer-top .col-md-3.col-sm-6:last-child {
        margin-bottom: 0px;
    }
    .footer .col-md-3.col-sm-6 {
        margin-bottom: 50px;
    }
    .footer .col-md-3.col-sm-6:last-child {
        margin-bottom: 10px;
    }
    .footer .footer-bottom .footer-menu {
        top: 0px !important;
        margin-bottom: 10px;
    }
    .footer .soc-icons {
        text-align: center;
        padding-left: 0;
    }
    .footer .soc-icons i {
        font-size: 18px;
    }
    .footer .logo-bg {
        display: none;
    }
    .top-footer-info .feature-top-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .top-footer-info .feature-top-item {
        width: 100%;
        margin-bottom: 30px;
        padding: 0px;
    }
    .top-footer-info .feature-top-item:last-child {
        width: 100%;
        margin-bottom: 0px;
    }
    .top-footer-info .media {
        text-align: center;
    }
    .top-footer-info .media .media-left {
        font-size: 30px;
        display: none;
    }
    .top-footer-info .media a {
        font-size: 14px;
    }
    .top-footer-info .footer-feature-inner {
        padding: 50px;
    }
    .cd-tab-filter ul {
        display: none;
    }
    .cd-tab-filter.is-open ul {
        display: none;
    }
    .cd-tab-filter::after {
        display: none;
    }
    .cd-filter-block.hider {
        display: block !important;
    }
    .cd-filter-trigger {
        color: #000000;
        width: 100px;
        text-indent: 0;
        padding-left: 35px;
        background-position: left center;
        left: 2%;
    }
    .cd-filter-trigger:hover {
        color: #22badf;
        text-decoration: none;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }
    .cd-filter-content a {
        display: block;
    }
    .table td{
        padding: .75rem;
    }
    .action {
        height: calc(50% - -24px) !important;
    }
    .action .metatag {
        margin-top: 30% !important;
    }
    .blogg .action {
        height: calc(50% - 273px) !important;
    }
    .blogg .action .metatag{
        margin-top: 27% !important;
    }
    .blogg1 .action {
        height: calc(50% - 42px) !important;
    }
    .blogg1 .action .metatag{
        margin-top: 24% !important;
    }
    .blogg2 .action {
        height: calc(50% - -12px) !important;
    }
    .blogg2 .action .metatag{
        margin-top: 24% !important;
    }
    .section-404 .input-group {
        margin-top: 35px;
    }
    .section-404 .img {
        visibility: hidden;
    }
    .getready .column-support-subtitle {
        font-size: 16px;
        line-height: 26px;
    }
    .getready .column-support-txt {
        text-align: center;
    }
    .getready .btn-floats{
        text-align: center;
    }
    .small-contact .col-md-4:last-child {
        padding-left: 15px;
        padding-top: 30px;
        border: none;
    }
    .small-contact {
        text-align: center;
    }
    .small-contact .col-md-4 {
        padding-top: 30px;
    }
    .small-contact .col-md-4:first-child {
        padding-top: 0px;
    }
    .small-contact .social i:first-child{
        margin: 0px 10px;
    }
    .sec-main {
        padding: 80px;
    }
    .general-input {
        width: 85% !important;
    }
    .owl-carousel .vc-parent.fix {
        height: 65% !important;
    }
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .custom-img-right {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }
    .cd-gallery li {
        width: 100%;
        margin-bottom: 2em;
    }
    .overview .overview-info {
        text-align: center;
    }
    .overview .img-over {
        text-align: center;
    }
    .overview .overview-info {
        padding: 60px 0;
    }
    .comments-form .input {
        width: 100%;
    }
    .form-contact i {
        display: none;
    }
    .register.contact-us .comments-form {
        width: 100%;
    }
    .wpc-cloud-range .info-range {
        font-size: 14px; 
    }
    .wpc-cloud-range .slider-ui {
        padding: 80px 15px 0 15px;
    }
    .wpc-vps-info .h-plans-info {
        padding: 40px 0 0;
        text-align: center;
    }
    .top-header .wrapper .heading {
        font-size: 42px;
    }
}
@media (min-width: 768px) {
    .menu-wrap.mobile {
        display: none;
    }
    .menu-wrap .nav-menu {
        float: left;
    }
    .nav-menu .main-menu > .menu-item > .sub-menu {
        margin-left: -60px;
        display: block !important;
    }
    .nav-menu .main-menu > .menu-item > .sub-menu.menu-large {
        margin-left: -115px !important;
        display: block !important;
    }
    .nav-menu .main-menu > .menu-item:hover > .sub-menu {
        top: 55px;
        opacity: 1;
        visibility: visible;
    }
    .navigation-menu .nav-menu .main-menu > .menu-item {
        padding-bottom: 0;
    }
    .wrap-blog .wrapper {
        padding: 40px;
    }
    .wrap-blog .heading a {
        font-size: 22px;
    }
}
@media (max-width: 576px) {
    .chars {
        display: none;
    }
    .domain-prices {
        display: none;
    }
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .custom-img-right {
        width: 250px;
        height: 250px;
        opacity: 0.2;
    }
    .top-banner .heading {
        font-family: var(--font-primary);
        font-size: 34px;
        line-height: 46px;
    }
    .top-header .specs img {
        height: 38px;
    }
    .top-header .wrapper .round:before {
        top: 10px;
    }
    .tabs.offers-tabs .tabs-header ul {
        padding: 0;
    }
    .tabs.offers-tabs .tabs-header li {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tabs.offers-tabs .tabs-header {
        padding: 0px;
    }
    .filter-menu ul{
        padding: 0px 0px;
    }
    .filter-menu ul li {
        font-size: 12px;
        padding: 10px;
    }
    .featured.isotope .col-xs-6 {
        width: 100% !important;
    }
    .best-seller .col-xs-6 {
        width: 100% !important;
    }
    .product-meta{
        padding: 0px 70px;
        margin-top: 35%;
    }
    .products .wrapper {
        width: 100%;
    }
    .team .soc-icons-wrap .icons {
        display: inline-block;
        margin-top: 250px;
    }
    .team-about .more-info {
        display: block;
        padding: 25% 50px;
    }
    .team-about.modern .wrapper {
        width: 100%;
    }
    .team-about.modern .info {
        width: 100%;
    }
    .team-about .wrapper {
        width: 100%;
    }
    .cart .data-cart .order-suma {
        margin-left: 0;
        padding: 26px 46px;
    }
    .casestudy img {
        width: 100%;
    }
    .pagination > li > a {
        margin-bottom: 20px;
    }
    .action {
        height: calc(50% - 24px) !important;
    }
    .action .metatag {
        margin-top: 31% !important;
    }
    .blogg .action {
        height: calc(50% - 80px) !important;
    }
    .blogg .action .metatag{
        margin-top: 26% !important;
    }
    .blogg1 .action {
        height: calc(50% - 33px) !important;
    }
    .blogg1 .action .metatag{
        margin-top: 25% !important;
    }
    .blogg2 .action {
        height: calc(50% - -11px) !important;
    }
    .blogg2 .action .metatag{
        margin-top: 24% !important;
    }
    .special-footer {
        margin-bottom: -150px;
    }
    .sec-main {
        padding: 80px 15px;
    }
    .wrap-blog .wrapper {
        padding: 60px 30px;
    }
    .shopping .sidebar {
        padding: 60px 30px !important;
    }
    .blog.blog .wrap-blog .comments {
        padding: 60px 30px !important;
    }
    .blog.blog .wrap-blog .livecomment {
        padding: 60px 30px !important;
    }
    .h-services .wrap-service {
        text-align: center;
    }
    .blog .sidebar {
        padding: 60px 30px !important;
    }
    .blog .sidebar .categories {
        text-align: center;
    }
}
@media (max-width: 420px) {
    .top-banner .heading span {
        font-size: 26px;
    }
    .top-header .wrapper .heading {
        font-size: 26px;
    }
    .top-header .wrapper .subheding {
        font-size: 14px;
    }
    .section-heading.small-text {
        font-size: 24px !important;
    }
    .section-heading.small-text {
        font-size: 24px !important;
    }
    .shopping .sidebar .posts .item-wrap {
        display: inherit;
        padding: 0px;
    }
    .shopping .sidebar .posts .img {
        float: left;
        margin: 0px 20px 30px 0px;
    }
    .shopping .sidebar .tabs .tabs-content {
        text-align: left;
    }
    .shopping.details .shop-tabs .tabs-item .submit{
        font: 16px var(--font-primary);
    }
    button.mfp-close {
        margin-right: 20px;
    }
    .team .soc-icons-wrap .icons {
        display: inline-block;
        margin-top: 185px;
    }
    .team-about.light.modern .col-md-3.col-sm-6.col-xs-6 {
        width: 100%;
    }
    .team .col-md-3.col-sm-6.col-xs-6 {
        width: 100%;
    }
    .register.contact-us .info {
        font-size: 13px;
    }
    .register.contact-us .info a {
        font-size: 13px;
    }
    .countdown .wrapper .clock .title {
        font-size: 10px;
        margin-top: 10px;
    }
    .payment-order .table.payment-form th:first-child {
        font-size: 14px;
    }
    .payment-order .input {
        font-size: 14px;
    }
    .payment-order .table.payment-form th a {
        margin-left: 5px;
        font-size: 12px;
    }
    .table-responsive {
        border: none;
    }
    .payment-form .btn-check {
        margin: 5px 5px 0;
    }
    .accordion.faq .wrapper-collapse .list {
        margin-left: 0;
    }
    .wrap-blog {
        width: 100%;
        text-align: center;
    }
    .wrap-blog .social {
        width: 100%;
        text-align: center;
    }
    .wrap-blog.modern .infos {
        float: none;
        margin-top: 15px;
    }
    .blog .social-icons {
        text-align: center;
        padding: 0px;
    }
    .blog .media .text-comments {
        width: 100%;
    }
    .wrap-blog.modern .infos i {
        font-size: 16px;
    }
    .pagination > li > a {
        font-size: 16px;
        padding: 5px 12px;
    }
    .pagination .next, .pagination .prev {
        font-size: 16px;
        padding: 5px 12px;   
    }
    .blog.blog .wrap-blog .media-left {
        display: none;
    }
    .blog .media .media-body {
        padding-left: 0px;
    }
    .blog .media a.answer {
        float: none;
    }
    .action {
        height: calc(50% - 24px) !important;
    }
    .action .metatag {
        margin-top: 25% !important;
    }
    .blogg .action {
        height: calc(50% - 293px) !important;
    }
    .blogg .action .metatag{
        margin-top: 21% !important;
    }
    .blogg1 .action {
        height: calc(50% - 124px) !important;
    }
    .blogg1 .action .metatag{
        margin-top: 23% !important;
    }
    .blogg2 .action {
        height: calc(50% - 47px) !important;
    }
    .blogg2 .action .metatag{
        margin-top: 21% !important;
    }
    .section-404 .title {
        font-size: 38px;
    }
    .section-404 .input {
        width: 100%;
    }
    .section-404 .input-group .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* ===== PRICING TOGGLE STYLES ===== */
.pricing-toggle-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.run-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.run-switch .mo,
.run-switch .an {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.run-switch .mo.active,
.run-switch .an.active {
    background: #22badf;
    color: #fff;
}

.run-switch .mo,
.run-switch .an {
    margin: 0 5px;
}

/* ===== HERO TABS STYLES ===== */
.modern-hero-tabs {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -50px;
    border-radius: 20px 20px 0 0;
}

.tabs-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-button {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    display: flex;
    align-items: center;
    /* gap: 15px; */
    padding: 10px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    outline: none;
}

.tab-button:last-child {
    border-right: none;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #212b43, #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button.active::before {
    transform: scaleX(1);
}

.tab-button:hover {
    background: rgba(34, 186, 223, 0.05);
}

.tab-button.active {
    background: rgba(34, 186, 223, 0.08);
}

.tab-button:active {
    transform: scale(0.95);
}

.tab-button:focus-visible {
    outline: 3px solid #22badf;
    outline-offset: 2px;
}

.tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(30, 58, 138, 0.1);
    color: #212b43;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.tab-button.active .tab-icon {
    background: linear-gradient(135deg, #22badf, #007297);
    color: white;
    transform: scale(1.1);
}

.tab-content .tab-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.tab-content .tab-subtitle {
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s ease;
}

.tab-button.active .tab-title {
    color: #22badf;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 8px;
    height: 8px;
    background: #22badf;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tab-button.active .tab-indicator {
    transform: translateX(-50%) scale(1);
}

/* ===== TAB COLOR VARIANTS ===== */
.tab-blue .tab-icon {
    background: rgba(34, 186, 223, 0.1);
    color: #22badf;
}

.tab-blue.active::before {
    background: linear-gradient(90deg, #22badf, #007297);
}

.tab-blue.active .tab-icon {
    background: linear-gradient(135deg, #22badf, #007297);
}

.tab-red .tab-icon {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.tab-red.active::before {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
}

.tab-red.active .tab-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.tab-green .tab-icon {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

.tab-green.active::before {
    background: linear-gradient(90deg, #059669, #047857);
}

.tab-green.active .tab-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.tab-blue .tab-icon {
    background: rgba(34, 186, 223, 0.1);
    color: #22badf;
}

.tab-blue.active::before {
    background: linear-gradient(90deg, #22badf, #007297);
}

.tab-blue.active .tab-icon {
    background: linear-gradient(135deg, #22badf, #007297);
}

/* ===== STATISTICS SECTION ===== */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FOOTER SLOGAN ===== */
.slogan {
    font-size: 0.9rem;
    color: #94a3b8;
    font-style: italic;
    margin: 10px 0;
}

/* ===== RESPONSIVE HERO TABS ===== */
@media (max-width: 768px) {
    .tabs-wrapper {
        flex-direction: column;
    }
    
    .tab-button {
        min-width: 100%;
        max-width: none;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
}

/* ===== ADDITIONAL HERO TABS STYLES ===== */
.modern-hero-tabs .tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.modern-hero-tabs .tab-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-hero-tabs .tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 186, 223, 0.15);
}

.modern-hero-tabs .tab-button.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 186, 223, 0.2);
}

.modern-hero-tabs .tab-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-hero-tabs .tab-button.active .tab-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ===== DOMAIN SEARCH STYLES ===== */
.domain-search-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero slider domain search box */
.domain-search-box-slider {
    width: 100%;
}

.domain-search-form .input-group {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.domain-search-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 18px;
}

.domain-search-form .form-control-lg {
    padding: 18px 25px;
    font-size: 20px;
}

.domain-search-form select {
    border: none;
    border-left: 1px solid #e9ecef;
    background: #f8f9fa;
    min-width: 120px;
}

.domain-search-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 15px 30px;
    font-weight: 600;
}

.domain-prices {
    display: flex;
    justify-content: center;
}

.domain-price-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 0 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.domain-ext {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.domain-price {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

/* ===== SOLUTION CARDS STYLES ===== */
.solution-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    color: var(--gray-600);
}

.solution-card h4 {
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}

.solution-card .btn {
    align-self: flex-end;
    margin-top: auto;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    color: var(--primary-color);
}

.solution-card h4 {
    color: var(--gray-800);
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== MODERN TESTIMONIALS STYLES ===== */
.modern-testimonials {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-tab {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    justify-content: center;
}

.testimonial-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-tab.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.3);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-company {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-content-wrapper {
    position: relative;
    min-height: 200px;
}

.testimonial-content {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-content.active {
    display: block !important;
}

/* İlk testimonial varsayılan olarak görünür olmasın */
.testimonial-content[data-testimonial="1"] {
    display: none !important;
}

/* Tüm testimonial content'ları varsayılan olarak gizli */
.testimonial-content {
    display: none !important;
}

.testimonial-content.active {
    display: block !important;
}

.testimonial-quote {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-quote p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-rating i {
    margin: 0 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== COMPANY INFO STYLES ===== */
.company-info p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== OVERVIEW INFO STYLES ===== */
.overview-info {
    padding: 20px;
}

.overview-info .section-heading {
    text-align: left;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.overview-info .overview-txt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 25px;
    text-align: left;
}

.overview-info .btn {
    font-weight: 600;
    padding: 12px 30px;
}

/* ===== FOOTER BACKGROUND LOGO STYLES ===== */
.footer-bg-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.80;
    pointer-events: none;
}

.footer-bg-logo .logo-footer {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 800px;
    max-height: 600px;
    filter: grayscale(100%);
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* ===== HERO SECTION RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 991px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
    }
    
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
    }
    
    .custom-img-right {
        width: 350px;
        height: 350px;
        opacity: 0.25;
    }
}

@media (max-width: 767px) {
    .hero-content-wrapper {
        gap: 20px;
    }
    
    .custom-img-right {
        width: 300px;
        height: 300px;
        opacity: 0.2;
    }
    
    .top-banner .heading {
        font-size: 42px;
        line-height: 52px;
    }
    
    .top-banner .subheading {
        font-size: 16px;
        line-height: 28px;
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .domain-search-form .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .domain-search-form .input-group-append {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .domain-search-form .input-group-append .btn {
        width: 100%;
        border-radius: 10px !important;
    }
    
    .domain-search-form .form-control,
    .domain-search-form select,
    .domain-search-form .btn {
        border-radius: 10px;
        margin-bottom: 0;
        width: 100% !important;
        font-size: 18px !important;
        padding: 16px 20px !important;
        min-height: 54px;
    }
    
    .domain-search-form .form-control-lg {
        font-size: 20px !important;
        padding: 18px 22px !important;
        min-height: 58px;
    }
    
    .domain-search-form .btn-lg {
        font-size: 20px !important;
        padding: 18px 35px !important;
        min-height: 58px;
    }
    
    .domain-search-form .btn {
        margin-top: 0;
    }
    
    /* Hero slider domain search box */
    .domain-search-box-slider {
        padding: 0;
    }
    
    .domain-search-box-slider .domain-search-form .form-control,
    .domain-search-box-slider .domain-search-form .form-control-lg {
        font-size: 20px !important;
        padding: 18px 22px !important;
        min-height: 58px;
    }
    
    .domain-search-box-slider .domain-search-form .btn,
    .domain-search-box-slider .domain-search-form .btn-lg {
        font-size: 20px !important;
        padding: 18px 35px !important;
        min-height: 58px;
        width: 100%;
    }
    
    .domain-prices {
        flex-direction: column;
        align-items: center;
    }
    
    .domain-price-item {
        margin: 10px 0;
        min-width: 200px;
    }
    
    .testimonial-tabs-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-tab {
        min-width: 250px;
    }
    
    .testimonial-quote {
        padding: 30px 20px;
    }
    
    .quote-icon {
        font-size: 30px;
        top: 15px;
        left: 20px;
    }
    
    .solution-card {
        margin-bottom: 30px;
    }
    
    .footer-bg-logo .logo-footer {
        max-width: 600px;
        max-height: 500px;
    }
    
    .menu-wrap {
        margin: 0 10px;
        width: calc(100% - 20px);
        border-radius: 0 0 15px 15px;
    }
    
    .overview-info {
        padding: 15px;
    }
    
    .overview-info .overview-txt {
        font-size: 15px;
        line-height: 1.7;
    }
}



@media (max-width: 576px) {
    .domain-search-box {
        padding: 20px 15px;
    }
    
    .domain-search-form .form-control {
        font-size: 18px !important;
        padding: 16px 18px !important;
        min-height: 54px;
    }
    
    .domain-search-form .form-control-lg {
        font-size: 20px !important;
        padding: 18px 20px !important;
        min-height: 58px;
    }
    
    .domain-search-form .btn {
        padding: 16px 25px !important;
        font-size: 18px !important;
        min-height: 54px;
    }
    
    .domain-search-form .btn-lg {
        padding: 18px 30px !important;
        font-size: 20px !important;
        min-height: 58px;
    }
    
    /* Hero slider domain search box - small screens */
    .domain-search-box-slider .domain-search-form .form-control,
    .domain-search-box-slider .domain-search-form .form-control-lg {
        font-size: 20px !important;
        padding: 18px 20px !important;
        min-height: 58px;
    }
    
    .domain-search-box-slider .domain-search-form .btn,
    .domain-search-box-slider .domain-search-form .btn-lg {
        font-size: 20px !important;
        padding: 18px 30px !important;
        min-height: 58px;
    }
    
    .solution-card {
        padding: 20px 15px;
    }
    
    .testimonial-tab {
        min-width: 200px;
        padding: 12px 15px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-image-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .custom-img-right {
        width: 200px;
        height: 200px;
        opacity: 0.15;
    }
}

/* ===== PARTNERS GRID ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 80px;
    width: 100%;
    max-width: 150px;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .partner-logo-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .partner-logo-item {
        padding: 10px;
        min-height: 60px;
    }
    
    .partner-logo {
        max-height: 40px;
    }
}

.hosting-title {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.hosting-subtitle {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.4;
    color: var(--gray-700);
}