@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500;700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(253, 253, 253);
}

.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 20px 100px;
    font-family: 'Poppins', sans-serif;
    background: rgb(250, 250, 250);
    background: -moz-linear-gradient(left, rgb(248, 248, 248) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%,rgb(255, 255, 255) 100%);
    background: linear-gradient(to right, rgb(255, 255, 255) 0%rgb(255, 255, 255)) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );

}

.brand-title {
  margin-top: 10px;
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 1rem;
    transition: .3s;
}

.navbar-links a:hover {
    color: #023E7B;
    transition: .3s;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 3rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: rgb(74, 74, 74);
    border-radius: 10px;
}

.login-btn {
  border: 1px solid #4287f5;
  border-radius: 50px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: #4287f5 !important;
  margin-right: 20px;
  margin-left: 50px;
  background-color: white;
}

.login-li {
  display: flex;
  align-items: center;
}

.signup-btn {
  background-color: #4287f5;
  border-radius: 50px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.login-btn:hover {
  background-color: #4287f5;
  color: white !important;
}

.signup-btn:hover {
  background-color: white;
}

.signup-li {
  display: flex;
  align-items: center;
}

@media (max-width: 1330px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 25px;
    }

    .toggle-button {
        display: flex;
        margin-top: 22px;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
        margin-top: 20px;
    }

    .login-li {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .login-btn {
      margin: 0px;
      margin-bottom: 10px;
      margin-top: 10px;
      width: 150px
    }

    .signup-li {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .signup-btn {
      margin: 0px;
      width: 150px;
    }
}

@media (max-width: 425px) {
  .brand-title img {
    height: 30px !important;
  }
}

/** HOME **/

.home {
  padding: 0px 100px;
  background: rgb(21,61,109);
  background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  height: 80vh;

}

.home h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  color: white;
}

.home p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: lighter;
  margin-top: -25px;
  font-size: 20px;
}

span {
  font-weight: normal;
}

.home-div {
  display: flex;
  padding-top: 70px;
  justify-content: center;
  align-items: center;
}

.home-text {
  padding: 0px 0px;
}

.home-img svg {
  transform: scaleX(-1);
  height: 380px;
}

.blank {
  position: absolute;
  width: 100%;
  height: 200px;
  bottom: 0;
  left: 0;
  background: rgb(21,61,109);
  background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  z-index: 10;
}

@media (max-width: 1345px) {

  .home-img svg {
    height: 300px !important;
  }

  .home-text h1 {
    font-size: 30px;
  }

}

@media (max-width: 810px) {

  .home-div {
    align-items: flex-start;
    text-align: center;
    align-content: center;
  }

  .home-img svg {
    display: none;
  }

  .vantages-div {
    margin-top: -350px;
  }

  .about-div {
    padding: 0px 100px !important;
  }

}

@media (max-width: 655px) {

  .box1 {
    margin-top: 90px;
  }

}

@media (max-width: 430px) {

  .box1 {
    margin-top: 180px;
  }

}

@media (max-width: 533px) {

  .box1 {
    margin-top: 100px;
  }

}

@media (max-width: 415px) {

  .box1 {
    margin-top: 180px;
  }

}

@media (max-width: 340px) {

  .home-div {
    padding-top: 50px;
  }

  .box1 {
    margin-top: 200px;
  }

}
@media (max-width: 900px) {

  .home {
    padding: 0px 70px;
  }

  .home-text {
    text-align: center;
  }

  .home-img svg {
    display: none;
  }

  .vantages-div {
    margin-top: -350px !important;
  }

}

@media (max-width: 300px) {

  .home-div {
    margin-top: 4vh !important;
  }


}

/** VANTAGES **/

.vantages-div {
  display: flex;
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  position: relative;
  margin-top: -150px;
  padding: 0px 50px;

}

