﻿@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";
body {
    margin: 0;
    padding: 0;
    color: #231f20;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    background-color: #fff;
    overflow-x: hidden
}

/* Slider stilovi */
.promo-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
}

.promo-slider-wrapper {
    display: flex;
    /* širina se prilagođava sadržaju, nema fiksnih 200% */
    will-change: transform;
}

.promo-slider-wrapper.animated {
    transition: transform 0.5s ease-in-out;
}

.promo-slide {
    /* svaki slajd je punu širinu vidljivog područja */
    flex: 0 0 100%;
    position: relative;
}

.promo-slide .left-contant {
    position: relative;
    z-index: 10;
}

/* Navigacione strelice */
.slider-nav-container {
    position: absolute;
    top: 85px;
    right: 2px;
    display: flex;
    gap: 5px;
    z-index: 25;
}

.slider-nav {
    width: 25px;
    height: 25px;
    background: rgb(255 255 255 / 30%);
    color: #2ba3eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 12px;
}

.slider-nav:hover {
    background: #fff;
    transform: scale(1.1);
}


/* MODAL */

 /* Demo list */
    ul { list-style: none; padding: 0; margin: 0; }

    .badge {
      font-size: 12px; font-weight: 700; color: var(--text);
      background: linear-gradient(180deg, #ef4444, #dc2626);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 999px; padding: 2px 8px; letter-spacing: .2px; white-space: nowrap;
      text-shadow: 0 1px 0 rgba(0,0,0,.25);
    }

    /* Modal base */
    .modal-overlay {
      position: fixed; inset: 0; background: var(--overlay);
      backdrop-filter: blur(4px);
      opacity: 0; pointer-events: none; transition: opacity .18s ease-out;
    }
    .modal {
      position: fixed; inset: 0; display: grid; place-items: center; padding: 24px;
      opacity: 0; pointer-events: none; z-index: 50;
    }
    .modal.open { opacity: 1; pointer-events: auto; }
    .modal.open .modal-overlay { opacity: 1; pointer-events: auto; }

    .modal-card {
      width: min(70%, 90%);
      background: linear-gradient(360deg, #ffffff, #ffffffde) !important;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.04);
      transform: translateY(8px) scale(.98);
      transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease;
      outline: none;
    }
    .modal.open .modal-card { transform: translateY(0) scale(1); }

    .modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .title {
      display: flex; align-items: center; gap: 12px; margin: 0; font-size: 18px;
    }
    .title .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brand); box-shadow: 0 0 0 4px rgba(79,70,229,.18); }

    .close-btn {
      all: unset; cursor: pointer; border-radius: 10px; padding: 6px; line-height: 0;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .close-btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

    .modal-content { font-size: 15px; line-height: 1.6; color: var(--muted); border: none !important; background: unset !important; }
    .modal-content strong { color: var(--text); }

    .modal-footer { padding: 18px 20px; display: flex; justify-content: flex-end; gap: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
    .ghost, .primary {
      all: unset; cursor: pointer; border-radius: 12px; padding: 10px 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.10);
      transition: transform .15s ease, background .2s ease, border-color .2s ease; user-select: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .modal-overlay, .modal-card, .feature-item, .primary { transition: none !important; }
    }

    
 /* KRAJ MODALA */
 
 
 
.input-group.search-with-icon input#domain::placeholder { color: #000000a6 !important; }

::selection {
    background: #ffcd00;
    color: #fff
}

::-moz-selection {
    background: #ffcd00;
    color: #fff
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input,
textarea,
button {
    color: #ee5a09
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
    text-decoration: none
}

a {
    color: #2ba3eb;
    text-decoration: none
}

a:focus {
    outline: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #1f0846;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    margin: 0
}

h1 {
    font-size: 62px
}

h2 {
    font-size: 64px
}

h3 {
    font-size: 52px
}

h4 {
    font-size: 48px
}

h5 {
    font-size: 32px
}

label {
    font-weight: normal
}

p {
    color: #434c61;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 143%
}

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

ol {
    padding: 0px;
    list-style-position: inside
}

ol,
li {
    margin-bottom: 0px;
    list-style: none;
    position: relative
}

a,
input[type=submit] {
    transition: all ease-out .2s;
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -ms-transition: all ease-out .2s;
    -o-transition: all ease-out .2s
}

.follow { margin-bottom: 10px; }
.lang-two { margin-left: 5px; color: #073465; }
.lang-two:hover { color: #2ba3eb; }
.optional { color: #9bdaff }
.optional2 { color: #ff8b00 }
.optional3 { color: #04cb04 }

.sold.noactive {background-color: #b2b2b2!important; color: #ffffff; cursor: default !Important; pointer-events: none !important;}
.sold.noactive:hover {background-color: #a7a7a7; color: #fff; cursor: default !important; }

.webd:hover { background-color: #eee; }
.contact-details-webd {padding-left: 20px;}
.webd p {font-size: 15px; }
.webpartneri {display: flex; column-gap: 20px; }
.webd {border: 1px solid #ddd; border-radius: 10px; padding: 20px; min-height: 320px;background-color: #f9f9f9; }
.webd h5 {margin-bottom: 15px; }

.promo-detalji .roundtick-list li::before {
    top: 1px;
    content: "";
    background: url(../images/check.svg) no-repeat;
background-size: 15px 15px;
}


.promo-detalji  span.promo-label { background-color: #ee5a09; font-size: 12px; font-weight: 400; color: #fff; border-radius: 3px; padding: 3px 8px 4px 8px; }

@media(max-width: 767.98px) {

span.globaltitlemobile {
	font-size: 45px;
}
}


@media(min-width: 1599.98px) {
    h1.planscardtitle {  
        font-size: 28px;
    }
    h2.planscardtitle {  
        font-size: 28px;
    }
    h3.planscardtitle {  
        font-size: 28px;
    }
    h4.datacentersection {
	font-size: 50px;
}
    h5.corefeatures {
	font-size: 42px;
}
    .premium-service .section-heading h2 { 
	font-size: 42px;
}
    span.promoponuda-naslov { 
	font-size: 55px;
}
    .position-relative span.promoponuda-ultimate { 
	font-size: 60px;
}
}

@media(max-width: 1599.98px) {
    h1 {
        font-size: 62px
    }
    h2 {
        font-size: 52px
    }
    h3 {
        font-size: 50px
    }
    h1.planscardtitle {  
        font-size: 28px;
    }
    h2.planscardtitle {  
        font-size: 28px;
    }
    h4.datacentersection {
	font-size: 50px;
}
    h5.corefeatures {
	font-size: 42px;
}
    .premium-service .section-heading h2 { 
	font-size: 42px;
}
}

@media(max-width: 1199.98px) {
    h1 {
        font-size: 50px
    }
    h2 {
        font-size: 50px
    }
    h3 {
        font-size: 38px
    }
    h4 {
        font-size: 36px
    }
    h5 {
        font-size: 28px
    }
    h1.planscardtitle { 
        font-size: 28px;
    }
    h2.planscardtitle {  
        font-size: 28px;
    }
    h4.datacentersection {
	font-size: 38px;
}
    h5.corefeatures {
	font-size: 38px;
}
    .premium-service .section-heading h2 { 
	font-size: 38px;
}
}

@media(max-width: 767.98px) {
    h1 {
        font-size: 36px
    }
    h2 {
        font-size: 34px
    }
    h3 {
        font-size: 30px
    }
    h4 {
        font-size: 28px
    }
    h5 {
        font-size: 24px
    }
    h1.planscardtitle {  
        font-size: 24px;
    }
    h2.planscardtitle {  
        font-size: 24px;
    }
    h4.datacentersection {
	font-size: 30px;
}
    h5.corefeatures {
	font-size: 30px;
}
    .premium-service .section-heading h2 { 
	font-size: 30px;
}
}

@media(max-width: 575.98px) {
    h1 {
        font-size: 38px
    }
    p {
        font-size: 14px
    }
    h1.planscardtitle { 
        font-size: 22px;
    }
    h2.planscardtitle {  
        font-size: 22px;
    }
    h4.datacentersection {
	font-size: 25px;
}
    h5.corefeatures {
	font-size: 25px;
}
    .premium-service .section-heading h2 { 
	font-size: 25px;
}

 .modal-card {
      width: min(96%, 98%);
}

.modal-content .row { 
	padding: 10px 25px !important;
	gap: 10px;
	text-align: center !important;
}
.modal-footer { 
	justify-content: center;
}
}

    h1.planscardtitle { 
       font-weight: 700;
       color: #1f0846;
       text-align: center;
}
    h2.planscardtitle { 
       font-weight: 700;
       color: #1f0846;
       text-align: center;
}

    p.planscardtext {
	padding-top: 8px;
	padding-bottom: 24px; 
	text-align: center; 
	font-size: 15px; 
	width: 95%; 
	margin-left: auto; 
	margin-right: auto;
}

    h5.corefeatures {
	text-align: center;
	color: #fff;
}

.nice-select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #d4d4d4;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all .2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto
}

.nice-select:hover {
    border-color: #dbdbdb
}

.nice-select:after {
    content: "";
    font-family: "icomoon";
    font-size: 7px;
    color: #2ba3eb;
    display: block;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .15s ease-in-out
}

.nice-select.open:after {
    content: ""
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #ccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, .11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transition: all .2s cubic-bezier(0.5, 0, 0, 1.25), opacity .15s ease-out;
    z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
    background-color: rgba(0, 0, 0, 0) !important
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all .2s
}

.nice-select .option.selected {
    font-weight: 700
}

.nice-select .option.disabled {
    background-color: rgba(0, 0, 0, 0);
    color: #999;
    cursor: default
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #2ba3eb
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(75px)
    }
    100% {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes arrowMove {
    0% {
        bottom: 15px
    }
    50% {
        bottom: 30px
    }
}

.plans-table {
    padding-top: 60px
}

.pricing-card {
    border-radius: 20px;
    border: 2px solid #d2e8ff;
    background: #fff;
    margin: 0;
    transition: border .3s ease;
    position: relative;
    z-index: 3
}

.pricing-card--header {
    padding: 25px 10px;
    padding-bottom: 0;
    text-align: center;
    border-radius: 20px 20px 0 0;
    background-color: #fff
}

.pricing-card--header .plan-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 25px
}

.pricing-card--header .plan-icon img {
    width: 108px;
    height: 108px;
    padding: 0;
    margin: 0;
    object-fit: contain;
    object-position: center
}

.pricing-card--header .plan-icon .hover {
    opacity: 0;
    height: 0px;
    width: 0px
}

.pricing-card--header h6 {
    font-size: 20px;
    margin-bottom: 20px
}

.pricing-card--header .pricing {
    margin-top: 20px;
    text-align: center
}

.pricing-card--header .pricing span {
    display: block
}

.pricing-card--header .ms-btn {
    width: 100%;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: -27px
}

.pricing-card--header .note-sm {
    display: block;
    margin-top: 15px;
    color: #1f0846;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 128%
}

@media(min-width: 1400px) {
    .pricing-card--header .ms-btn {
        width: 190px;
        font-size: 18px
    }
    .pricing-card--header h6 {
        font-size: 24px;
        margin-bottom: 20px
    }
}

.pricing-card--body {
    padding: 60px 20px 20px 20px;
    border-radius: 0px 0px 20px 20px;
    background: url(../images/cardbg-blue.svg) repeat-x top;
    transition: background-color .3s ease
}

.pricing-card:hover {
    border-color: #ee5a09
}

.pricing-card:hover .pricing-card--body {
    background: url(../images/cardbg-hover.svg) repeat-x top
}

.pricing-card:hover .pricing-card--header .plan-icon .initial {
    opacity: 0;
    height: 0px;
    width: 0px
}

.pricing-card:hover .pricing-card--header .plan-icon .hover {
    opacity: 1;
    height: 108px;
    width: 108px
}

.pricing-figure {
    font-size: 32px;
    font-weight: 700;
    color: #635a56
}

.pricing-label {
    color: #748790;
    font-size: 14px;
    font-weight: 400
}

.plans-features-list li {
    color: #1f0846;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 14px;
    padding-left: 30px;
    position: relative
}

.plans-features-list li::before {
    content: "";
    width: 17px;
    height: 17px;
    background: url(../images/check.svg) no-repeat;
    background-size: contain;
    color: #ffcd00;
    position: absolute;
    left: 0;
    top: 0
}

.plans-features-list li strong {
    color: #2ba3eb
}

.plans-features-list li:last-child {
    margin-bottom: 0
}

.plans-features-list li.disable::before {
    filter: grayscale(100%)
}

.premium-service {
    background: url(../images/premium-service-bg.svg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 0;
    width: 100%;
    min-height: 500px;
    position: relative
}

@media(min-width: 1400px) {
    .premium-service {
        padding-top: 140px
    }
}

.premium-service .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 0px
}

.premium-service .section-heading h2 {
    color: #fff
}


@media(min-width: 1200px) {
    .premium-service .section-heading h2 {
        font-size: 42px
    }
}


.premium-service .section-heading .customer-preview {
    text-align: end
}

.premium-service .section-heading .customer-preview li {
    display: inline-block;
    margin-left: -12px;
    border-radius: 50%
}

.premium-service .section-heading .customer-preview li img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: solid 2px #fff
}

.premium-service .section-heading .customer-preview p {
    color: #fff;
    font-size: 15px;
    margin: 10px 4px 8px 0px
}

.premium-service .section-heading .customer-preview p span {
    color: #2ba3eb
}

@media(max-width: 991.98px) {
    .premium-service .section-heading {
        flex-direction: column;
        justify-content: center
    }
    .premium-service .section-heading h2 {
        text-align: center
    }
    .premium-service .section-heading .customer-preview {
        text-align: center
    }
}

.premium-service .grid-cards {
    display: grid;
    grid-template-columns: 57.6% 40.5%;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px
}

.premium-service .grid-cards .card-1 {
    grid-area: 1/1/2/2
}

.premium-service .grid-cards .card-2 {
    grid-area: 2/1/3/2
}

.premium-service .grid-cards .card-3 {
    grid-area: 1/2/3/3
}

@media(max-width: 991.98px) {
    .premium-service .grid-cards {
        grid-template-columns: 100%;
        grid-template-rows: repeat(3, 1fr)
    }
    .premium-service .grid-cards .card-1 {
        grid-area: 1/1/2/2
    }
    .premium-service .grid-cards .card-2 {
        grid-area: 2/1/3/2
    }
    .premium-service .grid-cards .card-3 {
        grid-area: 3/1/4/2
    }
}

.premium-service .grid-cards .grid-card {
    border-radius: 12px;
    border: 1px solid #126ca3;
    padding: 0;
    position: relative;
    display: flex;
    align-items: stretch
}

.premium-service .grid-cards .grid-card::before {
    content: "";
    width: 90%;
    height: 90%;
    background: url(../images/card-body-bg.svg) no-repeat;
    background-size: contain;
    background-position: right bottom;
    position: absolute;
    border-radius: 0 12px 12px 0;
    bottom: 0;
    right: 0;
    z-index: 1
}

.premium-service .grid-cards .grid-card .card-text {
    position: relative;
    z-index: 2
}

.premium-service .grid-cards .grid-card .card-image {
    position: absolute;
    right: 0;
    z-index: 1;
    height: 100%
}

.premium-service .grid-cards .grid-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right
}

@media(max-width: 1199.98px) {
    .premium-service .grid-cards .grid-card .card-image {
        opacity: .4
    }
}

@media(max-width: 575.98px) {
    .premium-service .grid-cards .grid-card .card-image {
        opacity: 0
    }
}

.premium-service .grid-cards .grid-card h6 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px
}

.premium-service .grid-cards .grid-card p {
    color: #fff;
    font-size: 15px;
    color: #85b8d7;
    line-height: 153%
}

.premium-service .grid-cards .grid-card .secondary-link {
    display: inline-block;
    margin-top: 25px
}

.premium-service .grid-cards .grid-card.card-1 {
    background: linear-gradient(134deg, #1B4F75 8.42%, rgba(17, 31, 52, 0) 37%, rgba(17, 25, 52, 0) 90%)
}

.premium-service .grid-cards .grid-card.card-1 .card-text {
    width: 100%;
    max-width: 400px;
    padding: 30px 30px 36px 44px
}

.premium-service .grid-cards .grid-card.card-1 .card-text h6 {
    max-width: 300px
}

@media(min-width: 991.98px) and (max-width: 1199.98px) {
    .premium-service .grid-cards .grid-card.card-1 .card-text {
	max-width: 300px;
}
}

.premium-service .grid-cards .grid-card.card-2 {
    padding-left: 270px
}

.premium-service .grid-cards .grid-card.card-2::before {
    background: url(../images/card-body-bg-left.svg) no-repeat;
    background-size: contain;
    background-position: left bottom;
    right: inherit;
    left: 0
}

.premium-service .grid-cards .grid-card.card-2 .card-text {
    width: 100%;
    max-width: 370px;
    padding: 30px 32px 38px 18px
}

.premium-service .grid-cards .grid-card.card-2 .card-image {
    right: inherit;
    left: 20px
}

@media(max-width: 991.98px) {
    .premium-service .grid-cards .grid-card.card-2 {
        padding-left: 44px
    }
    .premium-service .grid-cards .grid-card.card-2 .card-text {
        padding-left: 0
    }
    .premium-service .grid-cards .grid-card.card-2 .card-image {
        left: inherit;
        right: 0
    }
}

@media(min-width: 991.98px) and (max-width: 1199.98px) {
     .premium-service .grid-cards .grid-card.card-2 .card-image {
	left: -15px;
}
}

.premium-service .grid-cards .grid-card.card-3 {
    background: linear-gradient(218deg, #0B4D75 14.13%, rgba(36, 17, 52, 0) 42.2%, rgba(36, 17, 52, 0) 70.28%)
}

.premium-service .grid-cards .grid-card.card-3 .card-text {
    width: 100%;
    max-width: 356px;
    padding: 30px 32px 36px 44px
}

.premium-service .grid-cards .grid-card.card-3 .card-image {
    right: -45px
}

@media(max-width: 1199.98px) {
    .premium-service .grid-cards .grid-card.card-3 .card-image {
        right: 0
    }
}

.premium-service .charactor-image {
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 47%
}

.premium-service .charactor-image::before {
    content: "";
    width: 160px;
    height: 158px;
    background: url(../images/arrow-white-lutapi.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -110px;
    left: -130px
}

.premium-service .charactor-image img {
    height: 480px;
    display: block
}

@media(max-width: 1399.98px) {
    .premium-service .charactor-image {
        left: 50%
    }
    .premium-service .charactor-image img {
        height: 400px
    }
}

@media(max-width: 1199.98px) {
    .premium-service .charactor-image {
        display: none
    }
}

@media(min-width: 3839.98px) {
    .premium-service .charactor-image {
        left: 50%;
    }
}

.performance-brief {
    background: #eff4f8;
    position: relative
}

.performance-brief .image-bg {
    height: 100%;
    width: 100%;
    max-width: 1000px;
    position: absolute;
    object-fit: cover;
    object-position: left;
    margin-left: -250px
}

.performance-brief .content-wraper {
    padding: 95px 0 90px 0;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}

.performance-brief .section-image {
    padding-right: 25px;
    margin-top: 60px;
    text-align: right
}

.performance-brief .section-content h2 {
    margin-bottom: 15px
}

.performance-brief .section-content p {
    max-width: 100%;
}

.performance-brief .section-content .secondary-link {
    margin-top: 32px
}

@media(min-width: 1600px) {
    .performance-brief .image-bg {
        margin-left: 0
    }
}

@media(max-width: 1199.98px) {
    .performance-brief .content-wraper {
        padding: 80px 0 80px 0;
        background-size: cover;
        position: relative
    }
    .performance-brief .content-wraper::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(255, 255, 255, .5)
    }
    .performance-brief .content-wraper .section-image,
    .performance-brief .content-wraper .section-content {
        position: relative;
        z-index: 1
    }
}

@media(max-width: 991.98px) {
    .performance-brief .image-bg {
        max-width: 100%;
        margin-left: 0
    }
    .performance-brief .section-image {
        text-align: center;
     	margin-top: 0px;
	padding-right: 97px;
	width: 50%;
    }
    .performance-brief .section-content {
        text-align: center
    }
    .performance-brief .section-content p {
        margin: 0 auto
    }
}

.servercenter-brief .content-wraper {
    padding: 85px 0 0 0;
    background: url(../images/data-center-texture.svg)
}

.servercenter-brief .section-content h2 {
    max-width: 550px;
    margin-bottom: 15px
}

.servercenter-brief .section-content p {
    max-width: 580px
}

.servercenter-brief .section-content .secondary-link {
    margin-top: 32px
}

.servercenter-brief .white-cards {
    margin-top: 85px;
    margin-bottom: -105px
}

.servercenter-brief .white-cards .white-card {
    height: 100%;
    padding: 60px 50px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, .08)
}

.servercenter-brief .white-cards .white-card h5 {
    margin-bottom: 15px
}

.servercenter-brief .white-cards .white-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 169px;
    margin: 0 0 30px 0
}

.servercenter-brief .white-cards .white-card img {
    max-width: 228px;
    max-height: 169px
}

@media(max-width: 991.98px) {
    .servercenter-brief .section-content {
        text-align: center
    }
    .servercenter-brief .section-content h2 {
        margin-right: auto;
        margin-left: auto
    }
    .servercenter-brief .section-content p {
        margin-right: auto;
        margin-left: auto
    }
}

.features-cards {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px
}

.features-cards .features-card {
    display: flex;
    gap: 24px;
    width: 33.33%;
    max-width: 378px;
    margin: 0 auto;
    margin-top: 40px;
    padding-top: 40px;
    border-top: solid 1px rgba(107, 177, 221, .5)
}

.features-cards .features-card--content h6 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px
}

.features-cards .features-card--content p {
    line-height: 150%;
    color: #79abde;
    font-weight: 500
}

.features-cards .features-card--content img {
    height: 59px;
    width: 59px;
    object-fit: contain;
    object-position: top left
}

.features-cards .features-card:nth-child(1),
.features-cards .features-card:nth-child(2),
.features-cards .features-card:nth-child(3) {
    border: none;
    padding-top: 0;
    margin-top: 0
}

@media(max-width: 1199.98px) {
    .features-cards {
        row-gap: 40px
    }
    .features-cards .features-card {
        width: 50%;
        flex-direction: column;
        border-top: none;
        padding: 0 30px;
        margin-top: 0 !important
    }
    .features-cards .features-card:nth-child(1),
    .features-cards .features-card:nth-child(2) {
        margin-top: 0 !important;
        padding-top: 0 !important
    }
}

@media(max-width: 767.98px) {
    .features-cards .features-card {
        width: 100%;
        text-align: center
    }
}

.testimonials {
    margin-top: 70px
}

.testimonials h2 {
    max-width: 358px;
    color: #263238
}

.testimonials h2 span {
    color: #2ba3eb
}

.testimonials .content-wraper {
    position: relative
}

.testimonials .owl-carousel .owl-stage-outer {
    padding-top: 20px;
    padding-bottom: 10px
}

.testimonials .owl-carousel .owl-nav {
    position: absolute;
    display: flex;
    gap: 15px;
    max-width: 1320px;
    justify-content: end;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    right: 0;
    top: -120px
}

.testimonials .owl-carousel .owl-nav button.owl-prev,
.testimonials .owl-carousel .owl-nav button.owl-next {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 78px;
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    opacity: 1;
    transition: .2s ease
}

.testimonials .owl-carousel .owl-nav button.owl-prev,
.testimonials .owl-carousel .owl-nav button.owl-next {
    color: #fff;
    background-color: rgba(0, 0, 0, .15)
}

.testimonials .owl-carousel .owl-nav button.owl-prev:hover,
.testimonials .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff;
    color: #000
}

@media(max-width: 1199.98px) {
    .testimonials .owl-carousel .owl-nav {
        display: none
    }
}

.testimonials .item {
    border-radius: 17px;
    border: 1px solid #e6e6e6;
    background: #fff;
    padding: 50px 50px 30px 50px;
    position: relative;
    min-height: 486px;
}

.testimonials .item::before {
    content: "";
    font-family: "icomoon";
    font-size: 58px;
    color: #2ba3eb;
    position: absolute;
    top: -12px;
    right: 54px
}

.testimonials .item .heading {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 160%;
    margin-bottom: 20px
}

.testimonials .item .heading h6 {
    font-size: 18px
}

.testimonials .item .heading .customer-img {
    width: 70px;
    height: 70px;
    object-fit: contain
}

.testimonials .item .heading .customer-details {
    display: block;
    color: #7c878e
}

.testimonials .item p {
    line-height: 163%;
    color: #83758e
}

@media(max-width: 767.98px) {
    .testimonials .item {
        padding: 30px;
    }
    .testimonials .item::before {
        font-size: 42px;
        top: -20px;
        right: 10px
    }
    .testimonials .item .heading .customer-img {
        width: 50px;
        height: 50px
    }
}

@media(max-width: 1400px) {
    .testimonials .item {
	min-height: 550px;
    }
}

@media(max-width: 1199.98px) {
    .testimonials .item {
	min-height: 350px;
    }
}

.testimonials .custom-nav {
    display: flex;
    gap: 20px;
    margin: 40px 0 0 0
}

.testimonials .custom-nav button {
    width: 76px;
    height: 76px;
    background-color: #cfebfe;
    color: #2ba3eb;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    transition: .3s ease
}

.testimonials .custom-nav button:hover {
    background-color: #2ba3eb;
    color: #fff
}

@media(max-width: 991.98px) {
    .testimonials h2 {
        text-align: center;
        margin-right: auto;
        margin-left: auto
    }
    .testimonials .custom-nav {
        justify-content: center
    }
    .testimonials .custom-nav button {
        width: 62px;
        height: 62px;
        font-size: 14px
    }
}

.partners-logo {
    margin-top: 80px
}

.partners-logo .content-wraper {
    padding: 80px 0;
    margin-top: 80px;
    border-top: solid 1px #e7e7e7
}

.partners-logo ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 80px;
    row-gap: 20px
}

.partners-logo img {
    width: 100%;
    max-width: 130px;
    max-height: 59px;
    filter: grayscale(100%);
    transition: .3s ease
}

.partners-logo img:hover {
    filter: grayscale(0%)
}

@media(max-width: 1199.98px) {
    .partners-logo {
        margin-top: 40px
    }
    .partners-logo .content-wraper {
        padding: 40px 0;
        margin-top: 40px
    }
    .partners-logo ul {
        column-gap: 40px
    }
    .partners-logo img {
        max-width: 110px;
        max-height: 40px
    }
}

@media(max-width: 767.98px) {
    .partners-logo ul {
        gap: 20px
    }
    .partners-logo img {
        max-width: 100px;
        max-height: 40px;
        object-fit: contain;
        object-position: center
    }
}

.core-features {
    padding: 165px 0 85px 0;
    background: linear-gradient(248deg, #2BA3EB 8.18%, #001959 77.52%)
}

.core-features h2 {
    text-align: center;
    color: #fff
}

.banner .bg-shape {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0
}

@media(min-width: 1600px) {
    .banner .bg-shape {
        right: 0;
        width: 60%;
        object-fit: cover;
        object-position: bottom
    }
}

@media(max-width: 1399.98px) {
    .banner .bg-shape {
        height: 100%;
        top: 0;
        bottom: 0;
        right: -150px
    }
}

@media(max-width: 1199.98px) {
    .banner .bg-shape {
        height: 100%
    }
}

@media(max-width: 991.98px) {
    .banner .bg-shape {
        width: 100%;
        height: 100%;
        top: inherit;
        object-fit: contain;
        object-position: right bottom;
        opacity: 1
    }
}

@media(max-width: 575.98px) {
    .banner .bg-shape {
        right: 0
    }
}

.banner .bg-round {
    width: 98%;
    max-width: 1718px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%)
}

@media(max-width: 991.98px) {
    .banner .bg-round {
        top: 50%;
        transform: translateX(-50%) translateY(-50%)
    }
}

@media(max-width: 1599.98px) {
    .banner .bg-round {
        width: 110%;
    }
}

.banner.landing-banner {
    position: relative;
    background: url(../images/banner-gradientBg.jpg) no-repeat;
    background-size: cover;
    padding: 115px 0 0;
    overflow-x: clip;
    width: 100%
}

@media(max-width: 991.98px) {
    .banner.landing-banner {
        padding: 180px 0 0
    }
}

@media(max-width: 575.98px) {
    .banner.landing-banner {
        padding: 150px 0 0
    }
}

.banner.landing-banner .left-contant {
    padding-top: 60px;
    padding-bottom: 106px;
    position: relative;
    z-index: 3
}

.banner.landing-banner .left-contant h1 {
    margin: 0 0 0 0
}

.banner.landing-banner .left-contant p {
    color: #345062;
    font-size: 18px;
    font-weight: 500;
    max-width: 620px
}

.banner.landing-banner .left-contant .ms-btn {
    margin: 40px 0 0 0;
    min-width: 150px
}

@media(min-width: 1200px) {
    .banner.landing-banner .left-contant .ms-btn {
        min-width: 150px
    }
}

@media(max-width: 1199.98px) {
    .banner.landing-banner .left-contant {
        padding-top: 50px;
        padding-bottom: 50px
    }
    .banner.landing-banner .left-contant p {
        font-size: 14px;
        max-width: 420px
    }
}

@media(min-width: 992px) {

.uniqeoffer { font-size: 15px; font-weight: 600; color: #345062; }

ul.details { 
	max-width: 300px;
}

ul.details li {
	font-size: 16px; 
	border-bottom: 1px solid #345062; 
	padding: 5px;
}

.top-package {
	position: relative; 
	display: inline-block; 
	margin-top: 2px; 
	margin-bottom: 10px; 
	opacity: 0.85;
}

.top-package2 {
	position: absolute; 
	width: 100%; 
	height: 100%; 
	background-color: #24324f; 
	z-index: 1;
}

.top-package3 {
position: absolute;
width: 100%; 
height: 100%; 
background-color: #f2c029; 
transform: rotate(358deg); 
z-index: 0;
}

.roundtick-list.second { margin-right: 50px; }

.top-package span.top-package-title { 
	font-size: 64px;
	font-weight: 800;
	color: white;
	position: relative;
	z-index: 2;
	padding: 8px;
}

.left-contant span.promotivno-naslov {
	font-size: 55px;
	font-weight: 700;
	color: #1f0846;
}
.left-contant span.promotivno-naslov-50 {
	font-size: 50px;
	font-weight: 700;
	color: #1f0846;
}
.left-contant span.promotivno-naslov-yellow {
	border-radius: 10px 0px 10px 0px; 
	background-color: #ffcd00; 
	padding: 5px 10px; 
	color: white; 
	line-height: 40px !important;
	font-size:23px;
}
.left-contant span.promoprice {
transform: rotate(
-4deg);border-radius: 30px 30px 30px 30px; 
padding: 0px 15px;
font-size: 35px !important;
line-height: 45px;
margin-top: 0px;
padding-top: 4px;
background-color: #1f0846;
color: #fff;
font-weight: 700;
display: inline-block; /* Crucial for consistent transform behavior */
}
.left-contant span.commaprice {
font-size:25px;
color: #fff;
font-weight: bold;
}

.left-contant span.promotivno-naslovbig {
	font-size: 60px;
	font-weight: 700;
        color: #1f0846;
}

img.ikonica-preporuka {
	position: absolute;
	max-width: 140px;
	right: 0px; 
	top: 75px;
}
.promo-detalji ul.roundtick-list {
	margin-left: 2px;
	max-width: 280px;
	text-align: left;
}

img.ikonicasuperbrzi { max-width: 220px; width: 100%; } 

h6.promo-podnaslov { margin-bottom: 5px; font-weight: 700; font-size: 18px; }
}

@media(min-width: 991.99px) and (max-width: 1399.99px) {
.top-package span.top-package-title { 
	font-size: 50px;
	font-weight: 800;
	color: white;
	position: relative;
	z-index: 2;
	padding: 8px;
}

.left-contant span.promotivno-naslov {
	font-size: 50px;
	font-weight: 700;
	color: #1f0846;
}
.left-contant span.promotivno-naslov-50 {
	font-size: 45px;
	font-weight: 700;
	color: #1f0846;
}
.left-contant span.promotivno-naslov-yellow {
	font-size: 35px;
	border-radius: 10px 0px 10px 0px; 
	background-color: #ffcd00; 
	padding: 5px 10px; 
	color: white; 
}
.left-contant span.promoprice {
transform: rotate(
-4deg);border-radius: 30px 30px 30px 30px; 
padding: 0px 15px;
font-size: 30px !important;
line-height: 40px;
margin-top: 0px;
padding-top: 4px;
background-color: #1f0846;
color: #fff;
font-weight: 700;
display: inline-block; /* Crucial for consistent transform behavior */
}
.left-contant span.commaprice {
font-size:22px;
color: #fff;
font-weight: bold;
}
.left-contant span.promotivno-naslovbig {
	font-size: 55px;
	font-weight: 700;
        color: #1f0846;
}
}


@media(min-width: 992.99px) and (max-width: 1199.98px) {

.left-contant span.promotivno-naslovbig { font-size: 45px; }
.left-contant span.promotivno-naslov { font-size: 40px; }
.left-contant span.promotivno-naslov-50 { font-size: 35px; }
.left-contant span.promotivno-naslov-yellow {
	font-size: 30px;
	border-radius: 10px 0px 10px 0px; 
	background-color: #ffcd00; 
	padding: 5px 10px; 
	color: white; 
}
img.ikonica-preporuka { top: 60px; max-width: 120px; right: 20px; }

}

@media(max-width: 991.99px) {

.slider-nav-container { top: 0px !important; justify-content: center; right:0px; left: 0px; }
.promo-slider-wrapper { padding-top: 30px; }
.banner.landing-banner { padding: 130px 0 0; }

.uniqeoffer { font-size: 15px; font-weight: 600; color: #345062; }

.roundtick-list { margin: auto; text-align: left; width: 65%; }
.roundtick-list.second { margin-right: auto !important; margin-top:0px !important; }

.roundtick-list.zlp { width: 70%; }

#homepage .input-group { margin: auto; margin-top: 10px; width: 96% !important; }
  
ul.details {
        margin: auto;
	max-width: 250px;
	font-size: 14px;
}

ul.details li {
	font-size: 14px; 
	border-bottom: 1px solid #345062; 
	padding: 5px;
}

.top-package {
	position: relative; 
	display: inline-block; 
	margin-top: 2px; 
	margin-bottom: 10px; 
	opacity: 0.85;
}

.top-package2 {
	position: absolute; 
	width: 100%; 
	height: 100%; 
	background-color: #24324f; 
	z-index: 1;
}

.top-package3 {
position: absolute;
width: 100%; 
height: 100%; 
background-color: #f2c029; 
transform: rotate(358deg); 
z-index: 0;
}

.top-package span.top-package-title { 
	font-size: 44px;
	font-weight: 800;
	color: white;
	position: relative;
	z-index: 2;
	padding: 8px;
}

img.ikonica-preporuka {
	position: relative;
	max-width: 140px;
	right:0px; 
	top: 0px;
	left:0px;
	margin: auto;
}

.left-contant span.promotivno-naslov {
	font-size: 30px;
	font-weight: 700;
	color: #1f0846;
	text-align: center;
}

.left-contant span.promotivno-naslov-50 {
	font-size: 25px;
	font-weight: 700;
	color: #1f0846;
	text-align: center;
}
.left-contant span.promotivno-naslov-yellow {
	font-size: 16px;
	border-radius: 10px 0px 10px 0px; 
	background-color: #ffcd00; 
	padding: 3px 5px; 
	color: white; 
	line-height: 30px;
}

.left-contant span.promoprice {
transform: rotate(
-4deg);border-radius: 30px 30px 30px 30px; 
padding: 0px 15px;
font-size: 30px !important;
line-height: 35px;
margin-top: 0px;
padding-top: 4px;
background-color: #1f0846;
color: #fff;
font-weight: 700;
display: inline-block; /* Crucial for consistent transform behavior */
margin-left: -5px;
}
.left-contant span.commaprice {
font-size:20px;
color: #fff;
font-weight: bold;
}

.left-contant span.promotivno-naslovbig {
	font-size: 40px;
	font-weight: 700;
        color: #1f0846;
	text-align: center;
}
.promo-detalji ul.roundtick-list {
	margin-left: auto;
	margin-right: auto;
	max-width: 280px;
	font-size: 14px;
	text-align: left;
}

h6.promo-podnaslov { margin-bottom: 5px; font-weight: 700; font-size: 16px; }

img.ikonicasuperbrzi { max-width: 170px; width: 100%; }

.promotivno  {
width: 100%; 
}

}

@media(max-width: 991.98px) {
    .banner.landing-banner .left-contant {
        text-align: center;
        padding-top: 0;
        padding-bottom: 0
    }
    .banner.landing-banner .left-contant h1 {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto
    }
    .banner.landing-banner .left-contant p {
        margin-right: auto;
        margin-left: auto
    }
}

.banner.landing-banner .right-image {
    margin-left: -314px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner.landing-banner .right-image img {
    width: 830px;
    margin-bottom: 88px
}

@media(max-width: 1399.98px) {
    .banner.landing-banner .right-image {
        margin-left: -250px
    }
    .banner.landing-banner .right-image img {
        width: 720px
    }

}

@media(max-width: 1199.98px) {
    .banner.landing-banner .right-image {
        margin-left: -150px
    }
    .banner.landing-banner .right-image img {
        width: 547px
    }
}

@media(max-width: 991.98px) {
    .banner.landing-banner .right-image {
        margin-left: 0;
	min-height: 100px;
    }
    .banner.landing-banner .right-image img {
        width: 80%;
	display: none;
	min-height: 100px;
    }
}

@media(max-width: 575.98px) {
    .banner.landing-banner .right-image img {
        width: 100%;
	display: none;
	min-height: 150px;
    }
}

.banner.landing-banner .bg-shape {
    right: -150px;
    display: none;
}

.round-arrowdown {
    width: 81px;
    height: 81px;
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    text-decoration: none;
    display: inline-block;
    background-color: #2ba3eb;
    border-radius: 50%;
    text-align: center
}

.round-arrowdown span {
    display: block;
    animation: 1s arrowMove infinite;
    display: block;
    height: 108px;
    width: 13px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 300
}

.banner.inner-banner {
    position: relative;
    background: url(../images/banner-gradientBg.jpg) no-repeat;
    padding: 115px 0 0;
    overflow-x: clip;
    width: 100%
}

@media(min-width: 1600px) {
    .banner.inner-banner {
        background-size: cover
    }
}

@media(max-width: 991.98px) {
    .banner.inner-banner {
        padding: 180px 0 0
    }
}

@media(max-width: 575.98px) {
    .banner.inner-banner {
        padding: 150px 0 0
    }
}

.banner.inner-banner .left-contant {
    padding-top: 40px;
    padding-bottom: 130px;
    position: relative;
    z-index: 3
}

.banner.inner-banner .left-contant h1 {
    margin: 0 0 25px 0
}

.banner.inner-banner .left-contant p {
    color: #345062;
    font-size: 18px;
    font-weight: 500;
    max-width: 520px
}

.banner.inner-banner .left-contant .ms-btn {
    margin: 40px 0 0 0;
    min-width: 200px
}

@media(min-width: 1200px) {
    .banner.inner-banner .left-contant .ms-btn {
        min-width: 210px
    }
}

@media(max-width: 1199.98px) {
    .banner.inner-banner .left-contant {
        padding-top: 50px;
        padding-bottom: 50px
    }
    .banner.inner-banner .left-contant p {
        font-size: 16px;
        max-width: 420px
    }
}

@media(max-width: 991.98px) {
    .banner.inner-banner .left-contant {
        text-align: center;
        padding-top: 0;
        padding-bottom: 0
    }
    .banner.inner-banner .left-contant h1 {
        max-width: 520px;
        margin-right: auto;
        margin-left: auto
    }
    .banner.inner-banner .left-contant p {
        margin-right: auto;
        margin-left: auto
    }
}

.banner.inner-banner .left-contant .roundtick-list {
    max-width: 440px;
    margin: 30px 0 0 0;
    font-weight: 700;
    color: #345062;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px
}

.banner.inner-banner .left-contant .roundtick-list li {
    width: 48.8%
}

@media(max-width: 991.98px) {
    .banner.inner-banner .left-contant .roundtick-list {
        text-align: left;
        margin-right: auto;
        margin-left: auto;
        justify-content: center
    }
    .banner.inner-banner .left-contant .roundtick-list li {
        width: auto
    }
}

.banner.inner-banner .right-image {
    margin-left: 0;
    text-align: left;
    position: relative;
    z-index: 3
}

.banner.inner-banner .right-image img {
    width: 100%
}

@media(max-width: 1599.98px) {
    .banner.inner-banner .right-image {
        margin-left: 0
    }
}

@media(max-width: 1199.98px) {
    .banner.inner-banner .right-image img {
        max-width: 478px
    }
}

@media(max-width: 991.98px) {
    .banner.inner-banner .right-image {
        text-align: center
    }
    .banner.inner-banner .right-image img {
        width: 70%
    }
}

@media(max-width: 575.98px) {
    .banner.inner-banner .right-image img {
        width: 90%
    }
}

.banner.inner-banner.webhosting-banner .right-image img {
    max-width: 478px
}

.banner.inner-banner.dedicated-banner .right-image img {
    max-width: 500px
}

.banner.inner-banner.dedicated-banner .left-contant .roundtick-list {
    max-width: 560px
}

.banner.inner-banner.about-banner .right-image img {
    max-width: 605px
}

.banner.inner-banner.contact-banner .right-image img {
    max-width: 615px
}

.banner.inner-banner.contact-banner .left-contant {
    padding-top: 80px
}

@media(max-width: 1199.98px) {
    .banner.inner-banner.contact-banner .left-contant {
        padding-top: 40px;
        padding-bottom: 80px
    }
}

@media(max-width: 767.98px) {
    .banner.inner-banner.contact-banner .left-contant {
        padding-top: 20px;
        padding-bottom: 40px
    }
}

.banner.inner-banner.ssl-banner .right-image {
    text-align: center
}

.banner.inner-banner.ssl-banner .right-image img {
    max-width: 415px
}

.banner.inner-banner.ssl-banner .left-contant .roundtick-list {
    max-width: 500px
}

.banner.inner-banner.datacenter-banner .right-image {
    text-align: center
}

.banner.inner-banner.datacenter-banner .right-image img {
    max-width: 560px
}

.banner.inner-banner.datacenter-banner .left-contant .roundtick-list {
    max-width: 500px
}

.banner.inner-banner.datacenter-banner .left-contant .ms-btn {
    min-width: 200px
}

.banner.inner-banner.domain-banner .right-image {
    position: relative;
    z-index: 3
}

.banner.inner-banner.domain-banner .right-image img {
    max-width: 694px;
    width: auto;
    margin-left: -100px
}

.banner.inner-banner.domain-banner .domain-seach-content {
    max-width: 580px;
    padding-bottom: 135px;
    padding-top: 80px;
    position: relative;
    z-index: 4
}

.banner.inner-banner.domain-banner .banner-label li {
    display: inline-block
}

.banner.inner-banner.domain-banner .radio-group-btn {
    margin-top: 10px
}

.banner.inner-banner.domain-banner .radio-group-btn .btn-outline-primary {
    background-color: #fff;
    border-color: #2ba3eb;
    color: #2ba3eb;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px
}

.banner.inner-banner.domain-banner .radio-group-btn .btn-check:checked+.btn {
    background-color: #2ba3eb;
    border-color: #2ba3eb;
    color: #fff
}

@media(max-width: 991.98px) {
    .banner.inner-banner.domain-banner .domain-seach-content {
        padding-top: 30px;
        padding-bottom: 50px
    }
    .banner.inner-banner.domain-banner .right-image img {
        width: 100%;
        margin-left: 0
    }
}

.search-with-icon {
    margin-top: 59px
}

.search-with-icon .form-control {
    border: solid 2px #2ba3eb;
    border-radius: 8px 0 0 8px !important;
    padding-left: 90px;
    padding-top: 16px;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    position: relative
}

.search-with-icon .form-control:focus {
    box-shadow: none;
    opacity: 1;
    background: rgba(255, 255, 255, .5)
}

.search-with-icon .form-control::-webkit-input-placeholder {
    color: #000
}

.search-with-icon .form-control::-moz-placeholder {
    color: #000
}

.search-with-icon .form-control:-ms-input-placeholder {
    color: #000
}

.search-with-icon .form-control:-moz-placeholder {
    color: #000
}

.search-with-icon .form-control:focus::-webkit-input-placeholder {
    color: #adabab
}

.search-with-icon .form-control:focus:-moz-placeholder {
    color: #adabab
}

.search-with-icon .form-control:focus::-moz-placeholder {
    color: #adabab
}

.search-with-icon .domain-adress {
    position: absolute;
    top: 22px;
    left: 30px;
    font-size: 20px;
    color: #adabab;
    z-index: 1;
    font-weight: 700;
    padding-top: 0px;
}

.search-with-icon .search-with-icon .btn {
    box-shadow: none
}

.search-with-icon .btn.searhicon-btn {
    background: #2ba3eb;
    width: 70px;
    height: 70px;
    line-height: 100%;
    border-radius: 0px 8px 8px 0px;
    transition: .3s ease;
    font-size: 28px
}

.search-with-icon .btn.searhicon-btn:hover {
    background-color: rgba(43, 163, 235, .9)
}

@media(max-width: 991.98px) {
    .search-with-icon {
        margin-top: 20px
    }
    .search-with-icon .btn.searhicon-btn {
        width: 50px;
        height: 50px;
        font-size: 20px
    }
    .search-with-icon .form-control {
        font-size: 16px;
        height: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 55px
    }
    .search-with-icon .domain-adress {
        top: 16px;
        left: 15px;
        font-size: 14px
    }
}

.pre-header {
background-color: #2ba3eb0f; padding-top: 5px; padding-bottom: 5px;"
}

.pre-header .section-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pre-header .left {
    display: flex
}

.pre-header .left .conatct-nmbers li {
    display: inline-flex;
    align-items: center
}

.pre-header .left .conatct-nmbers a {
    color: #073465;
    text-decoration: none
}

.pre-header .left .conatct-nmbers span {
    color: #2ba3eb;
    margin-right: 10px;
    text-decoration: none
}

.pre-header .left .conatct-nmbers .email {
    margin: 0 15px 0 0
}

.pre-header .left .conatct-nmbers .email span {
    font-size: 22px
}

.pre-header .left .conatct-nmbers .phone {
    font-weight: 400
}

.pre-header .left .conatct-nmbers .phone span {
    font-size: 22px
}

@media(max-width: 991.98px) {
    .pre-header .left {
    }
    .pre-header .left ul.conatct-nmbers {display: none; }
    .pre-header .right .desktop {display: none; }
}

.pre-header .right {
    display: flex;
    align-items: center;
    column-gap: 8px
}

.pre-header .right .social-icons a {
    margin: 0 3px;
    padding: 3px;
    color: #073465;
    text-decoration: none
}

.pre-header .right .social-icons a:hover {
    color: #ee5a09
}

.pre-header .right .ms-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: inherit;
    padding: 7px 11px;
    font-size: 14px;

}

.pre-header .right .ms-btn span {
    margin: 0 5px 0 0
}

@media(min-width: 992px) {
    .pre-header .left .mobile {
        display: none;
    }
}


@media(max-width: 991.98px) {
    .pre-header .right {
        width: 100%;
        justify-content: right;
    }
}

@media(max-width: 767.98px) {
    .pre-header .right .social-icons {
        display: none
    }
}

.language-selector {
    display: flex;
    align-items: center;
    padding: 0;
    border-radius: 5px;
    height: 30px;
    z-index: 60;
    position: relative
}

.language-selector:hover {
    background-color: #fff
}

.language-selector h6 {
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: #073465
}

.language-selector .language-button {
    display: flex;
    align-items: center;
    border: none;
    outline: none;
    background: none;
    padding: 0;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    color: #073465;
    padding-right: 5px;
    padding-left: 5px;
}
.lang-two {
	font-size: 13px;
	line-height: 20px;
	text-transform: uppercase;
	color: #073465;
}	

.language-selector .language-button::after {
    content: "";
    font-family: "icomoon";
    font-size: 6px;
    color: #434c61;
    margin-left: 5px
}

.language-selector .language-button .language-counrty-flag {
    height: 16px;
    margin: 0 5px 0 0
}

.language-selector .language-button .language-arrow-icon {
    display: block;
    width: 10.91px;
    height: 5.81px;
    margin: 0 0 0 5px
}

.language-selector .language-list {
    display: none;
    top: 28px;
    left: 0px;
    background-color: #fff;
    border-radius: 5px;
    position: absolute
}

.language-selector .language-list li {
    padding: 5px;
    width: 133px;
    border-radius: 5px
}

.language-selector .language-list li a {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: #073465
}

.language-selector .language-list li a .language-counrty-flag {
    margin: 0 5px 0 0;
    height: 16px;
    padding-right: 10px;
}

.language-selector .language-list li:hover1 {
    background-color: #2ba3eb
}

.language-selector .language-list li:hover a1 {
    color: #fff
}

.header {
    position: absolute;
    width: 100%;
    height: auto;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    padding-top: 0px;
    z-index: 10
}

@media(max-width: 1199.98px) {
    .header {
        padding: 25px 0 0 0;
        padding-top: 0px;
    }
}

.header .navbar {
    padding: 0;
    padding-top: 15px;
}

.header .logo {
    width: 35%
}

.header .logo-primary {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.header .logo-primary img {
    height: 44px
}

@media(max-width: 767.98px) {
    .header .logo-primary img {
        height: 38px
    }
}

.header .container {
    position: relative;
}

.header.sticky {
    display: none!important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transform: translateY(0);
    transition: all .3s ease-in-out;
    padding: 10px 0;
    animation: slide-down 1s
}

.header.sticky.show {
    transform: translateY(-150px)
}

.header.sticky .mobile-menu {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0
}

.header.sticky .mobile-menu a.menu-toggle {
    top: -44px;
    right: 10px
}

.header.sticky .logo-primary img {
    height: 38px
}

.main-menu {
    display: flex;
    justify-content: right;
    padding: 0;
    height: 100%;
    position: relative
}

.main-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 400
}

.main-menu>ul {
    display: flex;
    align-items: center
}

.main-menu>ul>li {
    display: inline-block
}

.main-menu>ul>li.dropdown {
    padding: 0 4px 0 0;
    position: relative
}

.main-menu>ul>li.dropdown>a:after {
    content: "";
    font-family: "icomoon";
    font-size: 6px;
    position: absolute;
    right: 3px;
    top: 50%;
    line-height: normal;
    transform: translateY(-50%)
}

.main-menu>ul>li.dropdown>a.hoverClass {
    /* background-color: #fff; */
    color: #2ba3eb
}

.main-menu>ul>li.dropdown>a.hoverClass::after {
    opacity: 1;
}

.main-menu>ul>li>a {
    color: #073465;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 0 18px;
    position: relative;
    height: 100%;
    line-height: 48px;
    cursor: pointer;
    border-radius: 3px 3px 0 0
}

.main-menu>ul>li>a:hover {
    color: #2ba3eb
}

.main-menu>ul>li>a.active {
    color: #2ba3eb;
}

.main-menu>ul>li>a.ms-btn {
    line-height: normal;
    border-radius: 0 !important
}

.main-menu>ul>li>a.special-solid {
    color: #3c320b;
    line-height: 60px;
    font-size: 18px;
    font-weight: 700
}

.main-menu>ul>li>a.primary-solid {
    height: 60px;
    line-height: normal;
    font-size: 18px;
    font-weight: 700;
    padding: 10px
}

.main-menu>ul>li>a.primary-solid label {
    display: block;
    font-weight: 500;
    cursor: pointer
}

.main-menu>ul>li>a.primary-solid span {
    display: block;
    font-weight: 400;
    font-size: 13px
}

@media(max-width: 1399.98px) {
    .main-menu>ul>li>a {
        padding: 0 13px;
        padding-right: 15px
    }
}

@media(min-width: 1400px) {
    .main-menu>ul>li>a {
        font-size: 15px
    }
}

.main-menu>ul>li>ul {
    display: none;
    right: 0px;
    position: absolute;
    top: 48px;
    padding: 10px;
    width: max-content;
    min-width: 240px;
    z-index: 5;
    text-align: left;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, .12);
    border-radius: 0 5px 5px 5px
}

.main-menu>ul>li>ul>li {
    display: block
}

.main-menu>ul>li>ul>li>a {
    display: block;
    padding: 10px 16px;
    font-weight: 700;
    position: relative;
    font-size: 15px;
    line-height: 18px;
    transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    color: #263238
}

.main-menu>ul>li>ul>li>a:hover {
    color: #2ba3eb
}

.main-menu>ul>li>ul>li>a>label>strong {
    display: block
}

.mobile-menu {
    display: none;
    position: relative
}

.mobile-menu ul {
    padding: 0
}

.mobile-menu ul.menu-list {
    padding-bottom: 20px
}

.mobile-menu ul.menu-list>li>ul {
    display: none;
    margin-left: 0;
    background: #0989d5
}

.mobile-menu ul.menu-list>li>ul>li a {
    color: #fff;
    padding: 15px 0;
    display: block;
    font-size: 16px;
    transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    text-align: center
}

.mobile-menu ul li {
    text-align: center
}

.mobile-menu ul li a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    padding: 8px 20px;
    text-decoration: none
}

@media(max-width: 1399.98px) {
    .mobile-menu ul li a.primary-solid,
    .mobile-menu ul li a.special-solid {
        background-color: rgba(0, 0, 0, 0) !important;
        color: #fff
    }
    .mobile-menu ul li a.primary-solid {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ffcd00 !important
    }
    .mobile-menu ul li a.primary-solid label {
        display: block;
        font-weight: 700
    }
}

.mobile-menu ul li.dropdown>a {
    position: relative
}

.mobile-menu ul li.dropdown>a:after {
    content: "";
    font-family: "icomoon";
    display: inline-block;
    font-size: 6px;
    margin-left: 10px;
    transition: .3s ease
}

.mobile-menu ul li.dropdown>a.open:after {
    rotate: 180deg
}

a.menu-toggle {
    position: absolute;
    z-index: 10;
    display: none;
    width: 45px;
    height: 45px;
    background: #ee5a09;
    top: -45px;
    right: 0;
    padding-top: 4px;
    box-sizing: border-box
}

a.menu-toggle span.line {
    position: relative;
    width: 65%;
    height: 3px;
    background: #fff;
    margin: 7px auto;
    display: block;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s
}

a.menu-toggle.active span.line {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform-origin: center center
}

a.menu-toggle.active span.line.a {
    transform: rotate(45deg)
}

a.menu-toggle.active span.line.c {
    transform: rotate(-45deg)
}

a.menu-toggle.active span.line.b {
    opacity: 0
}

@media(max-width: 1199.98px) {
    .mobile-menu {
        width: 100%;
        margin: auto;
        display: block;
        background: #2ba3eb
    }
    .mobile-menu a.menu-toggle {
        display: block;
        z-index: 1;
        background: #2ba3eb
    }
    .mobile-menu ul.menu-list {
        display: none;
        padding: 10px 0
    }
    .mobile-menu ul li a {
        padding: 15px 0;
        display: block
    }
    .mobile-menu ul li a.active {
        color: #fff
    }
    .main-menu {
        display: none
    }
}

.make-bg {
    display: none
}

.ms-btn {
    min-width: 110px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: normal;
    text-decoration: none;
    display: inline-block;
    padding: 12px 17px;
    border-radius: 5px;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
}

.ms-btn.btn-sm {
    padding: 10px 15px;
    font-size: 14px
}

.ms-btn.btn-md {
    padding: 12px 15px;
    font-size: 14px
}

.ms-btn.btn-lg {
    padding: 18px 25px;
    font-size: 15px
}

.ms-btn.btn-xl {
    padding: 10px 16px 10px 16px;
    font-size: 16px;
}

.ms-btn.with-arrow {
    padding-right: 70px
}

.ms-btn.with-arrow::after {
    content: "";
    font-family: "icomoon";
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    transition: .2s ease
}

.ms-btn.with-arrow:hover::after {
    right: 30px
}

@media(min-width: 1200px) {
    .ms-btn {
        min-width: 110px
    }
}

@media(max-width: 1199.98px) {
    .ms-btn {
        font-size: 14px;
        padding: 10px
    }
}

@media(max-width: 767.98px) {
    .ms-btn {
        font-size: 16px
    }
}

.primary-solid {
    background-color: #ee5a09;
    color: #fff
}

.primary-solid:hover {
    background-color: #2ba3eb;
    color: #fff
}

.secondary-solid {
    background-color: #2ba3eb;
    color: #fff
}

.secondary-solid:hover {
    background-color: #ee5a09;
    color: #fff
}

.secondary-border {
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 1px #2ba3eb;
    color: #2ba3eb
}

.secondary-border:hover {
    background-color: #ee5a09;
    color: #fff;
    box-shadow: none
}

.secondarydark-solid {
    background-color: #00295a;
    color: #fff
}

.secondarydark-solid:hover {
    background-color: #2ba3eb;
    color: #fff
}

.special-solid {
    background-color: #ffcd00;
    color: #675713
}

.special-solid:hover {
    background-color: rgba(255, 205, 0, .8);
    color: #675713
}

.white-solid {
    background-color: #fff;
    color: #2ba3eb
}

.white-solid:hover {
    background-color: rgba(255, 255, 255, .8);
    color: #675713
}

.primary-border {
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 1px #ee5a09;
    color: #ee5a09
}

.primary-border:hover {
    background-color: #ee5a09;
    color: #fff;
    box-shadow: none
}

.white-border {
    background: rgba(53, 78, 64, .2);
    box-shadow: inset 0 0 0 2px #fff;
    color: #fff
}

.white-border:hover {
    background: rgba(53, 78, 64, .3);
    color: #fff
}

.black-solid {
    background-color: #000;
    color: #fff
}

.black-solid:hover {
    background: #231f20;
    color: #fff
}

.black-border {
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #000;
    color: #000
}

.black-border:hover {
    background: #000;
    color: #fff
}

.primary-link {
    color: #ee5a09;
    text-decoration: underline;
    font-weight: 700;
    font-size: 16px
}

.primary-link:hover {
    color: #ee5a09
}

@media(max-width: 991.98px) {
    .primary-link {
        font-size: 18px
    }
}

.secondary-link {
    color: #2ba3eb;
    text-decoration: underline;
    display: inline-block;
    font-weight: 700;
    font-size: 15px
}

.secondary-link:hover {
    color: #2ba3eb
}

@media(max-width: 991.98px) {
    .secondary-link {
        font-size: 18px
    }
}

.special-link {
    color: #ffcd00;
    text-decoration: underline;
    font-weight: 700;
    font-size: 18px
}

.arrow-link {
    padding-right: 15px;
    position: relative;
    font-weight: 700
}

.arrow-link::after {
    content: "";
    font-family: "icomoon";
    font-weight: 400;
    font-size: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: .2s ease
}

.arrow-link.sp-color {
    color: #ffcd00
}

.arrow-link.pr-color {
    color: #ee5a09
}

.arrow-link.se-color {
    color: #2ba3eb
}

.arrow-link:hover::after {
    right: -5px
}

.roundtick-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    line-height: normal;
    position: relative
}

.roundtick-list li::before {
    content: "";
    font-family: "icomoon";
    font-size: 16px;
    font-weight: 700;
    color: #2ba3eb;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0
}

.roundtick-list li:last-child {
    margin-bottom: 0
}

.underline-list li {
    margin: 0;
    padding: 14px 0;
    padding-left: 35px;
    line-height: 150%;
    position: relative;
    color: rgba(67, 76, 97, .7);
    font-size: 16px
}

.underline-list li strong {
    color: #434c61
}

.underline-list li::before {
    font-family: "icomoon";
    content: "";
    font-size: 22px;
    color: #2ba3eb;
    position: absolute;
    left: 0;
    top: 14px
}

.underline-list li::after {
    content: "";
    width: calc(100% - 35px);
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 35px;
    border-bottom: dashed 1px #c9d3da
}

.underline-list li:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.form-control {
    background: #fff;
    border: none;
    border: solid 1px #d4d4d4;
    border-radius: 5px;
    padding: 18px
}

.form-control:focus {
    color: #1f0846;
    background: #fff;
    border-color: #2ba3eb;
    outline: 0;
    box-shadow: none
}

.form-control.field-lg {
    height: 60px;
    padding-right: 20px;
    padding-left: 20px
}

.form-check-input[type=radio] {
    margin-top: 0;
    margin-right: 4px;
    border: solid 4px #d9d9d9;
    width: 19px;
    height: 19px;
    cursor: pointer
}

.form-check-input[type=radio]:checked {
    background-color: rgba(0, 0, 0, 0);
    border-color: #ee5a09
}

.form-check-input[type=radio]:focus {
    outline: 0;
    box-shadow: none
}

.form-check-input[type=checkbox] {
    margin-top: 0;
    margin-right: 10px;
    width: 21px;
    height: 21px;
    border-radius: 0;
    border-color: #adadad;
    cursor: pointer
}

.form-check-input[type=checkbox]:checked {
    background-color: #ee5a09;
    border-color: rgba(238, 90, 9, .5)
}

.form-check-input[type=checkbox]:focus {
    outline: 0;
    box-shadow: none;
    border-color: rgba(238, 90, 9, .5)
}

.heading-label {
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    color: #ffcd00
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #2ba3eb;
    -webkit-box-shadow: 0 0 0px 1000px #f6fcff inset;
    transition: background-color 5000s ease-in-out 0s;
    font-weight: 700
}

textarea {
    scrollbar-width: auto;
    scrollbar-color: #2ba3eb #fff;
    resize: none
}

textarea::-webkit-scrollbar {
    width: 6px
}

textarea::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0)
}

textarea::-webkit-scrollbar-thumb {
    background-color: #2ba3eb;
    border-radius: 5px;
    border: 2px solid #fffcf5
}

.validation-error {
    font-size: 13px;
    color: #ff7d6c
}

.points-list {
    display: flex;
    column-gap: 30px;
    row-gap: 30px;
    margin-top: 40px
}

.points-list li {
    width: 25%
}

.points-list img {
    display: inline-block;
    height: 37px;
    margin-bottom: 10px
}

.points-list strong {
    display: block;
    line-height: 150%
}

@media(max-width: 1199.98px) {
    .points-list {
        flex-wrap: wrap
    }
    .points-list li {
        width: 47%
    }
    .points-list li img {
        height: 28px
    }
}

@media(max-width: 575.98px) {
    .points-list {
        flex-wrap: wrap;
        justify-content: center
    }
    .points-list li {
        width: 100%;
        text-align: center
    }
}

.ms-container {
    width: 100%;
    max-width: 1224px;
    padding: 0 15px;
    margin: 0 auto
}

@media(min-width: 1400px) {
    .ms-container {
        max-width: 1140px
    }
}

@media(min-width: 1200px) {
    .ms-container {
        max-width: 1140px
    }
}

@media(min-width: 1400px) {
    .container {
        max-width: 1224px
    }
}

.faq-main h3 {
    text-align: center;
    margin-bottom: 35px
}

.faq-main.no-border .faq-wrapper {
    border-top: none
}

.faq-main .faq-wrapper {
    display: block;
    margin-top: 20px;
    padding: 60px 0 50px 0;
    border-top: solid 2px #d5e7ef;
    width: 100%;
    margin: auto
}

.faq-main .faq-wrapper .faq-item {
    width: 100%;
    display: block;
    padding: 5px 0;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: solid 1px #d5e7ef
}

.faq-main .faq-wrapper .faq-item h4 {
    cursor: pointer;
    font-weight: 700;
    margin: 0;
    padding: 30px 20px 30px 50px;
    font-size: 20px;
    position: relative;
    color: #233863;
    transition: color .3s ease-in
}

.faq-main .faq-wrapper .faq-item h4:before {
    content: "";
    width: 34px;
    height: 32px;
    background: url(../images/faq-inactive.svg) no-repeat;
    background-size: contain;
    transition: .3s ease;
    position: absolute;
    top: 28px;
    left: 0
}

.faq-main .faq-wrapper .faq-item h4:hover {
    color: rgba(35, 56, 99, .8)
}

@media(max-width: 767.98px) {
    .faq-main .faq-wrapper .faq-item h4 {
        font-size: 16px;
        padding-left: 33px
    }
}

.faq-main .faq-wrapper .faq-item p {
    font-weight: 500;
    font-size: 16px;
    line-height: 153%;
    color: #1f0846;
    margin: 0
}

.faq-main .faq-wrapper .faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.faq-main .faq-wrapper .faq-item.faqitem-active .faq-question h4 {
    color: #233863
}

.faq-main .faq-wrapper .faq-item.faqitem-active .faq-question h4:before {
    background: url(../images/faq-active.svg) no-repeat;
    background-size: contain
}

.faq-main .faq-wrapper .faq-question.current h4 {
    color: #ee5a09
}

.faq-main .faq-wrapper .faq-question.current h4:before {
    color: #aac1b3
}

.faq-main .faq-wrapper .faq-ans {
    display: none;
    margin-bottom: 30px;
    padding-left: 52px
}

.faq-main .faq-action {
    margin-top: 0;
    padding-bottom: 70px
}

@media(min-width: 1200px) {
    .faq-main .section-heading {
        padding-left: 70px
    }
    .faq-main .section-heading h3 {
        font-size: 64px
    }
}

@media(max-width: 991.98px) {
    .faq-main h2 {
        text-align: center;
        margin-bottom: 30px
    }
    .faq-main .section-heading {
        text-align: center
    }
    .faq-main .section-heading h3 {
        margin-right: auto;
        margin-left: auto
    }
    .faq-main .faq-wrapper {
        width: 100%
    }
    .faq-main .faq-wrapper .faq-ans {
        display: none;
        margin-bottom: 30px;
        padding-left: 0
    }
    .faq-main .faq-wrapper .faq-item p {
        font-size: 16px;
        font-weight: 400
    }
    .faq-main .faq-wrapper .faq-item h4 {
        font-size: 18px;
        font-weight: 700;
        padding: 15px;
        padding-left: 40px
    }
    .faq-main .faq-wrapper .faq-item h4::before {
        width: 25px;
        height: 25px;
        background-size: contain;
        top: 16px
    }
}

@media(max-width: 767.98px) {
    .faq-main .faq-wrapper .faq-item h4 {
        font-size: 16px
    }
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
    padding: 0
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: -20px
}

.video-container .play-button {
    position: absolute;
    top: calc(50% + 47px);
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    text-align: center;
    width: 83px;
    height: 83px;
    line-height: 83px;
    font-size: 32px;
    color: #fff;
    background-color: #ee5a09;
    border: none
}

@media(max-width: 1199.98px) {
    .video-container {
        padding: 40px 0 0 0
    }
    .video-container .play-button {
        top: calc(50% + 20px)
    }
    .video-container video {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-top: -10px
    }
}

.quick-contact {
    background: linear-gradient(90deg, rgb(5, 59, 117) 56%, rgb(43, 163, 236) 56%, rgb(43, 163, 235) 100%);
    background-size: cover;
    background-position: center
}

.quick-contact .content-wraper {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 110px 0 140px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left
}

.quick-contact .section-content {
    max-width: 560px
}

.quick-contact .section-content h2 {
    color: #fff
}

.quick-contact .section-content p {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-top: 25px
}

.quick-contact .section-content .action {
    margin-top: 28px;
    display: flex;
    gap: 17px
}

.quick-contact .section-content .ms-btn.primary-solid:hover {
    background: #ee5a09
}

.quick-contact .section-content .ms-btn.secondary-solid:hover {
    background: #2ba3eb
}

@media(min-width: 1200px) {
    .quick-contact .section-content .ms-btn {
        min-width: 250px
    }
}

@media(max-width: 1199.98px) {
    .quick-contact .section-content .action {
        gap: 10px
    }
    .quick-contact .section-content .ms-btn.primary-solid,
    .quick-contact .section-content .ms-btn.secondary-solid {
        padding: 20px 40px
    }
}

@media(max-width: 399.98px) {
    .quick-contact .section-content .action {
        flex-direction: column
    }
}

footer {
    background: #e9f2f6;
    padding: 80px 0 35px 0;
}

footer h6 {
    font-size: 14px;
    color: #053b75;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.footerline { 
	border: 1px solid #ee5a09;
	border-radius: 10px;
	width: 20%;
	margin-bottom: 16px;
}

.footerlinefullw {
	margin-top: 35px;
	border: 1px solid #3f546b;
	width: 100%;
	opacity: 0.1;
}

footer .social-links {
    display: flex;
    justify-content: end;
    color: #053b75
}

footer .social-links a {
    width: 38px;
    height: 38px;
    background-color: #fff;
    text-align: center;
    line-height: 42px;
    display: inline-block;
    text-decoration: none;
    color: #053b75
}

footer .social-links a:hover {
    color: #2ba3eb
}

footer .social-links li {
    margin-right: 10px
}
footer .social-links li:last-child {
    margin-right: 0px
}

@media(max-width: 1199.98px) {
    footer .social-links {
        justify-content: center
    }
}

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

footer .footer-links li:last-child {
    margin-bottom: 0
}

footer .footer-links a {
    color: #44607d;
    text-decoration: none
}

footer .footer-links a:hover {
    color: #2ba3eb
}

footer .footer-right {
    display: flex;
    justify-content: end
}

footer .footer-right .footer-brief {
    max-width: 212px;
    text-align: right;
}

footer .footer-right p {
    color: #3f546b;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

footer .footer-right .footer-logo {
    display: block;
    margin-bottom: 15px
}

footer .footer-right .footer-logo img {
    max-width: 200px 
}

footer .footer-right h6 {
    margin: 28px 0 10px 0
}
footer .footer-right p 
    font-size: 14px;
    font-weight: 600;
    color: #053b75;
}

@media(max-width: 992px) {

footer .footer-right {
    display: flex;
    justify-content: space-around;
}

footer .footer-right .footer-brief {
    max-width: 212px;
    text-align: center;
}

footer .footer-right p {
    color: #3f546b;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

footer .footer-right .footer-logo {
    display: block;
    margin-bottom: 15px
}

footer .footer-right .footer-logo img {
    max-width: 200px 
}

footer .footer-right h6 {
    margin: 28px 0 10px 0
}
footer .footer-right p 
    font-size: 14px;
    font-weight: 600;
    color: #053b75;
}

@media(max-width: 1199.98px) {
    footer .footer-right {
        justify-content: center;
       
    }
    footer .footer-right .footer-brief {
        max-width: 520px;
        text-align: center
    }
}

footer .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px
}

footer .footer-copyright .btm-links li {
    display: inline-block;
    margin: 0 5px;
    color: #c0c7cf
}

footer .footer-copyright .btm-links li a {
    color: #44607d;
    text-decoration: none
}

@media(max-width: 1199.98px) {
    footer .footer-copyright {
        text-align: center;
        flex-direction: column;
        gap: 30px
    }
    footer .footer-copyright .btm-links a {
        display: inline-block;
        margin-bottom: 10px;
        font-size: 14px
    }
}

footer .payment-metheord {
    display: flex;
    align-items: center
}

footer .payment-metheord p {
    color: #44607d;
    font-size: 14px;
    margin: 0 0 0 10px
}

footer .payment-metheord li {
    display: inline-block;
    margin-right: 5px
}

footer .payment-metheord li a {
    color: #44607d
}

footer .payment-metheord li a:hover {
    color: #2ba3eb
}

footer .payment-metheord li img {
    border-radius: 3px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .13)
}

@media(max-width: 767.98px) {
    footer .payment-metheord {
        flex-direction: column;
        row-gap: 15px
    }

footer h6 {
	text-align: center;
}

.footerline { 
	margin: auto;
	margin-bottom: 10px;
}

.footer-links {
	text-align: center;
}
}

.plans-section {
    position: relative;
    z-index: 2;
    padding: 65px 0
}

.plans-section .section-heading {
    max-width: 1240px;
    text-align: center;
    margin-bottom: 60px
}

.plans-section .section-heading h4 {
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 15px
}

.plans-section .section-heading p {
    color: #434c61
}

.plans-section .section-heading a {
    font-weight: 700;
    line-height: 147%
}

.plan-table .heading {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-bottom: solid 1px #e0e7ec
}

.plan-table .heading .plan-brief {
    width: 25%;
    border-radius: 20px 20px 0 0;
    border-left: 2px solid #e0e7ec;
    border-top: 2px solid #e0e7ec;
    border-bottom: none;
    background: #fff;
    padding: 20px 25px 0px;
}

.plan-table .heading .plans {
    width: 75%
}

.plan-table .heading .fe-listig {
    margin-top: 30px
}

.plan-table .heading .fe-listig dt {
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0
}

.plan-table .heading .fe-listig dd {
    line-height: 150%;
    font-weight: 700;
    margin: 8px 0 0 0;
    padding: 0
}

.plan-table .heading img {
    width: 100%;
    max-width: 320px
}

@media(min-width: 768px) {

.plan-table .heading .plan-brief {
    border-radius: 20px 0px 0 0;
}
}

@media(max-width: 1399.98px) {
    .plan-table .heading .plan-brief {
        width: 25%
    }
    .plan-table .heading .plans {
        width: 75%
    }
}

@media(max-width: 1199.98px) {
    .plan-table .heading {
        flex-wrap: wrap;
        border-bottom: none
    }
    .plan-table .heading .plan-brief {
        width: 100%
    }
    .plan-table .heading .plans {
        width: 100%
    }
}

.plan-table .plan-brief {
    padding-right: 40px;
    padding-top: 10px
    border-radius: 20px 20px 0 0;
}

.plan-table .plan-brief h5 {
    margin-bottom: 15px
}

.plan-table .plan-brief p {
    color: #434c61;
    font-size: 16px
}

.plan-table .plan-brief img {
    margin-top: 25px
}

@media(max-width: 1399.98px) {
    .plan-table .plan-brief {
        padding-right: 30px
    }
}

@media(min-width: 1400px) {
    .plan-table .plan-brief h5 {
        font-size: 36px
    }
}

@media(max-width: 1199.98px) {
    .plan-table .plan-brief {
        padding: 20px;
        margin-bottom: -30px;
        text-align: center;
        border: solid 2px #e0e7ec;
        border-radius: 20px 20px 0 0
    }
    .plan-table .plan-brief p {
        max-width: 420px;
        margin: 0 auto
    }
}

.plan-table .plans {
    display: flex;
    text-align: center;
    border-radius: 0px 20px 0 0;
    border: 2px solid #e0e7ec;
    border-bottom: none;
    background: #fff
}

@media(max-width: 767.98px) {
    .plan-table .plans {
        flex-direction: column;
        border-radius: 20px
    }
}

.plan-table .plans-price {
    padding: 30px 15px;
    width: 25%;
    border-right: solid 2px #e0e7ec
}

.plan-table .plans-price:last-child {
    border-right: none
}

.plan-table .plans-price .plan-icon {
    width: 122px;
    height: 122px;
    padding: 0;
    margin: 0;
    object-fit: contain;
    object-position: center
}

.plan-table .plans-price h6 {
    font-size: 20px;
    margin-bottom: 20px
}

.plan-table .plans-price .pricing {
    margin-top: 20px;
    text-align: center
}

.plan-table .plans-price .pricing span {
    display: block
}

.plan-table .plans-price .pricing-figure {
    color: #3d3632d6
}

.plan-table .plans-price .ms-btn {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    margin-top: 10px;
    padding-right: 0;
    padding-left: 0;
    min-width: inherit;
    font-size: 16px
}

.usporedna {
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    margin-top: 10px;
    padding-right: 0;
    padding-left: 0;
    min-width: inherit;
    font-size: 16px;
    padding: 10px 10px;
}

.plan-table .plans-price .note-sm {
    display: block;
    margin-top: 15px;
    color: #1f0846;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 128%
}

@media(max-width: 1399.98px) {
    .plan-table .plans-price h6 {
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center
    }
    .plan-table .plans-price .plan-icon {
        width: 102px;
        height: 102px
    }
    .plan-table .plans-price .pricing-figure {
        font-size: 26px
    }
    .plan-table .plans-price .pricing-label {
        font-size: 15px
    }
}

@media(max-width: 1199.98px) {
    .plan-table .plans-price {
        padding: 30px 15px;
        padding-bottom: 30px
    }
    .plan-table .plans-price h6 {
        font-size: 18px
    }
}

@media(max-width: 767.98px) {
    .plan-table .plans-price {
        width: 100%;
        border-bottom: solid 2px #e0e7ec;
        border-right-width: 0px
    }
    .plan-table .plans-price:last-child {
        border-radius: 0 0 20px 20px
    }
    .plan-table .plans-price h6 {
        height: auto
    }
    .plan-table .plans-price .ms-btn {
        max-width: 210px;
    }
    .usporedna .ms-btn {
        max-width: 210px
    }
}

.plan-table .icon-close-round {
    color: #979da1;
    font-size: 24px
}

.plan-table .icon-tick-round {
    color: #2ba3eb;
    font-size: 24px
}

.plan-table .ms-table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

.plan-table .ms-table tr {
    position: relative
}

.plan-table .ms-table tr td {
    padding: 18px 0;
    border: solid 1px #e0e7ec;
    border-top: none;
    background-color: #fff;
    text-align: center;
}

.plan-table .ms-table tr td:first-child {
  /*  border-left-color: #fff; */
    border-left-width: 2px;
    width: 25.1%;
    text-align: left
}

.plan-table .ms-table tr td:last-child {
    border-right-width: 2px
}

.plan-table .ms-table tr .plan-label span {
    color: #586369;
    font-size: 14px;
    font-weight: 700;
    padding-left:14px;
}

.plan-table .ms-table tr:last-child td {
    padding: 15px 0 25px 0
}

.plan-table .ms-table tr:last-child td:first-child {
    position: relative
}

.plan-table .ms-table tr:last-child td:first-child::before {
    content: "";
    width: 100%;
    height: 3px;
   /* background-color: #fff; */
    position: absolute;
    bottom: -2px;
    left: 0
}

@media(min-width: 1200px) {
    .plan-table .ms-table tr:last-child td:nth-child(1) {
       /* border-right: none; */
        border-radius: 0 0 0 20px
    }
    .plan-table .ms-table tr:last-child td:nth-child(2) {
        border-radius: 0 0 0 0px
    }
    .plan-table .ms-table tr:last-child td:nth-child(5) {
        border-radius: 0 0 20px 0
    }
    .plan-table .ms-table tr:last-child td:nth-child(6) {
        border-radius: 0 0 20px 0
    }
}

@media(max-width: 1199.98px) {
    .plan-table .ms-table tr {
        display: flex;
        flex-wrap: wrap
    }
    .plan-table .ms-table tr:last-child td:nth-child(2) {
        border-radius: 0 0 0 20px
    }
    .plan-table .ms-table tr:last-child td:nth-child(5) {
        border-radius: 0 0 20px 0
    }
    .plan-table .ms-table tr td {
        width: 25%;
        border-left-color: #e0e7ec
    }
    .plan-table .ms-table tr td:first-child {
        width: 100%;
        border-left-color: #e0e7ec;
        background-color: #f3f3f3;
        padding-left: 15px
    }
    .plan-table .ms-table tr td:first-child::before {
        display: none
    }
    .plan-table .ms-table tr td:last-child {
        border-right-width: 1px
    }
}

.cpanel-brief h4 {
    margin: 0 auto;
    padding: 0 0 45px 0;
    max-width: 820px;
    text-align: center
}

.cpanel-brief .section-image {
    text-align: center
}

.cpanel-brief .section-image img {
    width: 100%;
    max-width: 572px
}

.cpanel-brief .section-content {
    padding: 0 30px;
    margin-top: 20px
}

.cpanel-brief .section-content p {
    margin: 0 0 15px 0;
    line-height: 150%
}

@media(max-width: 991.98px) {
    .cpanel-brief h4 {
        padding-bottom: 20px
    }
    .cpanel-brief .section-content {
        margin-top: 0;
        text-align: center
    }
}

.article-gray,
.article-white {
    margin: 0;
    padding-top: 60px;
    background-color: #eff4f8
}

.article-gray h4,
.article-white h4 {
    margin: 0 0 20px 0;
    max-width: 460px
}

.article-gray .section-image,
.article-white .section-image {
    text-align: center
}

.article-gray .section-image img,
.article-white .section-image img {
    width: 100%;
    max-width: 600px;
    margin-bottom: -10px
}

.article-gray .section-content,
.article-white .section-content {
    padding-bottom: 68px;
    max-width: 580px
}

.article-gray .section-content p,
.article-white .section-content p {
    margin: 0;
    line-height: 150%
}

.article-gray .section-content .ms-btn,
.article-white .section-content .ms-btn {
    margin: 30px 0 0 0
}

@media(max-width: 991.98px) {
    .article-gray .section-content,
    .article-white .section-content {
        margin-right: auto;
        margin-left: auto;
        margin-top: 0;
        padding-bottom: 0;
        text-align: center
    }
    .article-gray h4,
    .article-white h4 {
        margin-right: auto;
        margin-left: auto
    }
    .article-gray .section-image,
    .article-white .section-image {
        text-align: center
    }
    .article-gray .section-image img,
    .article-white .section-image img {
        width: 70%;
        max-width: 600px;
        margin-bottom: -10px
    }
}

.pinned-features {
    padding: 55px 0 80px 0
}

.pinned-features .pinned-feature img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    object-position: center;
    margin: 0 0 15px 0
}

