@charset "UTF-8";* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    
}

a {
    text-decoration: none;
}

ul {
    margin-bottom: 0;
    padding: 0;
}

p {
    margin-bottom: 0;
}

h1, h2, h3, h4 {
    margin: 0;
}

html {
    font-size: 14px;
    height: 100%;
}

body {
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    background: #fff;
}

body.overflowy {
    overflow-y: hidden;
}

.top-bar {
    width: 100%;
    background-color: #fff;
    height: 40px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.top-bar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 40px;
}

.top-bar .container .top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-bar .container .top-left a {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    color: #3b4767;
}

.top-bar .container .top-left a img {
    margin-right: 5px;
}

.top-bar .container .top-left a:last-child {
    border-right: 0;
}

.top-bar .container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-bar .container .top-right a {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 36px;
    color: #3b4767;
}

.top-bar .container .top-right a img {
    margin-right: 5px;
}

.top-bar .container .top-right a:first-child {
}

header {
    width: 100%;
    height: 72px;
    background-color: #fff;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    z-index: 2 !important;
}

header > .container {
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header > .container .logo {
    margin-right: 50px;
}

header > .container nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header > .container nav > ul > li > a {
    padding: 4px 18px;
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #3b4767;
    font-size: 15px;
}

header > .container nav > ul > li > a img {
    margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
    header > .container nav > ul > li:hover > a {
        border-bottom: 2px solid #f5631a;
    }
    
   

 

    header > .container nav > ul > li:hover .mega-menu {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        pointer-events: all;
    }
}

header > .container nav > ul > li .mega-menu {
    width: 100%;
    position: absolute;
    top: 112px;
    left: 0;
    z-index: 999;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    right: 0;
    padding: 30px 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 29px 14px rgba(65, 104, 177, 0.16);
    box-shadow: 0px 29px 14px rgba(65, 104, 177, 0.16);
}

header > .container nav > ul > li .mega-menu .container > .row > div {
    border-right: 1px solid rgba(59, 71, 103, 0.2);
}

header > .container nav > ul > li .mega-menu .container > .row > div:last-child {
    border-right: 0;
}

header > .container nav > ul > li .mega-menu .subtitle {
    display: block;
    font-weight: 500;
    color: #667093;
    font-size: 14px;
}

header > .container nav > ul > li .mega-menu .menu-link {
    width: 100%;
    background: #f7f9fd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

header > .container nav > ul > li .mega-menu .menu-link:hover {
    background: #f7f9fd;
    -webkit-box-shadow: 0 0 8px rgb(58 73 255 / 20%);
    box-shadow: 0 0 8px rgb(58 73 255 / 20%);
}

header > .container nav > ul > li .mega-menu .menu-link:hover .icon {
    color: #fff;
    background: #f5631a
}

header > .container nav > ul > li .mega-menu .menu-link .icon {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 26px;
    color: #667093;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 7px;
}

header > .container nav > ul > li .mega-menu .menu-link .link-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

header > .container nav > ul > li .mega-menu .menu-link strong {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 8px;
    color: #00104b;
}

header > .container nav > ul > li .mega-menu .menu-link p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #667093;
}

header > .container .actions {
    margin-left: auto;
}

header > .container .actions a {
    width: 100px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(59, 71, 103, 0.1);
    color: #081131;
}

.main-hero {
    width: 100%;
    height: 530px;
    background: #f8faff;
    position: relative;
    z-index: 1;
}

.main-hero.pink::after {
    background: #e2e9fb;
}

.main-hero.green::after {
    background: #f5641b;
}

.main-hero.dark-green::after {
    background: #00bc87;
}

.main-hero.turkuaz::after {
    background: #1bc6c6;
}

.main-hero.turuncu::after {
    background: #ffddb9;
}

.main-hero.yellow::after {
    background: #ffcc68;
}

.main-hero.red::after {
    background: #f96e4e;
}

.main-hero.purple::after {
    background: #9867ff;
}

.main-hero.domainsayfasi::after {
    background: #c2f94e3b;
}

.main-hero.domainsayfasi-mavi::after {
    background: #4e96f929;
}

.main-hero.domain::after {
    background: #f4877a;
}

.main-hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    pointer-events: none;
}

.main-hero .container {
    position: relative;
    z-index: 4;
}

.main-hero .container .hero-text ul {
    -webkit-column-count: 2;
    column-count: 2;
    margin-top: 16px;
}

.main-hero .container .hero-text ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding: 8px 0;
}

.main-hero .container .hero-text > span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #081131;
    margin-bottom: 16px;
    display: block;
}

.main-hero .container .hero-text h2 {
    color: #081131;
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
  
}

.main-hero .container .hero-text h1 {
    color: #081131;
    font-size: 37px;
    margin-bottom: 15px;
    font-weight: bold;
    
}

.main-hero .container .hero-text > a {
    width: 185px;
    height: 48px;
    background: #f5631a;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    margin-top: 24px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.main-hero .container .hero-text > a:hover {
    background: #f5631a;
}

.main-hero .container .hero-text p {
    color: #6978a0;
    font-size: 20px;
    line-height: 1.6;
}

.main-hero .container .hero-text p.small {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}

.main-hero .container .hero-text .domain-search {
    width: 100%;
    height: 80px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
    margin-top: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-hero .container .hero-text .domain-search span {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
}

.main-hero .container .hero-text .domain-search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    height: 78px;
    background: none;
    font-size: 18px;
    color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::-webkit-input-placeholder {
    color: #6978a0;
}

.main-hero .container .hero-text .domain-search input:-ms-input-placeholder {
    color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::-ms-input-placeholder {
    color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::placeholder {
    color: #6978a0;
}

.main-hero .container .hero-text .domain-search button {
    width: 143px;
    height: 48px;
    background: #f5631a;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    font-size: 16px;
    margin-right: 16px;
}

.main-hero .container .hero-text .domain-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-hero .container .hero-text .domain-links a {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding-right: 30px;
}

.main-hero .container .hero-text .domain-links a:hover {
    color: #5246fa;
}

.main-hero .container .hero-text .domain-links a .fa-chevron-right {
    font-size: 15px;
    margin-left: 5px;
}

.main-hero .container .hero-text .domain-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-hero .container .hero-text .domain-prices .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 32px;
}

.main-hero .container .hero-text .domain-prices .item img {
    margin-right: 5px;
}

.main-hero .container .hero-text .domain-prices .item span {
    font-size: 16px;
    color: #6978a0;
}

.main-hero .container .hero-img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.section-title span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #081131;
}

.section-title .title {
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;

    margin: 5px 0;
}

.section-title p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #6978a0;
    max-width: 100%;
}

.section-title span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 16px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;
    
    margin-bottom: 16px;
}

.section-title h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 27px;
    color: #081131;
   
    margin-bottom: 16px;
}

.home-banners {
    padding: 70px 0px 40px 0;
}

.home-banners .container .row > div {
    min-height: 200px;
    max-height: 210px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.home-banners .container .banner-item {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 32px;
}

.home-banners .container .banner-item.small {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 32px;
}

.home-banners .container .banner-item.small p {
    padding: 0;
    padding-right: 32px;
}

.home-banners .container .banner-item.small .image {
    max-height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.home-banners .container .banner-item.small .image img {
    height: 100%;
    width: auto;
}

.home-banners .container .banner-item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    color: #081131;
}

.home-banners .container .banner-item .title span {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
}

.home-banners .container .banner-item .title span.purple {
    background: #6c00db;
}

.home-banners .container .banner-item .title span.green {
    background: #58b37d;
}

.home-banners .container .banner-item .title span.red {
    background: #ff4b11;
}

.home-banners .container .banner-item p {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color: #6978a0;
    padding: 0 32px;
    display: block;
    margin-top: 5px;
}

.home-banners .container .banner-item .image {
    margin-top: auto;
    width: 100%;
}

.home-banners .container .banner-item .image img {
    width: 100%;
    height: auto;
}

.home-banners .container .banner-item:nth-child(2) {
    margin-top: 20px;
}

.packs-wrapper {
    padding: 40px 0;
    position: relative;
}

.packs-wrapper.after::before {
    display: none;
}

.packs-wrapper.after::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.packs-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.packs-wrapper .pack-item {
    width: 100%;
    padding: 32px 24px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    background: #ffffff;
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.04);
}

.packs-wrapper .pack-item.white-pack {
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
}

.packs-wrapper .pack-item.white-pack .price {
    margin-bottom: 15px;
    margin-top: 15px;
}

.packs-wrapper .pack-item.white-pack ul li {
    color: #3b4767;
}

.packs-wrapper .pack-item:hover {
    background: #ffffff;
    -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
}

.packs-wrapper .pack-item:hover .pattern span.active {
    background: #f5631a;
    
}


.packs-wrapper .pack-item:hover > a {
    background: #d84b05;
}

.packs-wrapper .pack-item .title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}

.packs-wrapper .pack-item .title h4 {
    font-weight: 400;
    font-size: 22px;
    color: #3b4767;
}

.packs-wrapper .pack-item .title .pattern {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.packs-wrapper .pack-item .title .pattern span {
    width: 10px;
    height: 10px;
    background: #ffab81;
    opacity: 0.2;
    border-radius: 50%;
}

.packs-wrapper .pack-item .title .pattern span.active {
    opacity: 1;
}

.packs-wrapper .pack-item .title .pattern span:nth-child(3), .packs-wrapper .pack-item .title .pattern span:last-child {
    margin-top: 7px;
}

.packs-wrapper .pack-item strong {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #3b4767;
    display: block;
}

.packs-wrapper .pack-item strong.old-price {
    text-decoration: line-through;
    margin-top: 16px;
}

.packs-wrapper .pack-item .c-badge {
    margin-bottom: 16px;
    background: #cff3f3;
    font-weight: 400;
    font-size: 14px;
    color: #081131;
    padding: 14px;
}

.packs-wrapper .pack-item .c-badge.yellow {
    background: #faebcc;
}

.packs-wrapper .pack-item .c-badge.red {
    background: #ffded6;
}

.packs-wrapper .pack-item .c-badge.purple {
    background: #e6e3ff;
}

.packs-wrapper .pack-item .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.packs-wrapper .pack-item .price b {
    color: #081131;
    font-size: 26px;
    font-weight: 700;
}

.packs-wrapper .pack-item .price div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 10px;
    padding-left: 5px;
}

.packs-wrapper .pack-item .price div small {
    font-weight: 600;
    font-size: 14px;
    color: #081131;
    line-height: 1;
}

.packs-wrapper .pack-item .price div span {
    font-weight: 400;
    font-size: 14px;
    color: #6978a0;
    line-height: 1.1;
}

.packs-wrapper .pack-item > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #6978a0;
    border-bottom: 1px solid rgba(102,112,147,.2);
}

.packs-wrapper .pack-item ul {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(59, 71, 103, 0.2);
}

.packs-wrapper .pack-item ul strong {
    font-weight: 700;
    font-size: 20px;
    color: #081131;
    display: block;
    margin-bottom: 16px;
}

.packs-wrapper .pack-item ul li {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.packs-wrapper .pack-item ul li b {
    font-weight: 500;
}

.packs-wrapper .pack-item ul li .fa-check {
    color: #58b37d;
}

.packs-wrapper .pack-item ul li:last-child {
    padding-bottom: 0;
}

.packs-wrapper .pack-item > a {
    width: 100%;
    height: 48px;
    background-color: #f5631a;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
}

.packs-wrapper .pack-item > a.see-all {
    border: 1px solid rgba(59, 71, 103, 0.1);
    background: transparent;
    color: #081131;
}

.numbers-wrapper {
    padding: 75px 0;
}

.numbers-wrapper .numbers {
    margin-top: 40px;
    width: 100%;
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.numbers-wrapper .numbers .row > div {
    border-right: 1px solid rgba(59, 71, 103, 0.2);
}

.numbers-wrapper .numbers .row > div:last-child {
    border-right: 0;
}

.numbers-wrapper .numbers .numbers-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 30px 45px;
}

.numbers-wrapper .numbers .numbers-item strong {
  
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    color: #081131;
}

.numbers-wrapper .numbers .numbers-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #3b4767;
}

.numbers-wrapper .numbers .numbers-item .image {
    width: 100%;
    height: 220px;
    background: #e1f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 24px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.numbers-wrapper .numbers .numbers-item .image.orange {
    background: #faebcc;
}

.numbers-wrapper .numbers .numbers-item .image.pink {
    background: #ffeef0;
}

.numbers-wrapper .numbers .numbers-item .image.green {
    background: #e9f5e8;
}

.numbers-wrapper .numbers .numbers-item .image img {
    max-height: 160px;
    width: auto;
    height: 100%;
    max-width: 175px;
}