.vantages-div div {
  border: 1px solid white;
  border-radius: 25px;
  padding: 20px 50px;
  box-sizing: border-box;
  width: 300px;
  height: 250px;
  background-color: white;
  margin-right: 30px;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
}

.box3 {
  margin-right: 0px !important;
}

@media (max-width: 900px) {

  .vantages-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .vantages-div div {
    margin-right: 0px !important;
    margin-bottom: 20px !important;
  }

  .box3 {
    margin-bottom: 0px !important;
  }


}

/** ABOUT US **/

.about-div {
  margin-top: 100px;
  padding: 0px 200px;
  text-align: center;
}

.about h1 {
  font-size: 40px;
  margin: 0px;
  line-height: 40px;
}

.about p {
  margin: 20px 100px;
}

@media (max-width: 750px) {
  .about-div {
    padding: 0px 30px !important;
  }

  .about p {
    margin: 20px 30px !important;
  }
}

@media (max-width: 1085px) {
  .about p {
    margin: 20px 50px !important;
  }
}

@media (max-width: 370px) {
  .about p {
    margin: 20px 0px !important;
  }
}

@media (max-width: 450px) {
  .about-div {
    padding: 0px 30px !important;
  }
}

/** review **/

.review {
  padding: 0px 400px;
  margin: 75px 0px;
}

.review-box {
  background: rgb(21,61,109);
  background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 50px 100px;
  color: white;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
}

.review-profile {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 2px solid white;
}

.review-stars {
  width: 200px;
  margin-bottom: -15px;
}

.review h1 {
  font-size: 40px;
  margin: 20px 0px;
  line-height: 40px;

}

.review p {
  margin: 10px 100px;
}

@media (max-width: 1785px) {

  .review {
    padding: 0px 100px !important;
  }

}

@media (max-width: 1085px) {
  .review p {
    margin: 0px !important;
  }

  .review-box {
    padding: 20px 50px !important;
  }

  .review {
    padding: 0px 150px !important;
  }

}

@media (max-width: 665px) {

  .review {
    padding: 0px 100px !important;
  }

}

@media (max-width: 425px) {

  .review {
    padding: 0px 50px !important;
  }

}

@media (max-width: 370px) {

  .review {
    padding: 0px 20px !important;
  }

}

/** FOOTER **/

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
.footer ul {
	list-style: none;
  padding-left: 0px;
}
.footer {
	background-color: #001325;
  padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #004993;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}

.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px){
  .footer-col{
    width: 100%;
  }
}


/** VPS **/

.vps-plans {
  padding: 50px 100px;
}

.vps-title {
  text-align: center;
}

.vps-title h1 {
  color: rgb(21,61,109);
  color: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  color: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  color: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  font-size: 50px;
  margin: 20px auto;
  line-height: 50px;
}

.vps-title h3 {
  font-weight: normal;
  margin: -10px;
  font-size: 30px;
}

.vps-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  margin: 50px 0px;
}

/*** fim ***/

.vps-boxes ul {
  list-style: none;
  padding: 0px;
}

.vps-boxes li {
  text-align: left;
  margin-bottom: 10px;
}

.vps-boxes img {
  vertical-align: middle;
}

.vps-boxes div {
  display: flex;
  flex-direction: row;
}

.vps-boxes svg {
  height: 30px;
}

.vps-boxes h2 {
  text-align: center;
}

.vps-upper-boxes div {
  border-radius: 25px;
  flex-direction: column;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 5px 20px;
  background-color: #E6E6E7;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);

}

.vps-down-boxes div {
  flex-direction: column;
  border-radius: 25px;
  margin-right: 20px;
  padding: 5px 20px;
  margin-top: 15px;
  background-color: #E6E6E7;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
}

.vps-upper-boxes-1,
.vps-upper-boxes-2 {
  flex-direction: row !important;
  border-radius: none;
  margin: 0px !important;
  padding: 0px !important;
  background-color: #00000000 !important;
  box-shadow: none !important;
}

