@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Numans&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
html,
body {
	height: 100%;
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
button, input, optgroup, select, textarea{
	font-family: 'Poppins', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #273340;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 38px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	color: #273340;
	font-weight: 400;
	line-height: 32px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}



ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 50px;
	text-align: center;
}

.section-title.normal-title {
	text-align: left;
}

.section-title.normal-title h3:after {
	margin: 0;
}

.section-title h3 {
	color: #273340;
	font-weight: 400;
	position: relative;
	margin-bottom: 20px;
}

/*.section-title h3:after {
	position: absolute;
	left: 0;
	bottom: 70px;
	right: 0;
	height: 12px;
	width: 180px;
	background-image: url(../img/line.png);
	content: "";
	margin: 0 auto;
}*/

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 18px;
	padding: 20px 40px 20px;
	color: #ffffff;
	background: #3661FC;
	border: 2px solid #3661FC;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
}
.primary-btn-2{
	  display: inline-block;
    font-size: 18px;
    padding: 20px 40px 20px;
    color: #ffffff;
    background: #3661FC;
    border: 2px solid #3661FC;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}
.primary-btn-2:hover{
	background: #2A2991;
	border: 2px solid #2A2991;
	-webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.primary-btn-3{
    font-size: 17px;
    background: transparent !important;
    border: 2px solid #47C3D0;
    color: #47C3D0;
    border-radius: 40px;
}
.primary-btn-3:hover{
    background: #47C3D0 !important;
    color: #ffffff;
    border: 2px solid #47C3D0;
    -webkit-transition: all 0.9s ease-out;
        -o-transition: all 0.9s ease-out;
        transition: all 0.9s ease-out;
}
.primary-btn-line{
	display: inline-block;
	font-size: 18px;
	padding: 20px 40px 20px;
	color: #ffffff;
	background: transparent;
	border: 2px solid #ffffff;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
}
.primary-btn-line:hover{
	background: #ffffff;
	color: #273340 !important;
}
.primary-btn-white{
	display: inline-block;
	font-size: 18px;
	padding: 20px 40px 20px;
	color: #273340;
	background: #ffffff;
	border: 2px solid #ffffff;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
}
.primary-btn-white:hover{
	background: transparent;
	border: 2px solid #ffffff;
	color: #ffffff !important;
}
.primary-btn-white:focus{
    color: #273340 !important;
	background: #ffffff;
}
.site-btn {
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: #4c57d6;
	border: none;
	border-radius: 50px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header-section {
	position: fixed;
	background-color: #ffffff;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
	border-bottom: 0;
	border-bottom: 1px solid #3661FC;
}

.header-section.header-normal {
	position: relative;
	background: #120851;
}

.header-section.header-normal .header__logo {
	padding-bottom: 30px;
}

.header-section.header-normal .header__menu {
	padding-bottom: 30px;
}

.header__info {
  width: 100%;
	padding: 5px 0;
	border-bottom: 1px solid #2B76BB;
	background-color: #2B76BB;
	z-index: 999999;
}

.header__info-left ul li {
	font-size: 13px;
	color: #ffffff;
	list-style: none;
	display: inline-block;
	margin-right: 25px;
}
.header__info-left a{
	color: #ffffff !important;
}

.header__info-left ul li:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

.header__info-left ul li span {
	height: 30px;
	width: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
}

.header__info-right {
	text-align: right;
}

.header__info-right ul li {
	list-style: none;
	display: inline-block;
	margin-right: 30px;
}

.header__info-right ul li:last-child {
	margin-right: 0;
}

.header__info-right ul li a {
	font-size: 13px;
	color: #ffffff;
	display: block;
}

.header__info-right ul li a span {
	height: 30px;
	width: 30px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
}

.header__logo {
	padding-top: 30px;
}

.header__logo a {
	display: inline-block;
}

.header__menu {
	text-align: right;
	padding-top: 15px;
	padding-bottom: 5px;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 40px;
	width: 200px;
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
}

.header__menu ul li .dropdown li {
	display: block;
	text-align: left;
}

.header__menu ul li .dropdown li a {
	color: #111111;
	padding: 10px 15px;
	text-transform: capitalize;
	font-weight: 500;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li:last-child {
	margin-right: 0;
}


.header__menu ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	top: 20px;
}

.header__menu ul li:hover a:after {
	opacity: 1;
	height: 50%;
}

.header__menu ul li a {
	color: #273340;
  font-size: 16px;
	font-weight: 500;
	display: block;
	padding: 0 3px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	text-decoration: none;
}

.header__menu ul li a:focus{
color: #273340 !important;

}
.offcanvas__menu__wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero__slider.owl-carousel .owl-item.active .hero__item .hero__text h5 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__item .hero__text h1 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__item .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-dots {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 118px;
	text-align: center;
}

.hero__slider.owl-carousel .owl-dots button {
	height: 5px;
	width: 25px;
	background: #433b76;
	border-radius: 50px;
	margin-right: 10px;
}

.hero__slider.owl-carousel .owl-dots button.active {
	background: #4c57d6;
}

.hero__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.hero__item {
	/*height: 600px;*/
	padding: 100px 0px 100px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero__item .hero__text {
	padding-top: 0px;
}

.hero__item .hero__text h5 {
	color: #20284e;
	opacity: 0.7;
	font-weight: 500;
	margin-bottom: 15px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	line-height: 30px;
}

.hero__item .hero__text h1 {
	color: #20284e;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 28px;
	position: relative;
	top: 100px;
	opacity: 0;
	/*-webkit-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	transition: all 0.6s ease-out;*/
}
.banner{
	/*background-image: url("../img/Banner.png")!important;
	background-repeat: no-repeat;
  background-position: top;
  background-size: cover;*/
  position: relative;
  padding-top: 300px;
  padding-bottom: 250px;
}
.banner h1{
	color: #ffffff;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 10px;
  font-size: 42px;
}
.banner h2{
	font-size: 30px;
    color: #ffffff;
    font-weight: 200;
}
.banner h4{
	margin-bottom: 30px;
}
.banner p{
	margin-top: 20px;
	color: #ffffff;
}
.imagem-banner{
	text-align: right !important;
}
.hero__item .hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	/*-webkit-transition: all 0.9s ease-out;
	-o-transition: all 0.9s ease-out;
	transition: all 0.9s ease-out;*/
}

/*---------------------
  Register Domain
-----------------------*/

.register__text .register__form {
	margin-bottom: 34px;
}

.register__text .register__form form {
	position: relative;
}

.register__text .register__form form input {
	width: 100%;
	height: 54px;
	border: 2px solid #4c57d6;
	border-radius: 50px;
	font-size: 14px;
	color: #111111;
	padding-left: 20px;
}

.register__text .register__form form input::-webkit-input-placeholder {
	color: #111111;
}

.register__text .register__form form input::-moz-placeholder {
	color: #111111;
}

.register__text .register__form form input:-ms-input-placeholder {
	color: #111111;
}

.register__text .register__form form input::-ms-input-placeholder {
	color: #111111;
}

.register__text .register__form form input::placeholder {
	color: #111111;
}

.register__text .register__form form .change__extension {
	font-size: 14px;
	color: #111111;
	position: absolute;
	top: 15px;
	right: 170px;
	cursor: pointer;
}

.register__text .register__form form .change__extension:hover ul {
	opacity: 1;
	top: 18px;
	visibility: visible;
}

.register__text .register__form form .change__extension ul {
	width: 60px;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: 38px;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 9;
}

.register__text .register__form form .change__extension ul li {
	list-style: none;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
}

.register__text .register__form form .change__extension:before {
	position: absolute;
	left: -30px;
	top: 3px;
	height: 18px;
	width: 1px;
	background: #d7d7d7;
	content: "";
}

.register__text .register__form form .change__extension:after {
	position: absolute;
	right: -20px;
	top: 0;
	content: "3";
	font-family: "ElegantIcons";
}

.register__text .register__form form .site-btn {
	position: absolute;
	right: 4px;
	top: 4px;
}

.register__text .register__result {
	margin-bottom: 24px;
}

.register__text .register__result ul li {
	display: inline-block;
	list-style: none;
	color: #4c57d6;
	font-weight: 700;
	margin-right: 62px;
	font-size: 20px;
}

.register__text .register__result ul li:last-child {
	margin-right: 0;
}

.register__text .register__result ul li span {
	color: #111111;
}

.register__text p {
	margin-bottom: 0;
}

/*---------------------
  Services Section
-----------------------*/

.services-section {
	background: #eeeffb;
	padding-bottom: 60px;
}

.services__item {
	background: #ffffff;
	padding-left: 40px;
	padding-top: 40px;
	padding-right: 45px;
	padding-bottom: 20px;
	border-radius: 10px;
	border: 2px solid #E3E3E3;
	/*-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);*/
	margin-bottom: 40px;
	/*-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;*/
}

/*.services__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}*/

.services__item h5 {
	font-size: 20px;
	color: #20284e;
	font-weight: 700;
	margin-bottom: 8px;
}

.services__item span {
	font-size: 15px;
	color: #4c57d6;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}

.services__item p {
	color: #20284e;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section {
	padding-bottom: 60px;
}

.pricing__swipe-btn {
	border: 1px solid #4c57d6;
	border-radius: 50px;
	height: 52px;
	width: 266px;
	float: right;
}

.pricing__swipe-btn label {
	font-size: 15px;
	color: #444444;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px 12px;
	border-radius: 50px;
	margin-right: -4px;
	position: relative;
	top: 2px;
	left: 2px;
	cursor: pointer;
}

.pricing__swipe-btn label.active {
	background: #4c57d6;
	color: #ffffff;
}

.pricing__swipe-btn label input {
	position: absolute;
	visibility: hidden;
}

.monthly__plans,
.yearly__plans {
	display: none;
}

.monthly__plans.active,
.yearly__plans.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.pricing__item {
	text-align: center;
	padding-bottom: 20px;
	padding-top: 22px;
	padding-left: 20px;
	padding-right: 20px;
	background: #EFF2F7;
	/*-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;*/
	margin-bottom: 40px;
	height: 850px;
}
.pricing_free{
	background: #0c8dce;
	color: #ffffff;
}

/*.pricing__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}*/

.pricing__item .fa-check{
	color: #0c8dce;
}
.pricing_free .fa-check{
	color: #ffffff;
}
.pricing_free hr{
	background: #ffffff;
}
hr{
	background: #CDD7FE;
	color: #CDD7FE;
	    height: 1px;
	    opacity: 100%;
}
.pricing__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
}
.pricing_free h4{
	color: #ffffff;
}
.pricing__item h3{
	color: #0c8dce;
}
.pricing_free h3{
	color: #ffffff;
}

.pricing__item h4 {
	font-weight: 700;
	padding: 24px 0 0px;
	border-radius: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.pricing__item h4 span {
	font-size: 16px;
	font-weight: 400;
}

.pricing__item ul {
	margin-bottom: 26px;
}

.pricing__item ul li {
	font-size: 14px;
	color: #444444;
	line-height: 30px;
	list-style: none;
}
.pricing_free ul li{
	color: #ffffff;
}


/*---------------------
  Achievement Section
-----------------------*/

.achievement-section {
	padding-bottom: 450px;
}

.achievement__item {
	text-align: center;
	margin-bottom: 30px;
}

.achievement__item span {
	font-size: 40px;
	color: #4c57d6;
}

.achievement__item h2 {
	color: #ffffff;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 5px;
}

.achievement__item p {
	font-size: 16px;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 0;
}

/*---------------------
  Work Section
-----------------------*/

.work-section {
	margin-top: -405px;
	position: relative;
	z-index: 9;
	border-top: 1px solid #62677d;
	padding-bottom: 0;
}

.work-section .section-title {
	margin-bottom: 82px;
}

.work-section .section-title h3 {
	color: #ffffff;
}

.work__text {
	-webkit-box-shadow: 0px 5px 10px rgba(18, 8, 81, 0.1);
	box-shadow: 0px 5px 10px rgba(18, 8, 81, 0.1);
	padding: 70px;
	background: #ffffff;
	position: relative;
}

.work__text:after {
	position: absolute;
	left: 0;
	right: 0;
	top: -6px;
	margin: 0 auto;
	height: 15px;
	width: 15px;
	background: #ffffff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}

.work__item {
	text-align: center;
}

.work__item i {
	font-size: 53px;
	color: #4c57d6;
}

.work__item span {
	display: block;
	font-size: 14px;
	color: #4c57d6;
	margin-bottom: 6px;
	margin-top: 32px;
}

.work__item h3 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
}

.work__item p {
	margin-bottom: 32px;
}

/*---------------------
  Choose Plan
-----------------------*/

.choose-plan-section.pricing-page {
	background: #f5f5f5;
}

.plan__text {
	padding-left: 20px;
}

.plan__text h3 {
	color: #20284e;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 18px;
}

.plan__text ul {
	margin-bottom: 35px;
}

.plan__text ul li {
	list-style: none;
	font-size: 18px;
	font-weight: 500;
	color: #111111;
	line-height: 40px;
}

.plan__text ul li span {
	margin-right: 5px;
	color: #0c8dce;
}

/*---------------------
  Footer
-----------------------*/

.footer__top {
	position: relative;
	z-index: 1;
	padding-top: 50px;
	padding-bottom: 265px;
}

.footer__top::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background: #0B052F;
	content: "";
	z-index: -1;
}

.footer__top::after {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background: #0E0739;
	content: "";
	z-index: -1;
}

.footer__top-call h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 18px;
}

.footer__top-call h2 {
	font-weight: 700;
	color: #4c57d6;
}

.footer__top-auth {
	padding-left: 25px;
}

.footer__top-auth h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer__top-auth .sign-up {
	margin-left: 6px;
	background: transparent;
	border: 2px solid #4c57d6;
	padding: 12px 30px 10px;
}

.footer__text {
	position: relative;
	z-index: 0;
	padding-top: 100px;
}

.footer__text-about {
	margin-bottom: 30px;
}

.footer__text-about .footer__logo {
	margin-bottom: 24px;
}

.footer__text-about .footer__logo a {
	display: inline-block;
}

.footer__text-about p {
	color: #20284e;
	line-height: 24px;
	margin-bottom: 5px;
}
.footer__text-about a img{
    width: 15%;
}
.footer__social{
	text-align: left;
}
.footer__social a{
	margin-left: 0px;
	color: #919191;
	font-size: 20px;
}
.footer__social a:hover{
	color: #2A2991 !important;
	-webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.footer__text-about .footer__social a {
	display: inline-block;
  font-size: 20px;
  color: #E6EBFE;
  margin-right: 10px;
}

.footer__text-about .footer__social a:last-child {
	margin-right: 0;
}

.footer__text-widget {
	margin-bottom: 30px;
}

.footer__text-widget h5 {
	font-size: 20px;
	color: #0c8dce;
	font-weight: 700;
	margin-bottom: 25px;
}

.footer__text-widget ul li {
	list-style: none;
	margin: 0px;
}

.footer__text-widget ul li a {
	font-size: 14px;
	color: #ffffff;
	line-height: 30px;
	text-decoration: none;
}
.footer__text-widget ul li a:hover{
	color: #3661FC !important;
}
.footer__text-widget .footer__widget-info li {
	list-style: none;
	font-size: 14px;
	color: #20284e;
	line-height: 30px;
	position: relative;
}

.footer__text-widget .footer__widget-info li span {
	color: #4c57d6;
	position: absolute;
	left: 0;
	top: 14px;
}

.footer__text-copyright {
	font-size: 14px;
	color: #c4c4c4;
	text-align: center;
	padding: 10px 0;
	border-top: 1px solid #99A7BF;
	margin-top: 20px;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb__option {
	border-bottom: 1px solid #ebebeb;
	padding: 15px 0;
}

.breadcrumb__option a {
	font-size: 15px;
	color: #111111;
	font-weight: 500;
	margin-right: 20px;
	display: inline-block;
	position: relative;
}

.breadcrumb__option a:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "5";
	font-family: "ElegantIcons";
}

.breadcrumb__option a span {
	color: #111111;
	margin-right: 5px;
}

.breadcrumb__option span {
	font-size: 15px;
	color: #888888;
	font-weight: 500;
	display: inline-block;
}

/*---------------------
  About
-----------------------*/

.about__text {
	padding-top: 20px;
}

.about__text h2 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.about__text p {
	color: #111111;
	margin-bottom: 26px;
}

.about__text .about__achievement .about__achieve__item {
	display: inline-block;
	margin-right: 95px;
	margin-bottom: 30px;
}

.about__text .about__achievement .about__achieve__item:last-child {
	margin-right: 0;
}

.about__text .about__achievement .about__achieve__item span {
	font-size: 30px;
	color: #4c57d6;
}

.about__text .about__achievement .about__achieve__item h4 {
	color: #111111;
	font-weight: 700;
	margin-top: 12px;
}

.about__text .about__achievement .about__achieve__item p {
	font-size: 13px;
	text-transform: uppercase;
	color: #444444;
	margin-bottom: 0;
}

/*---------------------
  About
-----------------------*/

.feature-section {
	background: #f5f5f5;
	padding-bottom: 70px;
}

.feature__item {
	background: #ffffff;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	padding: 30px 35px 32px 35px;
	text-align: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 30px;
}

.feature__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}

.feature__item span {
	font-size: 42px;
	color: #4c57d6;
}

.feature__item h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-top: 18px;
	margin-bottom: 10px;
}

.feature__item p {
	color: #111111;
	margin-bottom: 0;
}

/*---------------------
  Team
-----------------------*/

.team-section {
	padding-bottom: 70px;
}

.team__btn {
	text-align: right;
}

.team__item {
	border: 1px solid #d7d7d7;
	padding: 30px 20px 20px 30px;
	margin-bottom: 30px;
}

.team__item .team__pic {
	float: left;
	margin-right: 30px;
}

.team__item .team__pic img {
	height: 120px;
	width: 120px;
	border-radius: 50%;
}

.team__item .team__text {
	overflow: hidden;
}

.team__item .team__text h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 5px;
}

