/** GENERAL **/
body {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 15px;
  color: #393939;
  background-color: #f9f8f6;
  margin: 0;
  padding: 0;
}
.content-title {
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
}
.content-subtitle {
  text-align: center;
}
.section_title_area {
  margin-bottom: 60px;
}
.sticky_icons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.sticky_icons a {
  min-width: 50px;
  background: #00BA4B;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid white;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.sticky_icons a i {
  font-size: 20px;
  color: white;
}
.sticky_icons a.active {
  text-decoration: underline;
}
.sticky_icons a:last-child {
  border-bottom: 0;
}
img {
  max-width: 100%;
}
/** END GENERAL **/
/* HEADER */
.w-bring-header {
  height: 100px;
  position: fixed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 100;
}
.w-bring-header .w-bring-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.w-bring-header .w-bring-header-content .w-bring-header-logo img {
  width: 220px;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list {
  transition: all 0.3s ease-in-out;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li {
  font-size: 18px;
  line-height: 18px;
  padding: 15px 15px;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li a {
  position: relative;
  text-decoration: none;
  color: #393939;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: -10px;
  height: 2px;
  background: black;
  width: 0px;
  transition: all 0.3s ease-in-out;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li a:hover:after {
  width: calc(100% + 20px);
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li.register_btn {
  padding: 0;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li.register_btn a {
  display: block;
  padding: 15px 15px;
  background: #00BA4B;
  margin-left: 20px;
  margin-bottom: 0;
  max-width: 100%;
  color: white;
}
.w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li.register_btn a:after {
  display: none;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 22px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 20px;
  background: black;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(even) {
  left: 50%;
  border-radius: 0 3px 3px 0;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(odd) {
  left: 0px;
  border-radius: 3px 0 0 3px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(2) {
  width: 12px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(1),
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(2) {
  top: 0px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(3),
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(4) {
  top: 9px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(5),
.w-bring-header .w-bring-header-content .w-bring-hamburger span:nth-child(6) {
  top: 18px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(1),
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(2),
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(1) {
  left: 5px;
  top: 5px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(2) {
  left: calc(50% - 5px);
  top: 5px;
  width: 20px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(5) {
  left: 5px;
  top: 15px;
}
.w-bring-header .w-bring-header-content .w-bring-hamburger.active span:nth-child(6) {
  left: calc(50% - 5px);
  top: 15px;
}
/* END HEADER */
/** FOOTER **/
.yona_footer_wrapper {
  background-color: black;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px 0 10px 0;
}
.yona_footer_wrapper p {
  color: white;
}
/** END FOOTER **/
/** CONTENT **/
.bring_content_wrapper {
  margin-top: 100px;
}
/** END CONTENT **/
/** Banner Section **/
.banner_section {
  height: calc(100vh - 100px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 100px;
}
.banner_section img {
  display: none;
}
.banner_section .mini_login_wrapper {
  background: white;
  position: absolute;
  top: 100px;
  left: 100px;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.banner_section .mini_login_wrapper input {
  width: 280px;
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #00BA4B;
  outline: none;
  color: black;
  font-weight: bold;
  max-width: 100%;
}
.banner_section .mini_login_wrapper input::placeholder {
  color: black;
  font-weight: bold;
}
.banner_section .mini_login_wrapper button {
  background: #00BA4B;
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px;
  display: block;
}
.banner_section .mini_login_wrapper .password_input {
  position: relative;
  margin-bottom: 20px;
}
.banner_section .mini_login_wrapper .password_input input {
  margin-bottom: 0px;
}
.banner_section .mini_login_wrapper .password_input .show_password {
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: block;
}
.banner_section .bring-web-tracker {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 400px;
  max-width: 100%;
  padding: 15px;
  color: white;
  z-index: 2;
}
.banner_section .bring-web-tracker h5 {
  color: black;
  font-weight: bold;
  text-transform: uppercase;
}
.banner_section .bring-web-tracker .bring-web-tracker-input {
  display: flex;
  width: 100%;
}
.banner_section .bring-web-tracker .bring-web-tracker-input input {
  border: 1px solid #00BA4B;
  padding: 10px;
  flex-grow: 1;
}
.banner_section .bring-web-tracker .bring-web-tracker-input span {
  width: 40px;
  background: #00BA4B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner_section:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}
/** End Banner Section **/
/** About Us Section **/
.about_us_section {
  margin-bottom: 120px;
}
.about_us_section h2,
.about_us_section p {
  text-align: center;
}
/** End About Us Section **/
/** Grid Boxes Section **/
.grid_boxes_section {
  margin-bottom: 120px;
}
.grid_boxes_section .grid_boxes {
  display: flex;
}
.grid_boxes_section .grid_boxes .grid_box {
  padding: 20px;
  width: 33%;
  background: white;
  margin-right: 0.5%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.grid_boxes_section .grid_boxes .grid_box h4 {
  font-weight: bold;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.grid_boxes_section .grid_boxes .grid_box h4 i {
  font-size: 40px;
  line-height: 40px;
  margin-right: 20px;
}
.grid_boxes_section .grid_boxes .grid_box:last-child {
  margin-right: 0;
}
.grid_boxes_section .grid_boxes .grid_box.green {
  background: #00BA4B;
}
.grid_boxes_section .grid_boxes .grid_box.green i,
.grid_boxes_section .grid_boxes .grid_box.green h4,
.grid_boxes_section .grid_boxes .grid_box.green p {
  color: white;
}
/** End Grid Boxes Section **/
/** Content Image Section **/
.content_image_section {
  margin-bottom: 100px;
}
/** End Content Image Section **/
/** Our Work Section **/
.our_work_section {
  margin-bottom: 120px;
}
.our_work_section .our_work {
  display: flex;
  background: #00BA4B;
  border-radius: 3px;
}
.our_work_section .our_work .our_work_box {
  width: 50%;
  text-align: center;
  padding: 20px ;
}
.our_work_section .our_work .our_work_box h4 {
  position: relative;
  margin-bottom: 20px;
}
.our_work_section .our_work .our_work_box h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: white;
  transform: translateX(-50%);
}
.our_work_section .our_work .our_work_box h4,
.our_work_section .our_work .our_work_box h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}
/** End Our Work Section **/
/** Contact Section **/
.contact_us_section {
  margin-bottom: 120px;
}
.contact_us_section .contact_card {
  background: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  height: 100%;
}
.contact_us_section .contact_card .map {
  height: 350px;
  width: 100%;
  margin-bottom: 20px;
}
.contact_us_section .contact_card .card_content {
  padding: 0 20px 20px 20px;
}
.contact_us_section .contact_card .card_content .card_content_title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact_us_section .contact_card .card_content i {
  color: #00BA4B;
  font-size: 20px;
}
.contact_us_section .contact_card .card_content a,
.contact_us_section .contact_card .card_content p {
  display: block;
  margin-bottom: 10px;
}
.contact_us_section .contact_card .card_content .card_item {
  background: #f2f2f2;
  border-radius: 2px;
  margin-bottom: 10px;
  display: flex;
}
.contact_us_section .contact_card .card_content .card_item .card_icon {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 5px solid white;
}
.contact_us_section .contact_card .card_content .card_item .card_text {
  padding: 15px;
}
.contact_us_section .contact_card .card_content .card_item .card_text p,
.contact_us_section .contact_card .card_content .card_item .card_text a {
  margin-bottom: 0;
  color: black;
}
.contact_us_section .contact_card .card_content .card_social_icons {
  display: flex;
}
.contact_us_section .contact_card .card_content .card_social_icons .card_social_icon {
  background: #00BA4B;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 3px solid #00BA4B;
  transition: all 0.3s ease-in-out;
}
.contact_us_section .contact_card .card_content .card_social_icons .card_social_icon i {
  color: white;
}
.contact_us_section .contact_card .card_content .card_social_icons .card_social_icon:hover {
  background: white;
}
.contact_us_section .contact_card .card_content .card_social_icons .card_social_icon:hover i {
  color: #00BA4B;
}
/** End Contact Section **/
/** Contact Form Section **/
.contact_form_section {
  margin-bottom: 120px;
}
.contact_form_section .contact_form_wrapper input,
.contact_form_section .contact_form_wrapper textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 15px;
  border: 2px solid #e2e2e2;
}
.contact_form_section .contact_form_wrapper button {
  display: block;
  width: 100%;
  border: 2px solid #00BA4B;
  background: #00BA4B;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
}
/** End Contact Form Section **/
/** Register Form Modal **/
.register_form_modal .modal-content {
  border: none;
  border-radius: 0px;
}
.register_form_modal .modal-content .register_form_wrapper {
  padding: 0.75rem;
}
.register_form_modal .modal-content .register_form_wrapper input,
.register_form_modal .modal-content .register_form_wrapper select {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #00BA4B;
  outline: none;
  color: black;
  font-weight: bold;
  max-width: 100%;
}
.register_form_modal .modal-content .register_form_wrapper input::placeholder,
.register_form_modal .modal-content .register_form_wrapper select::placeholder {
  color: black;
  font-weight: bold;
}
.register_form_modal .modal-content .register_form_wrapper .password_input {
  position: relative;
  margin-bottom: 20px;
}
.register_form_modal .modal-content .register_form_wrapper .password_input input {
  margin-bottom: 0px;
}
.register_form_modal .modal-content .register_form_wrapper .password_input .show_password {
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: block;
}
/** End Register Form Modal **/
.about_promote_section {
  margin-top: 200px;
  margin-bottom: 120px;
}
.about_promote_section h2,
.about_promote_section p {
  text-align: center;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  /** Our Work Section **/
  .our_work_section .instagram-image {
    width: 48% !important;
  }
  /** End Our Work Section **/
}
@media (max-width: 780px) {
  /** GENERAL **/
  .content-title {
    margin-bottom: 25px;
    text-align: left;
  }
  .content-subtitle {
    text-align: left;
  }
  .sticky_icons {
    top: 100px;
  }
  .sticky_icons a {
    min-width: 40px;
    height: 40px;
  }
  .sticky_icons a i {
    font-size: 18px;
  }
  /** END GENERAL **/
  /* HEADER */
  .w-bring-header {
    height: 60px;
  }
  .w-bring-header .w-bring-header-content {
    height: 60px;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-logo img {
    height: 40px;
    width: auto;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list {
    max-height: 0px;
    overflow: hidden;
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list ul {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li {
    margin-left: 0px;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 20px;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li a {
    text-align: center;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li a:after {
    display: none;
  }
  .w-bring-header .w-bring-header-content .w-bring-header-menu-list ul li.register_btn {
    width: calc(100% - 20px);
    text-align: center;
  }
  .w-bring-header .w-bring-header-content .w-bring-hamburger {
    display: block;
  }
  /* END HEADER */
  /** CONTENT **/
  .bring_content_wrapper {
    margin-top: 60px;
  }
  /** END CONTENT **/
  /** Banner Section **/
  .banner_section {
    background-image: url('/assets/web/logo_mobile.jpg') !important;
    height: calc(100vh - 60px);
    margin-bottom: 120px;
  }
  .banner_section .mini_login_wrapper {
    top: 40%;
    left: 15px;
    padding: 10px;
    width: calc(100% - 30px);
    transform: translateY(-50%);
  }
  .banner_section .mini_login_wrapper input {
    width: 100%;
  }
  .banner_section .bring-web-tracker {
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    background: white;
    width: 100%;
  }
  .banner_section::after {
    display: none;
  }
  /** End Banner Section **/
  /** About Us Section **/
  .about_us_section {
    margin-bottom: 60px;
  }
  .about_us_section h2,
  .about_us_section p {
    text-align: left;
  }
  /** End About Us Section **/
  /** Grid Boxes Section **/
  .grid_boxes_section {
    margin-bottom: 60px;
  }
  .grid_boxes_section .grid_boxes {
    flex-direction: column;
  }
  .grid_boxes_section .grid_boxes .grid_box {
    padding: 20px;
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }
  /** End Grid Boxes Section **/
  /** Our Work Section **/
  .our_work_section {
    margin-bottom: 60px;
  }
  .our_work_section .our_work {
    flex-direction: column;
    background: #00BA4B;
  }
  .our_work_section .our_work .our_work_box {
    width: 100%;
    text-align: center;
    padding: 20px ;
  }
  .our_work_section .our_work .our_work_box h4 {
    position: relative;
    margin-bottom: 20px;
  }
  .our_work_section .our_work .our_work_box h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: white;
    transform: translateX(-50%);
  }
  .our_work_section .our_work .our_work_box h4,
  .our_work_section .our_work .our_work_box h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: white;
  }
  /** End Our Work Section **/
  /** Content Image Section **/
  .content_image_section {
    margin-bottom: 60px;
  }
  /** End Content Image Section **/
  /** Contact Section **/
  .contact_us_section {
    margin-bottom: 60px;
  }
  .contact_us_section .contact_card {
    height: auto;
  }
  .contact_us_section .contact_card .map {
    height: 350px;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact_us_section .contact_card .card_content {
    padding: 0 20px 20px 20px;
  }
  .contact_us_section .contact_card .card_content .card_content_title {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .contact_us_section .contact_card .card_content i {
    color: #00BA4B;
    font-size: 20px;
  }
  .contact_us_section .contact_card .card_content a,
  .contact_us_section .contact_card .card_content p {
    display: block;
    margin-bottom: 10px;
  }
  .contact_us_section .contact_card .card_content .card_item {
    background: #f2f2f2;
    border-radius: 2px;
    margin-bottom: 10px;
    display: flex;
  }
  .contact_us_section .contact_card .card_content .card_item .card_icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 5px solid white;
  }
  .contact_us_section .contact_card .card_content .card_item .card_text {
    padding: 15px;
  }
  .contact_us_section .contact_card .card_content .card_item .card_text p,
  .contact_us_section .contact_card .card_content .card_item .card_text a {
    margin-bottom: 0;
    color: black;
  }
  /** End Contact Section **/
  /** Contact Form Section **/
  .contact_form_section {
    margin-bottom: 60px;
  }
  /** End Contact Form Section **/
  /** Register Form Modal **/
  .register_form_modal {
    padding-right: 0 !important;
  }
  /** End Register Form Modal **/
}
/*# sourceMappingURL=web.css.map */