@import url("https://fonts.googleapis.com/css2?family=Bellota+Text:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap");
/* line 3, ../sass/_common.sass */
html {
  font-size: 100%;
}

/* line 5, ../sass/_common.sass */
body {
  position: relative;
  font-size: 100%;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  background: #ffffff;
  color: #083d5d;
  text-align: left;
  margin: 0;
  padding: 0;
}

/* line 15, ../sass/_common.sass */
h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 700;
  color: #000000;
  font-family: "Bellota Text", cursive;
}

/* line 23, ../sass/_common.sass */
h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  font-family: "Bellota Text", cursive;
}

/* line 30, ../sass/_common.sass */
h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  color: #083d5d;
  text-transform: uppercase;
}

/* line 37, ../sass/_common.sass */
p {
  margin-bottom: 0;
}

/* line 39, ../sass/_common.sass */
a {
  text-decoration: none;
}
/* line 42, ../sass/_common.sass */
a:hover, a:focus {
  text-decoration: underline;
}

/* line 45, ../sass/_common.sass */
.bg-light-grey1 {
  background-color: #f5f4f4;
}

/* line 47, ../sass/_common.sass */
.bg-dark-blue1 {
  background-color: #00122a;
}

/* line 49, ../sass/_common.sass */
.bg-blue {
  background-color: #015ef7;
}

/* line 52, ../sass/_common.sass */
.dark-blue {
  color: #083d5d;
}

/* line 54, ../sass/_common.sass */
.yellow {
  color: #ffff36;
}

/* line 56, ../sass/_common.sass */
.light-grey2 {
  color: #959595;
}

/* line 59, ../sass/_common.sass */
.bellota {
  font-family: "Bellota Text", cursive;
}

/* line 63, ../sass/_common.sass */
.social-link {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 1px solid #083d5d;
  background: center center no-repeat;
}
/* line 71, ../sass/_common.sass */
.social-link.linkedin {
  background-image: url(/images/icons/social/linkedin.png);
}
/* line 73, ../sass/_common.sass */
.social-link.fb {
  background-image: url(/images/icons/social/fb.png);
}

/* line 76, ../sass/_common.sass */
.benefit {
  border-radius: 15px;
  background: #ffffff;
  padding: 25px 16px;
  -moz-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  -webkit-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
}
/* line 82, ../sass/_common.sass */
.benefit ul {
  padding-left: 0;
  list-style: none;
  font-size: 22px;
  margin-top: 20px;
}
/* line 88, ../sass/_common.sass */
.benefit ul li {
  background: url(/images/icons/star.png) left center no-repeat;
  padding-left: 35px;
  margin-bottom: 10px;
}
/* line 92, ../sass/_common.sass */
.benefit.active {
  background: #015ef7;
}
/* line 95, ../sass/_common.sass */
.benefit.active p {
  color: #ffffff;
}
/* line 97, ../sass/_common.sass */
.benefit.active ul {
  color: #ffffff;
}

/* line 100, ../sass/_common.sass */
.callback-service {
  background: #00122a;
  color: #ffffff;
  padding: 25px 16px;
  border-radius: 15px;
  -moz-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  -webkit-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
}

/* line 5, ../sass/components/_feedback.sass */
#contact-form .input-wrapper,
#feedback-form .input-wrapper {
  position: relative;
  padding-bottom: 35px;
}
/* line 9, ../sass/components/_feedback.sass */
#contact-form .input-wrapper.pb-15,
#feedback-form .input-wrapper.pb-15 {
  padding-bottom: 15px;
}
/* line 11, ../sass/components/_feedback.sass */
#contact-form .input-wrapper.pb-30,
#feedback-form .input-wrapper.pb-30 {
  padding-bottom: 30px;
}
/* line 13, ../sass/components/_feedback.sass */
#contact-form .input-label,
#feedback-form .input-label {
  display: block;
  position: relative;
  font-weight: 400;
}
/* line 18, ../sass/components/_feedback.sass */
#contact-form .input-label span,
#feedback-form .input-label span {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  padding: 0;
  color: #083d5d;
  cursor: text;
  -moz-transition: top 0.2s;
  -o-transition: top 0.2s;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
/* line 29, ../sass/components/_feedback.sass */
#contact-form .input-label.active span,
#feedback-form .input-label.active span {
  font-size: 11px;
  top: -12px;
  cursor: inherit;
}
/* line 33, ../sass/components/_feedback.sass */
#contact-form input[type=text],
#feedback-form input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: none;
  width: 100%;
  height: 38px;
  color: #083d5d;
  border-bottom: 1px solid #083d5d;
}
/* line 43, ../sass/components/_feedback.sass */
#contact-form input[type=submit],
#feedback-form input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #015ef7;
  width: 250px;
  height: 50px;
  font-size: 18px;
  color: #ffffff;
  border: none;
  border-radius: 7px;
  -moz-transition: color 0.6s, border-color 0.6s;
  -o-transition: color 0.6s, border-color 0.6s;
  -webkit-transition: color 0.6s, border-color 0.6s;
  transition: color 0.6s, border-color 0.6s;
}
/* line 55, ../sass/components/_feedback.sass */
#contact-form input[type=submit]:hover, #contact-form input[type=submit]:focus,
#feedback-form input[type=submit]:hover,
#feedback-form input[type=submit]:focus {
  border-color: #083d5d;
}
/* line 57, ../sass/components/_feedback.sass */
#contact-form .errorMessage,
#feedback-form .errorMessage {
  position: absolute;
  font-size: 11px;
  color: #f80007;
}

