/* =================================== */
/*  Basic Style 
/* =================================== */
@font-face {
  font-family: "TomaSans-Regular", sans-serif;
  src: url("../fonts/TomaSans-Regular.otf");
}

body {
  font-family: "TomaSans-Regular";
  color: #525252;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
  position: relative;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
  color: #777777;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  text-decoration: none;
  outline: 0;
}

/************************/
/* Typography */
/************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TomaSans-Regula";
  color: #222222;
  line-height: 1.5em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0;
  margin-top: 0;
  font-family: "TomaSans-Regula";
  font-weight: 600;
  color: #222222;
}

p {
  font-size: 1rem;
  line-height: 1.8rem;
  letter-spacing: 0.4px;
}

h1,
.h1 {
  font-size: 2.25rem;
  font-weight: 400;
}

h2,
.h2 {
  font-size: 1.875rem;
  font-weight: 400;
}

h3,
.h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

h4,
.h4 {
  font-size: 1.125rem;
  font-weight: 400;
}

h5,
.h5 {
  font-size: 1rem;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 0.875rem;
  color: #222222;
  font-weight: 400;
}

.font-md {
  font-size: 1.5rem;
}

td,
th {
  border-radius: 0rem;
}

.danger {
  color: #5B5E5F;
  /* background: -webkit-linear-gradient(-45deg, #fa3973, #a03cb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

.rotate-hover img:hover {
  transform: rotate(30deg);
  -webkit-transition: 0.6s;
  /* Safari */
  transition: 0.6s;
}

.white {
  color: #E7E9E7;
}

.black {
  color: #000;
}

.gray-bg {
  background: #E7E9E7;
}

.muted {
  color: #a9a9a9;
}

.underline {
  text-decoration: underline;
}

/* Padding */

.py-10 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.p-10 {
  padding: 7rem !important;
}

.pt-10 {
  padding-top: 7rem !important;
}

@media (max-width: 768px) {
  .pl-sm {
    padding-left: 2rem;
  }

  .p-sm {
    padding: 1rem;
  }
}

@-moz-document url-prefix() {
  .pt-10 {
    padding-top: 8.125rem !important;
  }
}

.pb-10 {
  padding-bottom: 10% !important;
}

.pb-8 {
  padding-bottom: 8% !important;
}

.pb-0 {
  padding-bottom: 0% !important;
}

.pt-max {
  padding-top: 20%;
}


@media (max-width: 576px) {
  .pt-max {
    padding-top: 70%;
  }
}

/* margin */

.mt-7 {
  margin-top: 7%;
}

.ml-7 {
  margin-left: 7%;
}



/* Width */

.w-80 {
  width: 80px;
}

.w-150 {
  width: 150px;
}

.w-30 {
  width: 30%;
}



/************************/
/* Banner CSS */
/************************/


#canvas-basic {
  position: absolute;
  display: block;
  height: 100vh;
  width: 100%;
}


.banner-area {
  height: 100vh;
  color: #E7E9E7;
}

.big-logo {
  height: 100px !important;
}

@media (max-width: 768px) {
  .banner-img {
    width: 60% !important;
    height: 60% !important;
  }

  .nav>li {
    display: inline-block !important;
  }

  .inicialName {
    font-size: 3.5em !important;
  }

  .big-logo {
    height: 70px !important;
  }
}




/************************/
/* Button CSS */
/************************/