.vps-box4 {
  margin-right: 0px !important;
}

.vps-box7 {
  margin-right: 0px !important;
}

.vps-flags {
  display: flex;
  border: none !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  background-color: #00000000 !important;
  box-shadow: none !important;
  margin-right: 0px !important;
  margin-bottom: 20px !important;
}

.portugal-flag {
  margin-left: -16px;
}

.france-flag {
  margin-left: -10px;
}

.vps-box1,
.vps-box4,
.vps-box6 {
  background: rgb(21,61,109);
  background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  color: white;
}


@media (max-width: 900px) {

  .vps-upper-boxes {
    flex-direction: column !important;
  }

  .vps-box2 {
    margin-right: 0px !important;
  }

}

@media (max-width: 810px) {

  .vps-down-boxes {
    flex-direction: column !important;
  }

  .vps-box5,
  .vps-box6 {
    margin-right: 0px !important;
    margin-bottom: 20px;
  }

  .vps-down-boxes div {
    margin-top: 0px;
  }

}

@media (max-width: 600px) {

  .vps-upper-boxes-1,
  .vps-upper-boxes-2 {
    flex-direction: column !important;
  }

  .vps-box3,
  .vps-box1 {
    margin-right: 0px !important;
    margin-bottom: 20px;
  }

  .vps-plans {
    padding: 50px 50px;
  }

}

@media (max-width: 370px) {

  .vps-plans {
    padding: 50px 25px;
  }

}




.order-div {
  display: flex;
  justify-content: center;
}

.order-btn {
  background: rgb(21,61,109);
  background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  color: white;
  font-size: 30px;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  justify-content: center;
/*  margin-left: 50%;
  transform: translate(-50%); */
  transition: .3s;
  font-weight: bold;
}

.order-btn:hover {
  box-shadow: 1px 1px 19px 0px rgba(0,112,148,0.77);
  -webkit-box-shadow: 1px 1px 19px 0px rgba(0,112,148,0.77);
  -moz-box-shadow: 1px 1px 19px 0px rgba(0,112,148,0.77);
  transform: scale(1.1);
  transition: .3s;

}

.vantages-vps-title {
  color: rgb(21,61,109);
  color: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  color: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  color: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  font-size: 40px;
  margin: 20px auto;
  line-height: 50px;
  text-align: center;
  padding: 0px 20px;
}

.vantages-div-vps {
  display: flex;
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  position: relative;
  margin: 40px 0px;
  padding: 0px 50px;

}

.vantages-div-vps div {
  border: 1px solid white;
  border-radius: 25px;
  padding: 20px 50px;
  box-sizing: border-box;
  width: 300px;
  height: 250px;
  background-color: white;
  margin-right: 30px;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
}

.box3-vps {
  margin-right: 0px !important;
}