.pinned-features .pinned-feature h6 {
    font-size: 20px;
    margin: 0 0 8px 0
}

@media(max-width: 767.98px) {
    .pinned-features {
        text-align: center
    }
}

.fast-promise {
    min-height: 435px
}

.fast-promise .section-wraper {
    background-color: #eff4f8;
    padding: 80px;
    padding-bottom: 70px;
    border-radius: 18px;
    position: relative;
    bottom: -130px;
    margin-top: -130px
}

.fast-promise .section-wraper .section-content {
    z-index: 1;
    position: relative
}

.fast-promise .section-wraper h4 {
    max-width: 580px;
    margin: 0 0 20px 0
}

.fast-promise .section-wraper p {
    max-width: 580px
}

.fast-promise .section-wraper .ms-btn {
    margin: 45px 0 0 0
}

.fast-promise .section-wraper .section-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 18px;
    height: 100%;
    z-index: 0
}

@media(max-width: 1199.98px) {
    .fast-promise .section-wraper {
        padding: 60px
    }
    .fast-promise .section-wraper .section-bg {
        opacity: .5
    }
}

@media(max-width: 991.98px) {
    .fast-promise .section-wraper {
        padding: 30px
    }
    .fast-promise .section-wraper .section-bg {
        opacity: .3;
        width: 100%;
        object-fit: cover;
        object-position: right
    }
}