/* line 3, ../sass/partials/_header.sass */
#header-sticky-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
/* line 10, ../sass/partials/_header.sass */
#header-sticky-wrapper #header {
  padding-bottom: 18px;
}
/* line 13, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .logo {
  display: inline-block;
  padding-top: 18px;
}
/* line 16, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .navbar {
  min-height: 0;
  border-radius: 0;
  border: none;
  margin-bottom: 0;
}
/* line 22, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .navbar .nav {
  float: right;
}
/* line 26, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .navbar .nav > li > a {
  font-size: 18px;
  color: #000000;
  font-family: "Bellota Text", cursive;
  padding-left: 20px;
  padding-right: 20px;
}
/* line 33, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .navbar .nav > li > a:hover, #header-sticky-wrapper #header .navbar .nav > li > a:focus {
  background: none;
}
/* line 36, ../sass/partials/_header.sass */
#header-sticky-wrapper #header .navbar .nav > li.active > a {
  font-weight: 700;
}
/* line 39, ../sass/partials/_header.sass */
#header-sticky-wrapper.is-sticky #header {
  background: #ffffff;
  -moz-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  -webkit-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
}

/* line 3, ../sass/partials/_footer.sass */
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #000000;
}
/* line 8, ../sass/partials/_footer.sass */
#footer .logo {
  max-width: 156px;
}
/* line 10, ../sass/partials/_footer.sass */
#footer a {
  color: #000000;
  font-family: "Bellota Text", cursive;
}

/* line 3, ../sass/pages/_index.sass */
.index-page {
  background: #e8e8e8;
}
/* line 6, ../sass/pages/_index.sass */
.index-page #bg-logo {
  position: absolute;
  top: 75px;
  left: 50%;
  margin-left: 10px;
}
/* line 12, ../sass/pages/_index.sass */
.index-page #bg-logo .circle {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  box-shadow: 10px 10px 10px 10px rgba(136, 165, 191, 0.1) inset, inset -10px -10px 10px #ffffff;
}
/* line 18, ../sass/pages/_index.sass */
.index-page #bg-logo .logo {
  opacity: 0;
  width: 534px;
  height: 534px;
  margin-left: -30px;
  margin-top: -25px;
  background: url(/images/pages/index/1.png);
}
/* line 25, ../sass/pages/_index.sass */
.index-page .play-button {
  color: #ffff36;
  background: #015ef7;
  border-radius: 5px;
  padding: 10px 32px 10px 22px;
  font-size: 18px;
  display: inline-block;
}
/* line 33, ../sass/pages/_index.sass */
.index-page .play-button .icon {
  background: url(/images/icons/play.png) center center no-repeat #083d5d;
  background-position: calc(50% + 1px) calc(50% + 0px);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
/* line 43, ../sass/pages/_index.sass */
.index-page .carousel .item {
  margin: 0 10px 30px;
  padding: 55px 90px 24px 12px;
  border-radius: 15px;
  background-position: right 10px top 20px;
  background-repeat: no-repeat;
  color: #ffffff;
  -moz-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  -webkit-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
}
/* line 52, ../sass/pages/_index.sass */
.index-page .carousel .item.black {
  color: #000000;
}

/* line 3, ../sass/pages/_services.sass */
.services-page {
  background: url(/images/pages/services/1.png) top 80px center no-repeat #e8e8e8;
  background-position-x: calc(50% + 360px);
}

/* line 3, ../sass/pages/_contact.sass */
.contact-page {
  background: #e8e8e8;
}
/* line 6, ../sass/pages/_contact.sass */
.contact-page #header {
  background: #f5f4f4;
  -moz-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  -webkit-box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
  box-shadow: 0 15px 16px 0 rgba(155, 154, 154, 0.3);
}
/* line 9, ../sass/pages/_contact.sass */
.contact-page #map {
  height: 510px;
}
/* line 11, ../sass/pages/_contact.sass */
.contact-page #content {
  background: url(/images/pages/contact/consultant.png) bottom center no-repeat;
  background-position-x: calc(50% - 170px);
}
/* line 14, ../sass/pages/_contact.sass */
.contact-page #why-choose {
  -moz-box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
  -webkit-box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
  box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
}
/* line 16, ../sass/pages/_contact.sass */
.contact-page #contact-form {
  margin-top: -150px;
  padding: 14px 16px 24px 16px;
  background: #ffffff;
  border-radius: 14px;
  -moz-box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
  -webkit-box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
  box-shadow: 0 15px 12px 2px rgba(155, 154, 154, 0.25);
}
/* line 23, ../sass/pages/_contact.sass */
.contact-page #contact-form input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  outline: none;
  background: center center no-repeat #083d5d;
  vertical-align: bottom;
  margin-right: 10px;
  cursor: pointer;
}
/* line 33, ../sass/pages/_contact.sass */
.contact-page #contact-form input[type=checkbox]:checked {
  background-image: url(/images/icons/mark.png);
}
/* line 35, ../sass/pages/_contact.sass */
.contact-page #contact-form input[type=submit] {
  background: #083d5d;
  color: #ffff36;
}