.primary-btn {
  line-height: 2.5rem;
  padding: 0 2.5rem;
  border-radius: 1.25rem;
  background: transparent;
  border: 1px solid #a0a0a0;
  color: #222222;
  display: inline-block;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.primary-btn:focus {
  outline: none;
}

.primary-btn.banner-btn {
  color: #E7E9E7;
  margin-top: 1.875rem;
}

.primary-btn span {
  margin-left: 15px;
}

.primary-btn:hover {
  background: -webkit-linear-gradient(180deg, #095894a8, #00213a);
  color: #E7E9E7 !important;
  border: 1px solid #095894a8;
}

.btn-outline-danger {
  border-color: #f83a72 !important;
  border-radius: 0px !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  font-size: 1rem;
}

.btn-outline-danger:hover {
  background: -webkit-linear-gradient(-45deg, #D1D1D1, #E7E9E7) !important;
  box-shadow: 0px 10px 20px 0px rgba(60, 64, 143, 0.2);
  color: #E7E9E7 !important;
}

.btn-pricing {
  width: 60% !important;
  align-self: center;
}

.pricing-header {
  background-color: #eae4e4;
}

.pricing-content {
  text-align: center;
}

.purchase {
  position: relative;
}

.purchase-bg {
  background-image: url("../img/gallary-3.jpg");
  z-index: -100;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-overlay {
  position: relative;
}

.bg-overlay:before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/************************/
/* parallax */
/************************/

.parallax {
  /* The image used */
  background-image: url("../img/img-parallax.png");

  /* Set a specific height */
  min-height: 450px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-black {
  background-color: #00253a;
}

.nav>li {
  float: left;
}

.height-250 {
  height: 250px;
}

/* Text center in medium screen */

@media (max-width: 990px) {
  .t-md-center {
    text-align: center !important;
  }
}

/* Navbar */

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: #E7E9E7;
}

.navbar-brand {
  text-shadow: 2px 2px 3px #5B5E5F;
  font-size: 1.625rem;
  color: #E7E9E7;
  opacity: 1;
}

.brand-logo {
  width: 1.625rem;
  margin-top: -5px;
  z-index: 1;
}

.fa-linkedin-square:hover {
  color: #337ab7;
}

.fa-facebook-square:hover {
  color: #3b5998;
}

.fa-twitter-square:hover {
  color: #0084b4;
}

.navbar .active {
  border-bottom: 2px solid #5B5E5F !important;
}

.navbar {
  max-width: 100%;
  overflow-x: hidden;
}

.navbar-dark {
  background-color: transparent;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand {

  color: #E7E9E7;

}


.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-light {
  background-color: #ededed;
  box-shadow: 2px 2px 15px 2px #0000001f;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-brand {
  color: #000;
}



@media (max-width: 768px) {
  html {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .navbar-brand {
    padding-left: 15px !important;
  }

  h1 {
    font-size: 1.5rem;
  }
}

@media (width: 768px) {
  .pt-max {
    padding-top: 50% !important;
  }
}

@media (width: 1024px) {
  .pt-max {
    padding-top: 50% !important;
  }
}

@media (max-width: 766px) {
  .navbar-collapse {
    color: #000;
    background-color: #E7E9E7;
    padding: 15px;
  }

  .navbar-collapse a {
    color: #000 !important;
  }
}

/* Card Columns */

@media (min-width: 576px) {
  .card-columns {
    height: 1200px !important;
  }
}

.card-columns {
  max-width: 1080px !important;
}

.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .05);
}

.headline {
  position: relative;

}

h3.headline:after {
  content: ' ';
  /* position: absolute; */
  display: block;
  width: 60px;
  margin: 0.5rem auto;
  border: 1px solid #5B5E5F;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);

}

/* Carousel CSS */

.carousel-indicators .active {
  background-color: #000 !important;
}

.carousel-indicators li {
  background-color: rgba(171, 171, 171, 0.5) !important;
}

.carousel-prev-icon {
  background-image: url("../img/arrow-left.png");
  width: 1.875rem;
  height: 1.875rem;
  background-size: 100% 100%
}

.carousel-next-icon {
  background-image: url("../img/arrow-right.png");
  width: 1.875rem;
  height: 1.875rem;
  background-size: 100% 100%
}

.inicialName {
  font-size: 4.5em;
}

.carousel-control-p {
  left: -20% !important;
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #E7E9E7;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-n {
  right: -20% !important;
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #E7E9E7;
  text-align: center;
  opacity: 0.5;
}

/* Arrow Bounce CSS */

.arrow {
  text-align: center;
  margin: 8% 0;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Everything */

.everything {
  background-image: url("../img/gallary-3.jpg");
  max-width: 100%;
  max-height: 100%;
}

/* scrollUp */
.scrollUp {
  background-color: #000;
  padding: 0.8rem;
  font-size: 2rem;
}