.team__item .team__text span {
	font-size: 14px;
	display: block;
	color: #4c57d6;
	margin-bottom: 6px;
}

.team__item .team__text .team__social a {
	display: inline-block;
	font-size: 16px;
	margin-right: 20px;
}

.team__item .team__text .team__social a.facebook {
	color: #3263af;
}

.team__item .team__text .team__social a.twitter {
	color: #40c4ff;
}

.team__item .team__text .team__social a.youtube {
	color: #ff0000;
}

.team__item .team__text .team__social a.instagram {
	color: #b309d7;
}

.team__item .team__text .team__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial-section {
	background: #f5f5f5;
}

.testimonial__item {
	text-align: center;
	position: relative;
	-webkit-box-shadow: 0px 2px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 2px 10px rgba(18, 8, 81, 0.15);
	padding: 85px 30px 20px 30px;
	border-radius: 10px;
	background: #ffffff;
}

.testimonial__item img {
	height: 120px;
	width: 120px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	right: 0;
	top: -50px;
	margin: 0 auto;
}

.testimonial__item h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 600;
	margin-bottom: 5px;
}

.testimonial__item span {
	font-size: 13px;
	color: #4c57d6;
	text-transform: uppercase;
	display: block;
	margin-bottom: 12px;
}

.testimonial__item p {
	margin-bottom: 0;
}

