/*
Site name: Ágape Sistemas
Site url: http://www.agape-sistemas.com
Description: Este é o site insitucional da Ágape Sistemas
Author: Anderson Pacheco
Author uri: http://www.fullagenciadigital.com.br


1. GLOBAL STYLES
	1.1 GOOGLE FONTS
	1.2 GENERAL STYLES

2. COMPONENTS
	2.1 NAVIGATION
	2.2 FOOTER
	   2.2.1 FOOTER-TOP
	   2.2.2 FOOTER-BOTTOM

3. PAGE STYLES
	3.1 PAGE: HOME
        3.1.1 SECTION BANNER
        3.1.2 SECTION FEATURES
        3.1.3 SECTION SERVICES
        3.1.3 SECTION TESTIMONIALS
        3.1.3 SECTION BRAND

    3.2 PAGE: SOBRE-NOS
        3.2.1 SECTION BRADCRUMB

*/

/*=================================== 1. GLOBAL STYLES ========================================*/
/*----------------------------------- 1.1 GOOGLE FONTS ----------------------------------------*/

@font-face {
    font-family: 'Bahnschrift Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/BAHNSCHRIFT.woff');
}


/*----------------------------------- 1.2 GENERAL STYLES --------------------------------------*/

:root{
    --primaria: #67ABAC;
	--secundaria: #4278AE;
	--black: #000000;
    --white: #ffffff;
    --whatsapp: #25D366;
    --facebook: #3C5A99;
    --instagram: #5851DB;
}

html {
	font-size: 100%;
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	font-family: 'Bahnschrift Regular', serif;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style: none
}

.bg-personalizado{
	background-color: rgba(66, 120, 174, .2);
}

.p-relative {
	position: relative;
}

