/* Colors */

:root {
  --sa-text:#565669;
  --sa-blue:#2d5bf8;
  --sa-blue-opaque:#96adfb;
  --sa-dark-blue:#1b1b25;
  --sa-white:#ffffff;
  --sa-no-bg:#f1f2f7;
  --sa-light-gradient:linear-gradient(45deg, rgba(229,224,254,1) 0%, rgba(224,231,254,1) 100%);
  --sa-blue-gradient:linear-gradient(45deg, rgba(78,45,248,1) 0%, rgba(45,91,248,1) 100%);
  --sa-whatsapp-green:#28bf7c;
  --sa-whatsapp-green-hover:#22d787;
  --sa-whatsapp-teal:#075e54;
}



/* Body */

html, body {
  height:100%;
}

#site {
  background:#fcfcfc;
  font-size:14px;
  color:var(--sa-text);
}

#site.no-scroll {
  overflow-y:hidden !important;
}

.grecaptcha-badge {
  display:none !important;
}



/* General */

.disabled {
  pointer-events:none;
}

@media(max-width:575px){
  .center-mobile {
    text-align:center;
  }
}



/* Fonts */

@font-face {
  font-family:'GothamRoundedBook';
  src:url('../fonts/gotham-book.eot');
  src:url('../fonts/gotham-book.eot?#iefix') format('embedded-opentype'),
      url('../fonts/gotham-book.woff') format('woff'),
      url('../fonts/gotham-book.ttf') format('truetype');
  font-weight:normal !important;
  font-style:normal !important;
}

.font {
  font-family:'GothamRoundedBook', sans-serif;
  font-weight:normal !important;
  font-style:normal !important;
}

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



/* General styles */

.gradient-text {
  color:var(--sa-blue);
  background:var(--sa-blue-gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  -moz-background-clip:text;
  -moz-text-fill-color:transparent;
  background-clip:text;
  text-fill-color:transparent;
}



/* Animations */

.motion {
  -webkit-transition-property:all;
  -webkit-transition-duration:0.3s;
  -webkit-transition-timing-function:ease-out-in;
  -webkit-transition-delay:0s;
  -moz-transition-property:all;
  -moz-transition-duration:0.3s;
  -moz-transition-timing-function:ease-out-in;
  -moz-transition-delay:0s;
  transition-property:all;
  transition-duration:0.3s;
  transition-timing-function:ease-out-in;
  transition-delay:0s;
}



/* Links */

a {
  text-decoration:none !important;
  color:var(--sa-blue);
}

a:hover {
  text-decoration:underline;
}



/* Buttons */

.btn {
  border:0px;
  padding:12px 34px;
  border-radius:80px;
}

@media(max-width:767px){
  .btn {
    font-size:13px;
    padding:10px 24px;
  }
}

.btn-primary {
  background:var(--sa-blue-gradient);
  box-shadow:0px 5px 10px rgba(86, 124, 255, 0.5);
}

.btn-primary:hover {
  background:var(--sa-blue-gradient);
  box-shadow:0px 5px 10px rgba(86, 124, 255, 0.9);
}



/* Containers */

@media(max-width:1199px){
  .container {
    width:auto !important;
    max-width:none !important;
    margin-left:15px !important;
    margin-right:15px !important;
  }
}



/* WhatsApp fixed button */

#whatsapp {
  overflow:hidden;
  z-index:99;
  position:fixed;
  width:62px; height:62px;
  right:15px; bottom:15px;
  text-align:center;
  color:var(--sa-white);
  border-radius:62px;
  background:var(--sa-whatsapp-green);
  box-shadow:0px 7px 10px rgba(0,0,0,0.2);
}

#whatsapp .fa {
  margin-top:14px;
  font-size:32px;
}

@media(max-width:767px){
  #whatsapp {
    width:48px; height:48px;
  }
  #whatsapp .fa {
    margin-top:11px;
    font-size:26px;
  }
}

#whatsapp:hover {
  background:var(--sa-whatsapp-green-hover);
}

#whatsapp:hover .fa {
  color:var(--sa-whatsapp-teal);
}



/* Menu */

#header {
  z-index:999;
  position:fixed;
  width:100%;
  left:0px; top:30px;
}

@media(max-width:991px){
  #header {
    top:15px;
  }
}

#header .container {
  position:relative;
  padding:0px;
  height:110px;
  background:var(--sa-blue);
  border-radius:15px;
  box-shadow:0px 10px 25px rgba(0,0,0,0.15);
}

