/*=================================
=            Animation            =
=================================*/
.element_anim, .element_anim_1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.element_anim.start_anim, .element_anim_1.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
}

.element_anim_2.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
}

.element_anim_3.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_4 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
}

.element_anim_4.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_5 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.4s;
  transition: all 0.3s ease-in-out 0.4s;
}

.element_anim_5.start_anim {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.fade_anim_1 {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.fade_anim_1.start_anim {
  opacity: 1;
}

.fade_anim_2 {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  transition: all 0.3s ease-in-out 0.1s;
}

.fade_anim_2.start_anim {
  opacity: 1;
}

.fade_anim_3 {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  transition: all 0.3s ease-in-out 0.2s;
}

.fade_anim_3.start_anim {
  opacity: 1;
}

/*=====  End of Animation  ======*/
/*=================================
=            Colors              =
=================================*/
.navy_blue {
  color: #191D45;
}

.navy_blue_bg {
  background-color: #191D45;
}

.orange {
  color: #FF9500;
}

.orange_bg {
  background-color: #FF9500;
}

.white {
  color: #fff;
}

.white_bg {
  background-color: #fff;
}

.light_grey {
  color: #F7F7F7;
}

.light_grey_bg {
  background-color: #F7F7F7;
}

.light_purple {
  color: #5A5E84;
}

.light_purple_bg {
  background-color: #5A5E84;
}

.dark_blue {
  color: #06081C;
}

.dark_blue_bg {
  background-color: #06081C;
}

.grey {
  color: #C0C0C0;
}

.grey_bg {
  background-color: #C0C0C0;
}

/*=================================
=            Btns               =
=================================*/
.basic_btn, .dark_submit {
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Gotham", sans-serif;
  font-weight: 800;
}

.basic_btn {
  display: inline-block;
  height: 56px;
  text-align: center;
  line-height: 56px;
  background-color: #FF9500;
  color: #191D45;
  border: 1px solid #FF9500;
}

@media screen and (min-width: 1025px) {
  .basic_btn:hover {
    background-color: #fff;
  }
}

.dark_submit {
  height: 48px;
  border: 1px solid #FF9500;
  background-color: transparent;
  color: #FF9500;
  line-height: 48px;
}

@media screen and (min-width: 1025px) {
  .dark_submit:hover {
    background-color: #FF9500;
    color: #fff;
  }
}

.close_cross {
  width: 44px;
  height: 44px;
  background-color: #FF9500;
  position: relative;
  cursor: pointer;
}

.close_cross::before, .close_cross::after {
  content: "";
  position: absolute;
  background-color: #191D45;
  width: 26px;
  height: 5px;
  top: calc(50% - 2px);
  left: calc(50% - 13px);
}

.close_cross::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close_cross::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arrow_left, .arrow_right {
  width: 56px;
  height: 56px;
  background-color: #FF9500;
  cursor: pointer;
  position: relative;
  border: 1px solid #FF9500;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.arrow_left::before, .arrow_left::after, .arrow_right::before, .arrow_right::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #191D45;
  left: calc(50% - 6px);
}

.arrow_left::before, .arrow_right::before {
  top: calc(50% + 3px);
}

.arrow_left::after, .arrow_right::after {
  top: calc(50% - 4px);
}

@media screen and (min-width: 1025px) {
  .arrow_left:hover, .arrow_right:hover {
    background-color: #fff;
  }
}

.arrow_left {
  border-radius: 4px 0 0 4px;
}

.arrow_left::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arrow_left::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arrow_right {
  border-radius: 0 4px 4px 0;
}

.arrow_right::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.arrow_right::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.learn_more {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-right: 17px;
}

.learn_more img {
  margin-left: 6px;
}

@media screen and (min-width: 1025px) {
  .learn_more:hover {
    color: #FF9500;
  }
}

/*=================================
=            Fonts               =
=================================*/
h1, h2, h3, h4 {
  margin: 0;
}

.basic44 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.37px;
  line-height: 52px;
}

@media screen and (max-width: 767px) {
  .basic44 {
    font-size: 36px;
    letter-spacing: -1.13px;
    line-height: 42px;
  }
}

.basic32 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .basic32 {
    font-size: 24px;
    letter-spacing: -0.75px;
    line-height: 28px;
  }
}

.basic24 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.2px;
  line-height: 32px;
}

@media screen and (max-width: 767px) {
  .basic24 {
    font-size: 22px;
    letter-spacing: -0.69px;
    line-height: 28px;
  }
}

.basic22 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.46px;
  line-height: 28px;
}

.basic18 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 22px;
}

@media screen and (max-width: 767px) {
  .basic18 {
    font-size: 16px;
    letter-spacing: -0.18px;
    line-height: 20px;
  }
  .basic18.big_mobile {
    font-size: 18px;
    letter-spacing: -0.3px;
    line-height: 22px;
  }
}

.basic16 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 20px;
}

.basic14 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.44px;
}

.basic14.b14500 {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .basic14 {
    font-size: 12px;
    line-height: 14px;
  }
  .basic14.big_mobile {
    font-size: 14px;
    line-height: 32px;
  }
}

.basic12 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.55px;
  line-height: 24px;
}

.gotham16, .gotham14, .gotham12, .gotham10 {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
}

.gotham16 {
  font-size: 16px;
  text-transform: uppercase;
}

.gotham14 {
  font-size: 14px;
  letter-spacing: -0.44px;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  .gotham14 {
    font-size: 12px;
  }
  .gotham14.big_mobile {
    font-size: 14px;
  }
}

.gotham12 {
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.gotham10 {
  font-size: 10px;
  font-weight: 900;
  line-height: 24px;
}

.wysiwyg iframe {
  width: 100%;
  height: 473px;
}

@media screen and (max-width: 1024px) {
  .wysiwyg iframe {
    height: 387px;
  }
}

@media screen and (max-width: 767px) {
  .wysiwyg iframe {
    height: 158px;
  }
}

.wysiwyg h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 52px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .wysiwyg h1 {
    font-size: 24px;
    letter-spacing: -0.75px;
    line-height: 28px;
  }
}

.wysiwyg h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .wysiwyg h2 {
    font-size: 24px;
    letter-spacing: -0.75px;
    line-height: 28px;
  }
}

.wysiwyg h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.75px;
  line-height: 32px;
}

@media screen and (max-width: 767px) {
  .wysiwyg h3 {
    font-size: 22px;
    letter-spacing: -0.69px;
    line-height: 28px;
  }
}

.wysiwyg a {
  text-decoration: underline;
}

