* {
    margin: 0px;
    padding: 0px;
    outline: 0;
}

img {
    border: 0;
}

ol,
ul {
    list-style: none
}

html,
body {
    min-height: 100%;
    width: 100%;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--mainText);
}

img {
    max-width: 100%;
    height: auto;
}

a, 
a:active, 
a:visited  {
    color: var(--colorBlue);
    text-decoration: none;
	}
*,
*:before,
*:after {
    box-sizing: inherit;
}



/*Misc*/

:root {
    --colorBlue: #008bdb;
    --colorGrey: #494949;
    --colorLightBlue: #f5f9ff;
    --mainText: #111111;
    --greyText: #3e3e42;
}
/*color: var(--colorBlue);*/
/*color: var(--colorGrey);*/
/*color: var(---mainText);*/
/*color: var(--greyText);*/


.f18 {
    font-size: 18px;
}

.semiB {
    font-weight: 600;
}



/*Top Nav*/

nav.top-nav {
    background-color: var(--colorBlue);
    height: 50px;
    display: flex;
}

nav.top-nav ul {
    padding: 0 15px;
    display: flex;
    align-self: center;
    justify-content: space-around;
    font-size: 12px;
    font-weight: 400;
    width: 100%;
}

@media only screen and (min-width: 450px) {
    nav.top-nav ul {
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 1200px) {
    nav.top-nav ul {
        
        font-size: 13px;
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

nav.top-nav ul li:nth-child(1) {
    margin-right: 0;
}

@media only screen and (min-width: 450px) {
    nav.top-nav ul li:nth-child(1) {
        margin-right: auto;
    }
}

nav.top-nav ul li a {
    color: #fff;
    display: flex;
    height: 16px;
    position: relative;
    display: inline-block;
}

nav.top-nav ul li a:hover {
    text-decoration: none;
}

nav.top-nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 1px solid;
    margin-top: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.65s, -webkit-transform 0.35s;
    transition: opacity 0.65s, transform 0.65s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

nav.top-nav ul li a:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#     nav.top-nav ul li:nth-child(1) {
#    padding-left: 25px;
#    background: url(../images/mail-white.png) center left no-repeat;
#     background-size: 15px auto;
}

nav.top-nav ul li:nth-child(2) {
    padding-left: 22px;
    background: url(../images/lock-white.png) center left no-repeat;
    background-size: 12px auto;
}

nav.top-nav ul li:nth-child(3) {
    padding-left: 26px;
    background: url(../images/tech-white.png) center left no-repeat;
    background-size: 16px auto;
}

nav.top-nav ul li:nth-child(4) {
    padding-left: 26px;
    background: url(../images/cart-white.png) center left no-repeat;
    background-size: 16px auto;
}

nav.top-nav ul li:nth-child(2),
nav.top-nav ul li:nth-child(3) {
    margin-right: 0;
}

@media only screen and (min-width: 450px) {
    nav.top-nav ul li:nth-child(2),
    nav.top-nav ul li:nth-child(3) {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 1200px) {
    nav.top-nav ul li:nth-child(2),
    nav.top-nav ul li:nth-child(3) {
        margin-right: 20px;
    }
}


/*Main Header*/

.main-header {
    width: 100%;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    position: relative;
    z-index: 2;
    position: relative;
    border-bottom: 1px solid var(--colorBlue);
}

@media only screen and (min-width: 1200px) {
    header.main-header {
        width: 1200px;
        padding: 20px 0;
        margin: 0 auto;
        column-gap: 30px;
    }
}

nav.main-nav {
    margin: 0 auto;
    display: none;
}

@media only screen and (min-width: 1200px) {
    nav.main-nav {
        margin: 0 auto;
        display: block;
    }
}

nav.main-nav ul {
    display: flex;
    column-gap: 40px;
}

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

nav.main-nav ul li a,
nav.main-nav ul li a:visited
{
    color: #595959;
    transition: all 500ms;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a.on
{
    color: var(--colorBlue);
    text-decoration: none;
    -webkit-text-stroke-width: 0.4px;
}

nav.main-nav ul li.drop::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -12px;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border-right: 1px solid rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    
    transition: all 600ms;
}

nav.main-nav ul li.drop:hover::after {
    border-right: 1px solid rgba(0, 139, 219, 1);
    border-bottom: 1px solid rgba(0, 139, 219, 1);
    transform: rotate(-135deg);
}

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

nav.main-nav ul li.drop ul {
    position: absolute;
    width: 330px;
    padding: 10px 30px;
    top: 44px;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.07);
    font-size: 12px;
    transform-origin: center -150px;
    /* Axis moved up to create a larger arc of movement. */
    transform: rotateX(-25deg);
    transition: transform 0.3s;
    opacity: 0;
    visibility: hidden;
}

nav.main-nav ul li.drop ul.show {
    transform: rotateX(0);
    opacity: 1;
    visibility: visible;
}

nav.main-nav ul li.drop ul::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 28px;
    top: -28px;
    left: 0;
}

nav.main-nav ul li.drop ul li {
    border-bottom: 1px solid #ececec;
}

nav.main-nav ul li.drop ul li:last-child {
    border-bottom: 0;
}

nav.main-nav ul li.drop ul a {
    color: #606c7a;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 90px;
    justify-content: center;
    padding: 0 0 0 75px;
    transition: all 0.5s;
}

nav.main-nav ul li.drop ul a:hover {
    opacity: 0.85;
}

.host-1 {
    background: url('../images/drop-ic1.png') center left no-repeat;
    background-size: 50px auto;
}

.host-4 {
    background: url('../images/drop-ic13.png') center left no-repeat;
    background-size: 50px auto;
}

.host-2 {
    background: url('../images/drop-ic2.png') center left no-repeat;
    background-size: 50px auto;
}

.host-3 {
    background: url('../images/drop-ic3.png') center left no-repeat;
    background-size: 45px auto;
}

.server-1 {
    background: url('../images/drop-ic4.png') center left no-repeat;
    background-size: 50px auto;
}

.server-1 {
    background: url('../images/drop-ic4.png') center left no-repeat;
    background-size: 50px auto;
}

.server-2 {
    background: url('../images/drop-ic6.png') center left no-repeat;
    background-size: 40px auto;
}

.server-3 {
    background: url('../images/drop-ic5.png') center left no-repeat;
    background-size: 40px auto;
}

.email-marketing {
    background: url('../images/drop-ic8.png') center left no-repeat;
    background-size: 40px auto;
}

.web-development {
    background: url('../images/drop-ic9.png') center left no-repeat;
    background-size: 40px auto;
}

.aboutus {
    background: url('../images/drop-ic10.png') center left no-repeat;
    background-size: 40px auto;
}

.terms {
    background: url('../images/drop-ic11.png') center left no-repeat;
    background-size: 40px auto;
}

.careers {
    background: url('../images/drop-ic12.png') center left no-repeat;
    background-size: 40px auto;
}

.soon {
    background: url('../images/drop-ic7.png') center left no-repeat;
    background-size: 50px auto;
}

span.drop-title {
    font-size: 16px;
    font-weight: 200;
    color: var(--colorBlue);
}

nav.main-nav ul li.drop ul a:hover span.drop-title {
    -webkit-text-stroke-width: 0.9px;
}

span.drop-dsc {
    font-size: 11px;
    font-weight: 300;
    color: var(--colorGrey);
}

.drop-dsc b {
	font-family:Open Sans;
}


/*Small screen menu*/

.menu-toggle {
    position: relative;
    display: none;
    perspective: 2000px;
}

@media screen and (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }
    #navbar {
	padding:20px 20px !important;
	}
