@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Inria+Serif&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700 !important;
}

a {
color: #aaca4d;    
}


@media (min-width: 992px) {
.container {
    padding: 0 5rem;
}
}


.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.bg-black {
  background-color: #000 !important;
}

.rounded-pill {
  border-radius: 5rem;
}

.navbar-custom {
  background-color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: #1f1f1f;
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: #b5d655;
}

.navbar-dark .navbar-toggler {
    border-color: #ffffff
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("/img/hamburger.svg");
}

a.navbar-brand img.logo {
    max-width: 500px;
    width:100%;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0.5em;
}

a.nav-link.telephone {
    color: #fff!important;
}

@-webkit-keyframes top-banner {
	0% {
		background-color:#16a9b1;
	}
	100% {
		background-color:#b5d655;
	}
}

@keyframes top-banner {
	0% {
		background-color:#16a9b1;
	}
	100% {
		background-color:#b5d655;
	}
}

header.masthead {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
    -webkit-animation-name: top-banner;
	animation-name: top-banner;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

header.masthead .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead .masthead-content .masthead-subheading {
  font-size: 1.25rem;
}

header.masthead .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#b5d655), to(#16a9b1));
  background: linear-gradient(0deg, #b5d655 0%, #16a9b1 100%);
}

header.masthead .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}

header.masthead-mini {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
    -webkit-animation-name: top-banner;
	animation-name: top-banner;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

header.masthead-mini .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead-mini .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead-mini .masthead-content .masthead-subheading {
  font-size: 1.25rem;
}

header.masthead-mini .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#16a9b1), to(#b5d655));
  background: linear-gradient(0deg, #16a9b1 0%, #b5d655 100%);
}

header.masthead-mini .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead-mini .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead-mini .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead-mini .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}




@media (min-width: 992px) {
  header.masthead {
    padding-top: calc(8rem + 55px);
    padding-bottom: 8rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 2rem;
    font-weight: 300!important;
  }
  header.page-masthead {
    padding-top: calc(7rem + 55px);
    padding-bottom: 7rem;
  }
  header.page-masthead .masthead-content .masthead-heading {
    font-size: 3rem;
  }
}

@-webkit-keyframes top-banner-error {
	0% {
		background-color:#d83e3e;
	}
	100% {
		background-color:#a03737;
	}
}

@keyframes top-banner-error {
	0% {
		background-color:#d83e3e;
	}
	100% {
		background-color:#a03737;
	}
}

header.masthead-error {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
    -webkit-animation-name: top-banner-error;
	animation-name: top-banner-error;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

header.masthead-error .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead-error .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead-error .masthead-content .masthead-subheading {
  font-size: 1.25rem;
}

header.masthead-error .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#d83e3e), to(#a03737));
  background: linear-gradient(0deg, #d83e3e 0%, #a03737 100%);
}

header.masthead-error .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead-error .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead-error .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead-error .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}

@media (min-width: 992px) {
  header.masthead-error {
    padding-top: calc(25vh + 55px);
    height: calc(100vh - 115px);
  }
  header.masthead-error .masthead-content .masthead-heading {
    font-size: 5rem;
  }
}

@-webkit-keyframes top-banner-egg {
	0% {
		background-color:#a1a1a1;
	}
	100% {
		background-color:#836d7d;
	}
}

@keyframes top-banner-egg {
	0% {
		background-color:#a1a1a1;
	}
	100% {
		background-color:#836d7d;
	}
}

header.masthead-egg {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
    -webkit-animation-name: top-banner-egg;
	animation-name: top-banner-egg;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

header.masthead-egg .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead-egg .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead-egg .masthead-content .masthead-subheading {
  font-size: 1.25rem;
}

header.masthead-egg .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#c8c9a1), to(#5ba4ad));
  background: linear-gradient(0deg, #c8c9a1 0%, #5ba4ad 100%);
}

header.masthead-egg .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead-egg .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead-egg .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead-egg .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}

@media (min-width: 992px) {
  header.masthead-egg {
    padding-top: calc(25vh + 55px);
    height: calc(100vh - 115px);
  }
  header.masthead-egg .masthead-content .masthead-heading {
    font-size: 5rem;
  }
}

header.masthead .masthead-content a {
    font-weight: bold;
    color: #fff;
    text-decoration: underline;
}

section#cta-domainsearch {
    background: -webkit-linear-gradient(45deg, #1b9f6e, #30d3d2 100%);
    border-top: 2px solid #1fa372;
    border-bottom: 2px solid #1fa372;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

#cta-domainsearch h3 {
    display: block;
    width: 100%;
    font-size: 2.25rem;
}

#cta-domainsearch a {
    color:#fff;
    text-decoration:underline;
}

form.domain-search {
    width:100%;
    display:block;
    margin-top:1em;
    
}

input.domain-searchfield {
border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-right: 0px;
    border-color: #dadada;
    padding: 1em;
    min-width: 35%;
    display: inline-block;
    font-weight:bold;
    text-indent:10px;
}

input.domain-searchfield:focus {
    outline: none;
}