@media (max-width: 900px) {

  .vantages-div-vps {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .vantages-div-vps div {
    margin-right: 0px !important;
    margin-bottom: 20px !important;
  }

  .box3-vps {
    margin-bottom: 0px !important;
  }


}

.email-flag {
  margin-top: 20px;
}


/** GAMESERVERS **/

.gameservers-plans {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gameservers-plans img {
  border: 1px solid #001325;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 25px;
  box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
  transition: .5s;
  cursor: pointer;
}

.gameservers-plans img:hover {
  transform: scale(1.05);
  transition: .5s;
}

.minecraft {
  margin-right: 0px !important;
}

.dayz {
  margin-right: 0px !important;
}

@media (max-width: 1330px) {
  .gameservers-plans img {
    width: 350px;
    height: 175px;
  }
}

@media (max-width: 1130px) {
  .gameservers-plans img {
    width: 300px;
    height: 150px;
  }
}

@media (max-width: 990px) {
  .gameservers-plans img {
    width: 270px;
    height: 135px;
  }
}

@media (max-width: 880px) {
  .gameservers-plans-top {
    display: flex;
    flex-direction: column;
  }

  .gameservers-plans-bottom {
    display: flex;
    flex-direction: column;
  }

  .gameservers-plans img {
    width: 400px;
    height: 200px;
    margin-right: 0px;
  }

}

@media (max-width: 425px) {
  .gameservers-plans img {
    width: 300px;
    height: 150px;
    margin-right: 0px;
  }
}


.vps-plans-gameserver {
  padding: 50px 0px;
}

.vps-title-gameserver {
  text-align: center;
}

.vps-title-gameserver h1 {
  color: rgb(21,61,109);
  color: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
  color: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  color: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
  font-size: 50px;
  margin: 20px auto;
  line-height: 50px;
}

.vps-title-gameserver h3 {
  font-weight: normal;
  margin: -10px;
  font-size: 30px;
}

.gameservers-plans-bottom {
  margin-bottom: 50px;
}

@media (max-width: 375px) {
  .vps-title-gameserver h1 {
    font-size: 42px;
  }

  .vps-title-gameserver h3 {
    font-size: 22px;
  }
}

/*** GAME DETAIL ***/

.gameservers-game {
 display: flex;
 flex-direction: column;
 align-items: center;
 align-content: center;
 margin: 20px 0px;
 padding: 0px 20px;
}

.gameservers-game ul {
 list-style: none;
 padding: 0px;
}

.gameservers-game li {
 text-align: left;
 margin-bottom: 10px;
}

.gameservers-game img {
 vertical-align: middle;
}

.gameservers-game div {
 display: flex;
 flex-direction: row;
}

.gameservers-game svg {
 height: 30px;
}

.gameservers-game h2 {
 text-align: center;
}

.gameservers-game div {
 border-radius: 25px;
 flex-direction: column;
 margin-bottom: 20px;
 padding: 5px 20px;
 color: white;
 background: rgb(21,61,109);
 background: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
 background: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
 background: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
 box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
 -webkit-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
 -moz-box-shadow: -1px -1px 16px 0px rgba(0,0,0,0.75);
}

.vps-plans-gameserver-game {
 padding: 30px 10px;
}

.vps-title-gameserver-game {
 text-align: center;
}

.vps-title-gameserver-game h1 {
 color: rgb(21,61,109);
 color: -moz-linear-gradient(left, rgba(21,61,109,1) 0%, rgba(41,137,216,1) 100%);
 color: -webkit-linear-gradient(left, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
 color: linear-gradient(to right, rgba(21,61,109,1) 0%,rgba(41,137,216,1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#153d6d', endColorstr='#2989d8',GradientType=1 );
 font-size: 50px;
 margin: 20px auto;
 line-height: 50px;
}

.vps-title-gameserver-game h3 {
 font-weight: normal;
 margin: -10px;
 font-size: 30px;
}

@media (max-width: 365px) {
  .minecraft-title {
    font-size: 45px !important;
  }
}

/*** TOS ***/

.terms-list {
  padding: 0px 50px;
  text-align: center;
}

.terms-list div {
  margin: 30px 0px;
}

.terms-list h4 {
  font-weight: normal;
  margin: 10px 0px;
}

.terms-list h2 {
  margin: 10px 0px;
}


.btn {
  /*position: fixed;*/

  z-index: 1;
  float: right;
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: $color;
  background-color: white;
  border-radius: 20px;
  border: 0;
  padding: 9px 18px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  transition: all .1s ease-in-out;
  line-height: .95;
  margin-bottom: 20px;
  }

  .btn2 {
    /*position: fixed;*/
  
    z-index: 1;
    float: right;
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: $color;
    background-color: white;
    border-radius: 20px;
    border: 0;
    padding: 9px 18px;
    text-align: center;
    margin: auto;
    cursor: pointer;
    transition: all .1s ease-in-out;
    line-height: .95;
    margin-bottom: 20px;
    }
  
  &:before, &:after {
    content: '';
    background-image: linear-gradient(135deg, $gradient-1, $gradient-2);
    position: absolute;
    width: calc(100% + #{$border*2});
    height: calc(100% + #{$border*2});
    left: -$border;
    top: -$border;
    border-radius: $border * 2;
    z-index: -2;
    transition: all .2s ease-in-out;
  }
  
  &:after {
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: $border;
  }
  
  &:hover {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
    transform: scale(1.05);
    &:before {
      background-image: linear-gradient(200deg, $gradient-1, $gradient-2);
    }
    &:after {
      width: 0;
      height: 0;
      opacity: 0;
    }
  }
  
  &:active {
    text-shadow: 0 3px 6px rgba(252, 252, 252, 0.7);
    
    &:before {
      background-image: linear-gradient(225deg, $gradient-1, $gradient-2);
      box-shadow: inset 0 3px 8px rgba(0,0,0,.5);
    }
  }
  /* core-features-area */
.core-features-area{
	background-size: cover;
}
.core-features-icon {
	float: left;
	width: 115px;
	height: 115px;
	background: #fff;
	display: inline-block;
	line-height: 112px;
	text-align: center;
	border-radius: 50%;
	margin-right: 37px;
}
.core-features-content{
  overflow: hidden;
  padding-top: 6px;
}
.core-features-content h4 {
	font-size: 24px;
	margin-bottom: 19px;
	font-weight: 600;
}
.core-features-content p {
	padding: 0px;
	margin-bottom:0px;
}
.features-box {
	overflow: hidden;
}
 /* core-features-area three */
.service-content-three {
	padding-right: 80px;
}
.service-content-three h4 {
	margin-bottom: 21px;
	font-size: 24px;
	letter-spacing: -.5px;
}
.services-content ul li {
	margin-bottom: 14px;
	color: #7d859f;
	position: relative;
	display: block;
	padding-left: 25px;
}

/* contract page */
.contract-services-box a i:hover{
  background-image: -moz-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
	color: #fff;
	border: none;
}
.contract-services-box {
  border: 2px solid #ecebff;
  padding: 35px 0;
}
.contract-services-box a i {
	width: 118px;
	height: 118px;
	display: inline-block;
	border: 1px solid #ecebff;
	border-radius: 50%;
	font-size: 36px;
	padding: 41px 0;
	color: #009ef2;
}
.contract-services-content h3 {
	font-size: 26px;
	margin-bottom: 14px;
}
.contract-services-content {
  padding: 0 32px;
}
.contract-services-content p {
	margin-bottom: 16px;
	padding: 0 0px;
}
.contract-services-content span a {
  color: #0039dd;
  font-size: 14px;
  display: inline-block;
  font-weight: 500;
}

.contract-page-form input,
.contract-page-form textarea
{
	width: 100%;
  height: 63px;
  background: none;
  border: none;
  border-bottom: 2px solid #d5e2ff;
  font-size: 14px;
  color: #7d859f;
  font-family: Rubik;
  padding: 0px 40px;
}
.contract-page-form textarea {
	height: 173px;
	padding-top: 18px;
}
.contract-page-form {
  position: relative;
}
.contract-page-form label i {
  position: absolute;
  left: 0;
  top: 44px;
  left: 14px;
  color: #0039dd;
}
.support-page-form label i {
	position: absolute;
	top: 25px;
	color: #0039dd;
	display: inline-block;
	left: 95%;
	right: 0px;
}
.contract-btn {
	margin-top: 47px;
}

.contract-btn a {
	background-image: -moz-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(0,77,205) 0%, rgb(0,186,255) 100%);
	border: none;
}
.contract-btn a:hover {
	color: #ffff;
	background: #0039dd;
}

.core-features-icon {
	float: none;
	margin-right: 0;
	margin: auto;
	margin-bottom: 20px;
}
}