@import "reset.min.css";
/* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* default for rem */
html {
  font-size: 16px;
  height: 100%;
}
html.overflow-hidden {
  overflow: hidden;
}

html,
body {
  min-width: 320px;
  scrollbar-color: #FF5E6D #f1f1f1;
  scrollbar-width: thin;
}

/* placeholder */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #B0B0B0;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #B0B0B0;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #B0B0B0;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #B0B0B0;
}

/* selection */
::selection {
  color: #fff;
  background-color: #FF5E6D;
  box-shadow: none;
}

::-moz-selection {
  color: #fff;
  background-color: #FF5E6D;
  box-shadow: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FF5E6D;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #FF6454;
}

/* Grid */
/* container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1370px;
  }
}
/* 1528 + 30 */
@media (min-width: 1660px) {
  .container {
    max-width: 1648px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-auto,
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  width: 8.33%;
  max-width: 8.33%;
  -webkit-flex: 8.33%;
  -moz-flex: 8.33%;
  -ms-flex: 8.33%;
  -o-flex: 8.33%;
  flex: 8.33%;
}

.col-2 {
  width: 16.66%;
  max-width: 16.66%;
  -webkit-flex: 16.66%;
  -moz-flex: 16.66%;
  -ms-flex: 16.66%;
  -o-flex: 16.66%;
  flex: 16.66%;
}

.col-3 {
  width: 25%;
  max-width: 25%;
  -webkit-flex: 25%;
  -moz-flex: 25%;
  -ms-flex: 25%;
  -o-flex: 25%;
  flex: 25%;
}

.col-4 {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-flex: 33.33%;
  -moz-flex: 33.33%;
  -ms-flex: 33.33%;
  -o-flex: 33.33%;
  flex: 33.33%;
}

.col-5 {
  width: 41.66%;
  max-width: 41.66%;
  -webkit-flex: 41.66%;
  -moz-flex: 41.66%;
  -ms-flex: 41.66%;
  -o-flex: 41.66%;
  flex: 41.66%;
}

.col-6 {
  width: 50%;
  max-width: 50%;
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  -o-flex: 50%;
  flex: 50%;
}

.col-7 {
  width: 58.33%;
  max-width: 58.33%;
  -webkit-flex: 58.33%;
  -moz-flex: 58.33%;
  -ms-flex: 58.33%;
  -o-flex: 58.33%;
  flex: 58.33%;
}

.col-8 {
  width: 66.66%;
  max-width: 66.66%;
  -webkit-flex: 66.66%;
  -moz-flex: 66.66%;
  -ms-flex: 66.66%;
  -o-flex: 66.66%;
  flex: 66.66%;
}

.col-9 {
  width: 75%;
  max-width: 75%;
  -webkit-flex: 75%;
  -moz-flex: 75%;
  -ms-flex: 75%;
  -o-flex: 75%;
  flex: 75%;
}

.col-10 {
  width: 83.33%;
  max-width: 83.33%;
  -webkit-flex: 83.33%;
  -moz-flex: 83.33%;
  -ms-flex: 83.33%;
  -o-flex: 83.33%;
  flex: 83.33%;
}

.col-11 {
  width: 91.66%;
  max-width: 91.66%;
  -webkit-flex: 91.66%;
  -moz-flex: 91.66%;
  -ms-flex: 91.66%;
  -o-flex: 91.66%;
  flex: 91.66%;
}

.col-12 {
  width: 100%;
  max-width: 100%;
  -webkit-flex: 100%;
  -moz-flex: 100%;
  -ms-flex: 100%;
  -o-flex: 100%;
  flex: 100%;
}

.col-offset-1 {
  margin-left: 8.33%;
}

.col-offset-2 {
  margin-left: 16.66%;
}

.col-offset-3 {
  margin-left: 25%;
}

.col-offset-4 {
  margin-left: 33.33%;
}

.col-offset-5 {
  margin-left: 41.66%;
}

.col-offset-6 {
  margin-left: 50%;
}

.col-offset-7 {
  margin-left: 58.33%;
}

.col-offset-8 {
  margin-left: 66.66%;
}

.col-offset-9 {
  margin-left: 75%;
}

.col-offset-10 {
  margin-left: 83.33%;
}

.col-offset-11 {
  margin-left: 91.66%;
}

.col-offset-12 {
  margin-left: 100%;
}

/* typography */
body {
  min-height: 100%;
  overflow-y: auto;
  font: normal 1rem/1.6 "Poppins", sans-serif;
  color: #444444;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #fff url("../images/pattern_bg.png") repeat 50% 50%/cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #191718;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  text-transform: capitalize;
}

h1,
.h1 {
  font-size: 3rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 2rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.375rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

.section_title {
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.section_subtitle {
  color: #999;
  font-size: 24px;
  line-height: 146.19%;
}
.section_subtitle:not(:last-child) {
  margin-bottom: 4.875rem;
}

.subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.75;
  font-weight: 400;
}

.text_lg {
  font-size: 1.25rem;
}

.text_xl {
  font-size: 1.5rem;
}
.text_xl:not(:last-child) {
  margin-bottom: 1.875rem;
}

p:not(:last-child) {
  margin-bottom: 1rem;
}

.arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

/* buttons and links */
a,
button {
  border: none;
  outline: none;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus,
button:hover,
button:focus {
  color: #FF5E6D;
  transition: all 0.3s ease-in-out;
}

.link_arrow_right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 1.125rem;
}
.link_arrow_right img {
  flex: none;
  display: inline-block;
  margin-left: 0.9375rem;
  transition: all 0.3s ease-in-out;
}
.link_arrow_right:hover img, .link_arrow_right:active img, .link_arrow_right:focus img {
  transform: translateX(0.3125rem);
}

.btn {
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.btn:hover,
.btn:active,
.btn:focus {
  transform: scale(1.05);
  color: #FF5E6D;
  transition: all 0.3s ease-in-out;
}

.btn_lg {
  padding: 0.875rem;
  font-size: 1.25rem;
}

.btn_sm {
  font-size: 0.875rem;
  padding: 0.4375rem 1.71875rem;
}
.btn_sm.btn_rounded {
  border-radius: 1.5625rem;
}

.btn_line_white_rgb {
  background-color: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn_line_white_rgb:hover, .btn_line_white_rgb:active, .btn_line_white_rgb:focus {
  color: #FF5E6D;
  border-color: #FF5E6D;
}

.btn_block {
  width: 100%;
}

/* btn_info */
.btn_info {
  color: #333333;
  background-color: #B0EBE9;
  border-color: #B0EBE9;
}

.btn_info:hover,
.btn_info:active,
.btn_info:focus {
  color: #fff;
  opacity: 0.8;
}

/* btn_danger */
.btn_danger {
  color: #fff;
  background-color: #FF5E6D;
  border-color: #FF5E6D;
  box-shadow: 0px 4px 10px rgba(175, 9, 24, 0.3);
}

.btn_danger:hover,
.btn_danger:active,
.btn_danger:focus {
  color: #fff;
  opacity: 0.8;
}

.btn_white {
  color: #FF5E6D;
  background-color: #fff;
  border-color: #fff;
}

.btn_white:hover,
.btn_white:active,
.btn_white:focus {
  color: #fff;
  background-color: #FF5E6D;
  border-color: #FF5E6D;
}

/* lists */
.list_lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list_lang::before {
  content: "";
  height: 13px;
  width: 1px;
  background-color: #929292;
  display: inline-block;
  margin-right: 0.9375rem;
}
.list_lang li {
  font-weight: 500;
  font-size: 1rem;
  color: #929292;
}
.list_lang li:not(:last-child) {
  margin-right: 0.8125rem;
}
.list_lang li a {
  font-weight: 500;
  font-size: 1rem;
  color: #929292;
  line-height: 1.5;
}
.list_lang li a .current, .list_lang li a:hover, .list_lang li a:active, .list_lang li a:focus {
  color: #FF5E6D;
}

.list_social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list_social li:not(:last-child) {
  margin-right: 1.25rem;
}
.list_social li a {
  line-height: 0.8;
  display: inline-block;
}

/* forms */
textarea,
input:not([type=checkbox]):not([type=radio]) {
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 1.25rem 2rem;
  background: #FFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.8125rem;
  width: 100%;
  font: inherit;
}

input:not([type=checkbox]):not([type=radio]):hover,
input:not([type=checkbox]):not([type=radio]):focus {
  outline: none;
  box-shadow: none;
}

label,
.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

textarea {
  resize: vertical;
  max-height: 300px;
}
textarea.form_line {
  height: 1.9375rem;
  min-height: 1.9375rem;
  overflow: hidden;
  /* placeholder */
}
textarea.form_line::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
textarea.form_line::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
textarea.form_line:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
textarea.form_line:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.form_line {
  /* placeholder */
}
.form_line::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.form_line::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.form_line:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.form_line:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.form_line,
input:not([type=checkbox]):not([type=radio]).form_line {
  padding: 0 0 0.5625rem;
  background-color: transparent;
  border-radius: 0;
  border-width: 0 0 1px;
  font-size: 0.875rem;
}

.form_wrapp + .form_wrapp {
  margin-top: 1.875rem;
}
.form_wrapp:last-child {
  margin-top: 2.75rem;
}

.form_col {
  padding: 0 1.5rem;
  flex: 1 1;
}

.form_col:first-child {
  padding-left: 0;
}

.form_col:last-child {
  padding-right: 0;
}

/* Theme colors */
.bg_black {
  background-color: #191718;
}

.text-red {
  color: #FF5E6D;
}

.text-dark {
  color: #333;
}

.text-white {
  color: #fff;
}

.text-dark-gray {
  color: #777;
}

.text-underline {
  text-decoration: underline;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.ml-auto {
  margin-left: auto;
}

.d-none {
  display: none !important;
}

/* font-weight */
.weight_thin {
  font-weight: 100;
}

.weight_extra_light {
  font-weight: 200;
}

.weight_light {
  font-weight: 300;
}

.weight_normal {
  font-weight: 400;
}

.weight_medium {
  font-weight: 500;
}

.weight_semi_bold {
  font-weight: 600;
}

.weight_bold {
  font-weight: 700;
}

.weight_extra_bold {
  font-weight: 800;
}

.weight_extra_heavy {
  font-weight: 900;
}

/* Header */
/* btn_hamburger */
.btn_hamburger {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  padding: 6px 5px;
  margin: 0;
  flex: none;
  border: none;
  outline: none;
  font-size: 0;
  line-height: 0;
  border-radius: 0.25rem;
  background: rgba(25, 23, 24, 0.8);
}
.btn_hamburger .btn_hamburger_inner {
  position: relative;
  width: 29px;
  height: 21px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  flex: none;
}
.btn_hamburger .btn_hamburger_line {
  height: 2.86px;
  background: #fff;
  display: block;
  border-radius: 4px;
  margin-left: auto;
  transition: all 0.2s ease;
  flex: none;
}
.btn_hamburger .btn_hamburger_line:nth-child(1) {
  width: 29px;
}
.btn_hamburger .btn_hamburger_line:nth-child(2) {
  width: 19px;
}
.btn_hamburger .btn_hamburger_line:nth-child(3) {
  width: 22px;
}
.btn_hamburger.active {
  transition: all 0.2s ease 0.1s;
  background-color: #fff;
  transform: rotateY(-180deg);
}
.btn_hamburger.active .btn_hamburger_line {
  background: #191718;
}

/* header */
.header {
  background-color: transparent;
  padding: 1.5625rem 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transition: background-color 0.2s ease 0.1s;
  z-index: 999;
  width: 100%;
}
.header .header_main_btn {
  background-color: transparent;
}
.header.sticky {
  position: fixed;
  background-color: #fff;
}
.header.sticky .header_logo_main {
  display: none;
}
.header.sticky .header_logo_secondary {
  display: block;
}
.header.sticky .header_logo {
  margin-right: 0;
}
.header.sticky .header_menu {
  margin: auto;
  padding: 0 0.9375rem;
}
.header.sticky .header_menu:not(:last-child) {
  margin-right: auto;
}
.header.sticky .header_menu li a {
  opacity: 1;
  color: #000;
}
.header.sticky .header_nav {
  flex: 1 1 100%;
}
.header.sticky .header_tel {
  display: none;
}
.header.sticky .list_lang {
  display: none;
}
.header.sticky .header_main_btn {
  color: #fff;
  background-color: #FF5E6D;
  border-color: #FF5E6D;
}
.header.sticky .header_main_btn:not(:only-child):first-child {
  margin-right: 0;
}
.header.sticky .header_main_btn:hover, .header.sticky .header_main_btn:active, .header.sticky .header_main_btn:focus {
  color: #fff;
  opacity: 0.8;
}
.header .header_logo_secondary {
  display: none;
}

.header .header_logo {
  margin-right: 8.75rem;
  flex: none;
}

.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_nav .header_menu:not(:last-child) {
  margin-right: 1.875rem;
}

.header_group {
  display: inline-flex;
  align-items: center;
}
.header_group > * {
  flex: none;
}
.header_group > *:not(:last-child) {
  margin-right: 1.875rem;
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header_menu li:not(:last-child) {
  margin-right: 2.4375rem;
}
.header_menu li a {
  color: #fff;
  font-weight: 500;
  opacity: 0.8;
}
.header_menu li a.current {
  font-weight: 600;
}
.header_menu li a:hover, .header_menu li a:active, .header_menu li a:focus {
  color: #fff;
  opacity: 1;
}

.header_tel {
  font-size: 1.125rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  opacity: 0.8;
}
.header_tel:not(:last-child) {
  margin-right: 1.25rem;
}
.header_tel svg {
  flex: none;
  fill: #fff;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  transition: all 0.3s ease-in-out;
}
.header_tel:hover svg, .header_tel:active svg, .header_tel:focus svg {
  fill: #FF5E6D;
  transition: all 0.3s ease-in-out;
}

/* main */
.main {
  min-height: 100%;
}

.btn_to_top {
  position: fixed;
  z-index: 999;
  right: 2.1875rem;
  bottom: 2.1875rem;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FF5E6D;
  box-shadow: 0px 4px 10px rgba(175, 9, 24, 0.3);
  opacity: 1 !important;
}
.btn_to_top:hover, .btn_to_top:active, .btn_to_top:focus {
  opacity: 0.7 !important;
}

/* footer */
.footer {
  padding: 10.375rem 0 0;
  background: rgba(25, 23, 24, 0.9) no-repeat 50% 50%/cover;
  position: relative;
  z-index: 3;
  color: #fff;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(25, 23, 24, 0.9);
  z-index: -1;
}
.footer .form_line {
  color: #fff;
}
.footer .footer_logo {
  margin-right: 3.125rem;
}
.footer .footer_form h4 {
  margin-bottom: 0.625rem;
}
.footer .footer_form p:not(:last-child):not([class]) {
  margin-bottom: 3.125rem;
}
.footer .footer_main {
  margin-top: -10.375rem;
  display: flex;
  justify-content: flex-start;
  background: #191718;
  transform: translateY(-50%);
  margin-bottom: 0.8125rem;
}
.footer .footer_main .btn {
  max-width: 517px;
  width: 100%;
  font-size: 1.5rem;
  box-shadow: none;
  font-weight: 600;
}
.footer .footer_main .btn:hover, .footer .footer_main .btn:active, .footer .footer_main .btn:focus {
  transform: none;
}
.footer .footer_main .btn img {
  flex: none;
  display: inline-block;
  margin-right: 1.1875rem;
}
.footer .footer_middle {
  padding-bottom: 4.0625rem;
}
.footer .footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
}
.footer .footer_bottom_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer_bottom .footer_bottom_lists {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer_bottom .footer_bottom_lists ul:not(:last-child) {
  margin-right: 4.8125rem;
}
.footer .footer_bottom .list_social li a:hover, .footer .footer_bottom .list_social li a:active, .footer .footer_bottom .list_social li a:focus {
  opacity: 0.7;
}
.footer .footer_copyright {
  text-align: center;
  background: #191718;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.75rem;
  line-height: 2.17;
}
.footer .wrapp_testimonial_slider h6 {
  margin-bottom: 1.875rem;
}

.footer_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer_menu:not(:last-child) {
  margin: 0 1rem;
}
.footer_menu li:not(:last-child) {
  margin-right: 1.875rem;
}
.footer_menu li a {
  color: #fff;
  letter-spacing: 0.07em;
}
.footer_menu li a:hover, .footer_menu li a:active, .footer_menu li a:focus {
  color: #FF5E6D;
}

.footer_main_list {
  display: flex;
  padding: 2.9375rem 1.25rem 2.9375rem 4.9375rem;
  position: relative;
  z-index: 3;
}
.footer_main_list::before {
  content: "";
  background: url("../images/map.svg") no-repeat 10px 16px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.15;
  z-index: -1;
}
.footer_main_list li {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 146.19%;
  color: #FF5E6D;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
}
.footer_main_list li:not(:last-child) {
  margin-right: 1.25rem;
  padding-right: 1.25rem;
  border-right: 1px solid #FFF;
}
.footer_main_list li span {
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.25;
  color: #FFF;
  padding-left: 0.625rem;
  flex: 1 0 auto;
}

.testimonial_slider {
  padding-bottom: 3.8125rem;
}
.testimonial_slider .owl-item {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.testimonial_slider .owl-item.active + .owl-item {
  opacity: 0.6;
}
.testimonial_slider .owl-item.active + .owl-item + .owl-item {
  opacity: 0.3;
}

.owl-nav-wrapp {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.25rem;
  position: relative;
  font-size: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.owl-nav-wrapp .owl-next,
.owl-nav-wrapp .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 15px;
  color: #fff;
}
.owl-nav-wrapp .owl-next:hover,
.owl-nav-wrapp .owl-prev:hover {
  opacity: 0.7;
}
.owl-nav-wrapp .owl-next {
  right: 0;
}
.owl-nav-wrapp .owl-prev {
  left: 0;
}

.owl-dots .owl-dot {
  transform: scale(0.75);
}
.owl-dots .owl-dot span {
  position: relative;
  background: rgba(255, 255, 255, 0.6) !important;
}
.owl-dots .owl-dot.active {
  transform: scale(1);
}
.owl-dots .owl-dot.active span {
  background-color: #fff !important;
}
.owl-dots .owl-dot.active span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  width: 220%;
  height: 220%;
  border-radius: 50%;
}

.box_testimonial_slider {
  width: 300px;
}
.box_testimonial_slider .testimonial_slider_quote {
  margin-bottom: 1.25rem;
}
.box_testimonial_slider .testimonial_slider_quote img {
  width: auto;
}
.box_testimonial_slider p {
  font-size: 0.875rem;
  line-height: 1.4;
}
.box_testimonial_slider p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.box_testimonial_slider .testimonial_slider_position {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  margin-bottom: 0.25rem;
}
.box_testimonial_slider .testimonial_slider_company {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #E0E0E0;
}

/* SECTION */
.wrapp_video {
  padding: 0 0 52% !important;
  position: relative;
  background-color: #000;
  overflow: hidden;
}
.wrapp_video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.section_main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 297px;
  padding-bottom: 279px;
}
.section_main .main_desc {
  text-align: center;
}
.section_main .main_logo {
  margin-bottom: 30px;
}
.section_main .main_title {
  font-weight: 600;
  font-size: 64px;
  line-height: 110%;
  color: #FFF;
  max-width: 757px;
  width: 100%;
  margin: 0 auto 15px;
}
.section_main .main_subtitle {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #FFF;
  max-width: 479px;
  width: 100%;
  margin: 0 auto;
}
.section_main .main_subtitle:not(:last-child) {
  margin-bottom: 30px;
}
.section_main .btn {
  min-width: 200px;
}
.section_main .wrapp_video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  padding: 0 !important;
}
.section_main .wrapp_video video {
  z-index: -1;
}
.section_main .wrapp_video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.section_offset1 {
  padding-top: 7.75rem;
  padding-bottom: 7.75rem;
}

/* SECTION  */
.section_tile_half {
  display: flex;
}
.section_tile_half .box_tile_half_bg {
  width: 50%;
  background: #000 no-repeat 50% 50%/cover;
}
.section_tile_half .box_tile_half_desc {
  width: 50%;
  padding: 10rem 13.5625rem 9.8125rem 9.25rem;
  background: #191718;
  color: #fff;
}
.section_tile_half .box_tile_half_desc .h1,
.section_tile_half .box_tile_half_desc h1 {
  color: #fff;
  line-height: 1.3;
}
.section_tile_half .box_tile_half_desc p:not(:last-child):not([class]) {
  margin-bottom: 6.25rem;
}
.section_tile_half .box_tile_half_desc .link_arrow_right {
  color: #fff;
}
.section_tile_half .box_tile_half_desc .link_arrow_right:hover, .section_tile_half .box_tile_half_desc .link_arrow_right:hover, .section_tile_half .box_tile_half_desc .link_arrow_right:hover {
  color: #FF5E6D;
}

/* SECTION  */
.section_tile_triple {
  display: flex;
  flex-wrap: wrap;
}
.section_tile_triple .box_tile_triple {
  flex: 0 0 33%;
  height: 450px;
  background: #ccc no-repeat 50% 50%/cover;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.section_tile_triple .box_tile_triple .wrapp_tile_triple_dropdown {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  visibility: hidden;
  overflow-y: auto;
  height: 100%;
  padding: 1.25rem 2.875rem 1.25rem 1rem;
  margin-right: -1.875rem;
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
.section_tile_triple .box_tile_triple .tile_triple_dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 160%;
  text-align: center;
  min-height: 100%;
}
.section_tile_triple .box_tile_triple .tile_triple_dropdown li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.section_tile_triple .box_tile_triple:hover .wrapp_tile_triple_dropdown {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: auto;
}
.section_tile_triple .box_tile_triple .tile_triple_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 32px;
  text-transform: capitalize;
  width: 100%;
  text-align: center;
  padding: 0.625rem;
}
.section_tile_triple .box_tile_triple::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.section_tile_triple .box_tile_triple:nth-child(even)::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
}
.section_tile_triple .box_tile_triple:nth-child(even) .tile_triple_title {
  color: #191718;
}
.section_tile_triple .box_tile_triple:nth-child(even) .wrapp_tile_triple_dropdown {
  background-color: #fff;
  color: #191718;
}
.section_tile_triple .box_tile_triple:nth-child(odd)::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}
.section_tile_triple .box_tile_triple:nth-child(odd) .tile_triple_title {
  color: #fff;
}
.section_tile_triple .box_tile_triple:nth-child(odd) .wrapp_tile_triple_dropdown {
  background-color: #000;
  color: #FFF;
}

/* SECTION  */
.section_needs {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}
.section_needs .wrapp_needs .box_needs {
  position: relative;
  background: #FFF;
  border: 1px solid #000;
  padding: 2rem 2rem 2rem 1.6875rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.5s ease-in-out;
}
.section_needs .wrapp_needs .box_needs .needs_link_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.section_needs .wrapp_needs .box_needs .h3 {
  margin-bottom: 2.0625rem;
  line-height: 1.5;
}
.section_needs .wrapp_needs .box_needs .needs_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section_needs .wrapp_needs .box_needs .needs_footer > img {
  transition: all 0.3s ease-in-out;
}
.section_needs .wrapp_needs .box_needs:hover {
  background-color: #000;
}
.section_needs .wrapp_needs .box_needs:hover .h3 {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.section_needs .wrapp_needs .box_needs:hover .link_arrow_right {
  color: #fff;
}
.section_needs .wrapp_needs .box_needs:hover .needs_footer > img {
  filter: brightness(0) invert(1);
}

/* SECTION  */
.section_about {
  padding-top: 4.9375rem;
  padding-bottom: 7.25rem;
  background: #191718 url("../images/bg-target.jpg") no-repeat 50% 100%/cover;
}
.section_about .h1 {
  margin-bottom: 2.5rem;
}
.section_about .col-6:first-child {
  padding-top: 5.8125rem;
}
.section_about p:not(:last-child):not([class]) {
  margin-bottom: 3.75rem;
}

/* SECTION  */
.section_choose {
  padding-top: 8.125rem;
  padding-bottom: 12.6875rem;
}
.section_choose .section_subtitle:not(:last-child) {
  margin-bottom: 3.625rem;
}
.section_choose .wrapp_choose {
  counter-reset: count;
}
.section_choose .wrapp_choose .box_choose {
  counter-increment: count;
  padding-right: 2.5rem;
}
.section_choose .wrapp_choose .box_choose::before {
  content: counter(count, decimal-leading-zero) ".";
  display: block;
  font-weight: 600;
  font-size: 48px;
  line-height: 130%;
  color: #FF5E6D;
  margin-bottom: 0.625rem;
}

/* SECTION  */
.section_error .wrapp_video {
  padding: 10% 0 10% !important;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_error .wrapp_video video {
  z-index: 0;
  opacity: 0.5;
}

.box_error {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 15px;
}
.box_error .error_code:not(:last-child) {
  margin-bottom: 17px;
}
.box_error .error_messages:not(:last-child) {
  margin-bottom: 26px;
}
.box_error .error_status:not(:last-child) {
  margin-bottom: 57px;
}
.box_error .btn {
  letter-spacing: 0.02em;
  min-width: 300px;
}