.operating-system {
    padding-top: 0px;
    color: #fff;
    text-align: center
}

.operating-system h4 {
    max-width: 968px;
    margin-right: auto;
    margin-left: auto
}

.operating-system .text {
    width: 60%;
    margin: 0 auto
}

.operating-system h1 {
    margin: 0 0 20px 0
}

.operating-system p {
    font-size: 16px;
    font-weight: 300;
    margin: 0
}

.operating-system .os-logos {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 74px;
    border-bottom: solid 0px #e7e7e7;
    gap: 12px
}

.operating-system .os-logos li {
    height: 150px;
    width: 150px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 0;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #dae9f0
}

.operating-system .os-logos li img {
    height: 66px;
    width: 128px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 15px
}

.operating-system .os-logos li h6 {
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

@media(min-width: 1200px) {
    .operating-system h4 {
        font-size: 32px
    }
}

@media(max-width: 1399.98px) {
    .operating-system .os-logos li {
        height: 180px;
        width: 180px
    }
    .operating-system .os-logos li img {
        width: 90px;
        height: 60px
    }
}

@media(max-width: 991.98px) {
    .operating-system .os-logos {
        gap: 10px;
        flex-wrap: wrap
    }
    .operating-system .os-logos li {
        height: 150px;
        width: 150px;
        padding: 10px 0
    }
    .operating-system .os-logos li img {
        height: 50px;
        width: 80px;
        object-fit: contain;
        object-position: center;
        margin-bottom: 10px
    }
    .operating-system .os-logos li h6 {
        font-size: 15px
    }
}

.sortable-planstable {
    padding: 50px 0 50px 0;
    position: relative;
    z-index: 3
}

.sortable-planstable.pb-140 {
    padding-bottom: 140px
}

.sortable-planstable .section-heading {
    text-align: center;
    max-width: 1153px;
    margin: 0 auto
}

.sortable-planstable .section-heading h3 {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 15px
}

.sortable-serverentry {
    display: flex;
    justify-content: center;
    gap: 0;
    border-radius: 10px;
    border: solid 1px #2ba3eb;
    max-width: 420px;
    margin: 0 auto;
    margin-top: 40px
}

.sortable-serverentry button {
    width: 50%;
    border: none;
    color: #2ba3eb;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 6px;
    background: rgba(0, 0, 0, 0);
    position: relative;
    border-radius: 10px
}

.sortable-serverentry button span {
    position: relative;
    z-index: 1
}

.sortable-serverentry button::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #2ba3eb;
    position: absolute;
    left: 0;
    top: 0;
    /* border-radius: 10px; */
    opacity: 0;
    transition: .7s ease
}