.testimonial__item .testimonial__rating i {
	font-size: 12px;
	color: #e9bb3f;
	margin-right: -4px;
}

.testimonial__slider .col-lg-4 {
	max-width: 100%;
}

.testimonial__slider.owl-carousel .owl-item img {
	width: auto;
}

.testimonial__slider.owl-carousel .owl-stage-outer {
	padding-bottom: 30px;
	padding-top: 50px;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 5px;
	width: 25px;
	background: #b7bcef;
	border-radius: 50px;
	margin-right: 10px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #4c57d6;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

/*---------------------
  Hosting Section
-----------------------*/

.hosting-section {
	padding-bottom: 0;
}

.hosting__text .nav-tabs {
	border-bottom: none;
	margin-bottom: 10px;
}

.hosting__text .nav-tabs .nav-item {
	margin-bottom: 0;
	width: 20%;
}

.hosting__text .nav-tabs .nav-item .nav-link {
	border: navajowhite;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background: #f5f5f5;
	text-align: center;
	padding: 20px 0;
	position: relative;
}

.hosting__text .nav-tabs .nav-item .nav-link:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 10px;
	width: 10px;
	background: #4c57d6;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: 0 auto;
	opacity: 0;
	z-index: 9;
}

.hosting__text .nav-tabs .nav-item .nav-link span {
	font-size: 24px;
	color: #4c57d6;
}

.hosting__text .nav-tabs .nav-item .nav-link span::before {
	font-size: 40px;
}

.hosting__text .nav-tabs .nav-item .nav-link h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
}

.hosting__text .nav-tabs .nav-item .nav-link.active {
	background: #4c57d6;
}

.hosting__text .nav-tabs .nav-item .nav-link.active span {
	color: #ffffff;
}

.hosting__text .nav-tabs .nav-item .nav-link.active h5 {
	color: #ffffff;
}

.hosting__text .nav-tabs .nav-item .nav-link.active:after {
	opacity: 1;
}

.hosting__feature__table table {
	width: 100%;
	border: 1px solid #e1e1e1;
	text-align: center;
}

.hosting__feature__table table thead {
	border-bottom: 1px solid #e1e1e1;
}

.hosting__feature__table table thead th {
	border-right: 1px solid #e1e1e1;
}

.hosting__feature__table table thead th .hosting__feature__plan--choose {
	text-align: left;
	padding-left: 40px;
	padding-right: 10px;
}

.hosting__feature__table table tbody tr {
	border-bottom: 1px solid #e1e1e1;
}

.hosting__feature__table table tbody tr:nth-child(odd) {
	background: #fafafa;
}

.hosting__feature__table table tbody tr td {
	border-right: 1px solid #e1e1e1;
	padding: 24px 0 22px;
	width: 232px;
}

.hosting__feature__table table tbody tr td.hosting__feature--item {
	text-align: left;
	padding-left: 40px;
}

.hosting__feature__table table .hosting__feature__plan--choose span {
	font-size: 16px;
	font-weight: 500;
	color: #4c57d6;
}

.hosting__feature__table table .hosting__feature__plan--choose .chose__title {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 6px;
	font-size: 24px;
}

.hosting__feature__table table .hosting__feature--plan {
	padding: 40px 10px;
}

.hosting__feature__table table .hosting__feature--plan .plan__title {
	color: #111111;
	font-weight: 700;
	margin-bottom: 16px;
	font-size: 24px;
}

.hosting__feature__table table .hosting__feature--plan .hosting__feature--price {
	margin-bottom: 20px;
}

.hosting__feature__table table .hosting__feature--plan .hosting__feature--price .plan__price {
	font-size: 40px;
	color: #4c57d6;
	font-weight: 700;
}

.hosting__feature__table table .hosting__feature--plan .hosting__feature--price span {
	font-size: 16px;
	color: #444444;
}

.hosting__feature__table table .hosting__feature--plan .primary-btn {
	background: #f2f2f2;
	color: #111111;
}

.hosting__feature__table table .hosting__feature--item {
	font-size: 16px;
	color: #111111;
	font-weight: 700;
	width: 470px;
}

.hosting__feature__table table .hosting__feature--info {
	font-size: 14px;
	color: #111111;
	font-weight: 500;
}

.hosting__feature__table table .hosting__feature--check {
	font-size: 16px;
	color: #4c57d6;
}

.hosting__feature__table table .hosting__feature--close {
	font-size: 16px;
	color: #d6002d;
}

/*---------------------
  Question
-----------------------*/

.question__accordin .card {
	border: none;
	border-radius: 0;
}

.question__accordin .card .card-heading a {
	margin-bottom: 16px;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	display: block;
	font-weight: 700;
}

.question__accordin .card .card-body {
	padding: 0;
}

.question__accordin .card-heading a:after {
	position: absolute;
	left: 0;
	top: 4px;
}

.question__accordin .card-heading a:after,
.question__accordin .card-heading>a.active[aria-expanded=false]:after {
	content: "L";
	font-family: "ELegantIcons";
	font-size: 14px;
	height: 15px;
	width: 15px;
	background: #4c57d6;
	line-height: 15px;
	text-align: center;
	color: #ffffff;
}

.question__accordin .card-heading a[aria-expanded=true]:after,
.question__accordin .card-heading>a.active:after {
	content: "K";
	font-family: "ELegantIcons";
	font-size: 14px;
	height: 15px;
	width: 15px;
	background: #4c57d6;
	line-height: 15px;
	text-align: center;
	color: #ffffff;
}

.question-form input {
	font-size: 14px;
	color: #444444;
	width: 100%;
	height: 50px;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	margin-bottom: 20px;
	border-radius: 10px;
}

.question-form input::-webkit-input-placeholder {
	color: #444444;
}

.question-form input::-moz-placeholder {
	color: #444444;
}

.question-form input:-ms-input-placeholder {
	color: #444444;
}

.question-form input::-ms-input-placeholder {
	color: #444444;
}

.question-form input::placeholder {
	color: #444444;
}

.question-form textarea {
	font-size: 14px;
	color: #444444;
	width: 100%;
	height: 100px;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	margin-bottom: 14px;
	border-radius: 10px;
	resize: none;
	padding-top: 12px;
}

.question-form textarea::-webkit-input-placeholder {
	color: #444444;
}

.question-form textarea::-moz-placeholder {
	color: #444444;
}

.question-form textarea:-ms-input-placeholder {
	color: #444444;
}

.question-form textarea::-ms-input-placeholder {
	color: #444444;
}

.question-form textarea::placeholder {
	color: #444444;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
	margin-bottom: 40px;
}

.blog__item .blog__pic {
	height: 253px;
	position: relative;
}

.blog__item .blog__pic .label {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	background: #4c57d6;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 5px;
	position: absolute;
	left: 30px;
	bottom: -11px;
}

.blog__item .blog__text {
	padding-left: 30px;
	padding-top: 25px;
}

.blog__item .blog__text h5 {
	margin-bottom: 5px;
}

.blog__item .blog__text h5 a {
	font-size: 20px;
	font-weight: 700;
	color: #111111;
	line-height: 27px;
}

.blog__item .blog__text ul li {
	list-style: none;
	display: inline-block;
	color: #666666;
	font-size: 13px;
	margin-right: 20px;
}

.blog__item .blog__text ul li:last-child {
	margin-right: 0;
}

.blog__item .blog__text ul li i {
	height: 30px;
	width: 30px;
	background: #f2f2f2;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	margin-right: 5px;
}

.load-more {
	text-align: center;
}

.load-more .primary-btn {
	padding: 14px 75px 12px;
	background: #f2f2f2;
	color: #111111;
}

.blog__sidebar .blog__sidebar__item {
	margin-bottom: 70px;
}

.blog__sidebar .blog__sidebar__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar .blog__sidebar__item .sidebar__title {
	margin-bottom: 30px;
}

.blog__sidebar .blog__sidebar__item .sidebar__title h6 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	padding: 0 5px;
	z-index: 1;
}