.sides > div {
padding-left:20px;
padding-right:20px;
}

}

input.burger {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
}

span.burger {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #494949;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

span.burger.b1 {
    transform-origin: 0% 0%;
}

span.burger.b3 {
    transform-origin: 0% 100%;
}

input.burger:checked ~ span.burger {
  opacity: 1;
  transform: rotate(45deg) translate(-4px, -1px);
  background: #494949;
}

input.burger:checked ~ span.burger.b2 {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

input.burger:checked ~ span.burger.b3 {
  transform: rotate(-45deg) translate(-2px, -1px);
}

.menu-mobile {
    background-color: #f4f4f4;
    font-size: 16px;
    padding: 20px;
    position: absolute;
    top: 45px;
    right: -15px;
    width: 100vw;
    min-height: 100vh;
    overflow-y: scroll;
    transform-origin: 100% 0;
    transform: scale(.90);
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

input.burger:checked ~ .menu-mobile {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.menu-mobile dl {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-mobile dl dt {
    position: relative;
}

.menu-mobile dl dt.arrow a::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border-right: 2px solid rgba(0, 0, 0, 1);
    border-bottom: 2px solid rgba(0, 0, 0, 1);
    transition: all 600ms;
}

.menu-mobile dl dt.open a::after {
    transform: rotate(225deg);
    border-right: 2px solid rgba(0, 139, 219, 1);
    border-bottom: 2px solid rgba(0, 139, 219, 1);
    transition: all 600ms;
}


.menu-mobile dl dt a {
    color: var(--mainText);
}

.menu-mobile dl dt a:hover,
.menu-mobile dl dt a.active
{
    color: var(--colorBlue);
    text-decoration: none;
}

.menu-mobile dl dt.arrow:hover a::after {
    border-right: 2px solid rgba(0, 139, 219, 1);
    border-bottom: 2px solid rgba(0, 139, 219, 1);
}

.menu-mobile dl dd {
    display: none;
    margin-top: -20px;
    margin-bottom: 15px;
}

.menu-mobile dl dd.mb0 {
    margin-bottom: 0;
}

.menu-mobile dl dd .mm-sub-el {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.menu-mobile dl dd a {
    color: #606c7a;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 80px;
    justify-content: center;
    padding: 0 0 0 75px;
    transition: all 0.5s;
    border-bottom: 1px solid #ececec;
    background-size: 40px auto;
}

.menu-mobile dl dd a:hover {
    text-decoration: none;
    opacity: 0.85;
}

.menu-mobile dl dd a:hover span.drop-title {
    -webkit-text-stroke-width: 0.9px;
}


/*Phone*/
.main-phone {
    display: flex;
    flex-direction: column;
    background: url('../images/call.png') center left no-repeat;
    background-size: 25px auto;
    padding: 0 0 0 35px;
    margin: 0 0 0 auto;
}


.main-phone.mm {
    width: 155px;
    margin: 25px auto;
    display: flex
}

.main-phone.ml {
    display: none;
}

@media only screen and (min-width: 460px) {
    .main-phone.mm {
        display: none;
    }
    .main-phone.ml {
        display: flex;
    }
}

@media only screen and (min-width: 1200px) {
    .main-phone {
    }
}

.main-phone a {
    font-weight: 700;
    font-family: Open Sans;
}

.main-phone span {
    font-size: 12px;
}


/*Live chat*/
button.live-chat-btn {
    cursor: pointer;
    height: 30px;
    padding: 0 20px;
    border: 0;
    background-color: var(--colorBlue);
    border-radius: 15px;
    color: #fff;
    font-weight: 300;
    font-size: 13px;
    transition: 0.25s;
    margin: 0 0 0 auto;
}

@media only screen and (min-width: 460px) {
    button.live-chat-btn {
        visibility:hidden;
	display:none;
    }
}

button.live-chat-btn:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em rgba(0,139,219,0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,139,219,0.3);
    }
}


/*Index header*/

header.index-header-container {
    width: 100%;
    background-color: #f5f9ff;
}

.index-header {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 0;
}

@media only screen and (min-width: 800px) {
    .index-header {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 1200px) {
    .index-header {
        width: 1200px;
        margin: 0 auto;
    }
}

.index-header .ih-banner {
    display: grid;
    place-items: center;
    padding: 0 20px;
    order: 1;
}

@media only screen and (min-width: 800px) {
    .index-header .ih-banner {
        order: 2;
    }
}

.index-header .ih-details {
    padding: 60px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    order: 2;
}

@media only screen and (min-width: 800px) {
    .index-header .ih-details {
        padding: 0 0 0 30px;
        order: 1;
    }
}

.onWhite h1 {
    font-size: 13px;
    color: var(--colorBlue);
    margin-bottom: 10px;
}

.seo-onWhite h1 {
    font-size: 12px;
    color: var(--colorBlue);
    font-weight:normal;
}

.seo-onBlue h1 {
    font-size: 0.85em;
    color: #f2f2f2;
    font-weight:normal;
}



.index-header h2 {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    color: var(--greyText);
}

.ih-domains {
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    width: 100%;
    justify-content: space-between;
    margin: 20px 0 0 0;
    grid-row-gap: 30px;
}

@media only screen and (min-width: 660px) {
    .ih-domains {
        flex-direction: row;
    }
}

.ih-options {
    display: flex;
    column-gap: 10px;
}

input::placeholder{
    opacity: 0.5;
}


/*Home input*/

.ih-domains input {
    width:100%;
}

@media only screen and (min-width: 660px) {
    .ih-domains input {
        width: 440px;
    }
}

.form__group {
  position: relative;
}

.form__field {
    font-family: 'Raleway', sans-serif;
    width: 350px;
    border: 0;
    outline: 0;
    font-size: 13px;
    color: var(--mainText);
    background: transparent;
    transition: border-color 0.2s;
    border-bottom: 1px solid #eaeaea;
    background: url('../images/web-address.png') center left no-repeat;
    background-size: 20px auto;
    padding: 0 0 0 35px;
    height: 35px;
    transition: 0.25s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 13px;
    cursor: text;
    top: 9px;
    height: 26px;
}

.form__label {
    position: absolute;
    top: -13px;
    display: block;
    transition: 0.2s;
    font-size: 10px;
    color: #7b7d80;
    padding: 0 0 0 35px;
    height: 35px;
}

.form__field:focus {
  font-weight: 500;
  border-width: 1px;
  border-color: var(--colorBlue);
  border-image-slice: 1;
}
.form__field:focus ~ .form__label {
  position: absolute;
  top: -13px;
  display: block;
  transition: 0.2s;
  font-size:10px;
  color: var(--colorBlue);
}

/* reset input */
.form__field:required, .form__field:invalid {
  box-shadow: none;
}



/*Home button*/

.ih-domains button {
    cursor: pointer;
    height: 35px;
    padding: 0 15px;
    border: 0;
    background-color: #005C92;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 1px solid #137dbf;
    font-weight: 500;
    transition: 0.25s;
}

.ih-domains button:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em rgba(0,139,219,0);
}

/*Prices*/

.ih-prices {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.ih-prices span {
    font-size: 20px;
    font-weight: 700;
    display: block;
}

.ih-prices span:nth-of-type(5),
.ih-prices span:nth-of-type(6) {
    display: none;
}

@media only screen and (min-width: 500px) {
    .ih-prices span:nth-of-type(5) {
        display: block;
    }
}

@media only screen and (min-width: 580px) {
    .ih-prices span:nth-of-type(5),
    .ih-prices span:nth-of-type(6) {
        display: block;
    }
}

.ih-prices span sup {
    color: var(--colorBlue);
    font-weight: 400;
    font-size: 14px;
    padding: 0 0 0 5px;
    font-family: Open Sans;
}




 /*Custom select*/
.custom-select {
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #9b9ca0;
}

/* Arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #9b9ca0;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
} 



/*Footer*/

.page-footer-container {
    background-color: #111111;
    width: 100%;
    color: #fff;
    font-size: 13px;
    padding: 50px 0 30px 0;
}

.page-footer {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, 150px);
    justify-content: space-between;
    padding: 0 15px;
    grid-row-gap: 50px;
}

@media only screen and (min-width: 1200px) {
    .page-footer {
        grid-template-columns: repeat(auto-fill, 230px);
    }
}

@media only screen and (min-width: 1200px) {
    .page-footer {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.page-footer li {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.page-footer li:nth-of-type(1) {
    gap: 20px;
}

.page-footer li > span:first-of-type {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--colorBlue);
}

.footer-location,
.footer-phone, 
.footer-mail {
    background: url('../images/location-white.png') 0 5px no-repeat;
    background-size: 15px auto;
    padding: 0 0 2px 20px;
}

.footer-location {
    background: url('../images/location-white.png') 0 5px no-repeat;
    background-size: 15px auto;
}

.footer-phone {
    background: url('../images/phone-white.png') 0 2px no-repeat;
    background-size: 12px auto;
    font-family:Open Sans;
}

.footer-mail {
    background: url('../images/mail2-white.png') 0 2px no-repeat;
    background-size: 12px auto;
}

.page-footer li a {
    color: #fff;
}

.page-footer-social {
    width: 100%;
    padding: 25px 15px;
/*    background-color: #0a4262;*/
    background-color: var(--mainText);
    font-size: 12px;
    color: #fff;
    border-top: 1px solid #393939;
}

@media only screen and (min-width: 530px) {
    .page-footer-social {
        padding: 15px;
    }
}

.page-footer-social > div:first-of-type {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

@media only screen and (min-width: 530px) {
    .page-footer-social > div:first-of-type {
        flex-direction: row;
        padding: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .page-footer-social footer {
        width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

.page-footer-social ul, .footer-social ul {
    display: flex;
    gap: 10px;
}

.page-footer-social ul li a, .footer-social ul li a {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    display: grid;
    place-items: center;
    transition: 0.25s;
}

.page-footer-social ul li a:hover, .footer-social ul li a:hover {
    animation: pulseWhite 1s;
    box-shadow: 0 0 0 1em rgba(255,255,255,0);
}

@keyframes pulseWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    }
}


/*Packages*/

.packages {
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 0 15px;
    /*margin: -50px auto 50px auto;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.07);*/
}

@media only screen and (min-width: 1200px) {
    .packages {
        width: 1200px;
        padding: 0;
    }
}

h3 {
    color: var(--mainText);
    text-align: center;
    margin: 0 15px 30px 15px;
    font-size: 32px;
    font-weight: 400;
}

h3 b {
    color: var(--colorBlue);
    font-weight: 400;
}

h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    color: #595959;
    margin: 10px auto 0 auto;
    font-family: Open Sans;
}

@media only screen and (min-width: 630px) {
    h3 span {
        width: 100%;
    }
}

.packages > div > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, 230px);
    justify-content: center;
    gap:12px;
    margin: 0 0 0px 0;
}

@media only screen and (min-width: 1200px) {
    .packages > div {
        justify-content: space-between;
    }
}

.package {
    background-color: #fff;
    border: 1px solid #ededed;
    color: #595959;
    font-size: 12px;
    padding: 15px 15px 25px 15px;
    position: relative;
    margin: 0 0 10px 0;
    /*transition: all 1s cubic-bezier(.68,-0.55,.27,1.55);*/
}

/*.package:hover {
    transform: scale(1.1);
    cursor: crosshair;
}*/

.package li {
    border-bottom: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 15px 0;
}

.package li:nth-of-type(1) {
}

.package li:nth-of-type(1) span:nth-of-type(1) {
    font-size: 18px;
    color: var(--greyText);
    text-align:center;
}

.package li:nth-of-type(1) span:nth-of-type(1) b {
    color: var(--colorBlue);
    font-weight:bold;
}

.package li:nth-of-type(1) span:nth-of-type(2) {
    line-height: 18px;
}

.package li:nth-of-type(2) {
    padding: 15px 0;
    flex-direction: row;
    justify-content: space-between;
}

.package li:nth-of-type(2) > span {
    font-size: 16px;
}

.package li:nth-of-type(2) > p {
    display: flex;
    flex-direction: column;
    font-size: 10px;
    justify-content: space-between;
}

.package li:nth-of-type(2) > p span {
    color: var(--colorBlue);
    font-weight: 500;
    font-size:15px;
}

.package li:nth-of-type(2) > p span i {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 3px solid var(--colorBlue);
    background-color: #f5f9ff;
    border-radius: 100%;
    margin: 0 auto;
    perspective: 1000px;
}

.package li:nth-of-type(2) > span:nth-of-type(1) b {
    font-family:Open Sans;
    font-size: 22px;
    color: var(--colorBlue);
    font-weight: 800;
}

.package li:nth-of-type(2) sup {
    font-size: 16px;
    padding: 0 3px 0 0;
    vertical-align: top;
}

.package li:nth-of-type(3) {
    border: 0;
    padding: 15px 0 0 0;
}

.package li:nth-of-type(3) span {
    background: url('../images/check-blue.png') center left no-repeat;
    background-size: 12px auto;
    padding: 0 0 0 18px;
}

.package li:nth-of-type(3) b {
    color: #000;
    font-size: 11px;
}

.package li:nth-of-type(3) button {
    cursor: pointer;
    border: 0;
    background-color: #005C92;
    color: #fff;
    padding: 10px 0;
    margin: 0 0 0 0;
}

.package li:nth-of-type(3) button:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em rgba(0,139,219,0);
}

.package li:nth-child(2) span {
	font-family:Open Sans;
	color:#000;
}

.package li.popular {
    position: absolute;
    top: -30px;
    right: 0;
    width: 100%;
    height: 30px;
    background-color: #005C92;
    color: #fff;
    text-orientation: mixed;
    line-height: 14px;
    padding: 8px 0 0 0;
    font-size: 11px;
    font-weight:bold;
    text-align: center;
    writing-mode: horizontal-tb;
}


/*On blue*/
.onBlue {
    background-color: var(--colorLightBlue);
}

.onBlue article {
    margin: 0 auto;
    padding: 25px 0;
}

@media only screen and (min-width: 1200px) {
    .onBlue article {
        width: 1200px;
    }
}

.onBlue article.w1000 {
    margin: 0 auto;
    padding: 20px 15px;
}

@media only screen and (min-width: 1000px) {
    .onBlue article.w1000 {
        width: 1000px;
        padding: 20px 0;
    }
}

ul.features {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, 238px);
    justify-content: center;
    gap: 15px;
    text-align: center;
    font-size: 12px;
}

@media only screen and (min-width: 1000px) {
    ul.features {
        width: 1000px;
    }
}

ul.features li {
    background-color: #fff;
    padding: 20px 20px 30px 20px;
    color: var(--greyText);
    line-height: 18px;
    position: relative;
}

ul.features li:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    height: 3px;
    width: 100%;
    border-bottom: 3px solid var(--colorBlue);
    opacity: 0;
    -webkit-transition: opacity 0.65s, -webkit-transform 0.35s;
    transition: opacity 0.65s, transform 0.65s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

ul.features li:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

ul.features li i {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 3px solid var(--colorBlue);
    background-color: #f5f9ff;
    border-radius: 100%;
    margin: 0 auto;
    perspective: 1000px;
}

ul.features li img {
    transition: all 0.65s;
}

ul.features li:hover img {
    transform: rotateY(180deg);
}

ul.features li span {
    font-size: 16px;
    font-weight: 600;
    color: var(--mainText);
    display: block;
    margin: 15px 0 10px 0;
}

ul.features li p {
font-family: Open Sans;
font-size:13px;
color:#595959;
}


/*On white*/
.onWhite {
    background-color: #fff;
}

.onWhite article {
    margin: 0 auto;
    padding: 20px 0;
}

@media only screen and (min-width: 1200px) {
    .onWhite article {
        width: 1200px;
    }
}

.onWhite article.w1000 {
    margin: 0 auto;
    padding: 20px 15px;
}

@media only screen and (min-width: 1000px) {
    .onWhite article.w1000 {
        width: 1000px;
        padding: 20px 0;
    }
}

.display-area1 {
    display: grid;
    /*grid-template-columns: 1fr;*/
    gap: 50px;
    position: relative;
}

@media only screen and (min-width: 760px) {
    .display-area1 {
        /*grid-template-columns: 200px 1fr;*/
        gap: 50px;
    }
}

ul.da1-nav {
    display: none;
    flex-direction: column;
    gap: 10px 0;
}

@media only screen and (min-width: 760px) {
    ul.da1-nav {
        display: flex;
    }
}

ul.da1-nav li {
    background-color: #fff;
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.06);
    height: 38px;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

ul.da1-nav li::after {
    content: '';
    width: 3px;
    height: 0;
    background-color: var(--colorBlue);
    position: absolute;
    top: 8px;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.65s, -webkit-transform 0.35s;
    transition: opacity 0.65s, transform 0.65s;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

ul.da1-nav li:hover::after,
ul.da1-nav li.active::after {
    height: 22px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

ul.da1-nav li:hover,
ul.da1-nav li.active {
    color: var(--colorBlue);
}

.da1-content {
    /*grid-template-columns: minmax(300px, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px 30px;
    font-size: 12px;
    line-height: 18px;
    display: none;
    opacity: 0;
    visibility: hidden;
    right: -20px;
    transition: all .4s ease;
}

.da1-content.on {
    display: grid;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 500px) {
    .da1-content {

        /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    }
}

.da1-content li {
    background: #fff;
    border: 1px solid #ececec;
    padding: 20px 15px 20px 0;
    display: grid;
    grid-template-columns: 60px 1fr;
}

.da1-content li span {
font-size: 16px;
font-weight: 600;
color: var(--mainText);
display: block;
margin: 15px 0 10px 0;

/*    font-size: 13px;
    font-weight: 600;
    color: var(--mainText);
    display: block;
    margin: 0 0 5px 0;*/
}

.da1-content li i {
    grid-row: span 2;
    display: grid;
    place-items: center;
}


ul.services {
    font-size: 12px;
    line-height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

@media only screen and (min-width: 750px) {
    ul.services {
        flex-direction: row;
    }
}

ul.services li {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    transition: all .6s cubic-bezier(.68,-0.55,.27,1.55);
}

@media only screen and (min-width: 750px) {
    ul.services li:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.07);
    }
}

ul.services li > span:nth-of-type(1){
    font-size: 16px;
    font-weight: 600;
    color: var(--mainText);
    display: block;
    margin: 15px 0 0 0;
    border-bottom: 1px solid #ededed;
    padding: 0 0 15px 0;
}

ul.services li i {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--colorBlue);
    border-radius: 100%;
    margin: 0 auto;
    margin: 15px auto;
}

ul.process {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}


@media only screen and (min-width: 630px) {
    ul.process {
        flex-direction: row;
    }
}

@media only screen and (min-width: 770px) {
    ul.process {
        gap: 50px;
    }
}

ul.process li {
    position: relative;
}

@media only screen and (min-width: 770px) {
    ul.process li:nth-of-type(1)::after {
        content: '';
        position: absolute;
        width: 85px;
        height: 25px;
        background: url(../images/dotted-arrow.png) 0 0 no-repeat;
        background-size: 85px auto;
        right: -63px;
        top: 50%;
        transform: translate(0, -50%);
    }

    ul.process li:nth-of-type(2)::after {
        content: '';
        position: absolute;
        width: 85px;
        height: 25px;
        background: url(../images/dotted-arrow.png) 0 0 no-repeat;
        background-size: 85px auto;
        right: -63px;
        top: 50%;
        transform: translate(0, -50%);
    }
}

ul.process li > span {
    font-size: 16px;
    font-weight: 600;
    color: var(--mainText);
    display: block;
    margin: 15px 0 10px 0;
}

ul.process li i {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    background-color: #9b9ca0;
    border-radius: 100%;
    margin: 0 auto;
    margin: 15px auto;
    position: relative
}

ul.process li i span {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background-color: var(--colorBlue);
    border-radius: 100%;
    color: #fff;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}


.blueBadge {
    background-color: var(--colorBlue);
}

.blueBadge ul {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    padding: 30px 15px;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media only screen and (min-width: 650px) {
    .blueBadge ul {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

@media only screen and (min-width: 1200px) {
    .blueBadge ul {
        width: 1000px;
        padding: 30px 0;
    }
}

.blueBadge ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blueBadge ul span.f28 {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

button.white-btn {
    background-color: #fff;
    color: var(--colorBlue);
    border: 0;
    cursor: pointer;
    border-radius: 15px;
    font-size: 13px;
    padding: 0 20px;
    height: 30px;
}

button.white-btn:hover {
    animation: pulseWhite 1s;
    box-shadow: 0 0 0 1em rgba(255,255,255,0);
}

/*ul.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}*/

ul.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 30px;
    padding-bottom:20px;
}

ul.testimonials li,
.testimonial {
    background-color: #f5f9ff;
    background-image: url(../images/testimonials.png);
    background-position: right 20px bottom 20px;
    background-size: auto 20px;
    background-repeat: no-repeat;
    padding: 20px 20px 35px 20px;
    text-align: left;
    font-size: 12px;
    line-height: 18px;
}

ul.testimonials li .client,
.testimonial .client {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
}

ul.testimonials li .client span,
.testimonial .client span {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

ul.testimonials li .client span span,
.testimonial .client span span {
    font-size: 10px;
    font-weight: 400;
    color: var(--colorBlue);
}

ul.testimonials li img,
.testimonial img {
    width: 75px;
    height: 75px;
    border-radius: 100%;
}

/*Swiper*/
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 12px;
    background: #fff;
    padding: 50px 0;
    box-sizing: border-box;
}

@media only screen and (min-width: 500px) {
    .swiper-slide {
        padding: 10px 45px;
    }
}


.swiper.big {
    display: none;
}

.swiper.small {
    display: block;
}

@media only screen and (min-width: 770px) {
    .swiper.big {
        display: block;
	min-width:280px;
    }
    
    .swiper.small {
        display: none;
    }
}


.full {
   height: auto;
   display: flex;
   justify-content: center;
   text-align:center;
   padding-bottom:30px;
}

.right, .left {
text-align:center;
}

p {
font-size:13px;
line-height:20px;
color:#595959;
text-align:justify;
font-family: Open Sans;
}

.box h3 {
text-align:left;
font-family: "Open Sans", sans-serif;
font-size:16px;
margin: 0 15px 10px 0px;
color: var(--colorBlue);
}

.ordernow a {
color:#fff;
}

.ordernow button {
width:100%;
font-size:14px;
text-transform:uppercase;
}

.firstpage {
border-bottom:0px !important;
}

@media screen and (max-width: 600px) {
.live-chat-btn {
visibility:hidden;
}
}

@media screen and (min-width: 600px) {
.live-chat-btn {
display:none;
}
}


/* Plugin Styles */
.cookie-popup {
    display: none;
    position: fixed;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fafafa;
    color: #000;
    font-family: 'Raleway', 'Noto Sans', sans-serif;
    line-height: initial;
    box-sizing: initial;
}
.cookie-popup-inner {
    display: table;
    width: 100%;
}
.cookie-popup-left {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
    padding-bottom: 0px;
}
.cookie-popup-headline {
    font-size: 20px;
}
.cookie-popup-sub-headline {
    font-size: 12px;
}
.cookie-popup-right {
    display: grid;
    vertical-align: middle;
    padding: 10px 15px;
    text-align: right;
}
.cookie-popup-accept-cookies {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.49;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 8px 8px;
    font-size: 16px;
    min-width: 64px;
    line-height: 1.5;
    border-radius: 2px;
    text-decoration: none;
    color: #000;
    background-color: #c7c7c7;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.12) rgba(0,0,0,.15);
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}
.cookie-popup-accept-cookies:hover {
    bottom: 1px;
    text-decoration: none;
    color: inherit;
}
.cookie-popup-accept-cookies:active {
    bottom: 0;
    color: initial;
}
.cookie-popup-learn-more {
    display: block;
    clear: both;
    font-size: 14px;
    margin-top: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: #000;
    opacity: 0.75;
}
.cookie-popup-learn-more:hover {
    opacity: 1;
    text-decoration: none;
}
.cookie-popup-learn-more:active,
.cookie-popup-learn-more:focus {
    text-decoration: none;
}
.cookie-popup-lower {
    padding: 15px;
    font-size: 14px;
}


/* Positions */
.cookie-popup.position-bottom {
    bottom: 0;
    box-shadow: 0 -4px 6px rgba(50,50,93,.11), 0 -1px 3px rgba(0,0,0,.08);
}
.cookie-popup.position-top {
    top: 0;
    box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
}
.cookie-popup.position-bottomright {
    width: 300px;
    right: 10px;
    bottom: 10px;
    left: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-bottomright .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-bottomleft {
    width: 200px;
    left: 10px;
    bottom: 10px;
    right: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-bottomleft .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-topright {
    width: 300px;
    right: 10px;
    top: 10px;
    left: inherit;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-topright .cookie-popup-right {
    width: initial;
}
.cookie-popup.position-topleft {
    width: 300px;
    left: 10px;
    top: 10px;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}
.cookie-popup.position-topleft .cookie-popup-right {
    width: initial;
}


/* Themes */
.theme-light .cookie-popup { background-color: #fafafa; color: #000; }
.theme-light .cookie-popup-accept-cookies { background-color: #c7c7c7; color: #000; }
.theme-light .cookie-popup-learn-more { color: #000; }

.theme-dark .cookie-popup { background-color: #484848; color: #fff; }
.theme-dark .cookie-popup-accept-cookies { background-color: #212121; color: #fff; }
.theme-dark .cookie-popup-learn-more { color: #fff; }

.theme-red .cookie-popup { background-color: #ef5350; color: #fff; }
.theme-red .cookie-popup-accept-cookies { background-color: #b61827;  color: #fff; }
.theme-red .cookie-popup-learn-more { color: #fff; }

.theme-pink .cookie-popup { background-color: #ec407a; color: #fff; }
.theme-pink .cookie-popup-accept-cookies { background-color: #b4004e; color: #fff; }
.theme-pink .cookie-popup-learn-more { color: #000; color: #fff; }

.theme-purple .cookie-popup{ background-color: #ab47bc; color: #fff; }
.theme-purple .cookie-popup-accept-cookies { background-color: #790e8b; color: #fff; }
.theme-purple .cookie-popup-learn-more { color: #fff; }

.theme-deeppurple .cookie-popup { background-color: #7e57c2; color: #fff; }
.theme-deeppurple .cookie-popup-accept-cookies { background-color: #4d2c91; color: #fff; }
.theme-deeppurple .cookie-popup-learn-more { color: #fff; }

.theme-indigo .cookie-popup { background-color: #5c6bc0; color: #fff; }
.theme-indigo .cookie-popup-accept-cookies { background-color: #23408e; color: #fff; }
.theme-indigo .cookie-popup-learn-more { color: #fff; }

.theme-blue .cookie-popup { background-color: #42a5f5; color: #fff; }
.theme-blue .cookie-popup-accept-cookies { background-color: #0077c2; color: #fff; }
.theme-blue .cookie-popup-learn-more { color: #fff; }

.theme-lightblue .cookie-popup { background-color: #29b6f6; color: #000; }
.theme-lightblue .cookie-popup-accept-cookies { background-color: #0086c3; color: #000; }
.theme-lightblue .cookie-popup-learn-more { color: #000; }

.theme-cyan .cookie-popup { background-color: #26c6da; color: #000; }
.theme-cyan .cookie-popup-accept-cookies { background-color: #0095a8; color: #000; }
.theme-cyan .cookie-popup-learn-more { color: #000; }

.theme-teal .cookie-popup { background-color: #26a69a; color: #fff; }
.theme-teal .cookie-popup-accept-cookies { background-color: #00766c; color: #fff; }
.theme-teal .cookie-popup-learn-more { color: #000; color: #fff; }

.theme-green .cookie-popup { background-color: #66bb6a; color: #000; }
.theme-green .cookie-popup-accept-cookies { background-color: #338a3e; color: #000; }
.theme-green .cookie-popup-learn-more { color: #000; }

.theme-lightgreen .cookie-popup { background-color: #9ccc65; color: #000; }
.theme-lightgreen .cookie-popup-accept-cookies { background-color: #6b9b37; color: #000; }
.theme-lightgreen .cookie-popup-learn-more { color: #000; }

.theme-lime .cookie-popup { background-color: #d4e157; color: #000; }
.theme-lime .cookie-popup-accept-cookies { background-color: #a0af22; color: #000; }
.theme-lime .cookie-popup-learn-more { color: #000; }

.theme-yellow .cookie-popup { background-color: #ffee58; color: #000; }
.theme-yellow .cookie-popup-accept-cookies { background-color: #c9bc1f; color: #000; }
.theme-yellow .cookie-popup-learn-more { color: #000; }

.theme-amber .cookie-popup { background-color: #ffca28; color: #000; }
.theme-amber .cookie-popup-accept-cookies { background-color: #c79a00; color: #000; }
.theme-amber .cookie-popup-learn-more { color: #000; }

.theme-orange .cookie-popup { background-color: #ffa726; color: #000; }
.theme-orange .cookie-popup-accept-cookies { background-color: #c77800; color: #000; }
.theme-orange .cookie-popup-learn-more { color: #000; }

.theme-deeporange .cookie-popup { background-color: #ff7043; color: #fff; }
.theme-deeporange .cookie-popup-accept-cookies { background-color: #c63f17; color: #fff; }
.theme-deeporange .cookie-popup-learn-more { color: #fff; }

.theme-brown .cookie-popup { background-color: #8d6e63; color: #fff; }
.theme-brown .cookie-popup-accept-cookies { background-color: #5f4339; color: #fff; }
.theme-brown .cookie-popup-learn-more { color: #fff; }

.theme-grey .cookie-popup { background-color: #bdbdbd; color: #000; }
.theme-grey .cookie-popup-accept-cookies { background-color: #8d8d8d; color: #000; }
.theme-grey .cookie-popup-learn-more { color: #000; }

.theme-bluegrey .cookie-popup { background-color: #78909c; color: #fff; }
.theme-bluegrey .cookie-popup-accept-cookies { background-color: #4b636e; color: #fff; }
.theme-bluegrey .cookie-popup-learn-more { color: #fff; }


body .packs {
    display: flex;
    justify-content: center;
    margin: 30px 0 55px 0;
    gap: 20px;
    font-size:17px;
    font-family: Open Sans;
}

.packs button, .thetable button {
    cursor: pointer;
    border: 0;
    color: #000;
    font-size: 17px;
    background: none;
    position: relative;
}

.packs button:after, .thetable button:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 3px solid var(--colorBlue);
    margin-top: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.65s, -webkit-transform 0.35s;
    transition: opacity 0.65s, transform 0.65s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.packs button:hover:after, .thetable button:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.packs button span {
    font-weight: 100;
    font-size: 15px;
    color: var(--colorBlue);
}

.packs button.active:after, .thetable button:hover:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 3px solid var(--colorBlue);
    margin-top: 7px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.domains  {
    font-size: 30px;
    color: var(--colorBlue);
    margin-bottom: 10px;
    font-weight: bold;
}

.euro {
color: #008bdb !important;
font-size:16px !important;
}

.opensans, .opensans b, .opensans span b {
font-family:Open Sans !important;
}


.choice {
font-size: 16px;
font-weight: 600;
color: var(--mainText);
display: block;
margin: 15px 0 10px 0;
}

.internalseo {
font-size:18px;
line-height:40px;
color:#3e3e42;
margin-top:10px;
font-weight:400;
}

.sticky {
  position: fixed !important;
  top: 0;
  margin: 0 auto;
  background-color:#fff;
  z-index:15;
  width:100%;
  border-bottom: 1px solid #008bdb;

}

.sticky + .content {
  padding-top: 60px;
}

#navbar {
display: flex;
padding: 20px 0;
margin: 0 auto;
width: 100%;
max-width:1200px;
position: relative;
z-index:15;
}

.sticky .main-header {
border-bottom:0 !important;
}

.boxes {
background: #fff;
border: 2px solid #ddd;
padding: 10px;
border-radius: 4px;
margin:0 auto;
}

.boxes-right, .boxes-left {
    max-width: 345px;
}

.boxes h2 {
font-size:22px;
letter-spacing: 1px;
line-height:40px;
text-transform:uppercase;
padding-bottom:5px;
}

.light-weight {
font-weight:300;
color: #008bdb;
}

.boxes hr {
height: 0;
color: #fff;
margin: 20px 0;
}

.boxes > a > button {
cursor: pointer;
border: 0;
background-color: var(--colorBlue);
color: #fff;
padding: 10px 0;
width: 70%;
}

.boxes p {
font-size:14px;
text-align:center;
line-height:25px;
}

.boxes h4 {
font-size: 20px;
font-weight:100;
}

h4 b {
color: #008bdb;
font-weight:800;
}

.sslProductsInfo {
    margin: 0 auto;
    width: 700px;
    padding: 10px;
}
.sslFeatures {
    background: #efefef;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    min-height: 120px;
}

.sslFeatures ul li {
    line-height: 1.5em;
    float: left;
    display: inline;
    width: 45%;
    font-size: 13px;
    padding-left: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#navtop {
position: -webkit-sticky;
position:sticky;
top:0;
z-index:15;
background:#fff;
}

#thehead {
position: -webkit-sticky;
position:sticky;
top:80px;
bottom:20px;
margin-bottom:0px;
}

.stickyheader {
margin-bottom:230px !important;
}

.infinity::after {
content: 'nelimitat';
}

@media only screen and (max-width: 800px) {
.seo-onBlue h1 {
font-size: 0.75em;
line-height:15px;
}
.full {
display: block;
}
.left {
max-width:100%;
}
.domains {
font-size:1.7em;
}
.ih-banner {
display:none !important;
}
.index-header {
padding:0px;
}

}

.mboxes {
display:none;
}

@media only screen and (max-width: 880px) {
.dynamicpacks, #thehead {
display:none;
visibility:hidden;
}

.mboxes {
grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
grid-gap:20px;
margin: 0 auto;
display: grid;
text-align:center;
}

.mboxes .packhead {
position:sticky;
top:119px;
}

.mboxes .specs img {
max-width:280px;
width:100%;
}

.packhead {
background-color:var(--colorLightBlue);
height:40px;
line-height:40px;
color:#008bdb;
font-weight:bold;
font-size:17.5px;
}

.mobileaction:after {
background-color: #008bdb;
width: 85px;
color:#fff;
display: inline-block;
content: "COMANDA";
font-size:13px;
}

}

@media only screen and (max-width: 658px) {
#domenii {
display:none;
visibility:hidden;
}
}

.frontpage {
visibility:visible;
display:block;
}
@media only screen and (max-width: 600px) {
.form__field:placeholder-shown ~ .form__label {
font-size:11px;
}
}

.nohover:hover {
text-decoration:none;
}

.container {
display:flex;
flex-direction:column;
min-height:100vh;
}

.search-form {
position:relative;
max-width:800px;
margin:0 auto;
}

.search-form input {
  padding: 20px 25px;
  padding-right: 25px;
  padding-left: 25px;
  width: 100%;
  max-width:800px;
  font-size: 17px;
  color: #828f99 !important;
  border: none;
  outline: none !important;
  padding-right: 220px;
  padding-left: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
}

.search-form button {
  position: absolute;
  top: 6px;
  right: 6px;
  outline: none !important;
  font-size: 16px;
  padding: 15px 30px;
  cursor: pointer;
  background-color:#005C92;
  color:#fff;
  border:0;
}

@media only screen and (max-width: 650px) {

.ih-options {
flex-direction:column;
}

.search-form button {
display:block;
position:relative;
margin:0 auto;
}

.search-form input {
padding-right:10px;
padding-left:10px;
}


}

#brands img {
  filter: grayscale(100%);
   transition: all 0.5s ease;
}

#brands img:hover {
  filter: grayscale(0%);
   transition: all 0.5s ease;
}

.acc-container {
  width: 100%;
}

.acc {
  margin-bottom: 10px;
}

.acc-head {
  background-color: rgb(0, 139, 219);
  padding: 15px 10px;
  font-size: 22px;
  position: relative;
  cursor: pointer;
 }

 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all .3s;
 }

 .acc-head::before {
  right: 30px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}

.acc-head::after {
  right: 21px;
  width: 20px;
  height: 3px;
  margin-top: -2px;
}

.acc-head p {
  color: #fff;
  font-weight: bold;
}

.acc-content {
  padding: 15px 10px;
  display: none;
}
        
.acc-head.active::before {
    transform: rotate(90deg);
}

