/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 6px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

html {
  font-family: "Open Sans", sans-serif;
  color: #3F4E6B;
  overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif; }

body {
  min-height: 100%;
  overflow-x: hidden; }

section {
  margin: 100px 0; }

.navbar-brand img {
  height: 50px; }

.navbar-nav {
  font-size: 18px;
  font-family: "Montserrat", sans-serif; }
  .navbar-nav .nav-item {
    margin-right: 15px; }
    .navbar-nav .nav-item:last-child {
      margin-right: 0; }

.custom-navbar {
  background: rgba(255, 255, 255, 0);
  transition: all 0.2s ease-out; }
  .custom-navbar.custom-navbar-white {
    background: #fff;
    box-shadow: 0 5px 8px rgba(28, 35, 49, 0.08); }
    .custom-navbar.custom-navbar-white .navbar-nav .nav-link {
      color: #3F4E6B !important; }
    .custom-navbar.custom-navbar-white .navbar-toggler .hamburger-inner, .custom-navbar.custom-navbar-white .navbar-toggler .hamburger-inner::before, .custom-navbar.custom-navbar-white .navbar-toggler .hamburger-inner::after {
      background: #3F4E6B; }
  .custom-navbar .navbar-toggler {
    padding: 10px 10px 5px 10px;
    margin-left: 10px; }
    .custom-navbar .navbar-toggler .hamburger-inner, .custom-navbar .navbar-toggler .hamburger-inner::before, .custom-navbar .navbar-toggler .hamburger-inner::after {
      background: #fff; }

.navbar-collapse {
  background: #fff;
  border-radius: 8px;
  margin-top: 10px; }
  .navbar-collapse .navbar-nav .nav-item {
    padding: 0px 20px; }
    .navbar-collapse .navbar-nav .nav-item .nav-link {
      color: #3F4E6B; }

textarea.form-control {
  border-radius: 1.2rem;
  resize: none; }

.description {
  font-size: 18px; }

.icon-circle {
  width: 56px;
  padding: 15px 0;
  border-radius: 50%;
  display: inline-block;
  text-align: center; }
  .icon-circle svg {
    color: #fff; }
  .icon-circle.-sm {
    width: 44px !important;
    padding: 12px 0 !important;
    line-height: 0; }
    .icon-circle.-sm svg {
      height: 20px; }
  .icon-circle.-primary {
    background: transparent linear-gradient(269deg, #ED3660 0%, #C71862 100%);
    box-shadow: 0px 3px 6px rgba(237, 54, 96, 0.5); }

.welcome-bg {
  background: url(../img/welcome-bg.png) no-repeat center;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 50px; }

.font-weight-bolder {
  font-weight: 900 !important; }

.welcome-content {
  text-align: center; }
  .welcome-content h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.1rem; }
  .welcome-content p {
    color: #fff;
    font-size: 18px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 25px; }

.welcome-img {
  max-width: 80%;
  margin-bottom: 30px; }

.section-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .section-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .section-list li .icon-circle {
      background: #ED3660;
      width: 36px;
      padding: 5px 0;
      margin-right: 15px; }
      .section-list li .icon-circle svg {
        color: #fff; }
    .section-list li p {
      margin-bottom: 0;
      font-size: 18px; }
    .section-list li:last-child {
      margin-bottom: 0; }

.section-img {
  width: 80%;
  margin-top: 30px; }

.accordion .btn-link svg {
  transition: all 0.2s ease-in-out;
  color: #3F4E6B; }
.accordion .btn-link[aria-expanded="true"] h5 {
  color: #ED3660 !important; }
.accordion .btn-link[aria-expanded="true"] svg {
  transform: rotate(180deg); }
.accordion .card .card-header {
  background: #fff; }
  .accordion .card .card-header .btn-link {
    padding-right: 10px;
    padding-left: 10px; }
    .accordion .card .card-header .btn-link h5 {
      color: #1C2331; }
    .accordion .card .card-header .btn-link p {
      color: #3F4E6B; }
    .accordion .card .card-header .btn-link:hover, .accordion .card .card-header .btn-link:focus {
      text-decoration: none; }
      .accordion .card .card-header .btn-link:hover h5, .accordion .card .card-header .btn-link:focus h5 {
        color: #ED3660; }
.accordion .card .card-body {
  padding-right: 30px;
  padding-left: 30px; }

.footer {
  background: #1C2331;
  border-radius: 30px 30px 0 0; }

.footer-content {
  padding: 15px 0; }
  .footer-content img {
    height: 30px; }
  .footer-content span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px; }

.address-info {
  padding: 25px 0; }
  .address-info .address-footer-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px; }
    .address-info .address-footer-item label {
      color: rgba(255, 255, 255, 0.5); }
    .address-info .address-footer-item h5 {
      color: #fff;
      font-size: 16px; }

.partners-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .partners-list li {
    display: inline-block; }
    .partners-list li img {
      width: 100%; }

.product-item {
  display: block;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
  border-radius: 5px; }
  .product-item .product-img {
    background-size: cover !important;
    height: 200px;
    width: 100%;
    border-radius: 5px 5px 0 0; }
  .product-item .product-content {
    border: 2px solid #E4E9F2;
    border-radius: 0 0 5px 5px;
    padding: 13px 25px;
    border-top: none;
    color: #3F4E6B; }
    .product-item .product-content label {
      display: block;
      margin-bottom: 5px; }
  .product-item:hover {
    text-decoration: none;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 5px 13px rgba(237, 54, 96, 0.3); }
    .product-item:hover .product-content {
      border-color: #ED3660; }
      .product-item:hover .product-content label {
        cursor: pointer; }
  .product-item.img-only .product-img {
    border-radius: 5px; }
  .product-item.content-only .product-content {
    color: #fff;
    height: 200px;
    background: #ED3660;
    border: none;
    border-radius: 5px; }

.bg-light {
  background: #FAFBFD;
  padding: 50px 0; }

.bg-darker {
  background: #161c27 !important; }

.form-control-lg {
  border-radius: 10rem;
  padding-left: 23px;
  padding-right: 23px; }

@media (min-width: 768px) {
  .welcome-img {
    max-width: 75%;
    margin-top: 30px; }

  .welcome-bg {
    border-radius: 0 0 50px 50px; } }
@media (min-width: 992px) {
  .welcome-img {
    max-width: 130%;
    margin-top: 100px; }

  .welcome-bg {
    height: 700px;
    padding-top: 0; }

  .welcome-content {
    text-align: left; }

  .section-img {
    position: absolute;
    top: -320px;
    width: 110%;
    left: -120px; }

  .navbar-collapse {
    background: transparent;
    margin-top: 0; }
    .navbar-collapse .navbar-nav .nav-item .nav-link {
      color: #fff; } }
@media (min-width: 1200px) {
  .h-lg-100 {
    height: 100% !important; }

  .welcome-img {
    max-width: 120%;
    margin-top: 110px;
    position: absolute;
    left: -30px; }

  .welcome-content h1 {
    font-size: 3rem; } }

/*# sourceMappingURL=main.css.map */