.sortable-serverentry button.active {
    color: #2ba3eb;
}

.sortable-serverentry button.active span {
    color: #fff
}

.sortable-serverentry button.active::before {
    opacity: 1
}

@media(max-width: 991.98px) {
    .sortable-serverentry button {
        font-size: 15px
    }
}

@media(max-width: 767.98px) {
    .sortable-serverentry {
       /* flex-direction: column; */
       /* border: none */
    }
    .sortable-serverentry button {
        width: 100%;
      /* padding: 12px 6px; */
	font-size: 12px;
       /* box-shadow: 0 0 0 1px #cfebfe; */
       /* border-radius: 50px */
    }
}

.servers-list-holder ul.resp-tabs-list,
.servers-list-holder .resp-tabs-container {
    float: none !important;
    width: 100% !important
}

.sorting-btns {
    color: #455a64;
    padding: 5px 10px 5px 10px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 3px 0 0 3px;
    border-right: solid 1px #f1f2f9;
    outline: none;
    text-decoration: none
}

.sorting-btns:hover {
    text-decoration: none
}

.sorting-btns.active {
    background-color: #fff;
    border-radius: 3px;
    border: none;
    position: relative;
    padding: 5px 20px 5px 10px;
    margin-left: 10px
}

.sorting-btns.active::before {
    font-family: "icomoon";
    position: absolute;
    font-size: 10px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    height: 10px;
    width: 10px;
    transition: transform .3s ease
}