button.domain-searchbtn {
    border-top-right-radius: 50rem;
    border-bottom-right-radius: 50rem;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-left: 0px;
    border-color: #dadada;
    padding: 1em;
    min-width: auto;
    display: inline-block;
    margin-left: -5px;
    background: #1fa372;
    color: #fff;
    font-weight: bold;
    text-shadow: 0px 0px 0.5em white;
}

 button.domain-searchbtn:focus {
     outline:none;
 }

@media (max-width: 991px) {
    
 input.domain-searchfield {
 border-right:2px solid #dadada;
 border-radius:50rem;
 width:100%;
 display:block;
 margin-bottom:1rem;
 }
    
 button.domain-searchbtn {
  border-left: 2px solid;
  border-radius:50rem;
  margin-left:unset;
  width:calc(75% - 25px);
  padding:0.75em;
  border-color:#217d5b;
 }

 
}

.loginbox {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 2rem;
    margin: 1rem auto;
    transition: 0.15s ease-in-out;
    text-align: center;
}

.loginbox:hover {
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.15);
    border-color: #c7c7c7;
}

.loginbox-domains {
  background:#16a9b1;
  color:#fff;
}

.loginbox-invoices {
  background:#b5d655;  
  color:#000;
}

.loginbox-support {
background: #272727;
color: #fff;  
}

span.new {
    font-size: 25px;
    padding: 5px;
    background: #e83030;
    border-radius: 10px;
    margin: 10px;
    display: inline-block;
    position: absolute;
    margin-top: -50px;
    margin-left: -25px;
}

section#domain-management .accordion-title {
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    color: rgb(64, 64, 64);
    text-decoration:none;
} 

section#domain-management .accordion .card .card-header {
background: #f5f5f5 url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cpath%20fill%3D%22%23404040%22%20d%3D%22M37.7,18.9L37.7,18.9c-0.8-0.8-2-0.8-2.7,0L25,28.8l-10-10c-0.7-0.7-1.9-0.7-2.7,0l0,0c-0.7,0.7-0.7,1.9,0,2.7l11.3,11.3c0.1,0.1,0.2,0.2,0.3,0.2c0.7,0.5,1.8,0.5,2.4-0.2l11.3-11.3C38.4,20.8,38.4,19.6,37.7,18.9z%22/%3E%3C/svg%3E');
    background-position: 99%;
    background-repeat: no-repeat;
    background-size: 2em;
}

section#domain-management .accordion .card .card-header.collapsed {
background: #f5f5f5 url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cpath%20fill%3D%22%23404040%22%20d%3D%22M33.3,24.2c-0.1-0.2-0.2-0.5-0.4-0.6L21.5,12.3c-0.7-0.7-1.9-0.7-2.7,0l0,0c-0.7,0.7-0.7,1.9,0,2.7l10,10l-10,10c-0.7,0.7-0.7,1.9,0,2.7l0,0c0.7,0.7,1.9,0.7,2.7,0l11.3-11.3C33.4,25.8,33.5,24.9,33.3,24.2z%22/%3E%3C/svg%3E');
    background-position: 99%;
    background-repeat: no-repeat;
    background-size: 2em;
}

section#domain-management .accordion .card .card-header:hover {
    cursor: pointer;
}

section#domain-management .accordion .card .card-body {
    background: #ffffff!important;
}

.terms-container .accordion > .card .card-header {
    margin-bottom: -1px;
    background: url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M37.7,18.9L37.7,18.9c-0.8-0.8-2-0.8-2.7,0L25,28.8l-10-10c-0.7-0.7-1.9-0.7-2.7,0l0,0c-0.7,0.7-0.7,1.9,0,2.7l11.3,11.3c0.1,0.1,0.2,0.2,0.3,0.2c0.7,0.5,1.8,0.5,2.4-0.2l11.3-11.3C38.4,20.8,38.4,19.6,37.7,18.9z%22/%3E%3C/svg%3E'), -webkit-linear-gradient(45deg, #16a9b1, #b5d655 100%);
    background-position: 99%;
    background-repeat: no-repeat, repeat;
    background-size: 2em, auto;
    font-weight: 600;
    color: #fff;
    border: none!important;
}

.terms-container .accordion > .card .card-header.collapsed {
    margin-bottom: -1px;
    background: url('data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20?%3E%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2050%2050%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M33.3,24.2c-0.1-0.2-0.2-0.5-0.4-0.6L21.5,12.3c-0.7-0.7-1.9-0.7-2.7,0l0,0c-0.7,0.7-0.7,1.9,0,2.7l10,10l-10,10c-0.7,0.7-0.7,1.9,0,2.7l0,0c0.7,0.7,1.9,0.7,2.7,0l11.3-11.3C33.4,25.8,33.5,24.9,33.3,24.2z%22/%3E%3C/svg%3E'), -webkit-linear-gradient(45deg, #16a9b1, #b5d655 100%);
    background-position: 99%;
    background-repeat: no-repeat, repeat;
    background-size: 2em, auto;
    font-weight: 600;
    color: #fff;
    border: none!important;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}


button.domain-searchbtn:hover {
 color:#1fa372;
 background:#f5f5f5;
 transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bg-primary {
  background-color: #2b86f9 !important;
}

.btn-primary {
  background-color: #2b86f9;
  border: 3px solid #2cb4fb;
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: #2cb4fb !important;
  border-color: #2b86f9 !important;
}

.btn-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 9, 121, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(238, 9, 121, 0.5);
}

.btn-secondary {
  background-color: #fff;
  border: 3px solid #d6d6d6;
  color:#000;
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: #2b86f9 !important;
  border-color: #2cb4fb !important;
  color:#fff;
}

.btn-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
}