.wysiwyg a:link {
  color: #06081C;
}

.wysiwyg a:visited {
  color: #5A5E84;
}

.wysiwyg ul, .wysiwyg ol {
  margin: 0;
  padding-left: 16px;
}

.wysiwyg ul li, .wysiwyg ol li {
  color: #191D45;
  font-size: 14px;
  letter-spacing: -0.39px;
  line-height: 23px;
}

.wysiwyg img {
  max-width: 100%;
}

.wysiwyg img.alignright {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.wysiwyg img.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.wysiwyg img.aligncenter {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*=================================
=            Forms              =
=================================*/
.dark_input {
  border: 0;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background-color: #0d102d;
  color: #a8a8a8;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
  padding-left: 12px;
  margin-bottom: 16px;
}

.dark_input::-webkit-input-placeholder {
  opacity: 1;
}

.dark_input::-moz-placeholder {
  opacity: 1;
}

.dark_input:-moz-placeholder {
  opacity: 1;
}

.dark_input:-ms-input-placeholder {
  opacity: 1;
}

.basic_form.white_form, .wysiwyg.white_form {
  background-color: #F7F7F7;
}

.basic_form.white_form input[type="text"], .basic_form.white_form input[type="email"], .basic_form.white_form input[type="password"], .basic_form.white_form input[type="tel"], .basic_form.white_form textarea, .wysiwyg.white_form input[type="text"], .wysiwyg.white_form input[type="email"], .wysiwyg.white_form input[type="password"], .wysiwyg.white_form input[type="tel"], .wysiwyg.white_form textarea {
  background-color: #fff;
}

.basic_form.white_form .selectboxit-container .selectboxit, .wysiwyg.white_form .selectboxit-container .selectboxit {
  background-color: #fff;
}

.basic_form.white_form .selectboxit-container .selectboxit-option, .wysiwyg.white_form .selectboxit-container .selectboxit-option {
  background-color: #fff;
}

.basic_form.dark_form, .wysiwyg.dark_form {
  background-color: #fff;
}

.basic_form.dark_form input[type="text"], .basic_form.dark_form input[type="email"], .basic_form.dark_form input[type="password"], .basic_form.dark_form input[type="tel"], .basic_form.dark_form textarea, .wysiwyg.dark_form input[type="text"], .wysiwyg.dark_form input[type="email"], .wysiwyg.dark_form input[type="password"], .wysiwyg.dark_form input[type="tel"], .wysiwyg.dark_form textarea {
  background-color: #F7F7F7;
}

.basic_form.dark_form .selectboxit-container .selectboxit, .wysiwyg.dark_form .selectboxit-container .selectboxit {
  background-color: #F7F7F7;
}

.basic_form.dark_form .selectboxit-container .selectboxit-option, .wysiwyg.dark_form .selectboxit-container .selectboxit-option {
  background-color: #F7F7F7;
}

.basic_form ._form-content, .wysiwyg ._form-content {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.basic_form ._form-content > div, .wysiwyg ._form-content > div {
  width: 100%;
}

.basic_form form, .wysiwyg form {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}

.basic_form form .selectboxit-container, .wysiwyg form .selectboxit-container {
  margin-bottom: 24px;
}

.basic_form form button, .wysiwyg form button {
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Gotham",sans-serif;
  font-weight: 800;
  display: inline-block;
  height: 56px;
  text-align: center;
  line-height: 56px;
  background-color: #FF9500;
  color: #191D45;
  border: 1px solid #FF9500;
}

@media screen and (min-width: 1025px) {
  .basic_form form button:hover, .wysiwyg form button:hover {
    background-color: #fff;
  }
}

.basic_form form button.w_100, .wysiwyg form button.w_100 {
  width: 100%;
}

.basic_form form ._form-branding, .wysiwyg form ._form-branding {
  display: none;
}

.basic_form form ._form-title, .wysiwyg form ._form-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.46px;
  line-height: 28px;
}

.basic_form form ._html-code, .wysiwyg form ._html-code {
  font-family: "Gotham",sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.44px;
  line-height: 20px;
}

.basic_form label, .basic_form ._error, .wysiwyg label, .wysiwyg ._error {
  display: none;
}

.basic_form .radio_btns .text_wrap, .wysiwyg .radio_btns .text_wrap {
  white-space: nowrap;
  padding-right: 20px;
}

.basic_form .radio_btns .wpcf7-form-control-wrap, .wysiwyg .radio_btns .wpcf7-form-control-wrap {
  width: 100%;
  margin: 0 10px;
}

.basic_form .g-recaptcha, .wysiwyg .g-recaptcha {
  margin-bottom: 24px;
}

.basic_form input[type="text"], .basic_form input[type="email"], .basic_form input[type="password"], .basic_form input[type="tel"], .wysiwyg input[type="text"], .wysiwyg input[type="email"], .wysiwyg input[type="password"], .wysiwyg input[type="tel"] {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  color: #191D45;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
  border: 1px solid #F7F7F7;
  padding-left: 12px;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.basic_form input[type="text"].active_click, .basic_form input[type="email"].active_click, .basic_form input[type="password"].active_click, .basic_form input[type="tel"].active_click, .wysiwyg input[type="text"].active_click, .wysiwyg input[type="email"].active_click, .wysiwyg input[type="password"].active_click, .wysiwyg input[type="tel"].active_click {
  border: 1px solid #FF9500;
}

.basic_form input[type="text"]::-webkit-input-placeholder, .basic_form input[type="email"]::-webkit-input-placeholder, .basic_form input[type="password"]::-webkit-input-placeholder, .basic_form input[type="tel"]::-webkit-input-placeholder, .wysiwyg input[type="text"]::-webkit-input-placeholder, .wysiwyg input[type="email"]::-webkit-input-placeholder, .wysiwyg input[type="password"]::-webkit-input-placeholder, .wysiwyg input[type="tel"]::-webkit-input-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form input[type="text"]::-moz-placeholder, .basic_form input[type="email"]::-moz-placeholder, .basic_form input[type="password"]::-moz-placeholder, .basic_form input[type="tel"]::-moz-placeholder, .wysiwyg input[type="text"]::-moz-placeholder, .wysiwyg input[type="email"]::-moz-placeholder, .wysiwyg input[type="password"]::-moz-placeholder, .wysiwyg input[type="tel"]::-moz-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form input[type="text"]:-moz-placeholder, .basic_form input[type="email"]:-moz-placeholder, .basic_form input[type="password"]:-moz-placeholder, .basic_form input[type="tel"]:-moz-placeholder, .wysiwyg input[type="text"]:-moz-placeholder, .wysiwyg input[type="email"]:-moz-placeholder, .wysiwyg input[type="password"]:-moz-placeholder, .wysiwyg input[type="tel"]:-moz-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form input[type="text"]:-ms-input-placeholder, .basic_form input[type="email"]:-ms-input-placeholder, .basic_form input[type="password"]:-ms-input-placeholder, .basic_form input[type="tel"]:-ms-input-placeholder, .wysiwyg input[type="text"]:-ms-input-placeholder, .wysiwyg input[type="email"]:-ms-input-placeholder, .wysiwyg input[type="password"]:-ms-input-placeholder, .wysiwyg input[type="tel"]:-ms-input-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form input[type="text"].wpcf7-not-valid, .basic_form input[type="text"].parsley-error, .basic_form input[type="text"]._has_error, .basic_form input[type="email"].wpcf7-not-valid, .basic_form input[type="email"].parsley-error, .basic_form input[type="email"]._has_error, .basic_form input[type="password"].wpcf7-not-valid, .basic_form input[type="password"].parsley-error, .basic_form input[type="password"]._has_error, .basic_form input[type="tel"].wpcf7-not-valid, .basic_form input[type="tel"].parsley-error, .basic_form input[type="tel"]._has_error, .wysiwyg input[type="text"].wpcf7-not-valid, .wysiwyg input[type="text"].parsley-error, .wysiwyg input[type="text"]._has_error, .wysiwyg input[type="email"].wpcf7-not-valid, .wysiwyg input[type="email"].parsley-error, .wysiwyg input[type="email"]._has_error, .wysiwyg input[type="password"].wpcf7-not-valid, .wysiwyg input[type="password"].parsley-error, .wysiwyg input[type="password"]._has_error, .wysiwyg input[type="tel"].wpcf7-not-valid, .wysiwyg input[type="tel"].parsley-error, .wysiwyg input[type="tel"]._has_error {
  border: 1px solid #ff0000;
  color: #ff0000;
}

.basic_form input[type="text"].wpcf7-not-valid::-webkit-input-placeholder, .basic_form input[type="text"].parsley-error::-webkit-input-placeholder, .basic_form input[type="text"]._has_error::-webkit-input-placeholder, .basic_form input[type="email"].wpcf7-not-valid::-webkit-input-placeholder, .basic_form input[type="email"].parsley-error::-webkit-input-placeholder, .basic_form input[type="email"]._has_error::-webkit-input-placeholder, .basic_form input[type="password"].wpcf7-not-valid::-webkit-input-placeholder, .basic_form input[type="password"].parsley-error::-webkit-input-placeholder, .basic_form input[type="password"]._has_error::-webkit-input-placeholder, .basic_form input[type="tel"].wpcf7-not-valid::-webkit-input-placeholder, .basic_form input[type="tel"].parsley-error::-webkit-input-placeholder, .basic_form input[type="tel"]._has_error::-webkit-input-placeholder, .wysiwyg input[type="text"].wpcf7-not-valid::-webkit-input-placeholder, .wysiwyg input[type="text"].parsley-error::-webkit-input-placeholder, .wysiwyg input[type="text"]._has_error::-webkit-input-placeholder, .wysiwyg input[type="email"].wpcf7-not-valid::-webkit-input-placeholder, .wysiwyg input[type="email"].parsley-error::-webkit-input-placeholder, .wysiwyg input[type="email"]._has_error::-webkit-input-placeholder, .wysiwyg input[type="password"].wpcf7-not-valid::-webkit-input-placeholder, .wysiwyg input[type="password"].parsley-error::-webkit-input-placeholder, .wysiwyg input[type="password"]._has_error::-webkit-input-placeholder, .wysiwyg input[type="tel"].wpcf7-not-valid::-webkit-input-placeholder, .wysiwyg input[type="tel"].parsley-error::-webkit-input-placeholder, .wysiwyg input[type="tel"]._has_error::-webkit-input-placeholder {
  color: #ff0000;
}

.basic_form input[type="text"].wpcf7-not-valid::-moz-placeholder, .basic_form input[type="text"].parsley-error::-moz-placeholder, .basic_form input[type="text"]._has_error::-moz-placeholder, .basic_form input[type="email"].wpcf7-not-valid::-moz-placeholder, .basic_form input[type="email"].parsley-error::-moz-placeholder, .basic_form input[type="email"]._has_error::-moz-placeholder, .basic_form input[type="password"].wpcf7-not-valid::-moz-placeholder, .basic_form input[type="password"].parsley-error::-moz-placeholder, .basic_form input[type="password"]._has_error::-moz-placeholder, .basic_form input[type="tel"].wpcf7-not-valid::-moz-placeholder, .basic_form input[type="tel"].parsley-error::-moz-placeholder, .basic_form input[type="tel"]._has_error::-moz-placeholder, .wysiwyg input[type="text"].wpcf7-not-valid::-moz-placeholder, .wysiwyg input[type="text"].parsley-error::-moz-placeholder, .wysiwyg input[type="text"]._has_error::-moz-placeholder, .wysiwyg input[type="email"].wpcf7-not-valid::-moz-placeholder, .wysiwyg input[type="email"].parsley-error::-moz-placeholder, .wysiwyg input[type="email"]._has_error::-moz-placeholder, .wysiwyg input[type="password"].wpcf7-not-valid::-moz-placeholder, .wysiwyg input[type="password"].parsley-error::-moz-placeholder, .wysiwyg input[type="password"]._has_error::-moz-placeholder, .wysiwyg input[type="tel"].wpcf7-not-valid::-moz-placeholder, .wysiwyg input[type="tel"].parsley-error::-moz-placeholder, .wysiwyg input[type="tel"]._has_error::-moz-placeholder {
  color: #ff0000;
}

.basic_form input[type="text"].wpcf7-not-valid:-moz-placeholder, .basic_form input[type="text"].parsley-error:-moz-placeholder, .basic_form input[type="text"]._has_error:-moz-placeholder, .basic_form input[type="email"].wpcf7-not-valid:-moz-placeholder, .basic_form input[type="email"].parsley-error:-moz-placeholder, .basic_form input[type="email"]._has_error:-moz-placeholder, .basic_form input[type="password"].wpcf7-not-valid:-moz-placeholder, .basic_form input[type="password"].parsley-error:-moz-placeholder, .basic_form input[type="password"]._has_error:-moz-placeholder, .basic_form input[type="tel"].wpcf7-not-valid:-moz-placeholder, .basic_form input[type="tel"].parsley-error:-moz-placeholder, .basic_form input[type="tel"]._has_error:-moz-placeholder, .wysiwyg input[type="text"].wpcf7-not-valid:-moz-placeholder, .wysiwyg input[type="text"].parsley-error:-moz-placeholder, .wysiwyg input[type="text"]._has_error:-moz-placeholder, .wysiwyg input[type="email"].wpcf7-not-valid:-moz-placeholder, .wysiwyg input[type="email"].parsley-error:-moz-placeholder, .wysiwyg input[type="email"]._has_error:-moz-placeholder, .wysiwyg input[type="password"].wpcf7-not-valid:-moz-placeholder, .wysiwyg input[type="password"].parsley-error:-moz-placeholder, .wysiwyg input[type="password"]._has_error:-moz-placeholder, .wysiwyg input[type="tel"].wpcf7-not-valid:-moz-placeholder, .wysiwyg input[type="tel"].parsley-error:-moz-placeholder, .wysiwyg input[type="tel"]._has_error:-moz-placeholder {
  color: #ff0000;
}

.basic_form input[type="text"].wpcf7-not-valid:-ms-input-placeholder, .basic_form input[type="text"].parsley-error:-ms-input-placeholder, .basic_form input[type="text"]._has_error:-ms-input-placeholder, .basic_form input[type="email"].wpcf7-not-valid:-ms-input-placeholder, .basic_form input[type="email"].parsley-error:-ms-input-placeholder, .basic_form input[type="email"]._has_error:-ms-input-placeholder, .basic_form input[type="password"].wpcf7-not-valid:-ms-input-placeholder, .basic_form input[type="password"].parsley-error:-ms-input-placeholder, .basic_form input[type="password"]._has_error:-ms-input-placeholder, .basic_form input[type="tel"].wpcf7-not-valid:-ms-input-placeholder, .basic_form input[type="tel"].parsley-error:-ms-input-placeholder, .basic_form input[type="tel"]._has_error:-ms-input-placeholder, .wysiwyg input[type="text"].wpcf7-not-valid:-ms-input-placeholder, .wysiwyg input[type="text"].parsley-error:-ms-input-placeholder, .wysiwyg input[type="text"]._has_error:-ms-input-placeholder, .wysiwyg input[type="email"].wpcf7-not-valid:-ms-input-placeholder, .wysiwyg input[type="email"].parsley-error:-ms-input-placeholder, .wysiwyg input[type="email"]._has_error:-ms-input-placeholder, .wysiwyg input[type="password"].wpcf7-not-valid:-ms-input-placeholder, .wysiwyg input[type="password"].parsley-error:-ms-input-placeholder, .wysiwyg input[type="password"]._has_error:-ms-input-placeholder, .wysiwyg input[type="tel"].wpcf7-not-valid:-ms-input-placeholder, .wysiwyg input[type="tel"].parsley-error:-ms-input-placeholder, .wysiwyg input[type="tel"]._has_error:-ms-input-placeholder {
  color: #ff0000;
}

.basic_form textarea, .wysiwyg textarea {
  width: 100%;
  height: 120px;
  border-radius: 4px;
  color: #191D45;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
  border: 1px solid #F7F7F7;
  margin-bottom: 24px;
  padding: 11px 12px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  resize: none;
}

.basic_form textarea.active_click, .wysiwyg textarea.active_click {
  border: 1px solid #FF9500;
}

.basic_form textarea::-webkit-input-placeholder, .wysiwyg textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form textarea::-moz-placeholder, .wysiwyg textarea::-moz-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form textarea:-moz-placeholder, .wysiwyg textarea:-moz-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form textarea:-ms-input-placeholder, .wysiwyg textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a8a8a8;
}

.basic_form textarea.wpcf7-not-valid, .basic_form textarea.parsley-error, .basic_form textarea._has_error, .wysiwyg textarea.wpcf7-not-valid, .wysiwyg textarea.parsley-error, .wysiwyg textarea._has_error {
  border: 1px solid #ff0000;
  color: #ff0000;
}

.basic_form textarea.wpcf7-not-valid::-webkit-input-placeholder, .basic_form textarea.parsley-error::-webkit-input-placeholder, .basic_form textarea._has_error::-webkit-input-placeholder, .wysiwyg textarea.wpcf7-not-valid::-webkit-input-placeholder, .wysiwyg textarea.parsley-error::-webkit-input-placeholder, .wysiwyg textarea._has_error::-webkit-input-placeholder {
  color: #ff0000;
}

.basic_form textarea.wpcf7-not-valid::-moz-placeholder, .basic_form textarea.parsley-error::-moz-placeholder, .basic_form textarea._has_error::-moz-placeholder, .wysiwyg textarea.wpcf7-not-valid::-moz-placeholder, .wysiwyg textarea.parsley-error::-moz-placeholder, .wysiwyg textarea._has_error::-moz-placeholder {
  color: #ff0000;
}

.basic_form textarea.wpcf7-not-valid:-moz-placeholder, .basic_form textarea.parsley-error:-moz-placeholder, .basic_form textarea._has_error:-moz-placeholder, .wysiwyg textarea.wpcf7-not-valid:-moz-placeholder, .wysiwyg textarea.parsley-error:-moz-placeholder, .wysiwyg textarea._has_error:-moz-placeholder {
  color: #ff0000;
}

.basic_form textarea.wpcf7-not-valid:-ms-input-placeholder, .basic_form textarea.parsley-error:-ms-input-placeholder, .basic_form textarea._has_error:-ms-input-placeholder, .wysiwyg textarea.wpcf7-not-valid:-ms-input-placeholder, .wysiwyg textarea.parsley-error:-ms-input-placeholder, .wysiwyg textarea._has_error:-ms-input-placeholder {
  color: #ff0000;
}

.basic_form .two_inputs_wrap, .wysiwyg .two_inputs_wrap {
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-bottom: 24px;
}

.basic_form .two_inputs_wrap input, .wysiwyg .two_inputs_wrap input {
  width: calc(50% - 25px);
  margin: 0 11px;
}

.basic_form .two_inputs_wrap .selectboxit-container, .wysiwyg .two_inputs_wrap .selectboxit-container {
  width: calc(50% - 25px);
  margin: 0 11px;
}

.basic_form .two_inputs_wrap.parslay_ver, .wysiwyg .two_inputs_wrap.parslay_ver {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.basic_form .two_inputs_wrap.parslay_ver input, .wysiwyg .two_inputs_wrap.parslay_ver input {
  width: 100%;
  margin: 0;
}

.basic_form .two_inputs_wrap.parslay_ver > div, .wysiwyg .two_inputs_wrap.parslay_ver > div {
  width: calc(50% - 23px);
  margin: 0 11px;
  position: relative;
}

.basic_form .parsley-errors-list, .wysiwyg .parsley-errors-list {
  display: none;
}

@media screen and (max-width: 767px) {
  .basic_form .two_inputs_wrap, .wysiwyg .two_inputs_wrap {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
  .basic_form .two_inputs_wrap input, .wysiwyg .two_inputs_wrap input {
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }
  .basic_form .two_inputs_wrap .selectboxit-container, .wysiwyg .two_inputs_wrap .selectboxit-container {
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
  }
  .basic_form .two_inputs_wrap.parslay_ver, .wysiwyg .two_inputs_wrap.parslay_ver {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .basic_form .two_inputs_wrap.parslay_ver > div, .wysiwyg .two_inputs_wrap.parslay_ver > div {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

.basic_form .selectboxit-container, .wysiwyg .selectboxit-container {
  width: 100%;
  position: relative;
  display: inline-block;
  vertical-align: top;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}

.basic_form .selectboxit-container .selectboxit-text, .wysiwyg .selectboxit-container .selectboxit-text {
  max-width: 100% !important;
}

.basic_form .selectboxit-container *, .wysiwyg .selectboxit-container * {
  outline: none;
}

.basic_form .selectboxit-container.z_index, .wysiwyg .selectboxit-container.z_index {
  z-index: 5;
}

.basic_form .selectboxit-container.z_index .selectboxit, .wysiwyg .selectboxit-container.z_index .selectboxit {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border: 1px solid #FF9500;
  color: #191D45;
}

.basic_form .selectboxit-container .selectboxit-open, .wysiwyg .selectboxit-container .selectboxit-open {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border: 1px solid #FF9500 !important;
  color: #191D45 !important;
}

.basic_form .selectboxit-container .selectboxit, .wysiwyg .selectboxit-container .selectboxit {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  position: relative;
  color: #191D45;
  line-height: 48px;
  border: 1px solid #F7F7F7;
  border-radius: 4px;
  color: #191D45;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
}

.basic_form .selectboxit-container .selectboxit::before, .basic_form .selectboxit-container .selectboxit::after, .wysiwyg .selectboxit-container .selectboxit::before, .wysiwyg .selectboxit-container .selectboxit::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #FF9500;
  right: 10px;
}

.basic_form .selectboxit-container .selectboxit::before, .wysiwyg .selectboxit-container .selectboxit::before {
  top: 14px;
}

.basic_form .selectboxit-container .selectboxit::after, .wysiwyg .selectboxit-container .selectboxit::after {
  top: 26px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.basic_form .selectboxit-container .selectboxit.parslay_select_val, .wysiwyg .selectboxit-container .selectboxit.parslay_select_val {
  border: 1px solid #ff0000;
}

.basic_form .selectboxit-container .selectboxit.parslay_select_val .selectboxit-text[data-val=""], .wysiwyg .selectboxit-container .selectboxit.parslay_select_val .selectboxit-text[data-val=""] {
  color: #ff0000;
}

.basic_form .selectboxit-container .selectboxit-text[data-val=""], .wysiwyg .selectboxit-container .selectboxit-text[data-val=""] {
  color: #a8a8a8;
}

.basic_form .selectboxit-container span, .wysiwyg .selectboxit-container span {
  padding-left: 8px;
  height: 48px;
  line-height: 45px;
  text-indent: 18px;
  display: block;
}

.basic_form .selectboxit-container .selectboxit-option-icon-container, .wysiwyg .selectboxit-container .selectboxit-option-icon-container {
  display: none;
}

.basic_form .selectboxit-container .selectboxit-options, .wysiwyg .selectboxit-container .selectboxit-options {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  top: calc(100% - 3px);
  border: 1px solid #FF9500;
  border-top: 1px solid #C0C0C0;
}

.basic_form .selectboxit-container .selectboxit-option, .wysiwyg .selectboxit-container .selectboxit-option {
  background-color: #F7F7F7;
  padding: 11px 33px 10px 13px;
  color: #191D45;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
}

.basic_form .selectboxit-container .selectboxit-option.selectboxit-focus, .wysiwyg .selectboxit-container .selectboxit-option.selectboxit-focus {
  background-color: #C0C0C0;
}

.basic_form .selectboxit-container .selectboxit-option:last-child, .wysiwyg .selectboxit-container .selectboxit-option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.basic_form .selectboxit-container .selectboxit-option a, .wysiwyg .selectboxit-container .selectboxit-option a {
  text-decoration: none;
}

.basic_form .selectboxit-container .selectboxit-text, .wysiwyg .selectboxit-container .selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  position: relative;
  z-index: 1;
  width: 100%;
}

.basic_form .selectboxit-container .wpcf7-not-valid, .wysiwyg .selectboxit-container .wpcf7-not-valid {
  border: 1px solid #ff0000;
}

.basic_form .selectboxit-container .wpcf7-not-valid .selectboxit-text[data-val=""], .wysiwyg .selectboxit-container .wpcf7-not-valid .selectboxit-text[data-val=""] {
  color: #ff0000;
}

.basic_form .wpcf7-response-output, .basic_form .wpcf7-not-valid-tip, .wysiwyg .wpcf7-response-output, .wysiwyg .wpcf7-not-valid-tip {
  display: none !important;
}

.basic_form .error_wrap, .basic_form .error_wrap_textarea, .basic_form .select_p_error_wrap, .wysiwyg .error_wrap, .wysiwyg .error_wrap_textarea, .wysiwyg .select_p_error_wrap {
  margin: 0;
  display: inline;
  position: relative;
}

.basic_form .error_message, .basic_form .textarea_error, .wysiwyg .error_message, .wysiwyg .textarea_error {
  position: absolute;
  color: #ff0000;
  top: -2px;
  left: 23px;
  background-color: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
}

.basic_form .error_message.error_one, .basic_form .textarea_error.error_one, .wysiwyg .error_message.error_one, .wysiwyg .textarea_error.error_one {
  opacity: 1;
  pointer-events: all;
}

.basic_form .textarea_error, .wysiwyg .textarea_error {
  top: -108px;
  left: 11px;
}

.basic_form .input_error_message, .wysiwyg .input_error_message {
  width: calc(100% - 20px);
  top: -4px;
  left: 12px;
}

.basic_form .appselect_error_message, .wysiwyg .appselect_error_message {
  line-height: 40px;
  top: -12px;
  z-index: 99;
}

.basic_form .contact_select_error, .wysiwyg .contact_select_error {
  line-height: 40px;
  top: -13px;
  z-index: 99;
}

.basic_form .comment_ver, .wysiwyg .comment_ver {
  background-color: #F7F7F7;
  width: calc(100% - 55px);
}

.basic_form .com_area, .wysiwyg .com_area {
  top: 13px;
  left: 9px;
  width: calc(100% - 27px);
}

@media screen and (max-width: 767px) {
  .basic_form .error_message, .basic_form .textarea_error, .wysiwyg .error_message, .wysiwyg .textarea_error {
    top: -4px;
    left: 11px;
  }
  .basic_form .select_error_wrap .error_message, .wysiwyg .select_error_wrap .error_message {
    top: 10px;
    left: 11px;
  }
  .basic_form .textarea_error, .wysiwyg .textarea_error {
    top: -95px;
    left: 11px;
  }
  .basic_form .input_error_message, .wysiwyg .input_error_message {
    width: calc(100% - 13px);
  }
  .basic_form .appselect_error_message, .wysiwyg .appselect_error_message {
    line-height: 41px;
    top: 1px;
  }
  .basic_form .contact_select_error, .wysiwyg .contact_select_error {
    line-height: 41px;
    top: 1px !important;
  }
  .basic_form .com_area, .wysiwyg .com_area {
    top: 12px;
  }
  .basic_form .coment_email_wrap, .wysiwyg .coment_email_wrap {
    display: block;
  }
  .basic_form .coment_email_wrap .error_message, .wysiwyg .coment_email_wrap .error_message {
    top: 13px;
  }
}

.basic_form .error_message_p, .wysiwyg .error_message_p {
  position: absolute;
  color: #ff0000;
  top: -4px;
  left: 11px;
  background-color: #fff;
  z-index: 9;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
  width: calc(100% - 20px);
}

.basic_form .error_message_p.error_one, .wysiwyg .error_message_p.error_one {
  opacity: 1;
  pointer-events: all;
}

.basic_form .error_wrap_textarea .error_message_p, .wysiwyg .error_wrap_textarea .error_message_p {
  top: -95px;
}

.basic_form .select_p_error_wrap .error_message_p, .wysiwyg .select_p_error_wrap .error_message_p {
  top: 10px;
  width: calc(100% - 102px);
  z-index: 99;
}

.wysiwyg form {
  background-color: #F7F7F7;
  width: 600px;
  max-width: 100%;
  padding: 30px;
  margin: auto;
}

.wysiwyg form label {
  display: inline;
}

.wysiwyg form input[type="text"], .wysiwyg form input[type="email"], .wysiwyg form input[type="password"], .wysiwyg form textarea {
  background-color: #fff;
  margin-bottom: 0;
}

.wysiwyg form .selectboxit-container {
  margin-bottom: 0px;
}

.wysiwyg form .selectboxit-container .selectboxit {
  background-color: #fff;
}

.wysiwyg form .selectboxit-container .selectboxit-option {
  background-color: #fff;
}

.wysiwyg form button {
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Gotham",sans-serif;
  font-weight: 800;
  display: inline-block;
  height: 56px;
  text-align: center;
  line-height: 56px;
  background-color: #FF9500;
  color: #191D45;
  border: 1px solid #FF9500;
}

@media screen and (min-width: 1025px) {
  .wysiwyg form button:hover {
    background-color: #fff;
  }
}

.wysiwyg form ._form-branding {
  display: none;
}

.wysiwyg ._form_element {
  margin-bottom: 24px;
}

.wysiwyg p[style="text-align: left;"] form {
  margin-left: 0;
}

.wysiwyg p[style="text-align: left;"] + div[class^="_form_"] form {
  margin-left: 0;
}

.wysiwyg p[style="text-align: right;"] form {
  margin-right: 0;
}

.wysiwyg p[style="text-align: right;"] + div[class^="_form_"] form {
  margin-right: 0;
}

.basic_form.basic_form_footer ._form-title, .basic_form.basic_form_footer ._html-code {
  display: none;
}

.basic_form.basic_form_footer input {
  border: 0;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background-color: #0d102d;
  color: #a8a8a8;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.44px;
  line-height: 22px;
  padding-left: 12px;
  margin-bottom: 16px;
}

.basic_form.basic_form_footer input::-webkit-input-placeholder {
  opacity: 1;
}

.basic_form.basic_form_footer input::-moz-placeholder {
  opacity: 1;
}

.basic_form.basic_form_footer input:-moz-placeholder {
  opacity: 1;
}

.basic_form.basic_form_footer input:-ms-input-placeholder {
  opacity: 1;
}

.basic_form.basic_form_footer button {
  height: 48px;
  border: 1px solid #FF9500;
  background-color: transparent;
  color: #FF9500;
  line-height: 48px;
}

@media screen and (min-width: 1025px) {
  .basic_form.basic_form_footer button:hover {
    background-color: #FF9500;
    color: #fff;
  }
}

.basic_form.basic_form_footer ._error {
  display: block;
  font-size: 12px;
  margin-bottom: 14px;
  color: #FF9500;
  font-family: "Gotham",sans-serif;
  font-weight: 700;
  letter-spacing: -0.44px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.basic_form.basic_form_contact_page ._form-title, .basic_form.basic_form_contact_page ._html-code {
  display: none;
}

.radio_btns {
  border-radius: 4px;
  background-color: #ffffff;
  padding: 12px;
  padding-right: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.radio_btns .text_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.radio_btns .text_wrap .image_wrap {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #191D45;
  margin-right: 12px;
  overflow: hidden;
}

.radio_btns .text_wrap span {
  color: #191D45;
  font-weight: 700;
}

.radio_btns .radios_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.radio_btns .radios_wrap .radio_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.radio_btns .radios_wrap input[type="radio"] {
  margin-left: 26px;
  opacity: 0;
}

.radio_btns .radios_wrap .wpcf7-list-item-label {
  color: #191D45;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
}

.radio_btns .radios_wrap .wpcf7-list-item-label::after, .radio_btns .radios_wrap .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.radio_btns .radios_wrap .wpcf7-list-item-label::before {
  width: 16px;
  height: 16px;
  background-color: #e4e4e4;
  top: -2px;
  left: -23px;
}

.radio_btns .radios_wrap .wpcf7-list-item-label::after {
  width: 8px;
  height: 8px;
  background-color: #FF9500;
  top: 2px;
  left: -19px;
  opacity: 0;
}

.radio_btns .radios_wrap input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.radio_btns .radios_wrap .radio-app-page {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}

.radio_btns input[type="text"] {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .radio_btns {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .radio_btns .text_wrap {
    margin-bottom: 19px;
  }
  .radio_btns .radios_wrap {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .radio_btns .radios_wrap input[type="radio"] {
    margin-left: 8px;
  }
  .radio_btns .radios_wrap .radio_wrap {
    margin-bottom: 14px;
  }
  .radio_btns .wpcf7-radio {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .radio_btns .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
    margin-bottom: 11px;
  }
}

/*=================================
=            Filters             =
=================================*/
.filter_btn {
  width: 98px;
  height: 48px;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  cursor: pointer;
  position: relative;
}

.filter_btn img {
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.filter_btn::after, .filter_btn::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 17px;
  background-color: #FF9500;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  left: 18px;
}

.filter_btn::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.filter_btn::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.filter_btn.active img {
  opacity: 0;
}

.filter_btn.active::after, .filter_btn.active::before {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .filter_btn {
    width: 100%;
    -webkit-box-pack: start;
    box-pack: start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: start;
    padding-left: 12px;
  }
}

form {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  pointer-events: all;
  opacity: 1;
}

form.wait {
  opacity: 0.7;
  pointer-events: none;
}

.empty_loop {
  display: none;
}

.empty_loop.show_is_empty {
  display: block;
}

@media screen and (max-width: 1024px) {
  .empty_loop {
    margin: 50px 0 70px;
  }
}

@media screen and (max-width: 767px) {
  .empty_loop h1 {
    font-size: 36px;
    letter-spacing: -1.12px;
    line-height: 42px;
  }
}

.one_filter {
  width: 270px;
  -webkit-box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-color: #fff;
  padding: 16px 16px;
}

.one_filter input[type="checkbox"] {
  opacity: 0;
  margin: 0;
  width: 24px;
}

.one_filter .filter_title {
  margin-bottom: 16px;
}

.one_filter .checkbox_wrap {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  box-align: start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
  -webkit-box-pack: start;
  box-pack: start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: start;
}

.one_filter .checkbox_wrap label {
  color: #C0C0C0;
  position: relative;
  cursor: pointer;
  padding-left: 10px;
  padding-top: 3px;
  max-width: calc(100% - 24px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.one_filter .checkbox_wrap label::after, .one_filter .checkbox_wrap label::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.one_filter .checkbox_wrap label::before {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background-color: #dbdbdb;
  left: -25px;
  border: 1px solid #dbdbdb;
  top: -4px;
}

.one_filter .checkbox_wrap label::after {
  width: 12px;
  height: 7px;
  border: 3px solid #191D45;
  left: -19px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 0;
  border-right: 0;
  top: 2px;
  opacity: 0;
}

@media screen and (min-width: 1025px) {
  .one_filter .checkbox_wrap label:hover {
    color: #191D45;
  }
  .one_filter .checkbox_wrap label:hover::before {
    background-color: #fff;
    border: 1px solid #FF9500;
  }
}

.one_filter .checkbox_wrap input[type="checkbox"]:checked + label, .one_filter .checkbox_wrap input[type="radio"]:checked + label {
  color: #191D45;
}

.one_filter .checkbox_wrap input[type="checkbox"]:checked + label::before, .one_filter .checkbox_wrap input[type="radio"]:checked + label::before {
  border-color: #FF9500;
  background-color: #FF9500;
}

.one_filter .checkbox_wrap input[type="checkbox"]:checked + label::after, .one_filter .checkbox_wrap input[type="radio"]:checked + label::after {
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .one_filter .checkbox_wrap input[type="checkbox"]:checked + label:hover::before, .one_filter .checkbox_wrap input[type="radio"]:checked + label:hover::before {
    background-color: #fff;
  }
}

.one_filter .clear_selection {
  cursor: pointer;
  position: relative;
  display: inline;
}

.one_filter .clear_selection::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #FF9500;
  bottom: -2px;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
  width: 0;
}

@media screen and (min-width: 1025px) {
  .one_filter .clear_selection:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .one_filter {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding-top: 29px;
    padding-bottom: 24px;
  }
  .one_filter .checkboxs_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .one_filter .checkbox_wrap {
    width: 50%;
    margin-bottom: 24px;
  }
  .one_filter .clear_selection {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .one_filter .filter_title {
    margin-bottom: 24px;
  }
  .one_filter .checkbox_wrap {
    width: 100%;
  }
  .one_filter .clear_selection {
    margin-top: 3px;
  }
}

/*=================================
=            Pagination             =
=================================*/
.pagination {
  height: 48px;
  -webkit-box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.14px;
  margin-bottom: 80px;
  margin-top: 40px;
  display: inline-block;
}

.pagination.ajax_pagination {
  margin-top: 0;
  padding-top: 16px;
}

.pagination.ajax_pagination.long_version {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.pagination.ajax_pagination label {
  padding: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pagination.ajax_pagination label input {
  pointer-events: none;
}

.pagination .current {
  color: #191D45;
}

.pagination .page-numbers {
  padding: 16px 10px 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: inline-block;
}

.pagination .last, .pagination .next, .pagination .prev, .pagination .first {
  display: none;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-bottom: 40px;
  }
}

.pagination .active {
  color: #191D45;
}

.pagination input[type="radio"] {
  opacity: 0;
  position: absolute;
}

@media screen and (max-width: 1024px) {
  .pagination.ajax_pagination.long_version {
    width: auto;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .pagination.ajax_pagination.long_version {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*=================================
=            trip_section             =
=================================*/
.trip_section {
  width: 100%;
  border-radius: 4px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.trip_section .image_wrap {
  width: 134px;
  height: auto;
  border-radius: 4px 0 0 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.trip_section .text_wrap {
  width: calc(100% - 134px);
  padding: 24px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}

.trip_section .text_wrap.no_thumbnail {
  width: 100%;
}

.trip_section .text_wrap .basic18 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-bottom: 16px;
}

@media screen and (min-width: 1025px) {
  .trip_section .text_wrap .basic18:hover {
    color: #FF9500;
  }
}

.trip_section .text_wrap .top_secion {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  margin-bottom: 12px;
}

.trip_section .text_wrap .top_secion .label_wrap {
  margin-right: 20px;
}

.trip_section .text_wrap .bottom_section {
  border-top: 1px solid #e1e1e1;
  margin-top: auto;
}

.trip_section .text_wrap .bottom_section .btns_wrap {
  margin-top: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.trip_section .text_wrap a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .trip_section .text_wrap a:hover {
    color: #FF9500;
  }
}

.trip_section:nth-child(1) {
  -webkit-transition-delay: 0.07s;
  transition-delay: 0.07s;
}

.trip_section:nth-child(2) {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
}

.trip_section:nth-child(3) {
  -webkit-transition-delay: 0.21s;
  transition-delay: 0.21s;
}

.trip_section:nth-child(4) {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}

.trip_section:nth-child(5) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.trip_section:nth-child(6) {
  -webkit-transition-delay: 0.42s;
  transition-delay: 0.42s;
}

.trip_section:nth-child(7) {
  -webkit-transition-delay: 0.49s;
  transition-delay: 0.49s;
}

.trip_section:nth-child(8) {
  -webkit-transition-delay: 0.56s;
  transition-delay: 0.56s;
}

.trip_section:nth-child(9) {
  -webkit-transition-delay: 0.63s;
  transition-delay: 0.63s;
}

.trip_section:nth-child(10) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.trip_section:nth-child(11) {
  -webkit-transition-delay: 0.77s;
  transition-delay: 0.77s;
}

.trip_section:nth-child(12) {
  -webkit-transition-delay: 0.84s;
  transition-delay: 0.84s;
}

.trip_section:nth-child(13) {
  -webkit-transition-delay: 0.91s;
  transition-delay: 0.91s;
}

.trip_section:nth-child(14) {
  -webkit-transition-delay: 0.98s;
  transition-delay: 0.98s;
}

.trip_section:nth-child(15) {
  -webkit-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

.trip_section:nth-child(16) {
  -webkit-transition-delay: 1.12s;
  transition-delay: 1.12s;
}

.trip_section:nth-child(17) {
  -webkit-transition-delay: 1.19s;
  transition-delay: 1.19s;
}

.trip_section:nth-child(18) {
  -webkit-transition-delay: 1.26s;
  transition-delay: 1.26s;
}

.trip_section:nth-child(19) {
  -webkit-transition-delay: 1.33s;
  transition-delay: 1.33s;
}

.trip_section:nth-child(20) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

@media screen and (max-width: 767px) {
  .trip_section {
    margin-bottom: 20px;
  }
  .trip_section .image_wrap {
    width: 104px;
  }
  .trip_section .text_wrap {
    width: calc(100% - 104px);
    padding: 16px;
  }
  .trip_section .text_wrap .basic18 {
    font-size: 14px;
    letter-spacing: -0.23px;
    line-height: 18px;
  }
  .trip_section .text_wrap .top_secion {
    margin-bottom: 7px;
  }
  .trip_section .text_wrap .top_secion .label_wrap {
    margin-right: 0;
  }
  .trip_section .text_wrap .bottom_section {
    padding-top: 4px;
  }
  .trip_section .text_wrap .bottom_section .btns_wrap {
    margin-top: 18px;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .trip_section .text_wrap .bottom_section .btns_wrap a:first-child {
    margin-bottom: 5px;
  }
  .trip_section .text_wrap.no_thumbnail .bottom_section .btns_wrap {
    -webkit-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: row;
    flex-direction: row;
    -ms-flex-direction: row;
  }
  .trip_section .text_wrap.no_thumbnail .bottom_section .btns_wrap a:first-child {
    margin-bottom: 0;
  }
}

.our_community {
  width: 100%;
  margin-bottom: 37px;
  display: block;
}

.our_community .top_section {
  border-bottom: 1px solid #C0C0C0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  padding-bottom: 11px;
}

.our_community .top_section .right_side {
  text-transform: uppercase;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  box-align: end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-align: end;
  max-width: 450px;
  font-weight: 800;
}

.our_community .top_section .right_side > div {
  margin-left: 17px;
  text-align: end;
}

.our_community .top_section .right_side .one_cat {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .our_community .top_section .right_side .one_cat:hover {
    color: #FF9500;
  }
}

.our_community .top_section .basic18 {
  padding-bottom: 8px;
  max-width: calc(100% - 350px);
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .our_community .top_section .basic18:hover {
    color: #FF9500;
  }
}

.our_community .bottom_section {
  padding-top: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.our_community .bottom_section .left_side {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  color: #c0c0c0;
}

.our_community .bottom_section .circle {
  padding-top: 2px;
  width: 24px;
  height: 24px;
  background-color: #FF9500;
  border-radius: 50%;
  margin-right: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: #191D45;
  text-transform: uppercase;
}

.our_community .bottom_section .right_side {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.our_community .bottom_section .right_side > div {
  margin-left: 25px;
  text-transform: uppercase;
}

.our_community .bottom_section .right_side .orange {
  margin-left: 8px;
}

@media screen and (max-width: 1024px) {
  .our_community {
    margin-bottom: 43px;
  }
}

@media screen and (max-width: 767px) {
  .our_community .top_section {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: reverse;
    box-direction: reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    padding-bottom: 0;
  }
  .our_community .top_section .right_side {
    margin-bottom: 4px;
  }
  .our_community .top_section .right_side > div {
    margin-left: 0;
    margin-right: 10px;
  }
  .our_community .top_section .right_side .one_cat {
    margin-left: 0;
  }
  .our_community .top_section .basic18 {
    width: 100%;
    max-width: none;
    padding-bottom: 5px;
  }
  .our_community .bottom_section {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: reverse;
    box-direction: reverse;
    -moz-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
  }
  .our_community .bottom_section .right_side {
    margin-bottom: 16px;
  }
  .our_community .bottom_section .right_side > div {
    margin-left: 0;
  }
  .our_community .bottom_section .right_side .orange {
    margin-right: 12px;
  }
}

.company_wrap .logo_wrap {
  margin-bottom: 16px;
}

.company_wrap .logo_wrap img {
  max-height: 36px;
}

.company_wrap .basic18 {
  margin-bottom: 13px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

@media screen and (min-width: 1025px) {
  .company_wrap .basic18:hover {
    color: #FF9500;
  }
}

.company_wrap .bottom_section {
  border-top: 1px solid #e1e1e1;
  padding-top: 8px;
  margin-top: 8px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

@media screen and (max-width: 767px) {
  .company_wrap .basic18 {
    margin-bottom: 11px;
  }
  .company_wrap .bottom_section {
    margin-top: 11px;
    padding-top: 7px;
  }
}

.slick-slide {
  outline: none;
}
/*# sourceMappingURL=page.css.map */