.sorting-btns.active.asc::before {
    content: ""
}

.sorting-btns.active.desc::before {
    content: ""
}

.sortable-planstable__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px
}

.sortable-planstable__header .lbl {
    margin-right: 10px;
    font-weight: 700
}

.sortable-planstable__header .sort-left {
    display: flex;
    align-items: center
}

.sortable-planstable__header .sort-left ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.sortable-planstable__header .sort-left li {
    display: inline-block;
    margin: 0
}

.sortable-planstable__header .sort-left li:last-child {
    border: none
}

.sortable-planstable__header .sort-left span {
    margin-right: 5px
}

.sortable-planstable__header .filter-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
    column-gap: 20px
}

.sortable-planstable__header .filter-right__location {
    display: flex;
    align-items: center
}

.sortable-planstable__header .nice-select.ms-select {
    border-color: #2ba3eb;
    font-weight: 700;
    width: 100%;
    min-width: 150px
}

.sortable-planstable__header .nice-select.ms-select .list {
    width: 100%
}

.sortable-planstable__header .nice-select.ms-select .current {
    color: #2ba3eb
}

@media(max-width: 991.98px) {
    .sortable-planstable__header {
        justify-content: center;
        gap: 15px
    }
    .sortable-planstable__header .filter-right {
        justify-content: center;
        row-gap: 15px
    }
    .sortable-planstable__header .sort-left {
        flex-direction: column;
        justify-content: center
    }
    .sortable-planstable__header .sort-left .lbl {
        margin-right: 0;
        margin-bottom: 10px
    }
    .sortable-planstable__header .sort-left .sort-ul1 {
        justify-content: center;
        gap: 5px
    }
    .sortable-planstable__header .sort-left .sort-ul1 .sorting-btns {
        display: block;
        background-color: #59819d;
        border-radius: 3px;
        color: #fff;
        margin: 0
    }
}