.myaccount {
	background-color: #16a9b1;
	color:#fff!important;
	border-radius: 5rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	padding-left:1rem!important;
	padding-right:1rem!important;
	}

.myaccount:hover {background-color: #b5d655;}

section {
	padding: 3.5rem 0;
}

h3.section-title, h4.section-title h4.product-box-title, .product-box-icon {
	background: -webkit-linear-gradient(45deg, #16a9b1, #b5d655 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3.section-title {
	display:block;
	width:100%;
	margin-bottom:2rem;
	font-size:3rem;
}

h4.section-title {
	display:block;
	width:100%;
	margin-bottom:1rem;
	font-size:2rem;
}

section#products {
	background-color:#f5f5f5;
}

.product-box {
	background-color:#ffffff;
	border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 2rem;
	margin:1rem auto;
	transition: 0.15s ease-in-out;
	text-align:center;
}
.product-box.most-popular {
    border: 2px solid #e3da5b;
}
.product-box.most-popular:hover {
    border-color: #bfab33;
}
.product-box.most-popular .product-box-icon, .product-box.most-popular h4.product-box-title {
	background: -webkit-linear-gradient(45deg, #c7a903, #e8e36c 100%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-box.most-popular .btn-product-box {
    background: #ceb519;
    border-color: #a08d14;
}

.product-box.most-popular .btn-product-box:hover {
    background: #a08d14;
    border-color: #ceb519;
}

.product-box:hover {
    box-shadow: 0px 0px 1em rgba(0, 0, 0, 0.15);
	border-color: #c7c7c7;
}

.product-box.most-popular:before {
	content: "Most Popular";
    font-size: 0.75rem;
    width: 100px;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
    color: #000;
    border-radius: 4px;
    box-shadow: 0px 0px 0.15rem #000;
    background: linear-gradient(45deg, #c7a903, #fffcbf, #ceae05);
    border: 1px solid #bfab33;
    font-weight: 700;
}

.product-box-icon-container {
	text-align:center;
	margin-bottom:1rem;
}
.product-box-icon {
	font-size: 5rem;
}

h4.product-box-title {
line-height: 0.8;
padding-bottom: 0.25rem;
}

.btn-product-box {
    background: #b5d655;
    border: 2px solid #a6c54b;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
	width:100%;
}

.btn-product-box:hover {
    background: #16a9b1;
    border-color: #169da5;
}


section#cta-banner {
    background: -webkit-linear-gradient(45deg, #16a9b1, #b5d655 100%);
    border-top: 2px solid #2cb4fb;
    border-bottom: 2px solid #2cb4fb;
	color:#fff;
	font-weight:bold;
	text-align:center;
}

#cta-banner h3 {display:block;width:100%;font-size:2.25rem;}
#cta-banner .btn {margin:auto;}


section#product-partners {
    background: #fff;
}

.partner-box-content {
	padding:2rem;
	border: 1px solid #eaeaea;
	border-radius: 10px;
}

.partner-box-content img {
	width:100%;
}

section#domains {
	background:#f5f5f5;
}

.domains-slice {
    margin: 1rem 0;
}

section#domain-check input{
	display: inline-block;
    text-transform: uppercase;
    padding: 1.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    background-color: #fff;
    border: 3px solid #d6d6d6;
    color: #1e339d;
    vertical-align: middle;
}

.sidebox-icon {
	width: 15rem;
    height: 15rem;
    margin: -1rem auto;
    border-radius: 100%;
    background: linear-gradient(45deg, #c7a903, #fffcbf, #ceae05);
    border: 3px solid #bfab33;
}

hr.product-divider {
	border: 1px solid #d2d2d2;
    display: block;
    width: 100%;
    margin: 4rem auto;
}

.product-sidebox-title {

}

.product-sidebox-icon {
	width: 100%;
    height: auto;
    font-size: 8rem;
    text-align: center;
    margin-top: 25%;
	color: #525252;
}

footer {
	background: #272727;
	color:#fff;
}
footer a, footer a:hover, footer a:visited, footer a:focus {
	color:#fff;
}
#smallprint {
	background: #171717;
	color:#fff;
}
ul.email {
    font-size: 1.5rem;
    font-weight: 600;
    list-style: none;
}
ul.telephone {
    font-size: 1.5rem;
    font-weight: 600;
    list-style: none;
}

ul.address {
    font-size: 1.5rem;
    font-weight: 600;
    list-style: none;
}

img.contact-map {
    max-width: 500px;
    width: 100%;
    border-radius: 30px;
    border: 3px solid #16a9b1;
}