.centralizado{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* button style */
.btn {
	-moz-user-select: none;
    background: -webkit-linear-gradient(to right, #67ABAC, #4278AE);
	background: linear-gradient(to right, #67ABAC, #4278AE);
	border: medium none;
	border-radius: 5px;
	color: #ffffff;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0;
	padding: 22px 43px;
	text-align: center;
	text-transform: capitalize;
	touch-action: manipulation;
	vertical-align: middle;
	white-space: nowrap;
	z-index: 1;
	font-family: 'Poppins', sans-serif;
	box-shadow: inset 0px 0px 0px 0px #4278AE;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
	position: relative;
}
.btn:hover {
    -webkit-box-shadow: inset 0px 100px 0px 0px #4278AE;
    box-shadow: inset 0px 100px 0px 0px #4278AE;
    color: #ffffff;
}
.transparent-btn {
	background: none;
	border: 2px solid #fff;
	color: #fff;
	box-shadow: none;
	padding: 20px 43px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.transparent-btn:hover {
	background: #fff;
	color: #47495a;
	box-shadow: none;
}
.gradient-btn {
	position: relative;
	box-shadow: none;
	background-image: linear-gradient(to right, #A722F4 0%, #7A5CFF 50%, #A722F4 100%);
  background-image: -webkit-linear-gradient(to right, #A722F4 0%, #7A5CFF 50%, #A722F4 100%);
	background-image: -ms-linear-gradient(to right, #A722F4 0%, #7A5CFF 50%, #A722F4 100%);
	background-size: 200% auto;
	color: #fff;
	-webkit-transition: all 0.4s linear;
	transition: all 0.4s linear;
}
.gradient-btn:hover {
	box-shadow: none;
	background-position: right center;
}
.btn.red {
	background: #fc5155;
	-webkit-box-shadow: inset 000px 0px 0px 0px #6747c7;
	box-shadow: inset 000px 0px 0px 0px #6747c7;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
	color: #fff;
}
.btn.red:hover {
    -webkit-box-shadow: inset 00px 100px 0px 0px #6747c7;
    box-shadow: inset 00px 100px 0px 0px #6747c7;
    color: #ffffff;
}
.btn.purple-btn {
	background: #6747c7;
	-webkit-box-shadow: inset 000px 0px 0px 0px #fc5155;
	box-shadow: inset 000px 0px 0px 0px #fc5155;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
	color: #fff;
}
.btn.purple-btn:hover {
    -webkit-box-shadow: inset 00px 100px 0px 0px #fc5155;
    box-shadow: inset 00px 100px 0px 0px #fc5155;
    color: #ffffff;
}
.btn.green-btn {
	background: #6ace26;
	-webkit-box-shadow: inset 000px 0px 0px 0px #5588d3;
	box-shadow: inset 000px 0px 0px 0px #5588d3;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
	color: #fff;
}
.btn.green-btn:hover {
    -webkit-box-shadow: inset 00px 100px 0px 0px #5588d3;
    box-shadow: inset 00px 100px 0px 0px #5588d3;
    color: #ffffff;
}
.btn.blue-btn {
	background: #5588d3;
	-webkit-box-shadow: inset 000px 0px 0px 0px #6ace26;
	box-shadow: inset 000px 0px 0px 0px #6ace26;
	-webkit-transition: all 0.6s linear;
	transition: all 0.6s linear;
	color: #fff;
}
.btn.blue-btn:hover {
    -webkit-box-shadow: inset 00px 100px 0px 0px #6ace26;
    box-shadow: inset 00px 100px 0px 0px #6ace26;
    color: #ffffff;
}
.breadcrumb > .active {
	color: #888;
}
.p-relative {
	position: relative;
}
.display-ib {
	display: inline-block;
}

/* scrollUp */
#scrollUp {
	background: #333;
	height: 50px;
	width: 50px;
	right: 50px;
	bottom: 77px;
	color: #fff;
	font-size: 20px;
	text-align: center;
    border: 1px solid #fff;
	border-radius: 50%;
	font-size: 20px;
	line-height: 50px;
}

#scrollUp:hover {
	background: #67ABAC;
}

/*=================================== 2. COMPONENTS ========================================*/
/*----------------------------------- 2.1 PRELOADER ----------------------------------------*/
.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #09EBAF;
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*----------------------------------- 2.1 NAVIGATION ----------------------------------------*/

.transparent-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.logo img{
    max-width: 200px;
}

.main-menu ul li {
	display: inline-block;
	margin-left: 25px;
	position: relative;
}

.main-menu ul li:hover > a {color: #09ebaf;}
.main-menu ul li.active > a {color: #09ebaf;}
.main-menu ul li.menu-item-has-children {
	margin-right: 17px;
}

.main-menu ul li.menu-item-has-children::before {
	content: "\f078";
	position: absolute;
	right: -16px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
}

.main-menu ul li:first-child {
	margin-left: 0;
}

.main-menu ul li a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	display: block;
	padding: 55px 0;
}

.menu-icon a {
	color: #fff;
	font-size: 18px;
	display: inline-block;
}

.menu-icon a:hover {
	color: #09ebaf;
}

.menu-icon a.user {
    margin-left: 15px;
}

.sticky-menu {
	left: 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 0 60px 0 rgba(0, 0, 0, .07);
	z-index: 9999;
	background: #67ABAC;
	background: -webkit-linear-gradient(to right, #67ABAC, #4278AE);
	background: linear-gradient(to right, #67ABAC, #4278AE);
	-webkit-animation: 1000ms ease-in-out 3s normal none 1 running fadeInDown;
	animation: 1000ms ease-in-out normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
}

.sticky-menu .main-menu ul li a {
	padding: 35px 0;
}

/*----------------------------------- 2.2 FOOTER ----------------------------------------*/
/*----------------------------------- 2.2.1 FOOTER-TOP ----------------------------------------*/
.logo-footer img{
  max-width: 300px;
}
.footer-bg {
	background: #333;
}
.footer-text p {
	margin-bottom: 0;
	color: #ccc;
}
.fw-title h4 {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
}
.fw-link ul li {
	margin-bottom: 10px;
}
.fw-link ul li:last-child {
	margin-bottom: 0px;
}
.fw-link ul li a {
	display: block;
	color: #ccc;
	font-size: 14px;
}
.fw-link ul li a:hover {
	color: #67ABAC;
}
.s-fw-link ul li a:hover {
	color: #67ABAC;
}
.t-fw-link ul li a:hover {
	color: #67ABAC;
}
.f-fw-link ul li a:hover {
	color: #67ABAC;
}

.s-footer-bg.pt-200 {
	padding-top: 225px;
}

/*----------------------------------- 2.2.2 FOOTER-BOTTOM ----------------------------------------*/

.copyright-area{
    background-color: #000;
}

.copyright-text p {
	margin-bottom: 0;
	font-size: 14px;
	color: #fff;
	line-height: 1;
}
.copyright-credit p {
	margin-bottom: 0;
	text-align: right;
	color: #fff;
	font-size: 14px;
	line-height: 1;
}
.copyright-credit p a {
	font-weight: 700;
	color: #fff;
}
.copyright-credit p a:hover {
	color: #17c0eb;
}


/*=================================== 3. PAGE STYLES ========================================*/
/*----------------------------------- 3.1 PAGE: HOME ----------------------------------------*/
/*----------------------------------- 3.1.1 SECTION BANNER ----------------------------------*/

.slider-bg {
    background: #67ABAC;
	background-image: url(../img/header-cinza.jpg);
    background-size: cover;
}

.slider-img img{
    max-width:500px;
}

.slider-content h2 {
	font-size: 60px;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 30px;
}

.slider-content p {
	font-size: 24px;
	color: #fff;
	margin-bottom: 55px;
}

.slider-content p span {
	font-size: 30px;
	color: #67ABAC;
	font-weight: 700;
}

.slider-content {
	padding-top: 180px;
}

.slider-btn .btn {
	box-shadow: none;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.slider-btn .btn:hover {
	background: #4181CE;
}

.slider-btn .transparent-btn {
	margin-left: 20px;
}

.slider-btn .transparent-btn:hover {
	background: #fff;
}

.alltuchtopdown {
	-webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
	animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
	animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
  50% {
    -webkit-transform: rotateX(0deg) translateY(-10px);
    -moz-transform: rotateX(0deg) translateY(-10px);
    -ms-transform: rotateX(0deg) translateY(-10px);
    -o-transform: rotateX(0deg) translateY(-10px);
		transform: rotateX(0deg) translateY(-10px);
	}
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
}
@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
		transform: rotateX(0deg) translateY(-20px);
	}
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
		transform: rotateX(0deg) translateY(0px);
	}
}

/*----------------------------------- 3.1.2 SECTION FEATURES ----------------------------------*/

.overlay-features {
	position: relative;
	z-index: 9;
}
.single-features {
	background: #fff;
	box-shadow: 0px 0px 87px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	padding: 50px 30px;
	margin-top: 80px;
	min-height: 300px;
	transform: translateY(0);
	transition: .3s;
}
.features-icon {
	float: left;
	display: block;
	margin-right: 20px;
}
.features-icon img{
	max-width: 100px;
}
.features-content h5 {
	font-size: 18px;
	font-weight: 600;
	color: #284151;
	line-height: 1.3;
	margin-bottom: 10px;
	padding-right: 40px;
}
.features-content p {
	font-size: 16px;
	margin-bottom: 0;
	line-height: 24px;
}
.single-features:hover {
	transform: translateY(-10px)
}
.ufeatures-icon {
	float: left;
	display: block;
	margin-right: 20px;
}
.ufeatures-content h5 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.ufeatures-content p {
	margin-bottom: 0;
}
.s-overlay-features {
	margin-top: -650px;
}
.s-features-content {
	padding: 0 15px;
}
.s-features-content h5 {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 5px;
	line-height: 1.6;
}
.s-features-content p {
	color: #fff;
	margin-bottom: 0;
}
.s-features-icon img {
	transform: rotateY(0deg);
	transition: .5s;
}
.s-single-features:hover .s-features-icon img {
	transform: rotateY(180deg);
}
.f-features-content h5 {
	font-size: 18px;
	color: #284151;
	font-weight: 600;
	margin-bottom: 10px;
}
.f-features-content p {
	margin-bottom: 0;
	padding: 0 40px;
}
.f-features-title p {
	padding: 0 95px;
}
.five-single-features {
	background: #f2f6fd;
	border-radius: 5px;
	padding: 60px 30px;
	transition: .5s linear;
}
.five-features-content h5 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.3;
}
.five-features-content p {margin-bottom: 0;}
.five-single-features:hover {
	background: #f2fefb;
}
.five-single-features.active {
	background: #f2fefb;
}
.server-features-bg {
	background-image: -moz-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
  background-image: -webkit-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
  background-image: -ms-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
}
.reseller-features .single-features {
	text-align: center;
	background: transparent;
	box-shadow: none;
	padding: 0 30px;
}
.reseller-features .single-features:hover {
	transform: translateY(0);
}
.reseller-features .features-icon {
	float: unset;
	margin-right: 0;
	margin-bottom: 23px;
}
.reseller-features .features-content h5 {
	padding-right: 0;
}
.uf-title p {
	padding: 0 195px;
}
.inner-single-ufeatures .ufeatures-content p {
	padding-right: 20px;
}

/*----------------------------------- 3.1.3 SECTION SERVICES ----------------------------------*/

/* 7. hosting */
.section-title h2 {
	font-size: 36px;
	margin-bottom: 25px;
	text-transform: capitalize;
}
.section-title p {
	margin-bottom: 0;
	font-size: 18px;
}
.cover-tabs-wrap .nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-block;
	-ms-flex-wrap: wrap;
	flex-wrap: unset;
	padding-left: 0;
	margin-bottom: 20px;
	list-style: none;
}
.cover-tabs-wrap .nav-tabs {
	border-bottom: unset;
}
.cover-tabs-wrap .nav-tabs .nav-item {
	margin-bottom: 0;
	display: inline-block;
	margin-right: 20px;
}
.cover-tabs-wrap .nav-tabs .nav-item:last-child {margin-right: 0;}
.cover-tabs-wrap .nav-tabs .nav-link {
	border: none;
	font-size: 18px;
	color: #47495a;
	font-weight: 600;
	background: #edf4f8;
	padding: 20px 40px;
	border-radius: 5px;
}
.cover-tabs-wrap .nav-tabs .nav-link img {
	margin-right: 15px;
	max-width: 40px;
}
.cover-tabs-wrap .nav-link.active {
	color: #fff;
	border-color: unset;
	background-color: #4278AE;
}
.cover-tabs-wrap .nav-link:hover {
	color: #fff;
	border-color: unset;
	background-color: #4278AE;
}
.chosting-content {
	padding-left: 35px;
}
.chosting-content h4 {
	font-size: 24px;
	margin-bottom: 25px;
}
.chosting-content p {
	margin-bottom: 0;
	padding-right: 20px;
}
.chosting-list ul li {
	font-size: 16px;
	color: #47495a;
	margin-bottom: 15px;
}
.chosting-list ul li:last-child {margin-bottom: 0;}
.chosting-list ul li i {
	color: #09ebaf;
	margin-right: 10px;
}
.single-hosting {
	background: #5f2ee3;
	padding: 40px;
}
.single-hosting h4 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 0;
	font-weight: 600;
}
.single-hosting h4:hover a {
	color: #fff;
}
.hosting-list-img img {
	display: inline-block;
}
.hosting-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 38px;
	width: 38px;
	padding: 0;
	border: none;
	background: #430dd5;
	font-size: 16px;
	color: #fff;
	border-radius: 10px;
	left: 30px;
	cursor: pointer;
	z-index: 9;
}
.hosting-active .slick-next {
	left: auto;
	right: 30px;
}
.start-box {
	background: #fff;
	box-shadow: 0px 33px 87px 0px rgba(0, 0, 0, 0.05);
	padding: 50px 45px;
	padding-bottom: 60px;
	border-radius: 5px;
}
.start-box h4 {
	font-size: 30px;
	font-weight: 700;
	font-family: 'Lato', sans-serif;
	margin-bottom: 25px;
}
.start-box h4 span {
	font-size: 36px;
	font-weight: 900;
	color: #08bcf0;
}
.start-box ul li {
	font-size: 18px;
	color: #47495a;
	margin-bottom: 18px;
}
.start-box ul li:last-child {
	margin-bottom: 0;
}
.start-box ul li i {
	font-size: 18px;
	color: #09ebaf;
	margin-right: 15px;
}
.start-box ul {
	margin-bottom: 55px;
}
.start-box a.btn {
	width: 100%;
}
.single-server {
	padding: 50px;
	border: 1px solid #dde5ea;
	border-radius: 5px;
	transition: .3s linear;
}
.server-head > span {
	font-size: 18px;
	font-weight: 900;
	color: #3056bc;
	display: block;
	line-height: 1;
	margin-bottom: 20px;
	transition: .3s linear;
}
.server-head h2 {
	font-size: 48px;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	margin-bottom: 0;
	line-height: 1;
}
.server-head h2 small {
	font-size: 18px;
	font-weight: 900;
	position: relative;
	top: -16px;
}
.server-head h2 span {
	font-size: 14px;
	font-weight: 400;
}
.server-list ul li {
	font-size: 16px;
	margin-bottom: 10px;
}
.server-list ul li:last-child {
	margin-bottom: 0;
}
.server-btn .btn {
	background: #3056bc;
	color: #fff;
	padding: 15px 43px;
	width: 100%;
}
.server-btn .btn:hover {
	-webkit-box-shadow: inset 00px 100px 0px 0px #09ebaf;
	box-shadow: inset 00px 100px 0px 0px #09ebaf;
}
.server-active .owl-stage-outer {
	padding: 50px 0;
}
.server-active .owl-item.active.center .single-server {
	transform: scale(1.08);
	border-color: #09ebaf;
}
.server-active .owl-item.active.center .single-server .server-btn .btn  {
	background: #09ebaf;
}
.server-active .owl-item.active.center .single-server .server-head > span  {
	color: #09ebaf;
}
.nav-tabs.server-tabs {
	border-bottom: none;
	text-align: center;
	display: block;
	margin-bottom: 10px;
}
.nav-tabs.server-tabs li {
	display: inline-block;
	margin-bottom: 0;
}
.nav-tabs.server-tabs li a {
	border: none;
	font-size: 18px;
	background: #edf4f8;
	line-height: 1;
	display: block;
	color: #47495a;
	padding: 25px 58px;
}
.nav-tabs.server-tabs .nav-link {
	border-radius: 0;
}
.nav-tabs.server-tabs .nav-link.active {
	color: #fff;
	background-color: #3056bc;
	border-color: unset;
}
.nav-tabs.server-tabs li:first-child a {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.nav-tabs.server-tabs li:last-child a {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.nav-tabs.server-tabs li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: -3px;
	border-right: 2px solid #dbe8ef;
}
.nav-tabs.server-tabs li:last-child {
	border-right: none;
}
.server-active .owl-dots {
	text-align: center;
}
.server-active .owl-dots .owl-dot {
	display: inline-block;
	height: 12px;
	width: 12px;
	background: #e1e1e1;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 8px;
	transition: .3s linear;
}
.server-active .owl-dots .owl-dot.active {
	background: #09ebaf;
}
.vps-title p {
	padding: 0 50px;
}
.nav-tabs.vps-tabs {
	margin-bottom: 40px;
}
.nav-tabs.vps-tabs li a {
	padding: 25px 54px;
}
.vps-tab-content .single-server.active {
	border-color: #09ebaf;
	padding-top: 65px;
	padding-bottom: 70px;
}
.vps-tab-content .single-server.active .server-head > span {
	color: #09ebaf;
}
.vps-tab-content .single-server.active .server-btn .btn {
	background: #09ebaf;
}
.vps-hosting .features-content h5 {
	padding-right: 0;
}
.nav-tabs.server-tabs.reseller-tabs li a i {
	margin-right: 10px;
}
.nav-tabs.server-tabs.reseller-tabs {
	margin-bottom: 45px;
}
.shosting-plan-toggle .toggle, .toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}
.shosting-plan-toggle .toggler {
	color: #47495a;
	transition: .2s;
	font-weight: 600;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
}
.shosting-plan-toggle .toggler--is-active {
  color: #3056bc;
}
.shosting-plan-toggle .toggle {
	position: relative;
	width: 120px;
	height: 45px;
	border-radius: 100px;
	background-color: #3056bc;
	overflow: hidden;
	box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
.check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}
.check:checked ~ .switch {
	right: 5px;
	left: 65.5%;
	transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition-property: left, right;
	transition-delay: .08s, 0s;
}
.switch {
	position: absolute;
	left: 5px;
	top: 5px;
	bottom: 5px;
	right: 65.5%;
	background-color: #fff;
	border-radius: 36px;
	z-index: 1;
	transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition-property: left, right;
	transition-delay: 0s, .08s;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hide{
  display: none;
}
.s-hplan-body .hplan-list ul li {
	color: #47495a;
	opacity: 1;
}
.single-hplan.s-hosting-plan {
	box-shadow: 0px 13px 114px 0px rgba(0, 0, 0, 0.08);
	border: none;
}
.s-hosting-plan .s-hplan-btn .btn:hover {
	background: #3056bc;
}

/*----------------------------------- 3.1.4 SECTION TESTIMONIALS ----------------------------------*/
.testimonial-content h4 {
	font-size: 24px;
	font-weight: 400;
	color: #47495a;
	font-family: 'Lato', sans-serif;
	padding: 0 90px;
	font-style: italic;
	margin-bottom: 0;
	line-height: 1.5;
}
.testi-avatar img {display: inline-block;}
.testi-avatar-info h5 {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.testi-avatar-info span {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	line-height: 1;
}
.testimonial-active .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -20px;
	border: none;
	padding: 0;
	background: none;
	color: #47495a;
	font-size: 25px;
	cursor: pointer;
	z-index: 9;
}
.testimonial-active .slick-next {
	right: -20px;
	left: auto;
}
.s-testimonial-content p {
	font-size: 24px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}
.s-testi-avatar-info p {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1;
	color: #47495a;
	margin-bottom: 0;
	font-family: 'Poppins', sans-serif;
}
.s-testi-avatar-info span {
	font-size: 14px;
	color: #8594a7;
}
.s-single-testimonial {
	position: relative;
	padding: 60px 80px;
	padding-top: 0;
}
.s-single-testimonial::before {
	content: "";
	position: absolute;
	left: 0;
	top: 45px;
	background-image: url(../img/images/testimonial_border.png);
	width: 558px;
	height: 384px;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	background-position: center;
}
.s-testimonial-content::before {
	content: "";
	position: absolute;
	left: -45px;
	top: -55px;
	background-image: url(../img/icon/quote_icon01.png);
	width: 57px;
	height: 41px;
	background-repeat: no-repeat;
}
.s-testimonial-content::after {
	content: "";
	position: absolute;
	bottom: -60px;
	right: -35px;
	background-image: url(../img/icon/quote_icon02.png);
	width: 43px;
	height: 31px;
	background-repeat: no-repeat;
}
.s-testimonial-avatar img {
	display: inline-block;
}
.third-testimonial .s-testimonial-content::before {
	background-image: url(../img/icon/quote01.png);
}
.third-testimonial .s-testimonial-content::after {
	background-image: url(../img/icon/quote02.png);
}
.third-testimonial .s-testi-avatar-info p {
	color: #6747c7;
	letter-spacing: 2px;
}
.t-testimonial-content p {
	font-size: 24px;
	color: #47495a;
	margin-bottom: 0;
	line-height: 1.5;
	font-style: italic;
}
.t-testimonial-content {
	background: #fff;
	padding: 45px 50px;
	box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}
.tavatar-img {
	float: left;
	display: block;
	margin-right: 20px;
}
.t-avatar-info h5 {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 0;
}
.t-avatar-info span {
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}
.t-testi-avatar {
	display: flex;
	align-items: center;
}
.t-testimonial-active .slick-track {
	padding-top: 75px;
}
.t-testimonial-active .slick-arrow {
	position: absolute;
	top: 50%;
	left: -45px;
	transform: translateY(-50%);
	z-index: 9;
	border: none;
	padding: 0;
	height: 40px;
	width: 40px;
	color: #fff;
	background: #c6c6c6;
	font-size: 18px;
	cursor: pointer;
	border-radius: 5px;
	transition: .3s;
}
.t-testimonial-active .slick-arrow:hover {
	background: #5588d3;
}
.t-testimonial-active .slick-next {
	right: -45px;
	left: auto;
}
.inner-testimonial-bg {
	background-image: -moz-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
	background-image: -webkit-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
	background-image: -ms-linear-gradient( right, rgb(81,148,219) 0%, rgb(26,35,122) 49%, rgb(44,19,92) 100%);
}
.inner-testimonial-bg .t-testimonial-content {
	box-shadow: none;
}
.inner-testimonial-bg .t-avatar-info h5 {
	color: #fff;
}
.inner-testimonial-bg .t-avatar-info span {
	color: #fff;
}
.inner-testimonial-bg .t-testimonial-active .slick-arrow {
	color: #47495a;
	background: #fff;
}
.inner-testimonial-bg .t-testimonial-active .slick-arrow:hover {
	color: #47495a;
	background: #09ebaf;
}

/*----------------------------------- 3.1.5 SECTION BRAND ----------------------------------*/
.single-brand {text-align: center;}
.single-brand img {
    max-width: 150px;
	display: inline-block;
	opacity: .5;
	transition: .3s;
	cursor: pointer;
}
.single-brand img:hover {
	opacity: 1;
}
.single-partner img {
	opacity: .5;
	transition: .3s linear;
	-webkit-transition: .3s linear;
	cursor: pointer;
}
.single-partner img:hover {
	opacity: 1;
}

/*----------------------------------- 3.2 PAGE: SOBRE-NOS ----------------------------------------*/
/*----------------------------------- 3.2.1 SECTION BRADCRUMB ----------------------------------------*/
.breadcrumb-bg {
	min-height: 784px;
    background-size: cover;
}
.breadcrumb-wrap h2 {
	font-size: 60px;
	color: #fff;
	margin-bottom: 35px;
}
.breadcrumb-wrap p {
	font-size: 24px;
	margin-bottom: 0;
	color: #fff;
}
.domian-breadcrumb h2 {
	font-size: 48px;
}

/*----------------------------------- 3.2.2 SECTION BRADCRUMB ----------------------------------------*/

.g-services-content h2 {
	font-size: 36px;
	padding-right: 60px;
	margin-top: 30px;
	margin-bottom: 20px;
}
.g-services-content .destaque{
	font-size: 40px;
	color: var(--secundaria);
}
.g-services-content p {
	margin-bottom: 0;
	padding-right: 50px;
}
.g-services-btn .btn {
	font-size: 14px;
	padding: 18px 43px;
}
.g-services-img img{
    max-width: 600px;
}

/*----------------------------------- 3.2.3 SECTION ABOUT ----------------------------------------*/

.about-bg {
    background: linear-gradient( to right, #67ABAC , #4278AE);
    background: -moz-linear-gradient( to right, #67ABAC , #4278AE);
    background: -webkit-linear-gradient( to right, #67ABAC , #4278AE);
    background: -ms-linear-gradient( to right, #67ABAC , #4278AE);
}
.about-area .section-title{
    color: #fff;
}
.about-content h5 {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 1.7;
}

.about-area .single-about .about-icon img{
	max-width: 200px;
}

/*----------------------------------- 3.2 PAGE: CONTATO ----------------------------------------*/
/*----------------------------------- 3.2.1 SECTION BRADCRUMB ----------------------------------------*/

.c-cta-wrap {
	background-color: #f6f6f6;
	border: 2px solid #f4f4f4;
	padding: 35px 25px;
	min-height: 200px;
	transform: translateY(0);
	transition: .3s;
}
.c-cta-wrap:hover{
	transform: translateY(-10px);
}
.c-cta-icon {
	float: left;
	margin-right: 20px;
	display: block;
}
.c-cta-icon svg,
.c-cta-icon i {
	font-size: 40px;
	color: #4278AE;
}
.c-cta-contact {
	overflow: hidden;
}
.c-cta-contact h5 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}
.c-cta-contact a {
	color: #212529;
	text-decoration: none;
}
.c-cta-contact a:hover span {
	color: var(--secundaria);
}
.c-cta-contact a span {
	display: block;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}
.c-cta-contact span svg {
	font-size: 25px;
	margin-right: 15px;
	color: var(--secundaria);
}
.contact-title span {
	font-size: 16px;
	font-weight: 600;
	color: #4181CE;
	margin-bottom: 10px;
	display: block;
	font-family: 'Poppins', sans-serif;
}
.contact-title h2 {
	font-size: 54px;
	font-weight: 700;
	letter-spacing: -.3px;
	margin-bottom: 0;
}
.contact-field {
	position: relative;
	margin-bottom: 20px;
}
.contact-form input {
	width: 100%;
	border: none;
	background: #f6f6f6;
	padding: 23px 40px;
	border-radius: 5px;
	padding-right: 60px;
}
.contact-form input::placeholder {
	color: rgb(158, 158, 158);
}
.contact-field svg,
.contact-field i {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: #8291ab;
}
.contact-form textarea {
	width: 100%;
	border: none;
	background: #f6f6f6;
	padding: 23px 40px;
	border-radius: 5px;
	height: 185px;
	padding-right: 60px;
}
.contact-form textarea::placeholder {
	color: rgb(158, 158, 158);
}
.c-message-field i {
	top: 34px;
}

/*----------------------------------- 3.2 PAGE: PARCEIROS ----------------------------------------*/
/*----------------------------------- 3.2.1 SECTION CHOOSE ----------------------------------------*/
.choose-img img{
    max-width: 400px;
}


/*----------------------------------- 3.2.1 SECTION VIDEO GALLERY ----------------------------------------*/

.video-gallery .section-title{
    padding: 80px 0;
}