.server-tabls-row {
    background-color: #fafcff; /* #455c67 s prozirnošću */
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 0px 1px #81c5ff;
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    transition: .2s ease
}

.server-tabls-row:hover {
    border-color: #81c5ff;
}

.server-tabls-row .sm-label {
    font-size: 12px;
    color: #434c61;
    font-weight: 400
}

.configure-active {
    font-size: 14px !important;
    padding: 10px 13px 10px 13px !important;
}

.configure-noactive {
    font-size: 14px !important;
    padding: 10px 13px 10px 13px !important;
    background-color: #b2b2b2 !important;
}

.server-tabls-row h6 {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: #434c61;
}

.server-tabls-row .ms-btn.btn-md {
    padding: 13px 20px;
    font-size: 16px;
    min-width: auto
}

.server-tabls-row .colum-item {
    position: relative;
    padding-left: 40px
}

.server-tabls-row .colum-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 30px;
    width: 30px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat
}

.server-tabls-row .plan-price {
    font-size: 22px;
    color: #434c61;
    font-weight: 700
}

.server-tabls-row .plan-price small {
    display: block;
    font-size: 13px;
    color: #434c61;
    font-weight: 300
}

.server-tabls-row .plan-duration,
.server-tabls-row .plan-action {
    display: flex;
    justify-content: center
}

.vpsplans {
    justify-content: right;
}

.server-tabls-row .colum-item.cpu-icon::after {
    background-image: url(../images/icon-table-cpu.svg)
}

.server-tabls-row .colum-item.memory-icon::after {
    background-image: url(../images/icon-table-memory.svg)
}

.server-tabls-row .colum-item.ssd-icon::after {
    background-image: url(../images/icon-table-ssd.svg)
}

.server-tabls-row .colum-item.bandwidth-icon::after {
    background-image: url(../images/icon-table-bandwidth.svg)
}

.server-tabls-row .colum-item.network-icon::after {
    background-image: url(../images/icon-table-network.svg)
}

.server-tabls-row .colum-1 {
    width: 27%;
    padding: 3px
}