#header.dark .container {
  background:var(--sa-dark-blue);
}

@media(max-width:991px){
  #header .container {
    height:80px;
  }
}

@media(max-width:767px){
  #header .container {
    height:60px;
  }
}

#header .div {
  position:absolute;
  top:0px;
}



/* Header: logo */

#header .div-blue {
  left:0px;
  width:266px;
  text-align:center;
}

@media(max-width:1199px){
  #header .div-blue {
    width:230px;
  }
}

@media(max-width:991px){
  #header .div-blue {
    width:180px;
  }
}

@media(max-width:767px){
  #header .div-blue {
    width:160px;
  }
}

#header .div-blue .logo {
  margin-top:30px;
  height:50px;
}

@media(max-width:991px){
  #header .div-blue .logo {
    margin-top:20px;
    height:40px;
  }
}

@media(max-width:767px){
  #header .div-blue .logo {
    margin-top:12px;
    height:36px;
  }
}



/* Header: menu */

#header .div-white {
  right:0px;
  width:calc(100% - 266px);
  height:110px;
  border-radius:13px;
  background:#fff;
}

@media(max-width:1199px){
  #header .div-white {
    width:calc(100% - 230px);
  }
}

@media(max-width:991px){
  #header .div-white {
    width:calc(100% - 180px);
    height:80px;
  }
}

@media(max-width:767px){
  #header .div-white {
    top:5px; right:5px;
    width:50px;
    height:50px;
    border-radius:11px;
  }
}

@media(min-width:768px){
  #header nav {
    display:block !important;
  }
}

#header ul {
  margin:36px;
  margin-bottom:0px;
  padding:0px;
}

@media(max-width:1199px){
  #header ul {
    margin:36px 26px;
    margin-bottom:0px;
  }
}

@media(max-width:991px){
  #header ul {
    margin:23px 15px;
    margin-bottom:0px;
  }
}

@media(max-width:767px){
  #header ul {
    display:none;
  }
}

#header ul li {
  list-style:none;
  float:left;
  margin:0px;
}

#header ul li a {
  display:block;
  padding:8px 20px;
  font-size:14px;
  text-transform:uppercase;
  color:var(--sa-text);
  border:1px solid var(--sa-white);
  border-radius:60px;
}

@media(max-width:991px){
  #header ul li a {
    padding:6px 10px;
    font-size:13px;
  }
}

#header ul li a:hover {
  color:var(--sa-blue);
}

#header ul li a.active {
  color:var(--sa-blue);
  border-color:var(--sa-blue-opaque);
}

#header ul li.app {
  float:right;
}

#header ul li.app a {
  padding-left:0px;
  padding-right:0px;
  text-transform:none;
}

#header ul li.app a .fa {
  color:var(--sa-blue);
}

@media(max-width:780px) {
  #header ul li.app a .fa {
    display:none;
  }
}

@media(max-width:767px) {
  #header ul li.app a .fa {
    display:initial;
  }
}



/* Header: mobile menu */

@media(max-width:767px){
  #header.mobile nav {
    z-index:-1;
    position:fixed;
    display:none;
    left:0px; top:0px;
    width:100%; height:100%;
    background:rgba(0,0,0,0.65);
  }
  #header.mobile nav ul {
    display:block;
    width:calc(100% - 30px);
    margin:0px;
    margin-left:15px; margin-top:90px;
    padding:30px;
    border-radius:14px;
    background:var(--sa-white);
    box-shadow:0px 10px 25px rgba(0,0,0,0.15);
  }
  #header.mobile nav ul li {
    float:none;
    margin-bottom:15px;
  }
  #header.mobile nav ul li a {
    display:block;
    border:1px solid var(--sa-blue-opaque);
    text-align:center;
  }
  #header.mobile nav ul li.app {
    margin-bottom:0px;
  }
}



/* Header: hamburger button */

#header .hamburger-button {
  display:none;
  position:relative;
  cursor:pointer;
  margin-left:10px; margin-top:8px;
  width:30px; height:34px;
}

@media(max-width:767px){
  #header .hamburger-button {
    display:block;
  }
}

#header .hamburger-button .bar {
  position:absolute;
  width:100%; height:3px;
  border-radius:3px;
  background:var(--sa-blue);
}