.numbers-wrapper .numbers .numbers-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6978a0;
}

.packs-slider-wrap {
    padding: 60px 0;
}

.packs-slider-wrap .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    bottom: -60px;
}

.packs-slider-wrap .slick-dots li {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    color: #6978a0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    margin-right: 24px;
}

.packs-slider-wrap .slick-dots li.slick-active {
    border-color: #5246fa;
    color: #081131;
}

.packs-slider-wrap .slider-info span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #081131;
    margin-bottom: 5px;
    display: block;
}

.packs-slider-wrap .slider-info h4 {

    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;
    margin-bottom: 16px;
}

.packs-slider-wrap .slider-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #6978a0;
    margin-bottom: 24px;
}

.packs-slider-wrap .slider-info ul {
    -webkit-column-count: 2;
    column-count: 2;
}

.packs-slider-wrap .slider-info ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding: 8px 0;
}

.packs-slider-wrap .slider-info a {
    width: 185px;
    height: 48px;
    background-color: #3b4767;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    margin-top: 24px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.packs-slider-wrap .slider-info a:hover {
    background: #5246fa;
}

.packs-slider-wrap .slider-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.brands {
    padding: 60px 0;
}

.brands .brand-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 88px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    color: #5246fa;
}

.brands .brand-item:hover img {
    opacity: 1;
}

.brands .brand-item img {
    opacity: 0.5;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.brands .brand-item span {
    font-size: 24px;
}

.footer-contact {
    padding: 40px 0;
    background: #f8faff;
}

.footer-contact .head {
    margin-bottom: 48px;
}

.footer-contact .head span {
    font-weight: 400;
    font-size: 16px;
    display: block;
    color: #081131;
    margin-bottom: 16px;
}

.footer-contact .head h3 {
  
    font-style: normal;
    font-weight: 700;
    color: #081131;
    font-size: 36px;
}

.footer-contact .f-contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.footer-contact .f-contact-item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #3b4767;
}

.footer-contact .f-contact-item .title span {
    padding-left: 5px;
    color: #58b37d;
}

.footer-contact .f-contact-item .title img {
    margin-right: 7px;
}

.footer-contact .f-contact-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6978a0;
    max-width: 300px;
    margin: 16px 0;
}

.footer-contact .f-contact-item a {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
}


.packs-bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.packs-bottom h3 {
    font-size: 28px;
}

.packs-bottom a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 24px;
}

.packs-bottom a > svg {
    margin-right: 10px;
}

.packs-bottom a span {
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
    width: 24px;
    height: 24px;
}

.performance {
}

.performance .performance-item {
    width: 100%;
    height: 100%;
    min-height: 518px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 24px 0 24px;
    position: relative;
}

.performance .performance-item span {
    width: 64px;
    height: 64px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px;
}

.performance .performance-item h4 {
    
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #081131;
    margin-bottom: 24px;
}

.performance .performance-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6978a0;
}

.performance .performance-item .img {
    position: absolute;
    bottom: -100px;
}

.performance .performance-item .img img {
    max-height: 246px;
}

.performance .performance-item.green {
    background: #e1f5f5;
}

.performance .performance-item.pink {
    background: #ffeef0;
}

.performance .performance-item.yellow {
    background: #faebcc;
}

.suggest-wrap {
    margin-top: 150px;
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.suggest-wrap .row > div:last-child .suggest-item {
    border-right: 0;
}

.suggest-wrap .suggest-item {
    padding: 80px 60px;
    border-right: 1px solid rgba(59, 71, 103, 0.2);
}

.suggest-wrap .suggest-item .title {
    font-size: 28px;
}

.suggest-wrap .suggest-item p {
    font-size: 16px;
}

.suggest-wrap .suggest-item ul {
    margin-top: 16px;
}

.suggest-wrap .suggest-item ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0;
}

.suggest-wrap .suggest-item ul li img {
    margin-left: 10px;
}

.suggest-wrap .suggest-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 24px;
}

.suggest-wrap .suggest-item a > svg {
    margin-right: 10px;
}

.suggest-wrap .suggest-item a span {
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
    width: 24px;
    height: 24px;
}

.plan-table-wrap {
    padding: 60px 0;
}

.plan-table-wrap .container .table-wrap {
    width: 100%;
}

.plan-table-wrap .container .table-wrap .table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.plan-table-wrap .container .table-wrap .table-head .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 32px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.plan-table-wrap .container .table-wrap .table-head .cell.popular a {
    background: #f5641b;
}

.plan-table-wrap .container .table-wrap .table-head .cell.popular .pattern span.active {
    background: #f5641b;
}

.plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
    width: 100%;
    padding: 6px;
    position: absolute;
    top: 0;
    font-size: 10px;
    left: 0;
    right: 0;
    color: #000000;
    background: rgb(13 183 58 / 10%);
}