.server-tabls-row .colum-2 {
    width: 14%;
    padding: 3px
}

.server-tabls-row .colum-3 {
    width: 9%;
    padding: 3px
}

.server-tabls-row .colum-4 {
    width: 15%;
    padding: 3px
}

.server-tabls-row .colum-5 {
    width: 14%;
    padding: 3px
}

.server-tabls-row .colum-6 {
    width: 9%;
    padding: 3px
}

.server-tabls-row .colum-7 {
    width: 12%;
    padding: 3px
}

.server-tabls-row .colum-1 {
    padding-left: 55px;
    position: relative
}

.server-tabls-row .colum-1 img {
    position: absolute;
    left: 8px;
    top: 0px
}

@media(max-width: 1199.98px) {
    .server-tabls-row {
        flex-wrap: wrap;
        align-items: stretch;
        border: none;
        gap: 3px
    }
    .server-tabls-row .colum-2,
    .server-tabls-row .colum-3,
    .server-tabls-row .colum-4,
    .server-tabls-row .colum-5,
    .server-tabls-row .colum-6,
    .server-tabls-row .colum-7 {
        width: 33.1%;
        border: solid 1px #ddd;
        padding: 10px
    }
    .server-tabls-row .colum-1 {
        width: 100%;
        border: solid 1px #ddd;
        padding: 10px 10px 10px 55px
    }
    .server-tabls-row .colum-7 {
        border: none;
        justify-content: flex-start;
        padding: 0
    }
    .server-tabls-row .colum-7 .ms-btn {
        line-height: 55px;
        width: 100%;
        border-radius: 0;
        background: #38a2ea;
        color: #fff
    }

.server-tabls-row .colum-1 img {
	top: 8px
}
}

@media(max-width: 991.98px) {
    .server-tabls-row .colum-2,
    .server-tabls-row .colum-3,
    .server-tabls-row .colum-4,
    .server-tabls-row .colum-5,
    .server-tabls-row .colum-6,
    .server-tabls-row .colum-7 {
        width: 33%
    }
}

@media(max-width: 767.98px) {
    .server-tabls-row .colum-2,
    .server-tabls-row .colum-3,
    .server-tabls-row .colum-4,
    .server-tabls-row .colum-5,
    .server-tabls-row .colum-6,
    .server-tabls-row .colum-7 {
        width: 49.6%
    }
}

@media(max-width: 575.98px) {
    .server-tabls-row .colum-2,
    .server-tabls-row .colum-3,
    .server-tabls-row .colum-4,
    .server-tabls-row .colum-5,
    .server-tabls-row .colum-6,
    .server-tabls-row .colum-7 {
        width: 100%
    }
}

.out-of-stock.active {
    opacity: .5;
    pointer-events: none
}

.out-of-stock.active .colum-1 img {
    filter: grayscale(100)
}

.filter-switch {
    padding-left: 0
}

.filter-switch .form-check-input[type=checkbox] {
    width: 45px;
    margin: 0;
    border-radius: 10px;
    border-color: rgba(43, 163, 235, .5);
    position: relative
}

.filter-switch .form-check-input[type=checkbox]:checked {
    background-color: #2ba3eb;
    border-color: rgba(43, 163, 235, .5)
}

.filter-switch label {
    font-size: 14px;
    font-weight: 700;
    color: #434c61
}

.dds-customerservice .section-wrap {
    height: auto;
    border-radius: 4px;
    position: relative;
    background: linear-gradient(139deg, #002768 45%, #2BA3EB 99.98%);
    box-shadow: 0px 20px 20px 20px rgba(0, 0, 0, .03);
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 35px
}

.dds-customerservice .section-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    max-width: 460px;
    object-fit: cover
}

.dds-customerservice .section-content {
    padding-left: 300px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    width: 77%
}

.dds-customerservice .section-content h5 {
    color: #fff
}

.dds-customerservice .section-content p {
    color: #95bde2
}

.dds-customerservice .white-solid:hover {
    color: #fff;
    background-color: #2ba3eb
}

.dds-customerservice .section-action {
    width: 23%
}

.dds-customerservice .section-action .ms-btn {
    width: 100%
}

@media(min-width: 1200px) {
    .dds-customerservice {
        font-size: 32px
    }
}

@media(max-width: 1199.98px) {
    .dds-customerservice .section-bg {
        opacity: .4
    }
    .dds-customerservice .section-content {
        padding-left: 150px;
        width: 73%
    }
    .dds-customerservice .section-action {
        width: 27%
    }
}

@media(max-width: 991.98px) {
    .dds-customerservice .section-wrap {
        flex-direction: column;
        row-gap: 20px
    }
    .dds-customerservice .section-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center
    }
    .dds-customerservice .section-action {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px
    }
    .dds-customerservice .section-action .ms-btn {
        width: 240px
    }
}

.whychoose-brief {
    background: #2ba3eb;
    position: relative;
    margin-top: 74px
}

.whychoose-brief .image-bg {
    height: 100%;
    width: 100%;
    max-width: 1000px;
    position: absolute;
    right: 0;
    object-fit: cover;
    object-position: left;
    margin-left: -250px
}

.whychoose-brief .content-wraper {
    padding: 72px 0 80px 0;
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}

.whychoose-brief .section-image {
    padding-right: 30px;
    text-align: left
}

.whychoose-brief .section-image img {
    max-width: 384px;
    width: 100%
}

.whychoose-brief h4 {
    color: #fff;
    margin-bottom: 15px
}

.whychoose-brief p {
    color: #fff;
    max-width: 620px;
    line-height: 157%
}

.whychoose-brief .ms-btn {
    margin-top: 32px
}

.whychoose-brief .ms-btn:hover {
    background-color: #00295a
}

@media(min-width: 1600px) {
    .whychoose-brief .image-bg {
        margin-left: 0
    }
}

@media(max-width: 1199.98px) {
    .whychoose-brief .content-wraper {
        padding: 80px 0 80px 0;
        background-size: cover;
        position: relative
    }
    .whychoose-brief .content-wraper::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(43, 163, 235, .5)
    }
    .whychoose-brief .content-wraper .section-image,
    .whychoose-brief .content-wraper .section-content {
        position: relative;
        z-index: 1
    }
}

@media(max-width: 991.98px) {
    .whychoose-brief .image-bg {
        max-width: 100%;
        margin-left: 0
    }
    .whychoose-brief .section-image {
        text-align: center
    }
    .whychoose-brief .section-content {
        text-align: center
    }
    .whychoose-brief .section-content p {
        margin: 0 auto
    }
}

.article-section {
    padding: 60px 0 90px 0
}

.article-section h4 {
    margin-bottom: 10px
}

.article-section .ms-btn {
    margin-top: 30px
}

.article-section .block--01 {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.article-section .block--01 .section-heading h4 {
    max-width: 520px;
    margin: 0 auto
}

.article-section .block--01 .section-heading img {
    width: 100%;
    max-width: 370px;
    margin-top: -60px
}

.article-section .block--01 .list {
    display: flex;
    align-items: flex-start;
    column-gap: 20px
}

.article-section .block--01 .underline-list {
    width: 48%
}

.article-section .block--01 .underline-list li:last-child::after {
    display: none
}

@media(max-width: 991.98px) {
    .article-section .block--01 .section-heading {
        text-align: center
    }
    .article-section .block--01 .section-heading img {
        margin-top: 0px
    }
}

@media(max-width: 767.98px) {
    .article-section .block--01 .list {
        flex-direction: column
    }
    .article-section .block--01 .underline-list {
        width: 100%
    }
}

.article-section .block--02 .section-image {
    text-align: center
}

.article-section .block--02 .section-image img {
    width: 100%;
    max-width: 590px
}

@media(max-width: 991.98px) {
    .article-section .block--02 {
        text-align: center
    }
}

.core-features.dds-corefeatures {
    padding-top: 85px
}

@media(max-width: 991.98px) {
    .core-features.dds-corefeatures {
        padding: 50px 0
    }
}

.about-intro {
    padding: 65px 0;
    position: relative;
    z-index: 1
}

.about-intro h3 {
    max-width: 420px;
    margin: 0 0 10px 0
}

.about-intro .section-image img {
    max-width: 565px;
    width: 100%
}

@media(max-width: 991.98px) {
    .about-intro .section-image img {
        width: 70%
    }
}

.services-offered {
    padding-top: 60px;
    background-color: #eff4f8;
    text-align: center
}

.services-offered h3 {
    max-width: 968px;
    margin-right: auto;
    margin-left: auto
}

.services-offered .os-logos {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 80px;
    border-bottom: solid 1px #e7e7e7;
    gap: 12px
}

.services-offered .os-logos li {
    height: 158px;
    width: 161px;
    background-color: #fff;
    border-radius: 22px;
    padding: 20px 0;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.services-offered .os-logos li .list_icon {
    display: block;
    height: 56px;
    width: 77px
}

.services-offered .os-logos li img {
    height: 56px
}

.services-offered .os-logos li h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    margin-top: 13px;
    color: #54606c
}

.services-offered .os-logos li h6 span {
    display: block
}

@media(min-width: 1200px) {
    .services-offered h4 {
        font-size: 40px
    }
}

@media(max-width: 1399.98px) {
    .services-offered .os-logos li img {
        height: 50px
    }
}

@media(max-width: 1199.98px) {
    .services-offered .os-logos {
        gap: 10px;
        flex-wrap: wrap
    }
    .services-offered .os-logos li {
        height: 150px;
        width: 150px
    }
    .services-offered .os-logos li h6 {
        font-size: 15px
    }
}

.whychoose-brief.official-data {
    background-color: #0976b8;
    margin-top: 0
}

.whychoose-brief.official-data .content-wraper {
    padding: 60px 0 0 0
}

.whychoose-brief.official-data .section-content {
    position: relative;
    /*bottom: -77px;
    margin-top: -77px*/
    padding-top: 50px;
    padding-bottom: 100px;
}

.whychoose-brief.official-data .data-card {
    display: flex;
    gap: 23px;
    background-color: #2888c2;
    padding: 34px 30px 34px 46px;
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    margin-top: 19px
}

.whychoose-brief.official-data .data-card-image {
    display: inline-block;
    border-radius: 50%
}

.whychoose-brief.official-data .data-card-image img {
    box-shadow: 0px 20px 20px 5px rgba(0, 97, 156, .3);
    border-radius: 50%
}

.whychoose-brief.official-data .data-card-content h6 {
    color: #e1f4ff;
    font-size: 20px;
    margin: 0 0 13px 0
}

.whychoose-brief.official-data .data-card-content li {
    color: #b4e3ff;
    font-weight: 400;
    line-height: 153%
}

@media(max-width: 991.98px) {
    .whychoose-brief.official-data .data-card {
        flex-direction: column
    }
}

.reference-logos {
    padding-top: 117px;
    padding-bottom: 90px
}

.reference-logos .section-heading {
    text-align: center
}

.reference-logos h3 {
    margin-bottom: 10px
}

.reference-logos ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 24px;
    row-gap: 22px;
    margin-top: 40px
}

.reference-logos ul li {
    width: 180px;
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    border: 1px solid #ddd;
    background: #fff
}

.reference-logos ul li img {
    max-width: 160px;
    max-height: 80px
}

@media(min-width: 1200px) {
    .reference-logos p {
        font-size: 18px;
        font-weight: 500
    }
}

@media(max-width: 1399.98px) {
    .reference-logos ul {
        row-gap: 15px;
        column-gap: 15px
    }
    .reference-logos ul li {
        width: 170px;
        height: 100px
    }
}

@media(max-width: 767.98px) {
    .reference-logos ul {
        row-gap: 15px;
        column-gap: 15px
    }
    .reference-logos ul li {
        width: 140px;
        height: 100px
    }
    .reference-logos ul li img {
        max-width: 100px
    }
}

.contact-intro {
    background: #eff4f8;
    padding-top: 0;
    padding-bottom: 110px
}

.contact-cards {
    position: relative;
    z-index: 5;
    margin-top: -100px
}

@media(max-width: 1199.98px) {
    .contact-cards {
        margin-top: -50px
    }
}

@media(max-width: 767.98px) {
    .contact-cards {
        margin-top: -30px
    }
}

.contact-card {
    display: flex;
    align-items: flex-end;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0px 15px 25px 0px rgba(0, 0, 0, .04)
}

.contact-card .box-image {
    width: 35%;
    padding: 0
}

.contact-card .box-image img {
    max-width: 390px;
    width: 100%
}

.contact-card .card-content {
    width: 23%;
    padding: 80px 20px
}

.contact-card .card-content p {
    color: #44607d;
    font-weight: 500
}

.contact-card .card-links {
    width: 42%;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 20px;
    column-gap: 35px
}

.contact-card .card-links .action {
    width: 45%
}

.contact-card .card-links .action .ms-btn.btn-md {
    width: 100%;
    min-width: inherit;
    padding: 13px 15px
}

.contact-card .card-links .action .ms-btn.btn-md:hover {
    background-color: #2ba3eb
}

.contact-card .contact-number label {
    display: block;
    color: #54606c
}

.contact-card .contact-number .bold-link {
    font-size: 18px;
    color: #2ba3eb;
    font-weight: 700
}

@media(max-width: 1399.98px) {
    .contact-card .card-image {
        width: 48%
    }
    .contact-card .card-content {
        width: 48%
    }
    .contact-card .card-links {
        width: 48%
    }
}

@media(min-width: 1200px) {
    .contact-card .card-content h4 {
        font-size: 37px;
        margin-bottom: 20px
    }
}

@media(max-width: 1199.98px) {
    .contact-card {
        flex-wrap: wrap
    }
    .contact-card .box-image {
        width: 50%;
        padding: 20px;
        padding-bottom: 0
    }
    .contact-card .card-content {
        width: 50%
    }
    .contact-card .card-links {
        width: 100%;
        row-gap: 20px;
        column-gap: 20px
    }
    .contact-card .card-links .action {
        width: 31.3%
    }
}

@media(max-width: 767.98px) {
    .contact-card {
        padding: 30px
    }
    .contact-card .box-image {
        padding: 0;
        width: 100%;
        text-align: center
    }
    .contact-card .box-image img {
        width: 70%
    }
    .contact-card .card-content {
        width: 100%;
        padding: 20px 0;
        text-align: center
    }
    .contact-card .card-links {
        width: 100%;
        padding: 20px 0
    }
    .contact-card .card-links .action {
        width: 47.8%
    }
    .contact-card .contact-number .bold-link {
        font-size: 16px
    }
}

@media(max-width: 575.98px) {
    .contact-card .card-links {
        column-gap: 0;
        row-gap: 10px
    }
    .contact-card .card-links .contact-number {
        text-align: center
    }
    .contact-card .card-links .action {
        width: 100%
    }
}

.contact-map {
    text-align: center
}

.contact-map img {
    width: 100%;
    max-width: 1920px
}

@media(max-width: 1199.98px) {
    .contact-map img {
        height: 500px;
        width: 100%;
        object-fit: cover;
        object-position: center
    }
}

.contact-form {
    padding: 67px 0 95px 0
}

.contact-form h4 {
    text-align: center;
    margin: 0 0 50px 0
}

.contact-form label {
    margin: 0 0 5px 0;
    display: block
}

.contact-form label .mandatory {
    color: #2ba3eb
}