#header .hamburger-button .bar-1 { top:6px; }
#header .hamburger-button .bar-2 { top:16px; }
#header .hamburger-button .bar-3 { top:26px; }

#header.mobile .hamburger-button .bar-1 { top:16px; transform:rotate(45deg); }
#header.mobile .hamburger-button .bar-2 { opacity:0; }
#header.mobile .hamburger-button .bar-3 { top:16px; transform:rotate(-45deg); }



/* Slider */

#slider {
  position:relative;
  width:100%; height:100%;
  height:100%;
  background:var(--sa-no-bg);
}

@media(min-width:992px){
  #slider {
    min-height:500px;
  }
}

#slider .owl .item {
  display:none;
}

#slider .owl-item:first-of-type .item {
  display:block;
}

#slider .slide .div {
  position:absolute;
  width:50%; height:100%;
}

@media(max-width:991px){
  #slider {
    height:656px;
  }
}

@media(max-width:767px){
  #slider {
    height:400px;
  }
}



/* Slider: scroll indicator */

#slider .scroll {
  z-index:50;
  position:absolute;
  left:50%; bottom:30px;
  margin-left:-24px;
  padding:0px;
  width:48px; height:48px;
  text-align:center;
  background:#fff;
}

#slider .scroll .fa {
  margin-top:10px;
  font-size:30px;
  color:var(--sa-blue);
}

@media(max-width:767px){
  #slider .scroll {
    bottom:15px;
    width:36px; height:36px;
  }
  #slider .scroll .fa {
    margin-top:9px;
    font-size:20px;
  }
}



/* Slider: text */

#slider .slide .div-text {
  left:0px;
  background:var(--sa-light-gradient);
}

#slider .slide .div-text .inner {
  position:relative;
  margin-top:140px;
  height:calc(100% - 140px);
  padding:0px 80px;
}

@media(max-width:991px){
  #slider .slide .div-text .inner {
    margin-top:95px;
    height:calc(100% - 95px);
    padding:0px 50px;
  }
}

@media(max-width:767px){
  #slider .slide .div-text .inner {
    margin-top:75px;
    height:calc(100% - 75px);
    padding:0px 15px;
  }
}

#slider .slide .div-text .inner .align {
  position:relative;
  top:50%;
  transform:translateY(-50%);
}

#slider .slide .div-text h2 {
  font-size:48px;
  letter-spacing:-2px;
  margin-bottom:30px;
}

@media(max-width:991px){
  #slider .slide .div-text h2 {
    font-size:40px;
  }
}

@media(max-width:767px){
  #slider .slide .div-text h2 {
    font-size:24px;
    letter-spacing:-1px;
    margin-bottom:15px;
  }
}

#slider .slide .div-text p {
  font-size:20px;
  margin-bottom:40px;
}

@media(max-width:991px){
  #slider .slide .div-text p {
    font-size:18px;
  }
}

@media(max-width:767px){
  #slider .slide .div-text p {
    font-size:13px;
    margin-bottom:20px;
  }
}

#slider .slide .div-text p strong {
  font-weight:normal;
  color:var(--sa-blue);
}



/* Slider: photo */

#slider .slide .div-photo {
  right:0px;
  background-position:50% 50%;
  background-repeat:no-repeat;
  background-size:cover;
}



/* Pages */

.page {
  padding-top:200px;
  padding-bottom:100px;
}

@media(max-width:991px){
  .page {
    padding-top:135px;
    padding-bottom:60px;
  }
}

@media(max-width:767px){
  .page {
    padding-top:115px;
    padding-bottom:40px;
  }
}

.page.only-title {
  padding-bottom:30px !important;
}

.page.only-content {
  padding-top:30px !important;
}



/* Pages: page title */

.page.only-title .page-title {
  margin-bottom:0px !important;
}

.page .page-title .bigger {
  font-size:48px;
  letter-spacing:-2px;
}

@media(max-width:991px){
  .page .page-title .bigger {
    font-size:40px;
  }
}

@media(max-width:767px){
  .page .page-title .bigger {
    font-size:24px;
  }
}

.page .page-title .smaller {
  display:block;
}

.page-title.white {
  color:var(--sa-white) !important;
}



/* Pages: contents */

.page h2, .page h3, .page h4 {
  font-size:30px;
  letter-spacing:-1px;
  margin-bottom:30px;
}

@media(max-width:991px){
  .page h2, .page h3, .page h4 {
    font-size:25px;
    margin-bottom:20px;
  }
}