.plan-table-wrap .container .table-wrap .table-head .cell:first-child {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: start;
    border-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.plan-table-wrap .container .table-wrap .table-head .cell .head span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 12px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .head .title {
    
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #081131;
    margin-bottom: 32px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods button {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.04em;
    color: #6978a0;
    margin-right: 30px;
    padding: 5px;
    background: none;
    border: 2px solid transparent;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods button.active, .plan-table-wrap .container .table-wrap .table-head .cell .periods button:hover {
    border-bottom: 2px solid #081131;
    color: #081131;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern {
    width: 28px;
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span {
    width: 10px;
    height: 10px;
    background: #6978a0;
    opacity: 0.2;
    border-radius: 50%;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span.active {
    opacity: 1;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span:nth-child(3), .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:last-child {
    margin-top: 7px;
}

.plan-table-wrap .container .table-wrap .table-head .cell strong {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #f5641b;
    display: block;
    margin-bottom: 12px;
}

.plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
    text-decoration: line-through !important;
    margin-top: 14px;
    font-size: 14px;
    margin-bottom: 0;
}

.plan-table-wrap .container .table-wrap .table-head .cell a {
    width: 100%;
    height: 48px;
    background: #f5641b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.plan-table-wrap .container .table-wrap .table-head .cell a:hover {
    background: #ee5000
}

.plan-table-wrap .container .table-wrap .table-head .cell .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 16px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price b {
    color: #081131;
    font-size: 30px;
    font-weight: 700;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 10px;
    padding-left: 5px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div small {
    font-weight: 600;
    font-size: 14px;
    color: #081131;
    line-height: 1;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div span {
    font-weight: 400;
    font-size: 14px;
    color: #6978a0;
    line-height: 1.1;
}

.plan-table-wrap .container .table-wrap .table-head .cell > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child p {
    color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child span {
    color: #f5641b;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 18px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell .c-badge {
    width: 100%;
    padding: 2px 5px;
    position: absolute;
    top: 0;
    font-size: 11px;
    left: 0;
    right: 0;
    color: #081131;
    background: rgba(0, 131, 255, 0.1);
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
    font-weight: 400;
    font-size: 18px;
    color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell span {
    color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell:first-child {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content {
    display: none;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 18px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info {
    position: relative;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info:hover .info-box {
    opacity: 1;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info .info-box {
    position: absolute;
    width: 180px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    top: -100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
    box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
    left: 150%;
    text-align: center;
    padding: 5px;
    opacity: 0;
    pointer-events: none;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
    font-weight: 400;
    font-size: 14px;
    color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell:first-child {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.faq-wrapper {
    padding: 80px 0;
}

.faq-wrapper .section-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.faq-wrapper .section-title span {
    display: block;
}

.faq-wrapper .section-title .title {
    font-size: 28px;
}

.faq-wrapper .section-title p {
    font-size: 16px;
}

.faq-wrapper .section-title a {
    margin-top: 24px;
    width: 207px;
    height: 48px;
    background: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.faq-wrapper .section-title a:hover {
    background: #5246fa;
}

.faq-wrapper .faq-item {
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.faq-wrapper .faq-item .faq-head {
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.faq-wrapper .faq-item .faq-head h3 {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.faq-wrapper .faq-item .faq-head span {
    color: #5246fa;
}

.faq-wrapper .faq-item .faq-body {
    padding: 16px 0;
    display: none;
}

.faq-wrapper .faq-item .faq-body p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.features-wrap {
    padding: 60px 0;
}

.features-wrap .feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 24px 24px 24px 0;
}

.features-wrap .feature-item span {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 16px;
}

.features-wrap .feature-item span.yellow {
    background: rgba(244, 174, 42, 0.1);
}

.features-wrap .feature-item span.red {
    background: rgba(249, 110, 78, 0.1);
}

.features-wrap .feature-item span.purple {
    background: rgba(152, 103, 255, 0.1);
}

.features-wrap .feature-item span.green {
    background: rgba(0, 188, 135, 0.1);
}

.features-wrap .feature-item h4 {
    font-weight: 400;
    font-size: 20px;
    color: #081131;
    margin-bottom: 8px;
}

.features-wrap .feature-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.page-blog {
    padding: 60px 0;
}

.page-blog .blog-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.page-blog .blog-text span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 16px;
}

.page-blog .blog-text h3 {
    
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    margin-bottom: 16px;
    color: #081131;
}

.page-blog .blog-text p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #6978a0;
}

.page-blog .blog-text a {
    margin-top: 24px;
    width: 185px;
    height: 48px;
    background: #f5631a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.page-blog .blog-text a:hover {
    background: #f85300;
}

.page-blog .blog-img {
    width: 100%;
    height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-blog .blog-img.orange {
    background: #faebcc;
}

.page-blog .blog-img.pink {
    background: #ffeef0;
}

.page-blog .blog-img.green {
    background: #e9f5e8;
}

.page-blog .blog-img.blue {
    background: #e1f5f5;
}

.page-blog .blog-img img {
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    height: auto;
}

.common-features {
    padding: 60px 0;
    margin: 40px 0;
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.common-features .cf-item {
    width: 100%;
    padding: 16px;
    background: #f8faff;
    margin-bottom: 24px;
}

.common-features .cf-item h4 {
    font-weight: 400;
    font-size: 18px;
    color: #081131;
    margin-bottom: 12px;
}

.common-features .cf-item ul li {
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    margin-bottom: 8px;
}

.common-features .cf-item ul li:last-child {
    margin-bottom: 0;
}

.common-features .cf-item ul li .fa-check {
    color: #9867ff;
}

.domain-register-about {
    padding: 60px 0;
}

.domain-exts {
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
    margin-top: 50px;
}

.domain-exts .row > div:last-child .ext-col {
    border-right: 0;
}

.domain-exts .ext-col {
    padding: 32px 47px;
    border-right: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.domain-exts .ext-col .ext-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
    padding-bottom: 32px;
    position: relative;
}

.domain-exts .ext-col .ext-item.best-price::before {
    content: "EN 力Y力 F力YAT";
    width: 100%;
    height: 28px;
    background: #f4877a;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.domain-exts .ext-col .ext-item.best-price .ext-box {
    border-color: #f4877a;
}

.domain-exts .ext-col .ext-item:last-child {
    padding-bottom: 0;
    padding-top: 32px;
    border-bottom: 0;
}

.domain-exts .ext-col .ext-item > p {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #3b4767;
    margin-top: 12px;
    display: block;
}

.domain-exts .ext-col .ext-item .ext-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-exts .ext-col .ext-item .ext-box img {
    max-width: 70px;
    width: 100%;
    height: auto;
    max-height: 95%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.domain-exts .ext-col .ext-item .ext-box .info {
    text-align: end;
}

.domain-exts .ext-col .ext-item .ext-box .info small {
    font-weight: 400;
    font-size: 12px;
    color: #6978a0;
}

.domain-exts .ext-col .ext-item .ext-box .info strong {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #3b4767;
}

.domain-price-table {
    padding: 60px 0;
    position: relative;
}

.domain-price-table::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.domain-price-table .domain-table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 40px;
}

.domain-price-table .domain-table-head .table-search {
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 392px;
    height: 42px;
    width: 100%;
}

.domain-price-table .domain-table-head .table-search button {
    padding-left: 10px;
    border: none;
    background: none;
}

.domain-price-table .domain-table-head .table-search input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    background: none;
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.domain-price-table .domain-table-head .table-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-price-table .domain-table-head .table-filters .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-price-table .domain-table-head .table-filters .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
}

.domain-price-table .domain-table-head .table-filters .form-check-input:checked {
    background-color: #5246fa;
    border-color: #5246fa;
}

.domain-price-table .domain-table-head .table-filters label {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 5px;
}

.domain-price-table .domain-table-body table {
    width: 100%;
    border-collapse: collapse;
}

.domain-price-table .domain-table-body table thead {
    background: #f8faff;
}

.domain-price-table .domain-table-body table thead tr {
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-price-table .domain-table-body table thead tr th {
    padding: 12px 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6978a0;
    text-align: center;
}

.domain-price-table .domain-table-body table thead tr th:first-child {
    text-align: start;
    color: #081131;
}

.domain-price-table .domain-table-body table tbody tr {
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-price-table .domain-table-body table tbody tr td {
    padding: 16px;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    text-align: center;
}

.domain-price-table .domain-table-body table tbody tr td .badge {
    border-radius: 0;
    margin-left: 5px;
    font-weight: 400;
    font-size: 12px;
}

.domain-price-table .domain-table-body table tbody tr td .badge.pink {
    background: #f4877a;
}

.domain-price-table .domain-table-body table tbody tr td .badge.yellow {
    background: #f4ae2a;
}

.domain-price-table .domain-table-body table tbody tr td .badge.purple {
    background: #9867ff;
}

.domain-price-table .domain-table-body table tbody tr td small {
    color: #6978a0;
    margin-right: 5px;
}

.domain-price-table .domain-table-body table tbody tr td b {
    font-weight: 600;
    font-size: 18px;
}

.domain-price-table .domain-table-body table tbody tr td:first-child {
    text-align: start;
}

.domain-price-table .domain-table-body table tbody tr td:first-child span {
    color: #081131;
}

.domain-price-table .domain-table-body table tbody tr td:first-child svg {
    margin-right: 5px;
}

.domain-price-table .domain-table-pagination {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 32px;
}

.domain-price-table .domain-table-pagination button {
    min-width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    margin-left: 8px;
    background: #fff;
}

.domain-price-table .domain-table-pagination button:hover, .domain-price-table .domain-table-pagination button.active {
    border-color: #5246fa;
    color: #5246fa;
}

.domain-price-table .domain-table-pagination button.prev, .domain-price-table .domain-table-pagination button.next {
    padding: 0 26px;
}

.fa-check.green {
    color: #1bc6c6 !important;
}

.fa-check.red {
    color: #f4877a !important;
}

.vds-filters {
    width: 100%;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.vds-filters .table-tab-buttons {
    margin: 0;
}

.vds-filters .table-options {
    margin-left: 50px;
}

.vds-filters .table-options strong {
    font-weight: 500;
    font-size: 16px;
    color: #081131;
}

.vds-filters .table-options div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vds-filters .table-options div .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vds-filters .table-options div .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
}

.vds-filters .table-options div .form-check-input:checked {
    background-color: #5246fa;
    border-color: #5246fa;
}

.vds-filters .table-options div label {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 5px;
}

.table-tab-buttons {
    max-width: 426px;
    width: 100%;
    margin: 40px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    border: 1px solid rgba(59, 71, 103, 0.2);
}

.table-tab-buttons a {
    height: 48px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: rgba(105, 120, 160, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.table-tab-buttons a svg, .table-tab-buttons a img {
    margin-right: 5px;
}

.table-tab-buttons a:first-child {
    margin-right: 12px;
}

.table-tab-buttons a:hover, .table-tab-buttons a.active {
    background: #f5631a;
    color: #fff;
}

.table-tab-buttons a:hover svg path, .table-tab-buttons a.active svg path {
    fill: #fff !important;
}

.vps-table-wrap {
    padding: 60px 0;
    position: relative;
}

.vps-table-wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.vps-table-wrap .vps-table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #a4a4a4;
}

.vps-table-wrap .vps-table-head span {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 12px 16px;
}

.vps-table-wrap .vps-table-head span:first-child {
    text-align: start;
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
}

.vps-table-wrap .vps-table-body {
    width: 100%;
    margin: 15px 0px -18px 0px;
}
}

.vps-table-wrap .vps-table .pattern {
    width: 22px;
    height: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.footerLogo img {
        width: 30%;
        object-fit: cover;
}


.vps-table-wrap .vps-table .pattern span {
    margin-top: 2px;
    width: 8px;
    height: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #6978a0;
    opacity: 0.3;
    border-radius: 50%;
}

.vps-table-wrap .vps-table .pattern span.active {
    opacity: 1;
}

.vps-table-wrap .vps-table-item {
    width: 100%;
    padding: 20px 16px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12px;
    position: relative;
    background: #fff;
    box-shadow: 0px 02px 08px rgb(0 0 0 / 32%);
    transition: box-shadow 0.5s ease;
}

.vps-table-wrap .vps-table-item:hover {
    /* Hover durumunda uygulanacak stil */
    box-shadow: 0 10px 20px rgba(0,0,0,0.6)

}


.vps-table-wrap .vps-table-item .server {
    /* background: rgba(0, 125, 184, 0.1); */
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.vps-table-wrap .vps-table-item .server.red {
    background: rgba(255, 0, 0, 0.1);
}

.vps-table-wrap .vps-table-item .server .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: #3b4767;
    padding: 5px 0;
}

.vps-table-wrap .vps-table-item .server .name img {
    margin-right: 5px;
}

.vps-table-wrap .vps-table-item.green {
    border: 2px solid #00bc87;
}

.vps-table-wrap .vps-table-item.green::before {
    content: attr(data-title);
    position: absolute;
    left: 57px;
    top: 0;
    width: 114px;
    height: 20px;
    background: #00bc87;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vps-table-wrap .vps-table-item.blue {
    border: 2px solid #5246fa;
}

.vps-table-wrap .vps-table-item.blue::before {
    content: attr(data-title);
    position: absolute;
    left: 57px;
    top: 0;
    width: 114px;
    height: 20px;
    background: #5246fa;
    color: #fff;
    font-weight: 600;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vps-table-wrap .vps-table-item .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vps-table-wrap .vps-table-item .cell .badge {
    background: rgba(0, 131, 255, 0.2);
    color: #081131;
    font-weight: 600;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3px;
    width: 114px;
    height: 20px;
    border-radius: 0;
}

.vps-table-wrap .vps-table-item .cell a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    width: 114px;
    height: 40px;
    background: #f5631a;
    font-weight: 400;
    font-size: 14px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.slidecontainer + .input {
    color: #f5631a;
}


.vps-table-wrap .vps-table-item .cell a:hover {
    background: #f5631a;
}

.vps-table-wrap .vps-table-item .cell strong {
    font-weight: 500;
    font-size: 16px;
    color: #3b4767;
    display: block;
}

.vps-table-wrap .vps-table-item .cell > span {
    color: #6978a0;
    font-weight: 400;
    font-size: 12px;
}

.vps-table-wrap .vps-table-item .cell:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
}

.ready-themes {
    padding: 80px 0;
}

.ready-themes .tab-buttons {
    margin: 40px auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 16px;
    border: 1px solid rgba(59, 71, 103, 0.2);
}

.ready-themes .tab-buttons button {
    min-width: 123px;
    border: none;
    height: 48px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: rgba(105, 120, 160, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    margin-left: 16px;
}

.ready-themes .tab-buttons button svg, .ready-themes .tab-buttons button img {
    margin-right: 5px;
}

.ready-themes .tab-buttons button:first-child {
    margin-left: 0;
}

.ready-themes .tab-buttons button:hover, .ready-themes .tab-buttons button.active {
    background: #081131;
    color: #fff;
}

.ready-themes .tab-buttons button:hover svg path, .ready-themes .tab-buttons button.active svg path {
    fill: #fff !important;
}

.ready-themes .themes-slider {
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ready-themes .themes-slider .item {
    padding: 20px;
}

.ready-themes .themes-slider .item img {
    max-width: 100%;
    height: auto;
}

.page-head {
    width: 100%;
    height: 251px;
    background: rgba(0, 131, 255, 0.1);
}

.page-head.grey {
    background: #f8faff;
    height: 326px;
}

.page-head .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding-bottom: 70px;
}

.page-head .container h1 {
    
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    color: #081131;
    margin-bottom: 10px;
}

.page-head .container p {
    font-weight: 400;
    font-size: 18px;
    max-width: 855px;
    text-align: center;
    line-height: 32px;
    color: #6978a0;
}

.inner-page {
    margin-top: -65px;
    position: relative;
    padding-bottom: 100px;
}

.inner-page .page-links {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    padding: 24px;
}

.inner-page .page-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 18px;
    color: #6978a0;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    position: relative;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.inner-page .page-links a::after {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    content: "";
    height: 3px;
    bottom: -1px;
    left: 0;
    width: 0px;
    background: #f5631a;
    position: absolute;
}

.inner-page .page-links a.active, .inner-page .page-links a:hover {
    color: #f5631a;
}

.inner-page .page-links a.active::after, .inner-page .page-links a:hover::after {
    width: 100px;
}

.inner-page .page-links a:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.inner-page .page-content {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    padding: 24px;
}

.inner-page .page-content span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 16px;
}

.inner-page .page-content h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;
    
    margin-bottom: 16px;
}

.inner-page .page-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    color: #081131;
    
    margin-bottom: 16px;
}

.inner-page .page-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.inner-page .page-content hr {
    background: rgba(59, 71, 103, 0.2);
    margin: 32px 0;
    height: 1px;
}

.banka-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.banka-item ul {
    margin: 0;
    padding: 0;
}

.banka-item ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banka-item ul li span {
    min-width: 150px;
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.banka-item .logo {
    width: 252px;
    height: 175px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.domain-selection-options {
    margin-top: -70px;
    position: relative;
}

.domain-selection-options .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.domain-selection-options .container .option {
    max-width: 816px;
    width: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    margin-bottom: 40px;
}

.domain-selection-options .container .option .heading {
    margin-bottom: 16px;
}

.domain-selection-options .container .option .heading h4 {
    
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #081131;
    margin-bottom: 5px;
}

.domain-selection-options .container .option .heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.domain-selection-options .container .option .domain-input-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.domain-selection-options .container .option .domain-input-group .input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 56px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.domain-selection-options .container .option .domain-input-group .input input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    background: #ffff;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
}

.domain-selection-options .container .option .domain-input-group .input img {
    max-width: 20px;
    margin: 0 10px;
}

.domain-selection-options .container .option .domain-input-group .select {
    width: 100px;
    margin: 0 16px;
}

.domain-selection-options .container .option .domain-input-group .select select {
    width: 100%;
    height: 56px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    font-weight: 400;
    font-size: 16px;
}

.domain-selection-options .container .option .domain-input-group button {
    width: 131px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: #3b4767;
    border: none;
}

.domain-selection-options .container .option .results {
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    margin-top: 24px;
    padding-top: 24px;
}

.domain-selection-options .container .option .results .success-text {
    
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #00bc87;
    margin-bottom: 5px;
}

.domain-selection-options .container .option .results .domain-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
}

.domain-selection-options .container .option .results .domain-item:last-child {
    padding-bottom: 0;
}

.domain-selection-options .container .option .results .domain-item strong {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #3b4767;
}

.domain-selection-options .container .option .results .domain-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.domain-selection-options .container .option .results .domain-item button {
    width: 131px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background: #5246fa;
    border: none;
}

.sepet-page {
    margin-top: -70px;
    position: relative;
}

.sepet-page .heading {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.sepet-page .heading h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #081131;
    
    margin-bottom: 5px;
}

.sepet-page .heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
}

.sepet-page .sepet-box {
    width: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    margin-bottom: 40px;
}

.period-list .period-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.period-list .period-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.period-list .period-item .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.period-list .period-item .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
}

.period-list .period-item .form-check-input:checked {
    background-color: #5246fa;
    border-color: #5246fa;
}

.period-list .period-item label {
    font-weight: 600;
    font-size: 18px;
    color: #3b4767;
    margin-top: 5px;
}

.period-list .period-item .prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.period-list .period-item .prices .old {
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
    color: #6978a0;
    margin-right: 10px;
}

.period-list .period-item .prices .current {
    font-weight: 600;
    font-size: 24px;
    color: #3b4767;
}

.ops-list .ops-item {
    padding-bottom: 24px;
}

.ops-list .ops-item:last-child {
    padding-bottom: 0;
}

.ops-list .ops-item strong {
    font-weight: 600;
    font-size: 18px;
    color: #3b4767;
}

.ops-list .ops-item select {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding-left: 15px;
}

.sepet-summary button.cont {
    width: 100%;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    background: #5246fa;
    border: none;
}

.sepet-summary .promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
}

.sepet-summary .promo input {
    border: 1px solid rgba(59, 71, 103, 0.2);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 48px;
    text-indent: 10px;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
}

.sepet-summary .promo button {
    width: 48px;
    height: 48px;
    background: #00bc87;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-left: 12px;
    border: none;
}

.sepet-summary ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 24px;
}

.sepet-summary ul li p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #6978a0;
}

.sepet-summary ul li span {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #3b4767;
}

.domain-addons-list .domain-addon {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.domain-addons-list .domain-addon:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.domain-addons-list .domain-addon .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-addons-list .domain-addon .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
}

.domain-addons-list .domain-addon .form-check-input:checked {
    background-color: #5246fa;
    border-color: #5246fa;
}

.domain-addons-list .domain-addon label {
    font-weight: 600;
    font-size: 18px;
    color: #3b4767;
    margin-top: 5px;
}

.domain-addons-list .domain-addon p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
    display: block;
    margin-top: 5px;
}

.domain-addons-list .domain-addon span {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #6978a0;
    margin-bottom: 5px;
    display: block;
    text-align: end;
}

.domain-addons-list .domain-addon b {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #3b4767;
    display: block;
}

.cont-btn {
    width: 265px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    background: #5246fa;
    border: none;
}

.sepet-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.sepet-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.sepet-item .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.sepet-item .info span {
    font-weight: 400;
    color: #6978a0;
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px;
}

.sepet-item .info span b {
    color: #081131;
}

.sepet-item .info p {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #3b4767;
}

.sepet-item .prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sepet-item .prices .old {
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
    color: #6978a0;
    margin-right: 10px;
}

.sepet-item .prices .current {
    font-weight: 600;
    font-size: 24px;
    color: #3b4767;
}

.sepet-item .period {
    padding: 0 40px;
}

.sepet-item .period select {
    width: 138px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding-left: 15px;
}

.sepet-item .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sepet-item .actions button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
    background: #fff;
}

.cont-shop {
    width: 222px;
    height: 56px;
    background: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin: 0 auto;
}

.login-page {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.login-page .login-page-content {
    max-width: 900px;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.login-page .login-page-content .section-title .title {
    font-size: 30px;
}

.login-page .login-page-content .section-title p {
    font-size: 15px;
}

.login-page .login-page-content .form-wrap {
    max-width: 740px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 32px;
}

.login-page .login-page-content .form-wrap .form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-page .login-page-content .form-wrap .form .input-row {
    position: relative;
}

.login-page .login-page-content .form-wrap .form .input-row span {
    position: absolute;
    right: 10px;
    top: 0;
    color: #081131;
    font-size: 20px;
    cursor: pointer;
    height: 56px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-page .login-page-content .form-wrap .form .input-row input {
    background: #ffffff;
    border: 1px solid rgba(59, 71, 103, 0.2);
    max-width: 490px !important;
    width: 490px !important;
    height: 56px;
    min-width: 10px !important;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6978a0;
    text-indent: 20px;
}

.login-page .login-page-content .form-wrap .form .input-row input:focus {
    border-color: #5246fa;
}

.login-page .login-page-content .form-wrap .form .form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.login-page .login-page-content .form-wrap .form .form-bottom a {
    text-decoration: underline;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
}

.login-page .login-page-content .form-wrap .form .enter {
    width: 222px;
    height: 56px;
    background: #f5631a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin: 50px auto 0 auto;
}

.login-page .login-page-content .form-wrap .page-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-page .login-page-content .form-wrap .page-heading > a {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
    background: #fff;
    color: #3b4767;
}

.login-page .login-page-content .form-wrap .page-heading img {
    margin-left: 20px;
    max-width: 180px;
}

.login-page .login-page-content .form-wrap .page-heading p {
    margin-left: auto;
    font-weight: 400;
    font-size: 16px;
    color: #081131;
}

.login-page .login-page-content .form-wrap .page-heading p a {
    color: #f5631a;
    font-weight: 500;
}

.login-page .login-page-image {
    background: url(../images/login-bg.svg) rgba(0, 188, 135, 0.08);
    background-size: cover;
    background-position: bottom right;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 60px;
}

.login-page .login-page-image.kayit {
    background: url(../images/register-bg.svg) rgba(244, 174, 42, 0.08);
}

.login-page .login-page-image img {
}

.table-filters-wrap {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    padding: 24px;
}

.table-filters-wrap .table-options {
    margin-bottom: 32px;
}

.table-filters-wrap .table-options:last-child {
    margin-bottom: 0;
}

.table-filters-wrap .table-options strong {
    font-weight: 500;
    font-size: 16px;
    color: #081131;
}

.table-filters-wrap .table-options div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-filters-wrap .table-options div .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-filters-wrap .table-options div .form-check-input {
    width: 18px;
    height: 17px;
    border-radius: 0;
    margin-right: 7px;
}

.table-filters-wrap .table-options div .form-check-input:checked {
    background-color: #5246fa;
    border-color: #5246fa;
}

.table-filters-wrap .table-options div label {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 2px;
    margin-left: 3px;
}

.table-filters-wrap .table-options .slidecontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.table-filters-wrap .table-options .values {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 13px;
    color: #3b4767;
    margin-top: 10px;
}

.table-filters-wrap .table-options .slider2 {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    margin-top: 20px;
    background: rgba(59, 71, 103, 0.1);
    outline: none;
    -webkit-transition: 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    border: none !important;
}

.table-filters-wrap .table-options .slider2::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #f5631a;
    cursor: pointer;
}

.table-filters-wrap .table-options .slider2::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(270deg, #46bfaa -0.4%, #75f2a0 100.4%);
    cursor: pointer;
}

.server-img {
    margin-bottom: -200px;
}

/* homepage style baslangıc*/

.btn-success {
  background: #f5631a;
  border-color: #f5631a;
}


.bg1 {
  background: #f05c1d;
  background: -webkit-gradient(
    linear,
    0 0,
    0 bottom,
    from(#f9ad0a),
    to(#ea3d1a)
  );
  background: -ms-linear-gradient(#f9ad0a, #ea3d1a);
  background: -webkit-linear-gradient(#f9ad0a, #ea3d1a);
  background: linear-gradient(#f9ad0a, #ea3d1a);
  background: -webkit-linear-gradient(left, #f05c1d, #faa00d);
  background: -o-linear-gradient(right, #f05c1d, #faa00d);
  background: -moz-linear-gradient(right, #f05c1d, #faa00d, #f05c1d);
  background: linear-gradient(to right, #f05c1d, #faa00d);
  -pie-background: linear-gradient(#f9ad0a #ea3d1a);
  color: #fff;
}
.bg-grey {
  background-color: #f1f5f9;
}
.line {
  width: 50px;
  height: 7px;
  border-radius: 50px;
  color: #3a3a3a;
  margin-top: 20px;
  margin-bottom: 20px;
}
.strong-text {
  font-weight: 700;
  color: #0d4ecb;
  background: #dbe7ff;
  display: inline-block;
  padding: 0 8px;
  border-radius: 2px;
}

.heading > .heading-desc,
.heading > .heading-title,
section > .container {
  position: relative;
  z-index: 9;
}
.campaigns-section .c-box {
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: 0.2s ease-in-out;
}
.campaigns-section .c-box,
.campaigns-section .c-box:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.campaigns-section {
  background: #f1f5f9;
  padding: 2rem 0;
}
.campaigns-section .c-box {
  display: flex;
  background: #fff;
  border-radius: 0px;
  color: rgba(0, 0, 0, 0.65);
}
.campaigns-section .c-box:hover {
  color: #000;
  border-color: #f5631a;
  transform: rotate(0deg) scale(1.1);
  z-index: 9;
  position: relative;
}
.campaigns-section .c-box .thumb {
  padding: 1rem 1rem 0;
}
.campaigns-section .c-box .thumb img {
  width: 100%;
  height: auto;
}
.campaigns-section .c-box .text {
  padding: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  text-align: center;
}
.campaigns-section .c-box .text .title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
.campaigns-section .c-box .text .title i {
  color: #ffd43b;
}
.campaigns-section .c-box .text .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
  font-size: 14px;
}

.strong-text {
  font-weight: 700;
  color: #7a592e;
  background: #ffeea9;
  display: inline-block;
  padding: 0 8px;
  border-radius: 2px;
}




/* homepage style bitis*/


/* homepage style2 baslangıc*/

.left {
  float: left;
}
.clear {
  clear: both;
}

.product-promotion {
  padding: 60px 0;
  background: #ffffff;
}
.product-promotion .inner {
  background: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  padding: 35px 0;
}
.product-promotion .inner .img {
  padding-left: 50px;
}
.product-promotion .inner .img img {
  display: block;
}

.box313 {
    background-color: #ffff;
    overflow: hidden;
    width: 100%;  /* Kartın genişliği */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease-in-out;
}

.box313:hover {
    transform: scale(1.08);
}

/* Flex düzeniyle görsel ve metni yerleştirme */
.box-row11 {
    display: flex;
    align-items: center;
    padding: 25px;
}

/* Görselin bulunduğu alan */
.img-container77 {
    width: 35%;  /* Görsele %35 alan ayırıyoruz */
    padding-right: 30px;
}

.img77 {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Metin kısmı */
.content77 {
    width: 65%;  /* Yazıya %65 alan ayırıyoruz */
}

.title999 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #2a3a4a;
}

.description444 {
    font-size: 1.1rem;
    color: #596e7a;
    line-height: 1.5;
}

/* homepage style2 bitis*/




/* homepage style3 baslangıc*/


.sections2 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    /* border-bottom: 10px; */
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}
.sections2 img {
    max-width: 40%;
    margin: 0px 0%;
    padding: 0px 60px 50px 0px;
    object-fit: contain;
}
.contentss2 {
    flex: 1;
        width: 50%;
}
}
.contentss2 h2 {
    color: #FF6600;
}
.contentss2 p {
    margin: 10px 0;
}
.contentss2 a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF6600;
    color: #fff;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
}
.contentss2 a:hover {
    background-color: #E55500;
}
.sections2:nth-child(even) {
    flex-direction: row-reverse; 
}

/* homepage style3bitis*/



@media only screen and (max-width: 1024px) {
    .top-bar .container {
        height: 40px;
    }

    .top-bar .container .top-left {
        display: none;
    }

    .top-bar .container .top-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .top-bar .container .top-right a {
    }

    .top-bar .container .top-right a:nth-last-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .top-bar .container .top-right a:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    header {
        width: 100%;
        height: 72px;
        background-color: #fff;
        border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    }

    header > .container {
        height: 72px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    header > .container .logo {
        margin-right: 15px;
    }

    header > .container nav {
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        width: 100%;
        z-index: 9999;
        padding-top: 30px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

    header > .container nav.show {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    header > .container nav > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    header > .container nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    }

    header > .container nav > ul > li > a {
        width: 100%;
        padding: 0 16px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        color: #3b4767;
        font-size: 15px;
    }

    header > .container nav > ul > li > a img {
        margin-right: 5px;
    }

    header > .container nav > ul > li .mega-menu {
        width: 85%;
        position: static;
        top: 0;
        left: 0;
        z-index: 999;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        pointer-events: all;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
        right: 0;
        display: none;
        height: auto;
        padding: 10px;
        background: #fff;
        border: 0px solid rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    header > .container nav > ul > li .mega-menu .container > .row > div {
        border-right: 0px solid rgba(59, 71, 103, 0.2);
    }

    header > .container nav > ul > li .mega-menu .container > .row > div:last-child {
        border-right: 0;
    }

    header > .container nav > ul > li .mega-menu .subtitle {
        display: block;
        font-weight: 500;
        color: #667093;
        font-size: 14px;
    }

    header > .container nav > ul > li .mega-menu .menu-link {
        width: 85%;
        background: #f7f9fd;
        border-radius: 8px;
        padding: 12px;
        font-size: 12px;
        line-height: 16px;
        min-height: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    header > .container nav > ul > li .mega-menu .menu-link:hover {
        background: #fff;
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
    }

    header > .container nav > ul > li .mega-menu .menu-link:hover .icon {
        color: #fff;
        background: #f5631a
    }


    header > .container nav > ul > li .mega-menu .menu-link .link-info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    header > .container nav > ul > li .mega-menu .menu-link strong {
        display: block;
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        padding-bottom: 8px;
        color: #00104b;
    }

    header > .container nav > ul > li .mega-menu .menu-link p {
        font-weight: 400;
        font-size: 12px;
        line-height: 20px;
        color: #667093;
        display: none;
    }

    header > .container .actions {
        margin-left: auto;
    }

    header > .container .actions a {
        width: 100px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid rgba(59, 71, 103, 0.1);
        color: #081131;
    }

    .main-hero {
        width: 100%;
        height: auto;
        background: #f8faff;
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .main-hero::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30%;
        height: 100%;
        pointer-events: none;
    }

    .main-hero .container {
        position: relative;
        z-index: 4;
    }

    .main-hero .container .hero-text ul {
        -webkit-column-count: 2;
        column-count: 2;
        margin-top: 16px;
    }

    .main-hero .container .hero-text ul li {
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        padding: 8px 0;
    }

    .main-hero .container .hero-text > span {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #081131;
        margin-bottom: 16px;
        display: block;
    }

    .main-hero .container .hero-text h2 {
        color: #081131;
        font-size: 28px;
        display: block;
        margin-bottom: 16px;
        font-weight: bold;
        
    }

    .main-hero .container .hero-text h1 {
        color: #081131;
        font-size: 32px;
        font-weight: bold;
        
    }

    .main-hero .container .hero-text > a {
        width: 185px;
        height: 48px;
        background: #f5631a;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        margin-top: 24px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .main-hero .container .hero-text > a:hover {
        background: #f5631a;
    }

    .main-hero .container .hero-text p {
        color: #6978a0;
        font-size: 16px;
        line-height: 1.6;
    }

    .main-hero .container .hero-text p.small {
        font-weight: 400;
        font-size: 18px;
        line-height: 32px;
    }

    .main-hero .container .hero-text .domain-prices {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .main-hero .container .hero-text .domain-search {
        width: 100%;
        height: 80px;
        background-color: #fff;
        -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
        box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
        margin-top: 20px;
        margin-bottom: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-hero .container .hero-text .domain-search span {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 15px;
    }

    .main-hero .container .hero-text .domain-search input {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: none;
        height: 78px;
        background: none;
        font-size: 18px;
        color: #6978a0;
    }

    .main-hero .container .hero-text .domain-search input::-webkit-input-placeholder {
        color: #6978a0;
    }

    .main-hero .container .hero-text .domain-search input:-ms-input-placeholder {
        color: #6978a0;
    }

    .main-hero .container .hero-text .domain-search input::-ms-input-placeholder {
        color: #6978a0;
    }

    .main-hero .container .hero-text .domain-search input::placeholder {
        color: #6978a0;
    }

    .main-hero .container .hero-text .domain-search button {
        width: 143px;
        height: 48px;
        background: #f5631a;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: none;
        font-size: 16px;
        margin-right: 16px;
    }

    .main-hero .container .hero-text .domain-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-hero .container .hero-text .domain-links a {
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        padding-right: 10px;
    }

    .main-hero .container .hero-text .domain-links a:hover {
        color: #5246fa;
    }

    .main-hero .container .hero-text .domain-links a .fa-chevron-right {
        font-size: 15px;
        margin-left: 5px;
    }

    .main-hero .container .hero-img {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
    }

    .main-hero .container .hero-img img {
        max-width: 95%;
    }

    .packs-slider-wrap {
        padding: 60px 0;
    }

    .packs-slider-wrap .slick-dots {
        bottom: -70px;
    }

    .packs-slider-wrap .slider-item .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .packs-slider-wrap .slider-item .row > div {
        width: 100%;
    }

    .packs-slider-wrap .slider-info span {
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        color: #081131;
        margin-bottom: 5px;
        display: block;
    }

    .packs-slider-wrap .slider-info h4 {
        
        font-style: normal;
        font-weight: 700;
        font-size: 36px;
        line-height: 41px;
        color: #081131;
        margin-bottom: 16px;
    }

    .packs-slider-wrap .slider-info p {
        font-weight: 400;
        font-size: 18px;
        line-height: 32px;
        color: #6978a0;
        margin-bottom: 24px;
    }

    .packs-slider-wrap .slider-info ul {
        -webkit-column-count: 2;
        column-count: 2;
    }

    .packs-slider-wrap .slider-info ul li {
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        padding: 8px 0;
    }

    .packs-slider-wrap .slider-info a {
        width: 185px;
        height: 48px;
        background-color: #3b4767;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        margin-top: 24px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .packs-slider-wrap .slider-info a:hover {
        background: #5246fa;
    }

    .packs-slider-wrap .slider-img {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
    }

    .packs-slider-wrap .slider-img img {
        max-width: 95%;
    }

    .brands {
        padding: 60px 0;
    }

    .brands .brand-item {
        margin: 5px;
    }

    .footer-contact {
        padding: 40px 0;
        background: #f8faff;
    }

    .footer-contact .head {
        margin-bottom: 30px;
    }

    .footer-contact .head span {
        font-weight: 400;
        font-size: 16px;
        display: block;
        color: #081131;
        margin-bottom: 16px;
    }

    .footer-contact .head h3 {
        
        font-style: normal;
        font-weight: 700;
        color: #081131;
        font-size: 30px;
    }

    .footer-contact .f-contact-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }

    footer {
        padding: 40px 0;
        border-top: 1px solid rgba(59, 71, 103, 0.1);
    }

    footer .footer-bottom {
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid rgba(59, 71, 103, 0.1);
    }

    footer .footer-bottom .bottom-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .footer-bottom .bottom-links .links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    footer .footer-bottom .bottom-links .links a {
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        padding: 5px 10px;
    }

    footer .footer-bottom .bottom-links .lang {
        margin-top: 10px;
    }

    footer .footer-bottom .bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    footer .footer-bottom .bottom .footer-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    footer .footer-bottom .bottom .footer-logo p {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        padding-left: 16px;
        margin: 10px 0;
    }

    footer .footer-bottom .bottom .socials {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    footer .footer-bottom .bottom .socials a {
        display: inline-block;
        padding-left: 16px;
    }

    .section-title {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .section-title span {
        font-weight: 400;
        font-size: 15px;
        line-height: 1.5;
        color: #081131;
        text-align: center;
        width: 100%;
        margin-bottom: 50px;
    }

    .section-title .title {
        font-weight: 700;
        font-size: 28px;
        line-height: 1.5;
        color: #081131;
        
        margin: 5px 0;
    }

    .section-title p {
        font-weight: 400;
        font-size: 15px;
        line-height: 1.5;
        color: #6978a0;
        max-width: 855px;
    }

    .section-title span {
        font-weight: 400;
        font-size: 16px;
        color: #081131;
        display: block;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-weight: 700;
        font-size: 36px;
        line-height: 41px;
        color: #081131;
        
        margin-bottom: 16px;
    }

    .section-title h3 {
        font-weight: 700;
        font-size: 32px;
        line-height: 27px;
        color: #081131;
        
        margin-bottom: 16px;
    }

    .performance {
        padding: 60px 0;
    }

    .performance .performance-item {
        width: 100%;
        height: auto;
        min-height: 518px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 32px 24px 0 24px;
        position: relative;
        margin-bottom: 80px;
    }

    .performance .performance-item span {
        width: 64px;
        height: 64px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 32px;
    }

    .performance .performance-item h4 {
        
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 24px;
        color: #081131;
        margin-bottom: 24px;
    }

    .performance .performance-item p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #6978a0;
    }

    .performance .performance-item .img {
        position: absolute;
        bottom: -100px;
    }

    .performance .performance-item .img img {
        max-height: 246px;
    }

    .performance .performance-item.green {
        background: #e1f5f5;
    }

    .performance .performance-item.pink {
        background: #ffeef0;
    }

    .performance .performance-item.yellow {
        background: #faebcc;
    }

    .page-blog {
        padding: 60px 0;
    }

    .page-blog .blog-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .page-blog .blog-text span {
        font-weight: 400;
        font-size: 15px;
        color: #081131;
        display: block;
        margin-bottom: 10px;
    }

    .page-blog .blog-text h3 {
       
        font-style: normal;
        font-weight: 700;
        font-size: 28px;
        line-height: 41px;
        margin-bottom: 16px;
        color: #081131;
    }

    .page-blog .blog-text p {
        font-weight: 400;
        font-size: 15;
        line-height: 1.6;
        color: #6978a0;
    }

    .page-blog .blog-img {
        width: 100%;
        height: 350px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 20px 0;
    }

    .page-blog .blog-img img {
        max-width: 90%;
        max-height: 90%;
        width: 100%;
        height: auto;
    }

    .domain-price-table {
        padding: 60px 0;
        position: relative;
    }

    .domain-price-table .domain-table-head {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .domain-price-table .domain-table-head .table-search {
        border-bottom: 1px solid rgba(59, 71, 103, 0.2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 100%;
        height: 42px;
        width: 100%;
        margin-bottom: 20px;
    }

    .domain-price-table .domain-table-head .table-filters {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .domain-price-table .domain-table-head .table-filters .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .domain-price-table .domain-table-head .table-filters .form-check-input {
        width: 24px;
        height: 24px;
        border-radius: 0;
        margin-right: 10px;
    }

    .domain-price-table .domain-table-head .table-filters .form-check-input:checked {
        background-color: #5246fa;
        border-color: #5246fa;
    }

    .domain-price-table .domain-table-head .table-filters label {
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        margin-top: 5px;
    }

    .domain-price-table .domain-table-body {
        overflow-x: auto;
    }

    .domain-price-table .domain-table-body table {
        width: 100%;
        border-collapse: collapse;
        min-width: 960px;
    }

    .domain-price-table .domain-table-pagination {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 32px;
        display: none;
    }

    .domain-price-table .domain-table-pagination button {
        min-width: 48px;
        height: 48px;
        border: 1px solid rgba(59, 71, 103, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        margin-left: 8px;
        background: #fff;
    }

    .domain-price-table .domain-table-pagination button:hover, .domain-price-table .domain-table-pagination button.active {
        border-color: #5246fa;
        color: #5246fa;
    }

    .domain-price-table .domain-table-pagination button.prev, .domain-price-table .domain-table-pagination button.next {
        padding: 0 26px;
    }

    .banka-item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .banka-item ul {
        margin: 0;
        padding: 0;
    }

    .banka-item ul li {
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .banka-item ul li span {
        min-width: 60px;
        font-weight: 400;
        font-size: 16px;
        color: #081131;
    }

    .banka-item .logo {
        width: 252px;
        height: 175px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
    }

    .vps-table-wrap {
        padding: 60px 0;
        position: relative;
    }

    .vps-table-wrap::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 50%;
        z-index: -1;
        top: 50%;
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
        background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    }

    .vps-table-wrap .vps-table {
        overflow-y: auto;
    }

    .vps-table-wrap .vps-table-head {
        width: 100%;
    }

    .vps-table-wrap .vps-table-body {
        width: 100%;
        margin-top: 16px;
    }

    .server-img {
        max-width: 100%;
    }

    .login-page {
        width: 100%;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .login-page .login-page-content {
        max-width: 100%;
        height: 100vh;
        width: 100%;
        background: #ffffff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .login-page .login-page-content .section-title span {
        margin-bottom: 0;
    }

    .login-page .login-page-content .section-title .title {
        font-size: 20px;
    }

    .login-page .login-page-content .section-title p {
        font-size: 15px;
    }

    .login-page .login-page-content .form-wrap {
        max-width: 100%;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 32px;
    }

    .login-page .login-page-content .form-wrap .form {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .login-page .login-page-content .form-wrap .form .input-row {
        position: relative;
        width: 100% !important;
        min-width: 100% !important;
    }

    .login-page .login-page-content .form-wrap .form .input-row span {
        position: absolute;
        right: 10px;
        top: 0;
        color: #081131;
        font-size: 20px;
        cursor: pointer;
        height: 56px;
        padding: 0 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .login-page .login-page-content .form-wrap .form .input-row input {
        background: #ffffff;
        border: 1px solid rgba(59, 71, 103, 0.2);
        max-width: 100% !important;
        width: 100% !important;
        height: 56px;
        min-width: 10px !important;
        margin-bottom: 16px;
        font-weight: 400;
        font-size: 16px;
        color: #6978a0;
        text-indent: 20px;
    }

    .login-page .login-page-content .form-wrap .form .input-row input:focus {
        border-color: #5246fa;
    }

    .login-page .login-page-content .form-wrap .form .form-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .login-page .login-page-content .form-wrap .form .form-bottom a {
        text-decoration: underline;
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
    }

    .login-page .login-page-content .form-wrap .form .enter {
        width: 222px;
        height: 56px;
        background: #5246fa;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff !important;
        font-weight: 400;
        font-size: 16px;
        border: none;
        margin: 50px auto 20px auto;
    }

    .login-page .login-page-content .form-wrap .page-heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .login-page .login-page-content .form-wrap .page-heading > a {
        width: 48px;
        height: 48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 12px;
        background: #fff;
        color: #3b4767;
        position: absolute;
        left: 0;
    }

    .login-page .login-page-content .form-wrap .page-heading img {
        margin-left: 10%px;
        max-width: 180px;
    }

    .login-page .login-page-content .form-wrap .page-heading p {
        margin-left: auto;
        font-weight: 400;
        font-size: 16px;
        color: #081131;
        margin-top: 70px;
    }

    .login-page .login-page-content .form-wrap .page-heading p a {
        color: #5246fa;
        font-weight: 500;
    }

    .login-page .login-page-image {
        display: none;
    }

    .plan-table-wrap {
        padding: 60px 0;
    }

    .plan-table-wrap .container .table-wrap {
        width: 100%;
        overflow-x: auto;
    }

    .plan-table-wrap .container .table-wrap .table-head {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-right: 1px solid rgba(59, 71, 103, 0.1);
        border-top: 1px solid rgba(59, 71, 103, 0.1);
        border-bottom: 1px solid rgba(59, 71, 103, 0.1);
        padding: 32px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell.popular a {
        background: #f5641b;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell.popular .pattern span.active {
        background: #f5641b;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
        width: 100%;
        padding: 2px 5px;
        position: absolute;
        top: 0;
        font-size: 10px;
        left: 0;
        right: 0;
        color: #081131;
        background: #e6f8eb;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell:first-child {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: start;
        border-top: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .head span {
        font-weight: 400;
        font-size: 16px;
        color: #081131;
        display: block;
        margin-bottom: 12px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .head .title {
        
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 24px;
        color: #081131;
        margin-bottom: 32px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .periods {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.04em;
        color: #6978a0;
        margin-right: 30px;
        padding: 5px;
        background: none;
        border: 2px solid transparent;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .periods button.active, .plan-table-wrap .container .table-wrap .table-head .cell .periods button:hover {
        border-bottom: 2px solid #081131;
        color: #081131;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .pattern {
        width: 28px;
        height: 28px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .pattern span {
        width: 10px;
        height: 10px;
        background: #6978a0;
        opacity: 0.2;
        border-radius: 50%;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .pattern span.active {
        opacity: 1;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:nth-child(3), .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:last-child {
        margin-top: 7px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell strong {
        font-weight: 500;
        font-size: 20px;
        letter-spacing: 0.04em;
        color: #f5641b;
        display: block;
        margin-bottom: 12px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
        text-decoration: line-through !important;
        margin-top: 14px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell a {
        width: 100%;
        height: 48px;
        background: #f5641b;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell a:hover {
        background: #ee5000
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .price b {
        color: #081131;
        font-size: 36px;
        font-weight: 700;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .price div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 10px;
        padding-left: 5px;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .price div small {
        font-weight: 600;
        font-size: 14px;
        color: #081131;
        line-height: 1;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell .price div span {
        font-weight: 400;
        font-size: 14px;
        color: #6978a0;
        line-height: 1.1;
    }

    .plan-table-wrap .container .table-wrap .table-head .cell > p {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #6978a0;
    }

    .plan-table-wrap .container .table-wrap .table-body {
        
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child p {
        color: #081131;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child span {
        color: #f5641b;
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-right: 1px solid rgba(59, 71, 103, 0.1);
        border-top: 1px solid rgba(59, 71, 103, 0.1);
        border-bottom: 1px solid rgba(59, 71, 103, 0.1);
        padding: 18px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell .c-badge {
        width: 100%;
        padding: 2px 5px;
        position: absolute;
        top: 0;
        font-size: 11px;
        left: 0;
        right: 0;
        color: #081131;
        background: rgba(0, 131, 255, 0.1);
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
        font-weight: 400;
        font-size: 18px;
        color: #6978a0;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell span {
        color: #081131;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell:first-child {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        border-left: 1px solid rgba(59, 71, 103, 0.1);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content {
        display: none;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        cursor: pointer;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-right: 1px solid rgba(59, 71, 103, 0.1);
        border-top: 1px solid rgba(59, 71, 103, 0.1);
        border-bottom: 1px solid rgba(59, 71, 103, 0.1);
        padding: 18px 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info {
        position: relative;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info:hover .info-box {
        opacity: 1;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info .info-box {
        position: absolute;
        width: 180px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        top: -100%;
        background: #fff;
        -webkit-box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
        box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
        left: 150%;
        text-align: center;
        padding: 5px;
        opacity: 0;
        pointer-events: none;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
        font-weight: 400;
        font-size: 16px;
        color: #081131;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
        font-weight: 400;
        font-size: 14px;
        color: #6978a0;
    }

    .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell:first-child {
        -webkit-box-flex: 2;
        -ms-flex: 2;
        flex: 2;
        border-left: 1px solid rgba(59, 71, 103, 0.1);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .vds-filters {
        width: 100%;
        padding: 30px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .vds-filters > .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
    }

    .vds-filters > .d-flex .table-options {
        padding: 10px 0;
        margin-left: 0;
    }

    .vds-filters .table-tab-buttons {
        margin: 0;
    }

    .vds-filters .table-options {
        margin-left: 50px;
    }

    .vds-filters .table-options strong {
        font-weight: 500;
        font-size: 16px;
        color: #081131;
    }

    .vds-filters .table-options div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .vds-filters .table-options div .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .vds-filters .table-options div .form-check-input {
        width: 24px;
        height: 24px;
        border-radius: 0;
        margin-right: 10px;
    }

    .vds-filters .table-options div .form-check-input:checked {
        background-color: #5246fa;
        border-color: #5246fa;
    }

    .vds-filters .table-options div label {
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        margin-top: 5px;
    }

    .table-tab-buttons {
        max-width: 100%;
        width: 100%;
        margin: 40px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 16px;
        border: 1px solid rgba(59, 71, 103, 0.2);
    }

    .table-tab-buttons a {
        height: 48px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        background: rgba(105, 120, 160, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .table-tab-buttons a svg, .table-tab-buttons a img {
        margin-right: 5px;
    }

    .table-tab-buttons a:first-child {
        margin-right: 12px;
    }

    .table-tab-buttons a:hover, .table-tab-buttons a.active {
        background: #081131;
        color: #fff;
    }

    .table-tab-buttons a:hover svg path, .table-tab-buttons a.active svg path {
        fill: #fff !important;
    }

    .ready-themes {
        padding: 80px 0;
    }

    .ready-themes .tab-buttons {
        margin: 40px auto;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 16px;
        border: 1px solid rgba(59, 71, 103, 0.2);
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ready-themes .tab-buttons button {
        min-width: 123px;
        border: none;
        height: 48px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        background: rgba(105, 120, 160, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: 400;
        font-size: 14px;
        color: #3b4767;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        margin-left: 0;
        margin: 5px;
    }

    .ready-themes .tab-buttons button svg, .ready-themes .tab-buttons button img {
        margin-right: 5px;
    }

    .ready-themes .tab-buttons button:first-child {
        margin-left: 5px;
    }

    .ready-themes .tab-buttons button:hover, .ready-themes .tab-buttons button.active {
        background: #081131;
        color: #fff;
    }

    .ready-themes .tab-buttons button:hover svg path, .ready-themes .tab-buttons button.active svg path {
        fill: #fff !important;
    }

    .ready-themes .themes-slider {
        width: 100%;
        margin-top: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .ready-themes .themes-slider .item {
        padding: 20px;
    }

    .ready-themes .themes-slider .item img {
        max-width: 100%;
        height: auto;
    }

    .domain-selection-options {
        margin-top: -70px;
        position: relative;
    }

    .domain-selection-options .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .domain-selection-options .container .option {
        max-width: 816px;
        width: 100%;
        padding: 32px;
        background: #fff;
        border: 1px solid rgba(59, 71, 103, 0.1);
        margin-bottom: 40px;
    }

    .domain-selection-options .container .option .heading {
        margin-bottom: 16px;
    }

    .domain-selection-options .container .option .heading h4 {
      
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 23px;
        color: #081131;
        margin-bottom: 5px;
    }

    .domain-selection-options .container .option .heading p {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: #6978a0;
    }

    .domain-selection-options .container .option .domain-input-group {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .domain-selection-options .container .option .domain-input-group .input {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        min-height: 56px;
        background: #fff;
        border: 1px solid rgba(59, 71, 103, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .domain-selection-options .container .option .domain-input-group .input input {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border: none;
        background: #ffff;
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
    }

    .domain-selection-options .container .option .domain-input-group .input img {
        max-width: 20px;
        margin: 0 10px;
    }

    .domain-selection-options .container .option .domain-input-group .select {
        width: 100%;
        margin: 10px 0;
    }

    .domain-selection-options .container .option .domain-input-group .select select {
        width: 100%;
        height: 56px;
        background: #fff;
        border: 1px solid rgba(59, 71, 103, 0.1);
        font-weight: 400;
        font-size: 16px;
    }

    .domain-selection-options .container .option .domain-input-group button {
        width: 100%;
        height: 56px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        background: #3b4767;
        border: none;
    }

    .domain-selection-options .container .option .results {
        border-top: 1px solid rgba(59, 71, 103, 0.2);
        margin-top: 24px;
        padding-top: 24px;
    }

    .domain-selection-options .container .option .results .success-text {
   
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 23px;
        color: #00bc87;
        margin-bottom: 5px;
    }

    .domain-selection-options .container .option .results .domain-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 0;
    }

    .domain-selection-options .container .option .results .domain-item:last-child {
        padding-bottom: 0;
    }

    .domain-selection-options .container .option .results .domain-item strong {
        display: block;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #3b4767;
    }

    .domain-selection-options .container .option .results .domain-item span {
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: #6978a0;
    }

    .domain-selection-options .container .option .results .domain-item button {
        width: 131px;
        height: 56px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        background: #5246fa;
        border: none;
    }

    .sepet-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 24px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 24px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid rgba(59, 71, 103, 0.2);
    }

    .sepet-item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .sepet-item .info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .sepet-item .info span {
        font-weight: 400;
        color: #6978a0;
        font-size: 16px;
        line-height: 28px;
        margin-top: 5px;
    }

    .sepet-item .info span b {
        color: #081131;
    }

    .sepet-item .info p {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        color: #3b4767;
    }

    .sepet-item .prices {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .sepet-item .prices .old {
        font-weight: 400;
        font-size: 12px;
        text-decoration: line-through;
        color: #6978a0;
        margin-right: 10px;
    }

    .sepet-item .prices .current {
        font-weight: 600;
        font-size: 24px;
        color: #3b4767;
    }

    .sepet-item .period {
        padding: 0 40px;
    }

    .sepet-item .period select {
        width: 138px;
        height: 48px;
        border: 1px solid rgba(59, 71, 103, 0.2);
        font-weight: 400;
        font-size: 16px;
        color: #3b4767;
        padding-left: 15px;
    }

    .sepet-item .actions {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sepet-item .actions button {
        width: 48px;
        height: 48px;
        border: 1px solid rgba(59, 71, 103, 0.2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 12px;
        background: #fff;
    }

}

.bghd {
    background-image: linear-gradient(175deg,#3b2fd8 48%,#160aac 100%);
}

.bbaslikk {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
}

.bbaslikk2 {
    font-size: 42px;
    color:#5246fa;
    margin-bottom: 15px;
    line-height: 1;
    text-align: left;
}

.bbmetin {
    font-size: 16px;
    color: #fff!important;
}

.bbortala {
    align-self: center;
    max-width:40%;
}

.bbortala2 {
    align-self: center;
}

.bbortala2 {
    align-self: center;
    text-align: center;
}

.bannerimg {
    width:465px;
}

.butonliste > a > li {
    display:inline-block;
    
}

.bbliste {
    background: #ffb800;
    color: #0a0a0a;
    padding: 10px 30px;
    margin-right: 10px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 15px;
}

.bbliste2 {
    border: 1px solid #fff;
    color: #ffffff;
    padding: 9px 30px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 15px;
}

.bgimg {
    background-image:url("https://hostingsunucum.com/wp-content/uploads/2023/03/section-bg.png");
    background-size: cover;
    background-position: center;
}

.bgimg2 {
    background-image: linear-gradient(150deg, #3B2FD8 36%, #160AAC 100%);
    background-size: cover;
    background-position: bottom;
}

.bilgialan {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 24px 1px rgba(0,0,0,.1);
    margin: 20px 20px;
    display: flex;
}

.bilgialan > div > h4 {
    text-align: left;
}

.bilgialan > div > p {
    text-align: left;
}

.bilgialan2 {
    padding: 7px 0px;
    margin: 0px 0px;
    display: flex;
}

.babfayir {
    margin-left: 20px;
}

.babfayir > h4 {
    color: #fff;
    font-weight: 500;
}

.babfayir > p {
    color: #FFFFFFB3;
}

.bfbg {
    background-color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 38px;
}

figure {
    padding-right: 25px;
}

.hdblog {
    padding: 30px;
    background-color: #fff;
    margin: 20px 0px;
    border: 1px solid rgba(59, 71, 103, 0.1);
}

.blogbaslik {
    font-size:20px;
    font-weight: 600;
}

.supplement-section .supplement-element-middle.supplement-element-grey {
    background-color: #ededed
}

.supplement-section .supplement-element-middle.supplement-element-light-grey {
    background-color: #f5f5f5
}

.supplement-section .supplement-element-middle.supplement-element-red {
    background-color: #d50c2d
}

.supplement-section .supplement-element-middle.supplement-element-black {
    background-color: #383838
}

.supplement-section .supplement-element-right {
    border-bottom: 11px solid transparent;
    border-left: 14px solid #fff;
    border-top: 11px solid transparent;
    right: 0
}

.supplement-section .supplement-element-right.supplement-element-grey {
    border-left: 14px solid #ededed
}

.supplement-section .supplement-element-right.supplement-element-light-grey {
    border-left: 14px solid #f5f5f5
}

.supplement-section .supplement-element-right.supplement-element-red {
    border-left: 14px solid #d50c2d
}

.supplement-section .supplement-element-right.supplement-element-black {
    border-left: 14px solid #383838
}

     .hero {
                background: #fff;
                border-bottom: 1px solid #eee;
                box-shadow: rgba(17,17,26,.05) 0 4px 16px,rgba(17,17,26,.05) 0 8px 32px;
                min-height: 50px;
            }

            .hero ul {
                display: flex;
                justify-content: space-between;
                flex-wrap: nowrap;
                height: 50px;
            }

            .hero ul li {
                border-right: 1px solid #dee2e6;
                flex: 1
            }

            .hero ul li:last-child {
                border-right: 0
            }

                       .hero ul li a {
                display: block;
                padding: .99rem .2rem .55rem;
                text-align: center;
                color: #3d3d3d;
                font-size: 14px;
                border-bottom: 3px solid transparent;
                transition: .2s;
                min-width: 120px;
                height: 50px;
            }
            .hero ul li a:hover {
                color: #3d3d3d;
                border-bottom-color: #f5631a
            }

            .hero ul li.active a {
                color: #3d3d3d;
                font-weight: 700;
                border-bottom-color: #f5631a;
            }
.popular-campaign {
    position: relative;
    padding: 40px 0 20px;
    background: #fff
}

.active-campaign {
    background: #f6f6f6;
    padding: 60px 0
}

.active-campaign h2,.active-campaign h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.campaign {
    position: relative;
    margin-bottom: 30px;
    min-height: 275px;
    border: 1px solid #e1e1e1
}

.campaign .image-content {
    height: 187px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
    position: relative;
    display: block
}

.campaign .img-responsive {
    width: 100%;
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign .desc-content {
    padding: 20px;
    display: flex;
    background: #fff;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 3px 3px;
    border-top: 1px solid #e1e1e1;
    min-height: 85px
}

.campaign .desc-content span {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
    padding-right: 10px
}

.campaign .timer-label {
    background: #082235;
    font-size: 12px;
    padding: 0 10px;
    font-weight: 500;
    height: 19px;
    line-height: 19px
}

.campaign .timer-label:before,.ribbon1:after {
    height: 0;
    position: absolute;
    content: "";
    width: 0
}

.campaign .timer-label:before {
    border-style: solid;
    border-width: 0 5px 5px 0;
    border-color: #fff0 #333 #fff0 #fff0;
    bottom: -5px;
    left: 0
}

.ribbon1 {
    position: absolute;
    top: -6.1px;
    right: 10px;
    z-index: 1
}

.ribbon1:after {
    border-left: 45px solid #fff0;
    border-right: 45px solid #fff0;
    border-top: 10px solid #f5631a
}

.ribbon1 span {
    position: relative;
    display: block;
    text-align: center;
    background: #f5631a;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    padding: 12px 8px 10px;
    border-top-right-radius: 8px;
    width: 90px
}

.ribbon1 span:after,.ribbon1 span:before {
    position: absolute;
    content: ""
}

.ribbon1 span:before {
    height: 6px;
    width: 6px;
    left: -6px;
    top: 0;
    background: #bf5723
}

.ribbon1 span:after {
    height: 6px;
    width: 8px;
    left: -8px;
    top: 0;
    border-radius: 8px 8px 0 0;
    background: #bf5723
}

.campaign-filter {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px
}

.campaign-filter ul {
    padding: 0 15px;
    margin: 0;
    list-style: none
}

.campaign-filter ul li {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #444;
    line-height: 43px;
    list-style: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    height: 45px
}

.campaign-filter ul li label {
    cursor: pointer
}

.campaign-filter ul li input {
    float: left;
    margin-right: 8px;
    margin-top: 11px
}

.campaign-filter ul li span {
    float: left
}

.campaign-filter ul li:last-child {
    border-bottom: 0
}

.campaign-filter .btn {
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    padding: 12px 19px
}

.camp-detail .time,.camp-detail .time .timer-label {
    font-weight: 800;
    padding: 20px;
    color: #fff;
    text-align: center
}

.carousel-newsletter {
    position: absolute;
    right: 60px;
    top: 30px;
    width: 350px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    background: url(../img/campain/promo_bg.jpg) left center/cover no-repeat #512da8
}

.campaign-info,.campaign-related {
    padding: 50px 0
}

.campaign-detail-banner,.campaign-related {
    background: #f6f6f6;
    position: relative
}

.carousel-newsletter h3 {
    font-size: 20px;
    margin: 0 0 5px
}

.carousel-newsletter p {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 20px
}

.campaign-newsletter img,.carousel-newsletter img {
    height: 54px;
    margin: 0 auto 10px;
    display: block
}

.carousel-newsletter .form-control {
    border: 0;
    height: 52px;
    font-size: 16px;
    margin-bottom: 5px
}

.carousel-newsletter .btn {
    border: 0;
    height: 52px;
    margin-bottom: 0;
    font-size: 16px
}

.campaign-related h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px
}

.camp-detail {
    position: relative;
    background: #fff;
    text-align: center
}

.camp-detail .time {
    position: relative;
    background: linear-gradient(90deg,#0083ff 0,#132e49 100%);
    font-size: 22px
}

.camp-detail .time:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: #0000 #0083ff;
    display: block;
    width: 0;
    z-index: 1;
    left: -12px;
    top: 21px
}

.camp-detail .time .timer-label {
    position: relative;
    font-size: 20px
}

.camp-detail .p-price {
    padding: 60px 20px 0
}

.camp-detail .p-price .badge {
    margin-bottom: 20px;
    padding: 6px 20px 4px;
    border-radius: 20px;
    font-size: 16px
}

.camp-detail .p-price .old {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    color: #242736;
    line-height: 1
}

.camp-detail .p-price .old span {
    position: relative;
    display: inline-block;
    color: #9e9e9e
}

.camp-detail .p-price .price-tag,.camp-detail .p-price .price-tag span {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal
}

.camp-detail .p-price .old span:after {
    display: block;
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    right: 0;
    top: 10px;
    background: red;
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg)
}

.camp-detail .p-price .price-tag {
    padding-left: 15px;
    font-size: 86px;
    line-height: 1;
    font-weight: 800;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -ms-flex-flow: row;
    flex-flow: row;
    justify-content: center
}


@media only screen and (max-width: 700px) {
    .bannerimg {
    width:365px;
}
.bbortala {
    max-width: 95%!important;
    width:95%;
}
.bbaslikk {
    font-size: 28px;
}
.bbaslikk2 {
    font-size: 28px;
}
.bfbg {
    background-color: #fff;
    padding: 0px 9px;
    border-radius: 50px;
    font-size: 38px;
    max-height: 54px;
}
}

/* Anasayfa Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.plan-table-wrap .container .table-wrap .table-head .cell > p {
    margin: auto;
}

.footer-btk-text {
    color: #fff;
    margin-top: 3%;
    width: 50%;
}

    @media only screen and (max-width: 1440px) {
        
    }
    
    @media only s creen and (max-width: 1280px) {
            .plan-table-wrap .container .table-wrap .table-body {
        min-width: 920px;
    }
        .table-filters-wrap .table-options div label {
    font-size: 15px;
        }
        .plan-table-wrap .container .table-wrap .table-head .cell .price b {
    font-size: 24px;
    }

    }
    
    
    @media only screen and (max-width: 1280px) and (max-height: 828px) {
 

    header > .container nav > ul > li > a {
    padding: 4px 17px;
    }

    .main-hero .container .hero-img img{
    margin-left: -10%;
    }
    .packs-wrapper .pack-item .c-badge {
        padding: 13px;
    }

}

    
    
    @media only screen and (max-width:1199px) { 
        
            .plan-table-wrap .container .table-wrap .table-head .cell .price b {
    font-size: 21px;
    }
   }

@media only screen and (max-width: 1024px) {
           .plan-table-wrap .container .table-wrap .table-body {
        min-width: 920px;
    }
    
   
    .plan-table-wrap .container .table-wrap .table-head {
        min-width: 920px;
    }
    
    .table-filters-wrap .table-options div label {
    font-size: 13px;
    }
    .vps-table-wrap .vps-table-item .cell strong {
        font-size: 15px;
    }
    .vps-table-wrap .vps-table-item .cell > span {
        font-size: 9px;
    }
    .table-filters-wrap {
        padding: 10px;
    }
    .vps-table-wrap .vps-table-item {
        padding: 18px 23px;
    }

    .vps-table-wrap .vps-table-head {
        min-width: 690px;
    }
        .vps-table-wrap .vps-table-body {
        min-width: 690px;
    }
    .table-filters-wrap .table-options div .form-check-input {
    width: 13px;
    margin-right: 3px;
    }
    .product-promotion .inner .text p {
    font-size: 13px;
    line-height: 22px;
    margin: 18px 0;
  }
  .product-promotion .inner .text .box .inner {
    padding: 7px;
  }
  .product-promotion .inner .text .box .inner .icon {
    margin-right: 10px;
  }
  .product-promotion .inner .text .box .inner span {
    font-size: 11px;
  }
  .product-promotion .inner .text .box .inner span strong {
    font-size: 11px;
  }
  .main-hero:after {
    background: #ffffff00 !important;
    }
}
@media screen and (max-width: 996px) {
  .product-promotion .inner .text {
    padding: 30px 30px 0 30px;
  }
}




@media screen and (max-width: 996px) {
  .product-promotion .inner .img {
    padding: 0 30px;
  }
  .product-promotion .inner .img img {
    margin: auto;
  }
}
.product-promotion .inner .text {
  padding-right: 93px;
  display: flex;
  align-items: center;
}
.product-promotion .inner .text .title .left .bg {
  height: 30px;
  background: #55c7ee;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  padding: 0 10px;
  line-height: 30px;
}
.product-promotion .inner .text .title .left .bg span {
  font-weight: 600;
}
.product-promotion .inner .text .title .left h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #232c51;
}
.product-promotion .inner .text .title a {
  height: 56px;
  border: 2px dashed #5eaa59;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  display: block;
  float: right;
  padding: 0 25px;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 52px;
  color: #5eaa59;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-promotion .inner .text .title a:hover {
  background: #5eaa59;
  border-style: dashed;
  color: #fff;
}
.product-promotion .inner .text p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  margin: 28px 0;
}
.product-promotion .inner .text .box .inner {
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  padding: 13px;
  overflow: hidden;
}
.product-promotion .inner .text .box .inner .icon {
  width: 30px;
  height: 30px;
  background: #f3f7fb;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  margin-right: 20px;
}
.product-promotion .inner .text .box .inner span {
  display: block;
  float: left;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #5b5574;
}
.product-promotion .inner .text .box .inner span strong {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  color: #5b5574;
  display: block;
}


@media only screen and (max-width: 990px) {
 .plan-table-wrap .container .table-wrap .table-body {
        min-width: 690px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .head span {
        font-size: 12px;
    }
    
        .plan-table-wrap .container .table-wrap .table-head .cell .head .title {
        font-size: 20px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
        font-size: 13px;
    }
        .plan-table-wrap .container .table-wrap .table-head {
        min-width: 690px;
        }
        .plan-table-wrap .container .table-wrap .table-head .cell strong {
        font-size: 17px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
        font-size: 7px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell > p {
        font-size: 11px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price b {
        font-size: 17px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price div small {
        font-size: 12px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price div span {
        font-size: 12px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell a {
        height: 39px;
        font-size: 11px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
        font-size: 15px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
        font-size: 14px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
        font-size: 12px;
    }
    .table-filters-wrap {
    width: 40%;
    }
  .main-hero.red::after {
    background: #ffffff00;
    }
    
    .hero ul li a {
    min-width: 133px;
    }
    
}

    @media only screen and (max-width: 768px) {
    
        .img-container77 {
         width: 100%;
         }
             .content77 {
        width: 100%;
            }
                .hero ul li a {
        min-width: 120px;
        font-size: 12px;
    }
    }

@media only screen and (max-width: 767px) {
       
    .hero ul li a {
        min-width: 100px;
        font-size: 10px;
    }
    .simpleButton {
    font-size: 10px;
}


    .plan-table-wrap .container .table-wrap .table-head {
        min-width: 510px;
    }
    .plan-table-wrap .container .table-wrap .table-body {
        min-width: 510px;
    }

 .plan-table-wrap .container .table-wrap .table-head .cell .head span {
        font-size: 13px;
    }
    
        .plan-table-wrap .container .table-wrap .table-head .cell {
        padding: 34px 11px;
    }
    
        .plan-table-wrap .container .table-wrap .table-head .cell .head .title {
        font-size: 11px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
        font-size: 16px;
        margin-right: 0px;
        padding: 0px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
        font-size: 11px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell strong {
        font-size: 14px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell > p {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price b {
        font-size: 12px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price div small {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price div span {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell a {
        height: 33px;
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
        padding: 15px 12px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
        padding: 10px 12px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
        font-size: 5px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell > p {
        font-size: 8px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
        font-size: 8px;
    }
       
    .table-filters-wrap {
        width: 60%;
    }
        header > .container nav > ul > li .mega-menu .menu-link {
        width: 100%;
    }
    .footerLogo img {
    width: 25%;
    }
    
        .domain-price-table .domain-table-body table {
        min-width: 510px;
    }

    .domain-price-table .domain-table-body table thead tr th {
        font-size: 12px;
    }
    
    .domain-price-table .domain-table-body table tbody tr td {
    font-size: 12px;
    }
    .contentss2 h2 {
        font-size: 100%;
        align-content: center;
        text-align: center;
    }
    
    .contentss2 p{
        font-size: 80%;
        padding: 0px 25px 0 0px;
                text-align: center;
    }
    
     .contentss2 a {
        padding: 7px 7px;
        font-weight: 100;
        font-size: 65%;
        text-align: center;
        align-content: center;
        display: block;
        margin: 5%;
    }
    
    .sections2 img {
        padding: 0px 18px 0px 0px;
    }
        .vps-table-wrap .vps-table-item {
          overflow-x: hidden;
}

}

@media only screen and (max-width: 697px) { 
 
     .main-hero .container .hero-text .domain-search button {
        font-size: 13px;
    }
    
}


@media screen and (max-width: 667px) {
  .product-promotion {
    padding-left: 15px;
    padding-right: 15px;
  }
  .product-promotion .inner {
    padding: 10px;
  }
  .product-promotion .inner .text .title .left {
    text-align: center;
  }
  .product-promotion .inner .text .title a {
    display: block;
    float: left;
    width: 100%;
    height: 45px;
    margin: auto;
    line-height: 41px;
    text-align: center;
  }
  .product-promotion .inner .text .box {
    margin-bottom: 15px;
  }
      .hero ul li a {
        min-width: 95px;
    }
}


@media only screen and (min-width: 481px) {
  .img-container77 {
    display: block; 
  }
  .hero {
    display: block;
}
 
 
}


@media only screen and (max-width: 480px) {
    .main-hero .container .hero-text .domain-search button{
    font-size: 13px;
    margin-left: -15px;
    padding: 20px 25px;
    }
    .plan-table-wrap .container .table-wrap .table-body {
            min-width: 390px;
        }      
            .plan-table-wrap .container .table-wrap .table-head {
            min-width: 390px;
        }
               
       .plan-table-wrap .container .table-wrap .table-head .cell {
        padding: 17px 9px;
    }
       
        .table-filters-wrap .table-options div label {
        font-size: 11px;
    }
        .domain-price-table .domain-table-body table {
        min-width: 390px;
    }
    
          .img-container77 {
        display: none;
      }
       .hero {
    display: none;
}
      
      .content77 {
        width: 100%;
    }
            .sections2 img {
            max-width: 49%;
        }
             .sections2 img {
        display: none;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price b {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell a {
        font-size: 8px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
        padding: 15px 15px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
        padding: 10px 16px;
    }
       .hero ul li a {
        min-width: 75px;
    }
        .footerLogo img {
        width: 130%;
    }
}
    

    
@media only screen and (max-width: 420px) {

    .main-hero .container .hero-text .domain-search button {
        font-size: 11px;
        margin-left: 12px;
    }
    
}

@media only screen and (max-width: 390px) {

        .main-hero .container .hero-text .domain-search button {
        font-size: 10px;
        margin-left: -38px;
        padding: 20px 19px;
    }
        .contentss2 h2 {
        font-size: 85%;
    }
        .contentss2 p {
        font-size: 61%;
    }
}


@media only screen and (max-width: 375px) {
        
     .main-hero .container .hero-text .domain-search button{
     margin-left: -55px;
     padding: 20px 5px;

     }
         .plan-table-wrap .container .table-wrap .table-body {
        min-width: 340px;
    }
        .plan-table-wrap .container .table-wrap .table-head {
        min-width: 340px;
    }
            .plan-table-wrap .container .table-wrap .table-head .cell .head span {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .head .title {
        font-size: 8px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
        font-size: 9px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell strong {
        font-size: 10px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell > p {
        font-size: 8px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
        font-size: 7px;
    }

        .plan-table-wrap .container .table-wrap .table-head .cell .price div small {
        font-size: 7px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell .price div span {
        font-size: 7px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell a {
        height: 29px;
        font-size: 8px;
        width: 85%;
    }
       .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
        padding: 8px 10px;
    }
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
        padding: 15px 9px;
    }
    
        .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
        font-size: 9px;
    }
        .plan-table-wrap .container .table-wrap .table-head .cell {
        padding: 17px 5px;
    }
      .table-filters-wrap {
        width: 80%;
    }
       
    .footerLogo img {
    width: 25%;
    } 
        .domain-price-table .domain-table-body table thead tr th {
        font-size: 10px;
    }
        .domain-price-table .domain-table-body table tbody tr td {
        font-size: 11px;
    }
        .domain-price-table .domain-table-body table {
        min-width: 340px;
    }
        .performance .performance-item .img img {
        max-height: 216px;
    }
}


.custom-supplement-section {
    display: flex;
    height: 22px;
    position: relative;
    top: -11px;
    z-index: 98;
    fill: #f5f5f5
}

.custom-supplement-section-white {
    fill: #fff
}

.custom-supplement-section-light-grey {
    fill: #f5f5f5
}

.custom-supplement-section-grey {
    fill: #ededed
}

.custom-supplement-section-hafifmavi {
    fill: #f4f7fc
}

.custom-supplement-section-black {
    fill: #383838
}

.custom-supplement-section-red {
    fill: #d50c2d
}
.custom-supplement-section-anasayfa {
    fill: #f9fbfc
}
.custom-supplement-section-footer {
    fill: #f0f5fb
}

.custom-supplement-section .supplement-element-left,.custom-supplement-section .supplement-element-right {
    fill: unset!important;
    flex-shrink: 0;
    width: 11px
}

.custom-supplement-section .supplement-element-middle {
    fill: unset!important;
    flex-grow: 1
}

.supplement-section {
    position: relative;
    top: -11px;
    z-index: 98
}

.supplement-section h4 {
    color: #fff;
   
    font-weight: 500;
    margin: 8px;
    text-transform: uppercase
}

.supplement-section .supplement-element-left,.supplement-section .supplement-element-middle,.supplement-section .supplement-element-right {
    display: inline-block;
    position: absolute
}

.supplement-section .supplement-element-left,.supplement-section .supplement-element-right {
    height: 0;
    width: 2%
}

.supplement-section .supplement-element-left {
    border-bottom: 11px solid transparent;
    border-right: 14px solid #fff;
    border-top: 11px solid transparent
}

.supplement-section .supplement-element-left.supplement-element-grey {
    border-right: 14px solid #ededed
}

.supplement-section .supplement-element-left.supplement-element-light-grey {
    border-right: 14px solid #f5f5f5
}

.supplement-section .supplement-element-left.supplement-element-red {
    border-right: 14px solid #d50c2d
}

.supplement-section .supplement-element-left.supplement-element-black {
    border-right: 14px solid #383838
}

.supplement-section .supplement-element-middle {
    background-color: #fff;
    height: 22px;
    left: 2%;
    width: 96%
}

@media (max-width: 444px) {
    .supplement-section .supplement-element-middle {
        left:3.5%;
        width: 93%
    }
}

@media (min-width: 445px) and (max-width:513px) {
    .supplement-section .supplement-element-middle {
        left:3%;
        width: 94%
    }
}

@media (min-width: 514px) and (max-width:609px) {
    .supplement-section .supplement-element-middle {
        left:2.5%;
        width: 95%
    }
}
#header .header-top ul li a i {
  margin-right: 5px;
}


.ow-price-campaign {
    background-color: #58b15a;
    color: #ffffff;
    padding: 7px 6px 2px;
    border-radius: 6px 6px 0 0;
    /* font-size: 10px; */
    text-align: center;
    font-weight: 400;
    position: absolute;
    right: 5%;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    bottom: 100%;
}

.ow-price-campaign.right {
    right: -14px
}

.ow-price-campaign .ow-pc-top {
    line-height: 10px
}

.ow-price-campaign .ow-pc-title {
    font-size: 12px;
    font-weight: 600
}

.ow-price-campaign .ow-pc-alt {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    background-color: #50bf8a;
    width: calc(100% + 3px);
    border-radius: 4px;
    text-transform: uppercase
}

header > .container nav > ul > li .mega-menu .menu-link1 {
    width: 100%;
    background: #f7f9fd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

header > .container nav > ul > li .mega-menu .menu-link1:hover {
    background: #f7f9fd;
    -webkit-box-shadow: 0 0 8px rgb(58 73 255 / 20%);
    box-shadow: 0 0 8px rgb(58 73 255 / 20%);
}

header > .container nav > ul > li .mega-menu .menu-link1:hover .icon {
    color: #fff;
 background: #de0000  !important;}







header > .container nav > ul > li .mega-menu .menu-link1 .icon {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 26px;
    color: #667093;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 7px;
}

header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

header > .container nav > ul > li .mega-menu .menu-link1 strong {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 8px;
    color: #00104b;
}



    header > .container nav > ul > li .mega-menu .menu-link1 {
        width: 85%;
        background: #f7f9fd;
        border-radius: 8px;
        padding: 12px;
        font-size: 12px;
        line-height: 16px;
        min-height: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    header > .container nav > ul > li .mega-menu .menu-link1:hover {
        background: #fff;
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
    }

    header > .container nav > ul > li .mega-menu .menu-link1:hover .icon {
        color: #fff;
        background: #f5631a
    }


    header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    header > .container nav > ul > li .mega-menu .menu-link1 strong {
        display: block;
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        padding-bottom: 8px;
        color: #00104b;
    }


	        header > .container nav > ul > li .mega-menu .menu-link1 {
        width: 100%;
    }

header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }



/* */

header > .container nav > ul > li .mega-menu .menu-link01 {
    width: 100%;
    background: #f7f9fd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

header > .container nav > ul > li .mega-menu .menu-link01:hover {
    background: #f7f9fd;
    -webkit-box-shadow: 0 0 8px rgb(58 73 255 / 20%);
    box-shadow: 0 0 8px rgb(58 73 255 / 20%);
}

header > .container nav > ul > li .mega-menu .menu-link01:hover .icon {
    color: #fff;
 background: linear-gradient(90deg, 
 #5e5e5e 20%, 
 #dd0000 33%, 
 #ffce00 70%) !important;
}
header > .container nav > ul > li .mega-menu .menu-link01 .icon {
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 26px;
    color: #667093;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 7px;
}



header > .container nav > ul > li .mega-menu .menu-link01 strong {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 8px;
    color: #00104b;
}



    header > .container nav > ul > li .mega-menu .menu-link01 {
        width: 85%;
        background: #f7f9fd;
        border-radius: 8px;
        padding: 12px;
        font-size: 12px;
        line-height: 16px;
        min-height: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    header > .container nav > ul > li .mega-menu .menu-link01:hover {
        background: #fff;
        -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
    }

    header > .container nav > ul > li .mega-menu .menu-link01:hover .icon {
        color: #fff;
        background: #f5631a
    }


    header > .container nav > ul > li .mega-menu .menu-link01 .link-info1 {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    header > .container nav > ul > li .mega-menu .menu-link01 strong {
        display: block;
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        padding-bottom: 8px;
        color: #00104b;
    }


	        header > .container nav > ul > li .mega-menu .menu-link01 {
        width: 100%;
    }

header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    header > .container nav > ul > li .mega-menu .menu-link1 .link-info1 {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    
   .menu-link01 .link-info1 p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #667093;
    }
    
     .menu-link1 .link-info1 p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #667093;
    }