.contact-form .ms-select {
    width: 100%;
    line-height: 63px;
    height: 63px
}

.contact-form .ms-select .list {
    width: 100%
}

.contact-form .ms-select .current {
    font-weight: 700;
    color: #263238
}

.contact-form textarea.form-control {
    width: 100%;
    height: 155px
}

.contact-form .action {
    text-align: center;
    margin-top: 50px
}

.ssl-offers {
    padding: 78px 0;
    position: relative;
    z-index: 1
}

.ssl-offers .section-heading {
    text-align: center;
    margin-bottom: 40px
}

.ssl-offers .section-heading h3 {
    margin: 0 0 10px 0
}

.ssl-offers-card {
    display: flex;
    padding: 28px 20px;
    margin-bottom: 8px;
    border-radius: 4px;
    background: rgba(69, 90, 100, 0.9); /* Promijenjeno u RGBA s prozirnošću */
    transition: .2s ease;
    box-shadow: 0px 0px 0px 1px #e9e9e9
}

.ssl-offers-card:hover {
#    box-shadow: 0px 15px 15px 15px rgba(43, 163, 235, .14), 0px 0px 0px 2px #2ba3eb
}

.ssl-offers-card .ssl-details {
    width: 89%
}

.ssl-offers-card .ssl-price {
    width: 11%;
    text-align: center;
}

.ssl-offers-card .ssl-price h6 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: normal
}

.ssl-offers-card .ssl-price .ms-btn {
    min-width: auto;
    margin-top: 15px;
    padding-right: 20px;
    padding-left: 20px
}

@media(max-width: 1599.98px) {
    .ssl-offers-card .ssl-details {
        width: 88%
    }
    .ssl-offers-card .ssl-price {
        width: 12%
    }
}

@media(max-width: 1199.98px) {
    .ssl-offers-card .ssl-details {
        width: 80%
    }
    .ssl-offers-card .ssl-price {
        width: 20%
    }
}

@media(max-width: 767.98px) {
    .ssl-offers-card {
        flex-direction: column
    }
    .ssl-offers-card .ssl-details {
        width: 100%
    }
    .ssl-offers-card .ssl-price {
        width: 100%;
        margin-top: 25px;
        padding-top: 15px;
        border-top: solid 1px #e9e9e9
    }
}

.ssl-offers .sm-label {
    font-size: 14px;
    color: #becad2;
    font-weight: 400
}

.ssl-offers ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.ssl-offers ul li {
    width: 25%;
    padding-right: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative
}

.ssl-offers ul li::after {
    content: "";
    width: calc(100% - 20px);
    height: 1px;
    border-bottom: dashed 1px #e9e9e9;
    position: absolute;
    bottom: 0;
    left: 0
}

.ssl-offers ul h6 {
    font-weight: 700;
    font-size: 16px;
    color: #f1f3f3
}

@media(min-width: 1200px) {
    .ssl-offers ul li:nth-child(5),
    .ssl-offers ul li:nth-child(6),
    .ssl-offers ul li:nth-child(7),
    .ssl-offers ul li:nth-child(8) {
        padding-bottom: 0;
        margin-bottom: 0
    }
    .ssl-offers ul li:nth-child(5)::after,
    .ssl-offers ul li:nth-child(6)::after,
    .ssl-offers ul li:nth-child(7)::after,
    .ssl-offers ul li:nth-child(8)::after {
        display: none
    }
}

@media(max-width: 1199.98px) {
    .ssl-offers ul li {
        width: 33.3%
    }
    .ssl-offers ul li:nth-child(7),
    .ssl-offers ul li:nth-child(8) {
        padding-bottom: 0;
        margin-bottom: 0
    }
    .ssl-offers ul li:nth-child(7)::after,
    .ssl-offers ul li:nth-child(8)::after {
        display: none
    }
}

@media(max-width: 991.98px) {
    .ssl-offers ul li {
        width: 50%
    }
}

@media(max-width: 767.98px) {
    .ssl-offers ul li {
        width: 50%
    }

.pre-header .right .ms-btn {
	font-size: 13px;
	padding: 7px 8px;
}

.language-selector .language-button {font-size: 11px; }
.lang-two {font-size: 11px; }

.pre-header .right { column-gap: 2px; }

i.fa.fa-cog {display: none; }
i.fa.fa-shopping-cart {display: none; }

}

@media(max-width: 575.98px) {
    .ssl-offers ul li {
        width: 100%
    }
    .ssl-offers ul li:nth-child(7) {
        padding-bottom: 15px;
        margin-bottom: 15px
    }
    .ssl-offers ul li:nth-child(7)::after {
        display: block
    }
}

.article-gray.ssl-article1 h4 {
    max-width: 515px
}

.article-gray.ssl-article1 .section-image img {
    max-width: 454px
}

@media(max-width: 991.98px) {
    .article-gray.ssl-article1 .section-image img {
        width: 70%
    }
}

.article-white.ssl-google_ranking {
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 120px
}

.article-white.ssl-google_ranking .section-image img {
    max-width: 454px
}

.article-white.ssl-google_ranking .section-content {
    padding-bottom: 0
}

@media(max-width: 991.98px) {
    .article-white.ssl-google_ranking .section-image img {
        width: 70%
    }
}

.core-features.ssl-features {
    padding-top: 80px
}

.domain-name-list {
    padding: 78px 0;
    position: relative;
    z-index: 4
}

.domain-name-list .section-heading {
    text-align: center;
    margin: 0 0 40px 0
}

.domain-name-list .section-heading h3 {
    margin: 0 0 15px 0
}

.domain-name-list .price {
    color: #020f16;
    font-weight: 700
}

.domain-name-list .validity {
    color: #59819d;
    font-size: 14px
}

.domain-name-list table thead {
    width: calc(100% - 1em)
}

.domain-name-list table tbody {
    display: block;
    /* max-height: 700px; */
    /* overflow: auto */
}

.domain-name-list table tbody::-webkit-scrollbar-track {
    background-color: #fff
}

.domain-name-list table tbody::-webkit-scrollbar {
    width: 5px;
    background-color: #fff
}

.domain-name-list table tbody::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2BA3EB 0%, #B1E2FF 100%);
    border-radius: 5px
}

.domain-name-list table thead,
.domain-name-list table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed
}

.domain-name-list table {
    border-collapse: collapse;
    width: 100%;
    margin: 0
}

.domain-name-list table thead {
    border-bottom: solid 1px rgba(0, 0, 0, 0)
}

.domain-name-list table thead th {
    color: #59819d;
    font-weight: 500;
    line-height: 147%;
    font-size: 16px;
    text-align: left;
}

.domain-name-list table tbody {
    border: solid 1px #eff9ff;
    border-radius: 15px
}

.domain-name-list table tbody tr {
    border-style: hidden
}

.domain-name-list table tbody tr td {
    padding: 15px 10px;
    text-align: right;
}

.domain-name-list table tbody tr td:first-child {
    color: #020f16;
    font-size: 18px;
    font-weight: 700
}

.domain-name-list table tbody tr:nth-child(odd) {
    background-color: #eff9ff
}

@media(min-width: 767.99px) {
.domain-name-list table tbody tr td {
    text-align: center;
}

.domain-name-list table thead th { 
    text-align: center;
}
}

@media(max-width: 767.98px) {
    .domain-name-list table {
        border: 0
    }
    .domain-name-list table caption {
        font-size: 1.3em
    }
    .domain-name-list table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }
    .domain-name-list table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em
    }
    .domain-name-list table tr td {
        border-bottom: 1px solid #cfebfe;
        display: block;
        font-size: .8em;
        text-align: right
    }
    .domain-name-list table tr td:before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 13px;
        float: left;
        text-transform: uppercase
    }
    .domain-name-list table tr td:last-child {
        border-bottom: 0
    }
}

.article-gray.already-have-domain {
    padding: 65px 0
}

.article-gray.already-have-domain .section-image img {
    max-width: 614px
}

.article-gray.already-have-domain .section-content {
    max-width: 525px;
    padding-bottom: 0
}

.article-white.bulk-domain-tools {
    background-color: #fff
}

.article-white.bulk-domain-tools .section-image {
    text-align: center
}

.article-white.bulk-domain-tools .section-image img {
    max-width: 490px
}

.article-white.bulk-domain-tools .section-content {
    padding-bottom: 0
}

.article-white.bulk-domain-tools .white-cards {
    margin-top: 85px;
    margin-bottom: -105px
}

.article-white.bulk-domain-tools .white-cards .white-card {
    height: 100%;
    padding: 60px 50px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, .08)
}

.article-white.bulk-domain-tools .white-cards .white-card h5 {
    margin-bottom: 15px
}

.article-white.bulk-domain-tools .white-cards .white-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 169px;
    margin: 0 0 30px 0
}

.article-white.bulk-domain-tools .white-cards .white-card img {
    max-width: 228px;
    max-height: 169px
}

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

.datacenter-intro {
    padding: 75px 0 0 0;
    position: relative;
    z-index: 1
}

.datacenter-intro h4 {
    margin: 0 0 20px 0;
    padding: 0
}

.datacenter-intro .video-container {
    width: 50%;
    max-width: 620px;
    float: left;
    margin-right: 40px;
    margin-bottom: 0
}

.datacenter-intro p {
    margin: 0 0 28px 0;
    line-height: 150%
}

@media(max-width: 991.98px) {
    .datacenter-intro {
        text-align: center
    }
    .datacenter-intro .video-container {
        width: 100%;
        float: inherit;
        padding-top: 0;
        margin-bottom: 20px
    }
}

.datacenter-gallery {
    padding: 0 0 145px;
    background: url(../images/bg-shape-blue.svg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative
}

.datacenter-gallery::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 150px;
    background-color: #fff
}

@media(max-width: 1199.98px) {
    .datacenter-gallery {
        padding: 50px 0
    }
}

.datacenter-gallery .owl-carousel .owl-stage-outer {
    padding: 50px 0 100px 0
}

.datacenter-gallery .owl-carousel .carousel-image {
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0);
    box-shadow: 0px 25px 75px 0px rgba(43, 163, 235, 0);
    transition: .3s ease
}

.datacenter-gallery .owl-carousel .carousel-image:hover {
    border: 5px solid #fff;
    box-shadow: 0px 25px 75px 0px rgba(43, 163, 235, .42)
}

.datacenter-gallery .owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    column-gap: 80px;
    margin-top: -150px
}

.datacenter-gallery .owl-carousel .owl-nav button.owl-prev,
.datacenter-gallery .owl-carousel .owl-nav button.owl-next {
    background-color: #fff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transform: rotate(90deg);
    color: rgba(43, 163, 235, .6);
    transition: color .3s ease;
    font-size: 20px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, .25)
}

.datacenter-gallery .owl-carousel .owl-nav button.owl-prev:hover,
.datacenter-gallery .owl-carousel .owl-nav button.owl-next:hover {
    color: #2ba3eb
}

@media(max-width: 1199.98px) {
    .datacenter-gallery .owl-carousel .owl-nav {
        margin-top: -135px;
        column-gap: 20px
    }
    .datacenter-gallery .owl-carousel .owl-nav button.owl-prev,
    .datacenter-gallery .owl-carousel .owl-nav button.owl-next {
        width: 62px;
        height: 62px
    }
}

@media(max-width: 575.98px) {
    .datacenter-gallery .owl-carousel .owl-nav button.owl-prev,
    .datacenter-gallery .owl-carousel .owl-nav button.owl-next {
        width: 52px;
        height: 52px
    }
}

.datacenter-gallery .details-holder {
    display: flex;
    margin-top: 45px
}

.datacenter-gallery .details-holder .details {
    text-align: center;
    width: 33.33%;
    padding-right: 30px;
    margin-right: 30px;
    border-right: solid 1px #28455e
}

.datacenter-gallery .details-holder .details:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none
}

.datacenter-gallery .details-holder .details .ms-btn {
    min-width: 100%;
    margin-right: auto;
    margin-left: auto
}

.datacenter-gallery .details-holder .details .tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 6px
}

.datacenter-gallery .details-holder .details .tags li {
    line-height: 160%;
    padding: 3px 10px;
    color: #fff;
    border: 1px solid #2ba3eb;
    background: #02243d;
    border-radius: 5px;
    transition: .3s ease;
    cursor: default
}

.datacenter-gallery .details-holder .details .tags li:hover {
    background-color: #2ba3eb
}

.datacenter-gallery .details-holder .details h6 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 20px 0
}

.datacenter-gallery .details-holder .details h6 span {
    color: #2ba3eb
}

@media(max-width: 1399.98px) {
    .datacenter-gallery .details-holder .details {
        padding-right: 30px;
        margin-right: 30px
    }
}

@media(max-width: 991.98px) {
    .datacenter-gallery .details-holder {
        flex-direction: column;
        row-gap: 0
    }
    .datacenter-gallery .details-holder .details {
        width: 100%;
        border-right: none;
        border-bottom: solid 1px #28455e;
        margin-right: 0;
        margin-bottom: 30px;
        padding-right: 0;
        padding-bottom: 30px
    }
    .datacenter-gallery .details-holder .details:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0
    }
    .datacenter-gallery .details-holder .details .ms-btn {
        min-width: auto;
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        display: block;
        margin-bottom: 10px
    }
    .datacenter-gallery .details-holder .details .tags li {
        font-size: 14px
    }
}

.lb-outerContainer {
    border-radius: 20px !important
}

.lb-outerContainer .lb-image {
    border-radius: 20px !important
}

.features-whitecards {
    padding: 70px 0
}

.features-whitecards .white-cards {
    margin-top: 85px;
    margin-bottom: -105px
}

.features-whitecards .white-cards .white-card {
    height: 100%;
    padding: 60px 50px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, .08)
}

.features-whitecards .white-cards .white-card h5 {
    margin-bottom: 15px
}

.features-whitecards .white-cards .white-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 169px;
    margin: 0 0 30px 0
}

.features-whitecards .white-cards .white-card img {
    max-width: 228px;
    max-height: 169px
}

.features-whitecards.datacenter-whitecard .white-cards {
    margin-top: 0;
    margin-bottom: 0
}

.features-whitecards.datacenter-whitecard .white-card {
    background: none;
    box-shadow: none;
    position: relative;
    padding-top: 0;
    padding-bottom: 0
}

.features-whitecards.datacenter-whitecard .white-card::before {
    content: "";
    width: 1px;
    right: -15px;
    top: 0;
    height: 100%;
    position: absolute;
    background-color: #e2e2e2
}

.features-whitecards.datacenter-whitecard .white-card.last::before {
    display: none
}

@media(max-width: 1199.98px) {
    .features-whitecards .white-card.mid::before {
        display: none
    }
}

@media(max-width: 991.98px) {
    .features-whitecards .white-card::before {
        display: none
    }
}

@media(min-width: 992px) {

.col-xl-2f {width: 19%; }
.col-xl-4f {width: 24%; }
 }

button#kvmtempButton.active::before { border-radius: 10px 0px 0px 10px !important; }
button#nonkvmtempButton.active::before { border-radius: 0px 10px 10px 0px !important; }

button#vegButton.active::before { border-radius: 10px 0px 0px 10px !important; }
button#nonVegButton.active::before { border-radius: 0px 10px 10px 0px !important; }

/*# sourceMappingURL=main.css.map */