@media(max-width:767px){
  .page h2, .page h3, .page h4 {
    font-size:18px;
  }
}

.page h2 strong, .page h3 strong, .page h4 strong {
  font-weight:normal;
  color:var(--sa-blue);
}

.page p, .page li {
  text-align:justify;
  font-size:17px;
}

.page label {
  font-weight:600;
  font-size:16px;
}

.page ul {
  padding:0px;
}

.page li {
  text-align:left;
  list-style-position:inside;
}

@media(max-width:991px){
  .page p, .page li {
    font-size:15px;
  }
}

@media(max-width:767px){
  .page p, .page li, .page label {
    font-size:13px;
  }
}

.page ul li:last-child {
  margin-bottom:0px;
}

.page p strong, .page li strong {
  font-weight:normal;
  color:var(--sa-blue);
}

.page hr {
  margin:25px 0px;
}



/* About page: custom elements */

@media(max-width:575px){
  #about .hero {
    height:200px;
    margin-bottom:30px;
  }
}

#about .about-subtitle {
  text-align:center;
  padding:50px 30px;
  padding-bottom:0px;
  background:linear-gradient(0deg, rgba(221,228,251,0) 0%, rgba(221,228,251,1) 100%);
  border-top-left-radius:60px;
  border-top-right-radius:0px;
}

@media(max-width:767px){
  #about .about-subtitle {
    padding:30px;
    padding-bottom:0px;
    border-top-left-radius:30px;
  }
}



/* Services page: list */

#services {
  background:var(--sa-blue);
}

#services-2 .service-button {
  position:relative;
  display:block;
  margin:15px 0px;
}

#services-2 .service-button .thumb {
  display:block;
  width:100%; height:240px;
  border-radius:15px;
  background-color:var(--sa-no-bg);
  background-position:50% 50%;
  background-repeat:no-repeat;
  background-size:cover;
}

@media(max-width:991px){
  #services-2 .service-button .thumb {
    height:200px;
  }
}

#services-2 .service-button .title {
  z-index:10;
  position:absolute;
  width:100%;
  left:0px; bottom:0px;
  margin:0px;
  padding:40px 0px 25px 0px;
  text-align:center;
  font-size:18px; line-height:24px;
  text-shadow:0px 2px 2px rgba(0,0,0,0.8);
  color:var(--sa-white);
  background:var(--sa-blue);
  background:linear-gradient(0deg, rgba(45,91,248,1) 0%, rgba(45,91,248,0) 100%);
  border-bottom-right-radius:15px;
  border-bottom-left-radius:15px;
}

@media(max-width:991px){
  #services-2 .service-button .title {
    font-size:16px; line-height:20px;
    padding:30px 0px 15px 0px;
  }
}



/* Services page: details */

#services-2 .service-details {
  position:relative;
  margin-top:15px;
  padding:30px;
  border:1px solid var(--sa-blue);
  border-radius:15px;
}

@media(max-width:767px){
  #services-2 .service-details {
    padding:20px;
    padding-bottom:0px;
  }
}

#services-2 .service-details .wrapper {
  float:left;
  width:60%; min-height:290px;
}

@media(max-width:767px){
  #services-2 .service-details .wrapper {
    width:100%; min-height:auto;
  }
}

#services-2 .service-details .wrapper .service {
  display:none;
}

#services-2 .service-details .wrapper .service:first-of-type {
  display:block;
}

#services-2 .service-details .wrapper .service h3 {
  display:inline-block;
  padding-bottom:5px;
  margin-bottom:25px;
  border-bottom:2px solid var(--sa-blue);
}

@media(max-width:767px){
  #services-2 .service-details .wrapper .service h3 {
    margin-bottom:15px;
  }
}

#services-2 .service-details .wrapper .service ul {
  margin:0px;
}

#services-2 .service-details .wrapper .service ul li {
  margin-top:3px;
}



/* Services page: call */

#services-2 .service-call {
  position:absolute;
  right:30px; top:0px;
  width:35%; height:100%;
  background-image:url('../images/services/call.jpg');
  background-position:right bottom;
  background-repeat:no-repeat;
}

@media(max-width:767px){
  #services-2 .service-call {
    position:relative;
    right:auto; height:160px;
    margin-top:20px;
    border-top:1px solid rgba(0,0,0,0.1);
    background-size:auto 145px;
    width:100%;
  }
}

#services-2 .service-call .align {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