.blog__sidebar .blog__sidebar__item .sidebar__title h6:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: #4c57d6;
	content: "";
	z-index: -1;
	opacity: 0.3;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	margin-right: 10px;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a:last-child {
	margin-right: 0;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a.facebook {
	background: #3263af;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a.twitter {
	background: #40c4ff;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a.youtube {
	background: #ff0000;
}

.blog__sidebar .blog__sidebar__item .sidebar__social a.instagram {
	background: -o-linear-gradient(45deg, #af00e1, #ff9e35);
	background: linear-gradient(45deg, #af00e1, #ff9e35);
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ebebeb;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item .label {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	background: #4c57d6;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 5px;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item h6 {
	margin-top: 20px;
	margin-bottom: 5px;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item h6 a {
	color: #111111;
	font-weight: 700;
	line-height: 27px;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item ul li {
	list-style: none;
	color: #666666;
	font-size: 13px;
}

.blog__sidebar .blog__sidebar__item .sidebar__feature__post .sidebar__feature__item ul li i {
	height: 30px;
	width: 30px;
	background: #f2f2f2;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	margin-right: 5px;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe {
	background: #f5f5f5;
	padding: 30px;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe .sidebar__title {
	margin-bottom: 20px;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input {
	height: 46px;
	border: 1px solid #ebebeb;
	background: transparent;
	border-radius: 10px;
	padding-left: 20px;
	font-size: 14px;
	color: #444444;
	width: 100%;
	margin-bottom: 20px;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input::-webkit-input-placeholder {
	color: #444444;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input::-moz-placeholder {
	color: #444444;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input:-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input::-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar .blog__sidebar__item .sidebar__subscribe form input::placeholder {
	color: #444444;
}

/*---------------------
  Blog Hero
-----------------------*/

.blog-hero-section {
	background: #f2f2f2;
	height: 640px;
	position: relative;
}

.blog-hero-section .blog__hero__pic {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 640px;
}

.blog__hero__text {
	padding-top: 218px;
}

.blog__hero__text .label {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	background: #4c57d6;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 5px;
}

.blog__hero__text h3 {
	color: #111111;
	font-weight: 700;
	line-height: 39px;
	margin-bottom: 12px;
	margin-top: 10px;
}

.blog__hero__text ul li {
	list-style: none;
	color: #666666;
	font-size: 13px;
	display: inline-block;
	margin-right: 20px;
}

.blog__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__hero__text ul li i {
	height: 30px;
	width: 30px;
	background: #ffffff;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
	margin-right: 5px;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details-section {
	padding-top: 60px;
}

.blog__details__text {
	position: relative;
}

.blog__details__social {
	position: absolute;
	left: -90px;
	top: 0;
}

.blog__details__social span {
	font-size: 15px;
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 25px;
	display: block;
}

.blog__details__social ul li {
	list-style: none;
	margin-bottom: 15px;
}

.blog__details__social ul li a {
	display: block;
	font-size: 14px;
	color: #ffffff;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	margin-right: 10px;
}

.blog__details__social ul li a:last-child {
	margin-right: 0;
}

.blog__details__social ul li a.facebook {
	background: #3263af;
}

.blog__details__social ul li a.twitter {
	background: #40c4ff;
}

.blog__details__social ul li a.youtube {
	background: #ff0000;
}

.blog__details__social ul li a.instagram {
	background: -o-linear-gradient(45deg, #af00e1, #ff9e35);
	background: linear-gradient(45deg, #af00e1, #ff9e35);
}

.blog__details__title {
	margin-bottom: 25px;
}

.blog__details__title p {
	line-height: 27px;
	font-size: 15px;
}

.blog__details__quote {
	background: #f5f5f5;
	padding: 30px 50px;
	margin-bottom: 35px;
	position: relative;
}

.blog__details__quote:after {
	position: absolute;
	left: 50px;
	top: -5px;
	font-family: "FontAwesome";
	content: "";
	font-size: 60px;
	color: #4c57d6;
	opacity: 0.3;
}

.blog__details__quote p {
	font-size: 16px;
	color: #111111;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 0;
	position: relative;
	z-index: 9;
}

.blog__details__title__more {
	margin-bottom: 30px;
}

.blog__details__title__more p {
	font-size: 15px;
	line-height: 27px;
	margin-bottom: 0;
}

.blog__details__item {
	overflow: hidden;
	margin-bottom: 15px;
}

.blog__details__item .blog__details__item__pic {
	float: left;
	margin-right: 30px;
}

.blog__details__item .blog__details__item__text {
	overflow: hidden;
}

.blog__details__item .blog__details__item__text p {
	font-size: 15px;
	line-height: 27px;
}

.blog__details__desc {
	margin-bottom: 30px;
}

.blog__details__desc p {
	font-size: 15px;
	line-height: 27px;
}

.blog__details__tags {
	margin-bottom: 60px;
}

.blog__details__tags a {
	display: inline-block;
	font-size: 13px;
	color: #444444;
	background: #f2f2f2;
	padding: 10px 16px;
	margin-right: 6px;
}

.blog__details__tags a:last-child {
	margin-right: 0;
}

.blog__details__profile {
	background: #f5f5f5;
	padding: 50px;
	margin-bottom: 55px;
}

.blog__details__profile .blog__details__profile__pic {
	float: left;
	margin-right: 30px;
}

.blog__details__profile .blog__details__profile__pic img {
	height: 120px;
	width: 120px;
	border-radius: 50%;
}

.blog__details__profile .blog__details__profile__text {
	overflow: hidden;
}

.blog__details__profile .blog__details__profile__text h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.blog__details__profile .blog__details__profile__text p {
	line-height: 27px;
}

.blog__details__profile .blog__details__profile__text .blog__details__profile__social a {
	font-size: 14px;
	color: #444444;
	display: inline-block;
	margin-right: 14px;
}

.blog__details__profile .blog__details__profile__text .blog__details__profile__social a:last-child {
	margin-right: 0;
}

.blog__details__option {
	margin-bottom: 55px;
}

.blog__details__option .blog__details__option__item {
	display: block;
}

.blog__details__option .blog__details__option__item.blog__details__option__item--next {
	text-align: right;
}

.blog__details__option .blog__details__option__item.blog__details__option__item--next h5 i {
	margin-right: 0;
	margin-left: 5px;
}

.blog__details__option .blog__details__option__item h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
}

.blog__details__option .blog__details__option__item h5 i {
	margin-right: 5px;
}

.blog__details__option .blog__details__option__item .label {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	background: #4c57d6;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 5px;
}

.blog__details__option .blog__details__option__item h6 {
	color: #111111;
	font-weight: 700;
	line-height: 27px;
	margin-top: 10px;
}

.blog__details__comment {
	border: 1px solid #ebebeb;
	padding-left: 40px;
	padding-bottom: 50px;
	padding-right: 50px;
	padding-top: 30px;
}

.blog__details__comment h4 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	padding: 0 5px;
	z-index: 1;
	margin-bottom: 55px;
}

.blog__details__comment h4:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: #4c57d6;
	content: "";
	z-index: -1;
	opacity: 0.3;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item {
	padding-bottom: 5px;
	border-bottom: 1px solid #f2f2f2;
	margin-bottom: 40px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item.blog__details__comment__reply {
	margin-left: 115px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__pic {
	float: left;
	margin-right: 25px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text {
	position: relative;
	overflow: hidden;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 15px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text p {
	font-size: 15px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text ul {
	position: absolute;
	right: 0;
	top: 0;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text ul li {
	list-style: none;
	display: inline-block;
	font-size: 12px;
	color: #444444;
	margin-right: 24px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text ul li i {
	font-size: 14px;
	color: #4c57d6;
	margin-right: 5px;
}

.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text ul li:last-child {
	margin-right: 0;
}

.blog__details__comment .comment__btn {
	text-align: center;
}

/*---------------------
  Contact
-----------------------*/

.contact-section {
	padding-bottom: 0;
}

.contact__text h3 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.contact__text p {
	color: #111111;
	font-size: 15px;
	margin-bottom: 30px;
}

.contact__text ul li {
	list-style: none;
	position: relative;
	padding-left: 65px;
	margin-bottom: 30px;
}

.contact__text ul li span {
	height: 46px;
	width: 46px;
	background: #4c57d6;
	line-height: 46px;
	text-align: center;
	border-radius: 10px;
	font-size: 20px;
	color: #ffffff;
	position: absolute;
	left: 0;
	top: 0;
}

.contact__text ul li h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 5px;
}

.contact__text ul li p {
	font-size: 15px;
	color: #111111;
	margin-bottom: 0;
}

.contact__text .contact__social a {
	display: inline-block;
	font-size: 30px;
	color: #c4c4c4;
	margin-right: 26px;
}

.contact__text .contact__social a:last-child {
	margin-right: 0;
}

.contact__text .contact__social a.facebook {
	color: #3263af;
}

.contact__text .contact__social a.twitter {
	color: #40c4ff;
}

.contact__text .contact__social a.youtube {
	color: #ff0000;
}

.contact__text .contact__social a.instagram {
	color: #b309d7;
}

.map {
	height: 515px;
}

.map iframe {
	width: 100%;
}

.contact-form h3 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.contact-form form .input-list {
	margin-right: -20px;
	overflow: hidden;
}

.contact-form form .input-list input {
	font-size: 14px;
	color: #444444;
	width: calc(33.33% - 23px);
	height: 50px;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	margin-bottom: 23px;
	border-radius: 10px;
	margin-right: 20px;
}

.contact-form form .input-list input::-webkit-input-placeholder {
	color: #444444;
}

.contact-form form .input-list input::-moz-placeholder {
	color: #444444;
}

.contact-form form .input-list input:-ms-input-placeholder {
	color: #444444;
}

.contact-form form .input-list input::-ms-input-placeholder {
	color: #444444;
}

.contact-form form .input-list input::placeholder {
	color: #444444;
}

.contact-form form textarea {
	font-size: 14px;
	color: #444444;
	width: 100%;
	height: 130px;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	margin-bottom: 17px;
	border-radius: 10px;
	resize: none;
	padding-top: 12px;
}

.contact-form form textarea::-webkit-input-placeholder {
	color: #444444;
}

.contact-form form textarea::-moz-placeholder {
	color: #444444;
}

.contact-form form textarea:-ms-input-placeholder {
	color: #444444;
}

.contact-form form textarea::-ms-input-placeholder {
	color: #444444;
}

.contact-form form textarea::placeholder {
	color: #444444;
}

/*---------------------
  404
-----------------------*/

.text__404 {
	text-align: center;
}

.text__404 h3 {
	color: #111111;
	font-weight: 700;
	margin-top: 45px;
	margin-bottom: 13px;
}

.text__404 p {
	font-weight: 500;
	margin-bottom: 35px;
}

.text__404 form {
	width: 500px;
	position: relative;
	margin: 0 auto;
}

.text__404 form input {
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	padding-left: 30px;
	height: 50px;
	border: none;
	background: #4c57d6;
	color: #ffffff;
	border-radius: 50px;
}

.text__404 form input::-webkit-input-placeholder {
	color: #ffffff;
}

.text__404 form input::-moz-placeholder {
	color: #ffffff;
}

.text__404 form input:-ms-input-placeholder {
	color: #ffffff;
}

.text__404 form input::-ms-input-placeholder {
	color: #ffffff;
}

.text__404 form input::placeholder {
	color: #ffffff;
}

.text__404 form button {
	font-size: 16px;
	color: #ffffff;
	background: transparent;
	border: none;
	position: absolute;
	right: 30px;
	top: 0;
	height: 50px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1270px;
	}
	
	.header__menu ul li{
		margin-right: 17px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.register__text .register__result ul li {
		margin-right: 30px;
	}
	.about__text .about__achievement .about__achieve__item {
		margin-right: 60px;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item.blog__details__comment__reply {
		margin-left: 0;
	}
	.blog__item .blog__text ul li {
		margin-right: 5px;
	}
	tr td p{
		font-size: 13px !important;
	}
	.item-tabela{
		font-size: 13px !important;
	}
	.header__logo span{
		display: none;
	}
	.header__menu{
		text-align: left;
	}
	.header__menu ul li{
		margin-right: 0px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.register__text .register__result ul li {
		margin-right: 50px;
	}
	.work__item {
		margin-bottom: 30px;
	}
	.plan__text {
		padding-top: 40px;
	}
	.footer__text {
		padding-top: 240px;
	}
	.about__text {
		padding-top: 40px;
	}
	.footer__top-call {
		margin-bottom: 30px;
	}
	.footer__top-auth {
		padding-left: 0;
	}
	.question__accordin {
		margin-bottom: 20px;
	}
	.hero__item {
		height: auto;
		padding-bottom: 100px;
		padding-top: 100px;
	}
	.header__menu ul li {
		margin-right: 10px;
	}
	.header__info-left ul li {
		margin-right: 5px;
	}
	.header__info-right ul li {
		margin-right: 10px;
	}
	.team__item {
		text-align: center;
	}
	.team__item .team__pic {
		float: none;
		margin-bottom: 15px;
		margin-right: 0;
	}
	.blog__hero__text {
		padding-top: 90px;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item.blog__details__comment__reply {
		margin-left: 50px;
	}
	.blog-hero-section {
		height: 640px;
	}
	.contact__text {
		margin-bottom: 30px;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
	.blog-hero-section {
		height: auto;
	}
	.blog-hero-section .blog__hero__pic {
		position: relative;
		width: 100%;
		height: 640px;
	}
	.blog__hero__text {
		padding-bottom: 40px;
	}
	.hero__item .hero__text{
		padding-top: 0px;
	}
	.header__logo span{
		display: none;
	}
	.hero__img{
		margin-top: 50px;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.test-drive .primary-btn{
		margin-bottom: 20px;
	}
	/*.section-title h3:after{
		bottom: 150px;
	}*/
	.hero__img{
		margin-top: 50px;
	}
	.header__logo span{
		display: none;
	}
	.hero__item .hero__text{
		padding-top: 0px;
	}
	.header__info {
		display: none;
	}
	.header__menu {
		display: none;
	}
	.header-section .container {
		position: relative;
	}
	.offcanvas__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas__menu__overlay.active {
		visibility: visible;
	}
	.canvas__open {
		display: block;
		font-size: 20px;
		color: #000000;
		height: 30px;
		width: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid #ffffff;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 30px;
	}
	.offcanvas__menu__wrapper {
		display: block;
		width: 300px;
		position: fixed;
		left: -300px;
		top: 0;
		background: #47C3D0;
		z-index: 999;
		height: 100%;
		overflow-y: auto;
		padding-left: 30px;
		padding-bottom: 30px;
		padding-top: 80px;
		padding-right: 30px;
		opacity: 0;
		-webkit-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}
	.offcanvas__menu__wrapper.show__offcanvas__menu {
		opacity: 1;
		left: 0;
	}
	.offcanvas__menu__wrapper .canvas__close {
		font-size: 30px;
		color: #ffffff;
		position: absolute;
		right: 30px;
		top: 20px;
		cursor: pointer;
	}
	.offcanvas__menu__wrapper .offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__menu__wrapper .offcanvas__menu {
		display: none;
	}
	.offcanvas__menu__wrapper .slicknav_btn {
		display: none;
	}
	.offcanvas__menu__wrapper .slicknav_nav .slicknav_item a {
		border-bottom: none !important;
	}
	.offcanvas__menu__wrapper .slicknav_nav {
		display: block !important;
	}
	.offcanvas__menu__wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.offcanvas__menu__wrapper .slicknav_nav ul {
		margin: 0;
	}
	.offcanvas__menu__wrapper .slicknav_nav a {
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		margin: 0;
	}
	.offcanvas__menu__wrapper .slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #0c8dce;
	}
	.offcanvas__menu__wrapper .slicknav_nav .slicknav_row,
	.offcanvas__menu__wrapper .slicknav_nav a {
		padding: 20px 0;
	}
	.slicknav_nav ul li button {
		margin: 20px 0;
	}
	.offcanvas__menu__wrapper .offcanvas__info ul li {
		font-size: 16px;
		color: #ffffff;
		list-style: none;
		margin-bottom: 10px;
	}
	.offcanvas__menu__wrapper .offcanvas__info ul li span {
		height: 30px;
		width: 30px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		line-height: 30px;
		text-align: center;
		display: inline-block;
		margin-right: 5px;
	}
	.offcanvas__menu__wrapper .offcanvas__auth {
		margin-bottom: 20px;
	}
	.offcanvas__menu__wrapper .offcanvas__auth ul li {
		list-style: none;
		margin-bottom: 10px;
	}
	.offcanvas__menu__wrapper .offcanvas__auth ul li a {
		font-size: 16px;
		color: #ffffff;
		display: block;
	}
	.offcanvas__menu__wrapper .offcanvas__auth ul li a span {
		height: 30px;
		width: 30px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		line-height: 30px;
		text-align: center;
		display: inline-block;
		margin-right: 5px;
	}
	.hero__item {
		height: auto;
		padding-bottom: 100px;
	}
	.register__text .register__result ul li {
		margin-right: 10px;
	}
	.pricing__swipe-btn {
		float: none;
		margin-bottom: 40px;
	}
	.work__item {
		margin-bottom: 30px;
	}
	.plan__text {
		padding-top: 40px;
	}
	.footer__top-auth {
		padding-left: 0;
	}
	.footer__top-call {
		margin-bottom: 30px;
	}
	.about__text {
		padding-top: 40px;
	}
	.about__text .about__achievement .about__achieve__item {
		margin-right: 45px;
	}
	.team__btn {
		text-align: left;
		margin-bottom: 40px;
	}
	.team__item {
		text-align: center;
	}
	.team__item .team__pic {
		float: none;
		margin-bottom: 15px;
		margin-right: 0;
	}
	.blog__hero__text {
		padding-top: 90px;
	}
	.hosting__text .nav-tabs .nav-item {
		width: 33.33%;
	}
	.hosting__feature__table {
		overflow-x: auto;
	}
	.question__accordin {
		margin-bottom: 20px;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
	.blog__details__item .blog__details__item__pic {
		float: none;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item.blog__details__comment__reply {
		margin-left: 0;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text ul {
		position: relative;
		margin-bottom: 20px;
	}
	.footer__text {
		padding-top: 100px;
	}
	.blog-hero-section {
		height: auto;
	}
	.blog-hero-section .blog__hero__pic {
		position: relative;
		width: 100%;
		height: 640px;
	}
	.blog__hero__text {
		padding-bottom: 40px;
	}
	.blog__details__option .blog__details__option__item.blog__details__option__item--next {
		padding-top: 40px;
	}
	.text__404 form {
		width: 100%;
	}
	.contact__text {
		margin-bottom: 30px;
	}
	.contact-form form .input-list {
		margin-right: 0;
		overflow: visible;
	}
	.contact-form form .input-list input {
		width: 100%;
		margin-right: 0;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.numbers span{
		font-size: 85px !important;
	}
	.register__text .register__result ul li {
		margin-bottom: 10px;
	}
	.spad{
	    padding-top: 120px;
	}
	.opcao{
	    text-align: center;
	}
	.benefits{
	    text-align: center;
	}
	.partner{
	    padding: 30px;
	}
	.team__item .team__pic {
		float: none;
		margin-right: 0;
	}
	.team__item .team__text {
		overflow: visible;
		padding-top: 30px;
	}
	.hosting__text .nav-tabs .nav-item {
		width: 50%;
	}
	.blog__details__profile .blog__details__profile__pic {
		float: none;
		margin-right: 0;
	}
	.blog__details__profile .blog__details__profile__text {
		overflow: visible;
		padding-top: 30px;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__pic {
		float: none;
		margin-right: 0;
	}
	.blog__details__comment .blog__details__comment__list .blog__details__comment__item .blog__details__comment__text {
		overflow: visible;
		padding-top: 30px;
	}
	.blog__details__comment {
		padding-left: 30px;
		padding-right: 30px;
	}
	.contact__text {
		margin-bottom: 30px;
	}
	.contact__text ul li p {
		font-size: 13px;
	}
	.register__text .register__form form span:before {
		left: -5px;
	}
	.register__text .register__form form span {
		right: 135px;
	}
	.register__text .register__form form span:after {
		right: -11px;
	}
	.load-more .primary-btn {
		padding: 14px 35px 12px;
	}
}
.header-section .btn{
	font-size: 16px;
}
.header__logo span{
	font-size: 13px;
	margin-left: 20px;
}
.btn-primary{
	background-color: #3661FC;
  border-color: #3661FC;
}
.btn-white{
	background-color: transparent !important;
	border-color: #ffffff !important;
}
.btn-white:hover{
	background-color: #ffffff !important;
	border-color: #ffffff;
	color: #0c8dce;
}
.seta{
	width: 8px;
}
.login, .language{
	width: 30px;
}
#demo{
	background-color: #eff2f7;
	padding-top: 22px;
	padding-bottom: 22px;
	border: 1px solid #dee2e6;
}
#demo a{
	color: #20284e;
}
#demo a:hover{
	color: #0c8dce;
}
#demo img{
	width: 80px;
	height: 80px;
	margin-bottom: 10px;
}
.slicknav_collapsed .slicknav_hidden{
	background-color: #f1f1f1;
}
#demo_mobile{
	background-color: #f1f1f1 !important;
}
.img_menu_mobile{
	width: 50px !important;
	margin-bottom: 5px;
}
.clients{
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 50px;
	height: auto;
}
section h5{
	color: #20284e;
	line-height: 30px;
}
.why-cronapp .container{
	background-image: url('../img/background-blocs-2.png');
	background-size: contain;
  background-repeat: no-repeat;
}
.why-cronapp video{
	margin-top: 50px;
}
.why-cronapp .primary-btn{
	margin-top: 50px;

}
.platform{
	/*background-color: #EFF2F7;*/
	padding-top: 100px;
	padding-bottom: 0px;
}
.tab{
	padding-top: 100px;
	padding-bottom: 100px;
}
.platform .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video{
	height: -webkit-fill-available !important;
}
.benefits{
	padding-top: 100px;
	padding-bottom: 100px;
}
.benefits img{
	width: 150px;
	margin-bottom: 20px;
}
.benefits a{
	color: #3661FC;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}
.benefits a:hover{
	color: #2A2991 !important;
	transition: all 0.9s ease-out;
}
.modulos{
	padding: 40px;
}
.numbers{
	padding-top: 100px;
	padding-bottom: 100px;
}
.numbers h3{
	font-weight: 200;
}
.numbers h4{
	font-weight: 200;
}
.numbers span{
	font-size: 150px;
	background: linear-gradient(90deg, rgba(227,54,252,1) 0%, rgba(29,76,153,1) 100%) !important;
	-webkit-background-clip: text;
    background-clip: text !important;
    color: transparent;
}
.our-clients{
	background-color: #EFF2F7;
	padding-top: 100px;
	padding-bottom: 100px;
}
.what-says-our-clients{
	padding-top: 100px;
	padding-bottom: 100px;
}
.what-says-our-clients .clients{
	height: 400px;
}
.services__item img{
	width: 50px;
	margin-bottom: 20px;
}
.components .services__item img{
	width: auto !important;
}
.clients{
	background-color: #ffffff;
	padding: 40px;
	height: 400px;
}
.clients img{
	width: auto;
	margin-bottom: 20px;
}
.test-drive{
	background-color: #273340;
	padding-top: 50px;
    padding-bottom: 50px;
}
.test-drive img{
	padding-right: 50px;
}
.test-drive h3{
	color: #fff;
	margin-bottom: 20px;
}
.test-drive p{
	color: #fff;
}
.outline-blue-btn{
	background: transparent;
	border: 2px solid #0c8dce;
	margin-left: 6px;
}
.outline-blue-btn-2{
	background: transparent;
	border: 2px solid #0c8dce;
	color: #0c8dce;
	margin-top: 30px;
	padding: 10px 20px 10px;
}
.outline-blue-btn-2:active{
	color: #fff;
	background: #0c8dce;
}
.outline-blue-btn-3{
	background: transparent;
	border: 2px solid #0c8dce;
	color: #0c8dce;
	margin-top: 30px;
	padding: 20px 40px 20px;
}
.outline-blue-btn-3:hover{
	border: 2 solid #0c8dce;
	background: #0c8dce;
	color: #ffffff !important;
	border-color: #0c8dce;
}
.outline-blue-btn-3:active{
	color: #fff;
	background: #0c8dce;
}
.outline-blue-btn-3:focus{
	color: #0c8dce;
	}
.outline-darkblue-btn-2{
	background: transparent;
	border: 2px solid #20284e;
	color: #20284e;
	margin-top: 10px;
	padding: 10px 20px 10px;
}
.outline-darkblue-btn-2:active{
	color: #fff;
	background: #20284e;
}
.btn{
	font-weight: bold !important;
	padding: .675rem .675rem;
}
.btn-primary:hover{
	background-color: #3661FC;
  border-color: #3661FC;
  -webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.btn-primary:active{
	background-color: #2A2991;
  border-color: #2A2991;
}
.primary-btn:hover{
	background-color: #2A2991;
  border-color: #2A2991;
  -webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.recursos .primary-btn:hover{
	background-color: #0c8dce;
  border-color: #0c8dce;
  -webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.recursos .primary-btn:focus{
	color: #20284e;
}
.test-drive .primary-btn:hover{
	background: transparent;
	border: 2px solid #0c8dce;
}
.test-drive .outline-blue-btn:hover{
	background: #0c8dce;
}
.outline-blue-btn-2:hover{
	border: 2 solid #0c8dce;
	background: #0c8dce;
	color: #ffffff;
	border-color: #0c8dce;
}
.footer__text-copyright p{
	font-size: 14px;
  text-align: left;
}
.footer-section{
	background-color: #273340 !important;
}
.footer-section p{
	font-size: 14px;
	color: #ffffff;
}
.mobile-icon{
	width: 30px !important;
}
.header__logo img{
	width: 110px;
}
.footer__logo img{
	width: 150px !important;
}
.clientes img{
	width: 130px;
}
.clientes{
	padding: 0px !important;
	padding-bottom: 100px !important;
}
#clientes{
    scroll-margin-top: 18rem;
}
.tabela-top {
    border-top: 5px solid #0c8dce;
}
.item-tabela {
    background: #EFF2F7;
    margin: 0 10px!important;
    padding-top: 25px;
    height: 70px;
}
.table td, .table th{
	padding: 0px;
	border-top: 0px;
}
.table tbody+tbody{
	border-top: 1px solid #dee2e6;
}
.table thead th{
  border-bottom: 0px !important;
}
tr td p{
  padding-top: 20px !important;
}
thead tr th{
	padding: 10px !important;
}
.item-tabela .primary-btn{
	padding: 10px 10px 10px !important;
	margin-top: -11px;
}
.item-tabela .outline-blue-btn-2{
	margin-top: 0px !important;
	margin-top: -11px !important;
}
.mobile{
	display:none;
}
/*.webinars .section-title h3:after{
		bottom: -70px !important;
}*/
@media only screen and (max-width:768px){
	.mobile{
		display:block;
	}
	.desktop{
		display: none;
	}
	/*.webinars .section-title h3:after {
    bottom: -100px !important;
	}*/
	.what-says-our-clients .clients{
		height: auto;
	}
	.clients{
		height: auto;
	}
}

.services-wrapper {
    background: #fff;
    border-radius: 10px;
    /*box-shadow: 1px 2px 10px #ddcfea!important;*/
    border: 2px solid #E3E3E3;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.services-wrapper h3{
		font-size: 30px;
}
.services-wrapper .primary-btn {
		margin-top: 30px;
    padding: 10px 10px 10px !important;
}
.services-wrapper{
	height: 670px;
}
.our-cases .services-wrapper{
	height: 550px;
}
.single-services{
	padding: 50px 30px 50px 30px;
	height: 530px;
}
/*.cases .section-title h3:after{
	bottom: -120px !important;
}*/
/*.BPM .section-title h3:after{
	bottom: 110px !important;
}*/
.marker{
	position: relative;
	width: 20%;
	height: 12px;
	margin: 0 auto;
	background: #0c8dce;
	border-radius: 20px;
	margin-bottom: 30px;
}
.gray-marker{
	position: relative;
	width: 80%;
	height: 8px;
	margin: 0 auto;
	background: #EFF2F7;
	border-radius: 20px;
	margin-bottom: 30px;
}
.cases .section-title{
  margin-bottom: 0px;
}
.cases .section-title p{
  margin-bottom: 0px;
}
.cases .embed-responsive{
	width: 70%;
	margin: 0 auto;
	border: 2px solid #E3E3E3;
  border-radius: 15px;
}
.cases .marker{
	margin-bottom: 0px;
	margin-top: 30px;
}
.webinars .marker{
	margin-bottom: 0px;
	margin-top: 30px;
}
.webinars .section-title{
	margin-bottom: 0px;
}
.plans .marker{
	margin-top: 30px;
	margin-bottom: 100px;
}
.services-cap h3{
	line-height: 22px;
	margin-bottom: 20px;
}
.chatbot .services__item{
	height: 600px;
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video{
	height: auto;
}
.recursos{
	margin-bottom: 10px;
}
.recursos .outline-blue-btn-2{
	width: 280px;
}
.recursos .services__item{
	height: 290px;
	background-color: #EFF2F7;
}
.aprenda-academy .services__item{
	height: 450px;
}
.depoimentos .clients{
	height: 500px;
}
.depoimentos{
	padding-top: 50px !important;
}
@media only screen and (max-width: 1180px){
	.recursos .services__item{
		height: auto;
	}
	.depoimentos .clients{
		height: auto;
	}
	.aprenda-academy .services__item{
		height: auto;
	}
}
.imagem{
	width: 100%;
  height: auto;
  background: transparent;
  border-radius: 10px 10px 0px 0px;
}
.resources{
	padding-bottom: 0px !important;
}
.nav-link{
	display: unset;
}
.nav-tabs{
	border-bottom: 0px !important;
	position: relative;
  width: 890px;
  margin: 0 auto;
}
.nav-tabs-mobile{
	display: none;
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
	color: #3661FC !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
	color: #3661FC !important;
}
.nav-tabs .nav-link{
	color: #273340;
}
.nav-tabs-mobile .nav-item.show .nav-link, .nav-tabs .nav-link.active{
	color: #3661FC !important;
	border: none;
}
.nav-tabs-mobile .nav-link{
	color: #273340;
}
.bloco{
	padding-top: 100px;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
	color: #3661FC;
	border: none;
}
.nav-tabs-mobile .nav-link:focus, .nav-tabs .nav-link:hover{
	color: #3661FC;
	border: none;
}
.nav-tabs .nav-link:focus-visible{
	border: none;
}

.nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -10px;
  left: 0;
  background-color: #3661FC;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-tabs .nav-link:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-tabs .nav-link:active:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-tabs img{
	width: 10%;
}
.fabrica .services__item{
	margin-bottom: 10px;
	padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.itens-factory .services__item{
	height: 350px;
}
.circle{
	width: 35px;
	height: 35px;
	background: #0c8dce;
	border-radius: 20px;
	color: #fff;
	font-size: 25px;
	font-weight: bold;
	font-family: 'new-rubrik', sans-serif;
}
.differentials .services__item{
	background-color: #EFF2F7;
	border: 0px;
	height: 300px;
}
.btn-menu{
	color: #fff !important;
	padding: .675rem .675rem !important;
	border-radius: 6px;
}
.modal-dialog{
	max-width: 630px !important;
	margin-top: 10%;
}
.modal{
	background: rgba(0, 0, 0, 0.7);
}
.imagem img{
	border-radius: 10px;
}
.imagem video{
	border-radius: 10px;
}
.panel-heading h5 a{
	font-size: 26px;
  color: #20284e;
  font-weight: 100;
  margin-bottom: 8px;
}
.panel-default{
	margin-bottom: 30px;
	border-bottom: 1px solid #20284E;
}
.panel-heading{
	padding-bottom: 10px;
}
.accordion-button{
  background-color: #ffffff !important;
  font-size: 1.5rem !important;
  color: #20284E !important;
}
.imagem-buttom{
	width: 50px;
  margin-right: 30px;
}
.accordion-item{
	background-color: #ffffff !important;
}
.accordion-button:not(.collapsed){
	color: #20284E !important;
  background-color: #ffffff !important;
}
.accordion-body .services__item{
	border-radius: 10px 10px 10px 10px;
	border: 0;
	    margin-top: 25px;
}
@media only screen and (max-width: 758px){
	.nav-tabs{
		display: none;
	}
	.nav-tabs-mobile{
		display: block;
		width: auto;
	}
	.numbers h2{
		background-image: none !important;
	}
	.test-drive img{
		width: 300px;
    margin-bottom: 50px;
	}
	.platform{
		padding-bottom: 100px;
	}
}
@media only screen and (max-width: 1024px){
	.differentials .services__item{
		height: 400px !important;
	}
}
@media only screen and (max-width: 500px){
	.differentials .services__item{
		height: auto !important;
	}
	.hero__item{
		padding-top: 0px !important;
	}
	.hero__item .hero__text{
		padding-top: 0px !important;
	}
	.header__logo{
		padding-top: 0px !important;
	}
	.header-section{
		border-bottom: 0px !important;
	}
	.header__logo img{
		margin-top: 30px !important;
	}
	.pricing__item{
		height: auto !important;
	}
	.services-wrapper{
		height: auto !important;
	}
	
}
.aprenda img{
	width: auto !important;
	float: right;
	margin-top: -50px;
}
.aprenda-2 img{
	width: auto !important;
	margin-top: -50px;
}
.academy-list{
	margin-top: 100px;
}
.academy-list p a:hover{
	color: #0c8dce;
}
.courses img{
	width: auto !important;
}
.box-courses .services__item{
	border-radius: 0px 0px 10px 10px;
}
.box-courses img{
	border-radius: 10px 10px 0px 0px;
}
.embed-responsive-16by9::before{
	padding-top: 61.25% !important;
}
.clientes-parceiros{
	position: relative;
  width: 210px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.btn-depoimentos-1{
	background-color: #0c8dce !important;
  border: 2px solid #0c8dce !important;
}
.btn-depoimentos-2{
	background-color: transparent; !important;
  border: 2px solid #0c8dce !important;
  color: #0c8dce !important;
}
@media only screen and (max-width: 720px){
	.hero__item{
		padding-top: 0px;
	}
}
.header__info-left .btn-outline-light{
	 	padding: 2px !important;
}
.learn{
	padding-top: 100px;
  padding-bottom: 100px;
}
.services-cap h4{
	font-weight: 700;
  margin-bottom: 20px;
}
.depoimentos .clients{
	background: #EFF2F7 !important;
}
.depoimentos .clients img{
	width: 200px !important;
}
.components{
	background: #ffffff;
	padding-top: 100px;
  padding-bottom: 100px;
}
.components .services__item{
	height: 430px;
}
.wg-drop.country-selector .wgcurrent{
	border: 0 !important;
}
.wg-drop.country-selector .wgcurrent:after{
	top: 0px !important;
}
.wg-drop.country-selector a{
	padding-top: 6px !important;
}
.translate_mob .wg-drop.country-selector{
	background-color: transparent !important;
}
.translate_mob .wg-drop.country-selector a{
	padding: 0 15px 0 0px !important;
}
.translate_mob .wg-drop.country-selector .wgcurrent a{
	padding-right: 40px !important;
}
.translate_mob #weglot-language-en{
	color: #000000 !important;
}
.slicknav_nav .slicknav_txtnode{
	margin-left: 0px !important;
	margin-top: 15px !important;
}
.top-title{
	background: #ECF9FA;
	padding-bottom: 50px;
}
.best-courses{
	background-color: #EFF2F7;
  padding-top: 100px;
  padding-bottom: 100px;
}
.best-courses .accordion-button{
	background-color: #EFF2F7 !important;
}
.best-courses .accordion-body{
	background-color: #EFF2F7 !important;
}
.background-blue{
	background-color: #F5F7FD;
}
.opcao{
	background-color: #ffffff;
	padding: 20px;
	margin-bottom: 30px;
}
.opcao p{
	margin: 0px;
}
.opcao .fa-check:before{
	font-size: 50px;
  color: #47C3D0;
}
.opcao .fa-comments:before{
    font-size: 50px;
    color: #47C3D0;
}
.opcao:hover .fa-comments:before{
	color: #ffffff;
}
.opcao .fa-award:before{
    font-size: 50px;
    color: #47C3D0;
}
.opcao:hover .fa-award:before{
	color: #ffffff;
}
.opcao .fa-desktop:before{
    font-size: 50px;
    color: #47C3D0;
}
.opcao:hover .fa-desktop:before{
	color: #ffffff;
}
.opcao .fa-mobile-screen:before{
    font-size: 50px;
    color: #47C3D0;
}
.opcao:hover .fa-mobile-screen:before{
	color: #ffffff;
}
.opcao .fa-credit-card:before{
    font-size: 50px;
    color: #47C3D0;
}
.opcao:hover .fa-credit-card:before{
	color: #ffffff;
}
.link-opcao{
	text-decoration: none;
}
.opcao:hover{
	background-color: #47C3D0;
	-webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.opcao:hover h4{
	color: #ffffff;
}
.opcao:hover p{
	color: #ffffff;
}

.opcao:hover .fa-message:before{
    color: #ffffff;
}
.fa-check:before{
	color: #47C3D0;
	font-size: 30px;
}
.partner{
	padding-top: 100px;
	padding-bottom: 100px;
}
.partner .primary-btn-2{
	margin-top: 50px;
}
.chatbot{
    padding-top: 100px;
	padding-bottom: 100px;
}
.blog{
	padding-top: 100px;
	padding-bottom: 100px;
}
.leia-mais{
	color: #919191;
	text-decoration: none;
	float: right;
}
.leia-mais:hover{
	color: #47C3D0 !important;
	-webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.leia-mais:active{
	color: #47C3D0 !important;
	-webkit-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}

.traco-numeros{
    position: relative;
    width: 200px;
    height: 10px;
    background: #ECF9FA;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.partner{
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
.primary-btn-3:active{
    background: #47C3D0 !important;
    color: #ffffff !important;
    border: 2px solid #47C3D0 !important;
}
.btn-check:active+.btn, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:active{
    background: #47C3D0 !important;
        color: #ffffff !important;
        border: 2px solid #47C3D0 !important;
}
.parceiros{
    margin-top: 50px;
}
.parceiros img{
    width: 130px;
}
.cta-grid{
min-height: 640px;
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}
.w-layout-grid{
display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}
.cta-image{
    background-image: url(https://www-stage.lyceum.com.br/img/lyceum-girl.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-imageTwo{
    background-image: url(https://www-stage.lyceum.com.br/img/partner.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-image-chatbot{
    background-image: url(https://www-stage.lyceum.com.br/img/chatbot.jpg);
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
}
.cta-image-diploma{
    background-image: url(https://www-stage.lyceum.com.br/img/diploma-digital_.png);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-image-acervo{
    background-image: url(https://www-stage.lyceum.com.br/img/acervo-digital.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-image-app-aluno{
    background-image: url(https://www-stage.lyceum.com.br/img/app-do-aluno.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.cta-image-financeiro{
    background-image: url(https://www-stage.lyceum.com.br/img/pagamento.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-image-secretaria{
    background-image: url(https://www-stage.lyceum.com.br/img/secretaria.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-image-integracoes{
    background-image: url(https://www-stage.lyceum.com.br/img/integracoes.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-content{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #47C3D0;
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
}
.cta-content p{
    color:#ffffff;
}
.cta-content h3{
    color:#ffffff;
    font-weight: 700;
}
.cta-content-white{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #ffffff;
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
}
.cta-content-white p{
    color:#919191;
}
.cta-content-white h3{
    color:#47C3D0;
    font-weight: 700;
}
@media screen and (max-width: 991px){
.footer__text{
    padding-top: 140px;
}
.cta-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
}
.footer__social{
    display: inline-block;
}
.blog img{
    width: 100%;
}
.clients{
    text-align: center;
    height: auto;
}
.what-says-our-clients .clients {
    height: auto;
}
.imagem-banner{
    text-align: center !important;
}
.opcao h4{
    margin-top: 20px;
}
.opcao{
    text-align: center;
}
.cta-image {
    min-height: 420px;
}
.cta-imageTwo, .cta-image-chatbot, .cta-image-diploma, .cta-image-acervo, .cta-image-app-aluno, .cta-image-financeiro, .cta-image-secretaria, .cta-image-integracoes {
    min-height: 420px;
}
.cta-content {
    min-height: 420px;
    padding-right: 25px;
    padding-left: 25px;
}
.cta-content-white{
    min-height: 420px;
    padding-right: 25px;
    padding-left: 25px;
}
}
@media screen and (max-width: 479px){
.cta-content {
    padding: 12px;
}
.cta-content-white{
    padding: 12px;
}
.banner h2{
    font-size: 30px;
    color: #ffffff;
    font-weight: 100;
}
.opcao h4{
    margin-top: 20px;
}
.section-title h3{
    font-size: 38px;
}
}
.modal-body .section-title{
    margin-bottom: 10px;
}
.modal-header{
    border-bottom: 0px !important;
}
.modal-dialog{
    margin-top: 5% !important;
}
#rd-form-l6pfsljk .bricks-form__field{
    margin-bottom: 20px !important;
}
#rd-form-l6pfsljk .bricks-form__input:not(textarea){
    height: 50px !important;
}
.solucoes h3{
    color: #47C3D0;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}
.cta-content .fa-check:before{
    color: #ffffff;
}
ul li{
    color: #919191;
    margin: 0 0 15px 0;
}
#chatbot, #diploma, #acervo, #app-aluno, #pagamento, #secretaria, #integracoes{
  scroll-margin-top: 8rem;
}
.numbers h2{
	  color: #3661FC;
    font-weight: 700;
    background-image: url(../img/background-numbers-2.png);
    background-repeat: no-repeat;
    background-size: 66%;
    background-position: center;
    padding-top: 40px;
}
.numbers p{
	margin-top: 20px;
}
.display-4{
    font-weight: 400;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #fff !important;
}

.header__menu ul li a:hover{
    color: #3661FC !important;
}
.header__menu ul li .btn-menu:hover{
    color: #ffffff !important;
}
.tab-content{
	background: #ffffff;
}
.tab-image-list img{
	width: 50px;
} 
.tab-image-list .row{
	margin-bottom: 10px;
}
.carousel-indicators [data-bs-target]{
	    background-color: #3661FC !important;   
}
.carousel-indicators{
	 position: relative !important;
	 margin-top: 30px;
}
.clients-carrossel{
	border: 3px solid #CDD7FE !important;
	border-radius: 15px;
	padding: 30px;
}
.clients-carrossel img{
	width: 100px;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CDD7FE'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");

}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CDD7FE'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  
}
.carousel-control-next, .carousel-control-prev{
	opacity: 1 !important;
	    width: 2%;
	    margin: -60px;
}
.letra-azul{
	color: #3661FC;
}
.separador{
	width: 100px;
	height: 10px;
	background: #3661FC;
	border-radius: 20px;
}
.conteudo h3{
	margin-bottom: 10px;
	font-weight: 200;
}
.conteudo h4{
	font-weight: 200;
	    font-size: 35px;
}
.conteudo p{
	margin-top: 20px;
	font-weight: 400;
}
.bg-escuro{
	background: #273340;
}
.bg-escuro h3{
	color: #ffffff;
	font-weight: 400;
	
}
.bg-escuro .hero__text h3{
	margin-bottom: 100px;
}
.bg-escuro p{
	color: #ffffff;
	font-weight: 200;
}
@media only screen and (max-width: 767px){
.canvas__open {
    color: #000000;
    border: 0px !important;
	}
.offcanvas__menu__wrapper {
		background: #273340;
	}
.conteudo .imagem-banner{
	  margin-top: 50px;
	  margin-bottom: 50px;
	}
}
@media only screen and (max-width: 500px){
.header__logo {
    padding-top: 0px !important;
    margin-bottom: 15px;
	}	
}
.video-banner video{
    width: 100%;
    border-radius: 20px;
}
.card{
	background: transparent;
	border: 2px solid #CDD7FE;
	border-radius: 17px;
	height: 300px;
}
.card-text{
	padding: 20px;
}
.card-text p{
	font-weight: 200;
}
.card-text h4{
	color: #ffffff;
	font-weight: 400;
	font-size: 25px;
}
.line-right{
	border-right: 1px solid #CDD7FE;;
}
.conteudo ul{
	margin-top: 50px;
}
.conteudo ul li{
	list-style: none;
    display: inline-block;
    margin-right: 25px;
    position: relative;
}
.conteudo ul li a{
	color: #273340;
	text-decoration: none;
}
.conteudo ul li a:hover{
	color: #3661FC !important;
}
.conteudo ul li a:focus{
	color: #273340 !important;
}
.conteudo ul li a:active{
	color: #3661FC !important;
}

.nav-pills li{
	color: #273340;
}
.nav-pills li button:hover{
	color: #3661FC;
}
.nav-pills li button:focus{
	color: #3661FC;
}
.nav-pills li button:active{
	color: #3661FC;
}

.nav-pills li button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -10px;
  left: 0;
  background-color: #3661FC;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-pills li button:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-pills li button:active:before {
  visibility: visible !important;
  -webkit-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
}
.nav-pills .nav-link.active:before{
	visibility: visible !important;
  -webkit-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
	color: #3661FC;
	background: transparent;
}
.tab-pane .hero__text{
	margin-top: 50px;
}
.tab-pane .hero__text p a{
	    font-weight: 300;
	    text-decoration: none;
}
.tab-pane .hero__text p a:hover{
    color: #0d6efd !important;
    text-decoration: underline !important;
}
.fa-arrow-right:before{
	color: #3661FC;
}

.politica{
	font-size: 12px !important;
	color: #5D6F7F !important;
}
#nextSlide .fa-arrow-right:before{
    color: #ffffff !important;
    font-size: 25px !important;
}
#prevSlide .fa-arrow-left:before{
    color: #ffffff !important;
    font-size: 25px !important;
}
.custom-nav {
        text-align: center;
        margin-top: 50px;
    }
    .custom-nav button {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 15px;
        margin: 5px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
    }
    .custom-nav button:hover {
        background-color: #0056b3;
    }
    .custom-nav a{
        cursor: pointer;
    }

.hero__text p a:focus{
        color: #3661FC !important;
    }

.footer__text-widget p{
    line-height: 20px;
}

.banner > #myVideo{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        overflow: hidden;
}
#myVideo video{
    width: 100% !important;
}