/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('/fonts/open-sans-v34-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/open-sans-v34-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('/fonts/open-sans-v34-latin-600.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
    --colorBlue: #008bdb;
    --colorGrey: #494949;
    --colorLightBlue: #f5f9ff;
    --mainText: #111111;
    --greyText: #3e3e42;
}
/*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(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) {
    .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-icwp.png') center left no-repeat;
    background-size: 50px auto;
}

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

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

.host-7 {
    background: url('/images/drop-icprestashop.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);
    }
}

.newbadge { background: #e74c3c; color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 700; }

/* Missing styles from hostgate.css */
.seo-onBlue h1 {
    font-size: 0.85em;
    color: #f2f2f2;
    font-weight: normal;
}
.seo-onWhite h1 {
    font-size: 12px;
    color: var(--colorBlue);
    font-weight: normal;
}
#navtop { font-family: "Open Sans", sans-serif; font-size: 14px; color: var(--mainText); }
#navtop img { max-width: 100%; height: auto; border: 0; }
#navtop *, #navtop *:before, #navtop *:after { box-sizing: border-box; }
.main-nav ul, .main-nav ul li ul { list-style: none; margin: 0; padding: 0; }
.menu-mobile dl dd { list-style: none; }
nav.top-nav ul li a { color: #fff !important; }