#services-2 .service-call h3 {
  width:200px;
  font-size:22px !important;
  margin-bottom:15px !important;
}

@media(max-width:767px){
  #services-2 .service-call h3 {
    font-size:18px !important;
  }
}

#services-2 .service-call .btn {
  margin-bottom:0px !important;
}



/* Contact page: buttons */

#contact {
  background:var(--sa-light-gradient);
}

#contact .contact-button {
  display:block;
  margin-bottom:20px;
  color:var(--sa-text);
  background:var(--sa-white);
  padding:15px;
  padding-right:0px;
  border-radius:7px;
}

@media(max-width:991px){
  #contact .contact-button {
    margin-bottom:10px;
    padding:10px;
    padding-right:0px;
  }
}

#contact .contact-button .icon {
  overflow:hidden;
  float:left;
  margin-right:15px;
  width:48px; height:48px;
  text-align:center;
  background:var(--sa-light-gradient);
  border-radius:48px;
}

@media(max-width:991px){
  #contact .contact-button .icon {
    margin-right:8px;
    width:38px; height:38px;
  }
}

#contact .contact-button .icon .fa {
  margin-top:13px;
  font-size:22px;
  color:var(--sa-blue);
}

@media(max-width:991px){
  #contact .contact-button .icon .fa {
    margin-top:10px;
    font-size:18px;
  }
}

#contact .contact-button .text {
  display:block;
  padding-top:13px;
  font-size:16px;
}

@media(max-width:991px){
  #contact .contact-button .text {
    padding-top:10px;
    font-size:13px;
  }
}

#contact .contact-button:hover {
  color:#fff;
  background:var(--sa-blue);
}

#contact .contact-button.whatsapp {
  background:var(--sa-whatsapp-green);
}

#contact .contact-button.whatsapp .icon {
  background:var(--sa-whatsapp-teal);
}

#contact .contact-button.whatsapp .icon .fa {
  color:var(--sa-white);
}

#contact .contact-button.whatsapp .text {
  color:#fff;
  text-shadow:0px 2px 2px rgba(0,0,0,0.4);
}

#contact .contact-button.whatsapp:hover {
  background:var(--sa-whatsapp-teal);
}

#contact .contact-button.whatsapp:hover .icon {
  background:var(--sa-whatsapp-green);
}

#contact .address {
  font-size:14px;
}

#contact .address strong {
  color:inherit;
  font-weight:bold;
}



/* Contact page: form */

#contact .box {
  padding:40px 30px;
  background:var(--sa-white);
  border-top-left-radius:30px;
  border-bottom-right-radius:30px;
}

@media(max-width:767px){
  #contact .box {
    padding:30px 20px;
    border-top-left-radius:15px;
    border-bottom-right-radius:15px;
  }
}

#contact .form-control {
  margin-bottom:15px;
  border:2px solid #f1f2f7;
  background:#f1f2f7;
}

#contact .form-control:focus {
  border-color:var(--sa-blue);
  background:#f8f9fd;
}

@media(min-width:992px){
  #contact .form-control {
    height:48px;
    border-radius:7px;
  }
}

#contact textarea {
  margin-bottom:0px !important;
  height:96px !important;
}



/* Footer */

#footer {
  text-align:center;
  padding:30px 15px;
}



/* App modal */

#app {
  display:none;
  z-index:9999;
  position:fixed;
  left:0px; top:0px;
  width:100%; height:100%;
}

#app .overlay {
  z-index:1;
  position:fixed;
  left:0px; top:0px;
  width:100%; height:100%;
  background:rgba(0,0,0,0.65);
}

#app .inner {
  z-index:2;
  position:fixed;
  overflow-y:auto;
  width:60%;
  height:auto;
  left:20%; top:50%;
  transform:translateY(-50%);
  background:var(--sa-white);
  padding:30px;
  border-radius:15px;
  box-shadow:0px 10px 25px rgba(0,0,0,0.15);
}

@media(max-width:767px){
  #app .inner {
    width:90%;
    left:5%;
    padding:20px 15px;
    border-radius:7px;
  }
}

#app h2, #app h3, #app h4 {
  font-size:30px;
  letter-spacing:-1px;
}

@media(max-width:991px){
  #app h2, #app h3, #app h4 {
    font-size:25px;
  }
}

@media(max-width:767px){
  #app h2, #app h3, #app h4 {
    font-size:18px;
  }
}