/*=================================
=            Animation            =
=================================*/
.element_anim, .element_anim_1 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-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);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.1s;
  -moz-transition: all 0.3s ease-in-out 0.1s;
  -o-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);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_3 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.2s;
  -moz-transition: all 0.3s ease-in-out 0.2s;
  -o-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);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_4 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  -moz-transition: all 0.3s ease-in-out 0.3s;
  -o-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);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.element_anim_5 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.4s;
  -moz-transition: all 0.3s ease-in-out 0.4s;
  -o-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);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.fade_anim_1 {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-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;
  -moz-transition: all 0.3s ease-in-out 0.1s;
  -o-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;
  -moz-transition: all 0.3s ease-in-out 0.2s;
  -o-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;
}

@media screen and (min-width: 1025px) {
  .clip_path_anim {
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  .clip_path_anim.start_anim {
    -webkit-clip-path: inset(-10% -10% 0 0);
            clip-path: inset(-10% -10% 0 0);
  }
  .clip_path_anim_lg {
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
    -webkit-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
  .clip_path_anim_lg.start_anim {
    -webkit-clip-path: inset(-10% -10% 0 0);
            clip-path: inset(-10% -10% 0 0);
  }
  .clip_path_anim_content {
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
    -webkit-transition: all 0.6s ease-in-out 0.6s;
    -o-transition: all 0.6s ease-in-out 0.6s;
    -moz-transition: all 0.6s ease-in-out 0.6s;
    transition: all 0.6s ease-in-out 0.6s;
  }
  .clip_path_anim_content.start_anim {
    -webkit-clip-path: inset(-10% -10% 0 0);
            clip-path: inset(-10% -10% 0 0);
  }
  .clip_path_anim_banner {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
  }
  .clip_path_anim_banner .archive_banner .banner_title, .clip_path_anim_banner .archive_banner .arrow_btn {
    -webkit-transition: all 0.4s ease-in-out 0.6s;
    -o-transition: all 0.4s ease-in-out 0.6s;
    -moz-transition: all 0.4s ease-in-out 0.6s;
    transition: all 0.4s ease-in-out 0.6s;
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
  }
  .clip_path_anim_banner .filters_top_wrap button, .clip_path_anim_banner .filters_top_wrap .filter_btn2, .clip_path_anim_banner .filters_top_wrap .search_form_wrap {
    -webkit-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    -o-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    -moz-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
  }
  .clip_path_anim_banner .active_filters_list .active_filter_btn, .clip_path_anim_banner .active_filters_list .tsh {
    -webkit-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    -o-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    -moz-transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s;
    transition: color 0.3s ease-in-out 0s, background-color 0.3s ease-in-out 0s, clip-path 0.4s ease-in-out 0.6s, -webkit-clip-path 0.4s ease-in-out 0.6s;
    -webkit-clip-path: inset(-10% 100% 0 0);
            clip-path: inset(-10% 100% 0 0);
  }
  .clip_path_anim_banner .filters_cont .filters_top_wrap::after, .clip_path_anim_banner .under_banner_buttons .filters_top_wrap::after {
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: all 0.6s ease-in-out 0.4s;
    -o-transition: all 0.6s ease-in-out 0.4s;
    -moz-transition: all 0.6s ease-in-out 0.4s;
    transition: all 0.6s ease-in-out 0.4s;
  }
  .clip_path_anim_banner.start_anim {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  .clip_path_anim_banner.start_anim .filters_cont .filters_top_wrap::after, .clip_path_anim_banner.start_anim .under_banner_buttons .filters_top_wrap::after {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
  }
  .clip_path_anim_banner.start_anim .archive_banner .banner_title,
.clip_path_anim_banner.start_anim .archive_banner .arrow_btn,
.clip_path_anim_banner.start_anim .filters_top_wrap button,
.clip_path_anim_banner.start_anim .filters_top_wrap .filter_btn2,
.clip_path_anim_banner.start_anim .filters_top_wrap .search_form_wrap,
.clip_path_anim_banner.start_anim .active_filters_list .active_filter_btn,
.clip_path_anim_banner.start_anim .active_filters_list .tsh {
    -webkit-clip-path: inset(-10% -10% 0 0);
            clip-path: inset(-10% -10% 0 0);
  }
}
.transitionNone {
  -webkit-transition: none !important;
  -o-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}

/*=====  End of Animation  ======*/
/*=============================
=            Video            =
=============================*/
.video_wrap {
  width: 590px;
  max-width: 100%;
  position: relative;
  display: inline-block;
}
.video_wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video_wrap iframe {
  width: 100%;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.video_wrap .video_play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 55px;
  height: 55px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
  z-index: 5;
  pointer-events: none;
}
.video_wrap .video_play svg {
  width: 100%;
  height: 100%;
}
.video_wrap .video_img {
  -moz-background-size: cover;
       background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 1;
}
.video_wrap .video_desc {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  text-transform: uppercase;
  padding-top: 2px;
}
.video_wrap.video_active .video_play, .video_wrap.video_active .video_img {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .video_wrap .video_desc {
    padding-top: 13px;
  }
}
/*=====  End of Video  ======*/
/*=====================================
=               Colors               =
=====================================*/
.green_c {
  color: #18291B;
}

.grey_c {
  color: #D1D3D4;
}

.white_c {
  color: #FFFFFF;
}

.black_c {
  color: #000000;
}

.green_bg {
  background-color: #18291B;
}

.green2_bg {
  background-color: #18291B;
}

.grey_bg {
  background-color: #D1D3D4;
}

.white_bg {
  background-color: #FFFFFF;
}

.black_bg {
  background-color: #000000;
}

/*=====  Colors  ======*/
/*=====================================
=               Fonts               =
=====================================*/
.text_124 {
  font-style: normal;
  font-weight: normal;
  font-size: 124px;
  line-height: 164px;
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
}

.text_96 {
  font-style: normal;
  font-weight: normal;
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .text_96 {
    font-size: 56px;
    line-height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .text_96 {
    font-size: 40px;
    line-height: 56px;
  }
}

h1, .text_72 {
  font-size: 72px;
  font-weight: 300;
  line-height: 96px;
  letter-spacing: 0%;
}
@media screen and (max-width: 1024px) {
  h1, .text_72 {
    font-size: 64px;
    line-height: 88px;
  }
}
@media screen and (max-width: 767px) {
  h1, .text_72 {
    font-size: 40px;
    line-height: 56px;
  }
}

h2, .text_64 {
  font-size: 64px;
  font-weight: 300;
  line-height: 88px;
  letter-spacing: 0%;
}
h2.lh64, .text_64.lh64 {
  line-height: 64px;
}

h3, .text_56 {
  font-size: 56px;
  font-weight: 300;
  line-height: 72px;
  letter-spacing: 0%;
}

h4, .text_48 {
  font-size: 48px;
  font-weight: 300;
  line-height: 64px;
  letter-spacing: 0%;
}
@media screen and (max-width: 1024px) {
  h4, .text_48 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  h4, .text_48 {
    font-size: 24px;
    line-height: 32px;
  }
}

h5, .text_40 {
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 56px;
  letter-spacing: 0%;
}
h5.lh_48, .text_40.lh_48 {
  line-height: 48px;
}

h6 {
  font-size: 32px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0%;
}

.text_88 {
  font-size: 88px;
  font-weight: normal;
  line-height: 116px;
  margin: 0;
}
.text_88.lh96 {
  line-height: 96px;
}
@media screen and (max-width: 1024px) {
  .text_88 {
    font-size: 72px;
    line-height: 95px;
  }
}
@media screen and (max-width: 767px) {
  .text_88 {
    font-size: 48px;
    line-height: 64px;
  }
}

.text_77 {
  font-size: 77px;
  font-weight: normal;
  line-height: 101px;
  margin: 0;
}
.text_77 sup {
  position: relative;
  top: 5px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.text_38 {
  font-style: normal;
  font-weight: normal;
  font-size: 38px;
  line-height: 47px;
}

.text_32 {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 48px;
}
@media screen and (max-width: 767px) {
  .text_32 {
    font-size: 28px;
    line-height: 40px;
  }
}
.text_32.lh32 {
  line-height: 32px;
}

.text_30 {
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 42px;
}

.text_20 {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}
.text_20.lh20 {
  line-height: 20px;
}
.text_20.lh28 {
  line-height: 28px;
}

.text_26 {
  font-size: 26px;
  font-style: normal;
  font-weight: normal;
  line-height: 48px;
  margin: 0;
}

.text_24 {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 40px;
}
.text_24.lh32 {
  line-height: 32px;
}
.text_24.lh_31 {
  line-height: 31px;
}
.text_24.up {
  text-transform: uppercase;
}

.text_16 {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}
.text_16.lh28 {
  line-height: 28px;
}
.text_16.lh16 {
  line-height: 16px;
}
.text_16.bold {
  font-weight: bold;
}
.text_16.up {
  text-transform: uppercase;
}

.text_12 {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
}

.text_10 {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 21px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1024px) {
  .text_77 sup {
    font-size: 28px;
    line-height: 36px;
    top: 1px;
  }
  .text_30 {
    font-size: 28px;
    line-height: 37px;
  }
}
@media screen and (max-width: 767px) {
  .text_77 sup {
    font-size: 12px;
    line-height: 16px;
  }
  .text_30, .text_38 {
    font-size: 24px;
    line-height: 31px;
  }
}
/*=====  Fonts  ======*/
/*=====================================
=               Buttons               =
=====================================*/
.large_icon_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: #18291B;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.large_icon_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 1px;
  z-index: -1;
}
.large_icon_btn svg {
  margin-right: 8px;
}
.large_icon_btn svg path {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  stroke: #18291B;
}
.large_icon_btn span {
  position: relative;
}
.large_icon_btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #18291B;
}
@media screen and (min-width: 1025px) {
  .large_icon_btn:hover {
    color: #FFFFFF;
  }
  .large_icon_btn:hover::after {
    height: 28px;
    background: #18291B;
  }
  .large_icon_btn:hover svg path {
    stroke: #FFFFFF;
  }
}
.large_icon_btn.focused span::after {
  height: 2px;
}
.large_icon_btn.disabled {
  color: #D1D3D4;
  pointer-events: none;
}
.large_icon_btn.disabled svg path {
  stroke: #D1D3D4;
}
.large_icon_btn.disabled span::after {
  background-color: #D1D3D4;
}
.large_icon_btn.white_ver {
  color: #FFFFFF;
}
.large_icon_btn.white_ver::before {
  background-color: #FFFFFF;
}
.large_icon_btn.white_ver svg path {
  stroke: #FFFFFF;
}
.large_icon_btn.white_ver span::after {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .large_icon_btn.white_ver:hover {
    color: #18291B;
  }
  .large_icon_btn.white_ver:hover svg path {
    stroke: #18291B;
  }
  .large_icon_btn.white_ver:hover::after {
    background: #FFFFFF;
  }
}
.large_icon_btn.lg {
  font-size: 25px;
  line-height: 1.3;
  text-transform: none;
}

@media screen and (max-width: 1024px) {
  .large_icon_btn.lg {
    font-size: 20px;
  }
}
.small_icon_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #18291B;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.small_icon_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 1px;
  z-index: -1;
}
.small_icon_btn svg {
  margin-right: 8px;
}
.small_icon_btn svg path {
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  stroke: #18291B;
}
.small_icon_btn span {
  position: relative;
}
.small_icon_btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #18291B;
}
@media screen and (min-width: 1025px) {
  .small_icon_btn:hover {
    color: #FFFFFF;
  }
  .small_icon_btn:hover::after {
    height: 24px;
    background: #18291B;
  }
  .small_icon_btn:hover svg path {
    stroke: #FFFFFF;
  }
}
.small_icon_btn.focused span::after {
  height: 2px;
}
.small_icon_btn.disabled {
  color: #D1D3D4;
  pointer-events: none;
}
.small_icon_btn.disabled svg path {
  stroke: #D1D3D4;
}
.small_icon_btn.disabled span::after {
  background-color: #D1D3D4;
}
.small_icon_btn.white_ver {
  color: #FFFFFF;
}
.small_icon_btn.white_ver::before {
  background-color: #FFFFFF;
}
.small_icon_btn.white_ver svg path {
  stroke: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .small_icon_btn.white_ver:hover {
    color: #18291B;
  }
  .small_icon_btn.white_ver:hover svg path {
    stroke: #18291B;
  }
  .small_icon_btn.white_ver:hover::after {
    background: #FFFFFF;
  }
}

.large_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: #18291B;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.large_btn::after, .large_btn::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 0px;
  width: 100%;
}
.large_btn::after {
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 0;
}
.large_btn span {
  position: relative;
  z-index: 1;
  text-decoration: underline;
}
.large_btn::before {
  background-color: #18291B;
}
@media screen and (min-width: 1025px) {
  .large_btn:hover {
    color: #FFFFFF;
  }
  .large_btn:hover::after {
    height: -webkit-calc(100% - 4px);
    height: -moz-calc(100% - 4px);
    height: calc(100% - 4px);
    background: #18291B;
  }
}
.large_btn.focused span::after {
  height: 2px;
}
.large_btn.disabled {
  color: #D1D3D4;
  pointer-events: none;
}
.large_btn.disabled::before {
  background-color: #D1D3D4;
}
.large_btn.white_verion {
  color: #FFFFFF;
}
.large_btn.white_verion::before {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .large_btn.white_verion:hover {
    color: #18291B;
  }
  .large_btn.white_verion:hover::after {
    background: #FFFFFF;
  }
}

.small_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #18291B;
  position: relative;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.small_btn::after, .small_btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.small_btn::after {
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: -1;
}
.small_btn::before {
  background-color: #18291B;
}
@media screen and (min-width: 1025px) {
  .small_btn:hover {
    color: #FFFFFF;
  }
  .small_btn:hover::after {
    height: 24px;
    background: #18291B;
  }
}
.small_btn.focused span::after {
  height: 2px;
}
.small_btn.disabled {
  color: #D1D3D4;
  pointer-events: none;
}
.small_btn.disabled::before {
  background-color: #D1D3D4;
}
.small_btn.white_ver {
  color: #FFFFFF;
}
.small_btn.white_ver::before {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .small_btn.white_ver:hover {
    color: #18291B;
  }
  .small_btn.white_ver:hover::after {
    background: #FFFFFF;
  }
}

.icon_btn {
  width: 48px;
  height: 48px;
  position: relative;
  background-color: #18291B;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  border: 2px solid #18291B;
}
.icon_btn svg path {
  stroke: #FFFFFF;
}
@media screen and (min-width: 1025px) {
  .icon_btn:hover svg {
    -webkit-animation-duration: 0.5s;
       -moz-animation-duration: 0.5s;
         -o-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in-out;
       -moz-animation-timing-function: ease-in-out;
         -o-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-name: moveRight;
       -moz-animation-name: moveRight;
         -o-animation-name: moveRight;
            animation-name: moveRight;
  }
}
.icon_btn.focused {
  border: 2px solid #FFFFFF;
}
.icon_btn.disabled svg path {
  stroke: #D1D3D4;
}

@-webkit-keyframes moveRight {
  50% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  51% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-moz-keyframes moveRight {
  50% {
    -moz-transform: translateX(100px);
         transform: translateX(100px);
  }
  51% {
    opacity: 0;
    -moz-transform: translateX(-100px);
         transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}

@-o-keyframes moveRight {
  50% {
    -o-transform: translateX(100px);
       transform: translateX(100px);
  }
  51% {
    opacity: 0;
    -o-transform: translateX(-100px);
       transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
       transform: translateX(0);
  }
}

@keyframes moveRight {
  50% {
    -webkit-transform: translateX(100px);
       -moz-transform: translateX(100px);
         -o-transform: translateX(100px);
            transform: translateX(100px);
  }
  51% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
       -moz-transform: translateX(-100px);
         -o-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
}
.intro_btn {
  height: 56px;
  background: #18291B;
  position: relative;
  padding-right: 20px;
  padding-left: 16px;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.intro_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 1px;
  z-index: 0;
}
.intro_btn svg {
  margin-right: 4px;
  position: relative;
  z-index: 1;
}
.intro_btn svg path {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.intro_btn span {
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .intro_btn:hover {
    color: #18291B;
  }
  .intro_btn:hover::after {
    height: 56px;
    background: #FFFFFF;
  }
  .intro_btn:hover svg path {
    stroke: #18291B;
  }
}

/*=====  Buttons  ======*/
/*=====================================
=            News listing          =
=====================================*/
.news_listing {
  color: #18291B;
  padding: 49px 0 43px;
  position: relative;
  overflow: hidden;
  width: 1180px;
  max-width: 100%;
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.news_listing .hover_bcg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  -webkit-transition: height ease 0.3s;
  -o-transition: height ease 0.3s;
  -moz-transition: height ease 0.3s;
  transition: height ease 0.3s;
  z-index: 0;
  background: #18291B;
}
.news_listing .conent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 24px;
  padding-right: 86px;
  z-index: 1;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.news_listing .content_wrap {
  margin-left: 56px;
}
.news_listing .content_wrap .title_wrap {
  text-transform: uppercase;
  margin-bottom: 16px;
}
.news_listing .bottom_line {
  position: absolute;
  height: 1px;
  width: 0px;
  bottom: 0;
  left: 0;
  background-color: #18291B;
}
@media screen and (min-width: 1025px) {
  .news_listing:hover .conent {
    color: #FFFFFF;
  }
  .news_listing:hover .hover_bcg {
    height: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .news_listing {
    padding: 48px 0;
  }
  .news_listing .conent {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    opacity: 1;
  }
  .news_listing .content_wrap {
    width: -webkit-calc(100% - 187px);
    width: -moz-calc(100% - 187px);
    width: calc(100% - 187px);
  }
  .news_listing .bottom_line {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news_listing {
    padding: 32px 0;
  }
  .news_listing .conent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news_listing .content_wrap {
    margin-left: 0;
    width: 100%;
  }
  .news_listing .content_wrap .title_wrap {
    margin-top: 16px;
    margin-bottom: 0px;
  }
  .news_listing .content_wrap .desc_wrap {
    display: none;
  }
}
/*=====  News listing  ======*/
/*=====================================
=          Research listing         =
=====================================*/
.research_listing {
  color: #18291B;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.research_listing::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 0;
  background: #18291B;
}
.research_listing .container {
  max-width: 1440px;
}
.research_listing .content {
  border-top: 1px solid #18291B;
  border-bottom: 1px solid #18291B;
  padding: 32px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 1;
  position: relative;
}
.research_listing .left_side {
  max-width: 521px;
  margin-right: 50px;
}
.research_listing .left_side .title_wrap {
  text-transform: uppercase;
  margin: 16px 0;
}
.research_listing .right_image_wrap {
  width: 684px;
  height: 346px;
  -moz-background-size: cover;
       background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}
.research_listing .right_image_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.research_listing .right_image_wrap .hover_wrap {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-calc(100% + 300px);
  width: -moz-calc(100% + 300px);
  width: calc(100% + 300px);
  margin-left: -70px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.research_listing .right_image_wrap .hover_wrap div {
  color: #FFFFFF;
  margin: 0 28px;
  font-style: normal;
  font-weight: normal;
  font-size: 40px;
  line-height: 56px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .research_listing:hover {
    color: #FFFFFF;
  }
  .research_listing:hover::after {
    height: 100%;
  }
  .research_listing:hover .right_image_wrap::after {
    opacity: 1;
  }
  .research_listing:hover .right_image_wrap .hover_wrap {
    opacity: 1;
  }
}

/*=====  Research listing  ======*/
/*=====================================
=              Newsletter            =
=====================================*/
.newsletter_wrap {
  padding: 142px 0 160px;
  position: relative;
  opacity: 0;
  z-index: 1000;
}
.newsletter_wrap .content {
  -webkit-transform: translateX(77px);
     -moz-transform: translateX(77px);
      -ms-transform: translateX(77px);
       -o-transform: translateX(77px);
          transform: translateX(77px);
  position: relative;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.newsletter_wrap .newsl_title {
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 36px;
}
.newsletter_wrap input[type=email] {
  width: 600px;
  height: 48px;
  border: 0;
  border-bottom: 1px solid #18291B;
  background-color: transparent;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 16px;
  color: #18291B;
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
}
.newsletter_wrap input[type=email]::-webkit-input-placeholder {
  opacity: 1;
}
.newsletter_wrap input[type=email]::-moz-placeholder {
  opacity: 1;
}
.newsletter_wrap input[type=email]:-moz-placeholder {
  opacity: 1;
}
.newsletter_wrap input[type=email]:-ms-input-placeholder {
  opacity: 1;
}
.newsletter_wrap .form_elem_wrap {
  position: relative;
  width: 600px;
  height: 48px;
}
.newsletter_wrap .submit_wrap {
  position: absolute;
  right: 0;
  top: 0px;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.newsletter_wrap .submit_wrap input[type=submit] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.newsletter_wrap .submit_wrap .wpcf7-spinner {
  display: none;
}
.newsletter_wrap .wpcf7-response-output {
  display: none;
}
.newsletter_wrap .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 16px;
  color: #AB6B38;
}
.newsletter_wrap .error_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsletter_wrap .rci_bg {
  opacity: 0.4;
}
.newsletter_wrap .rci_fill path {
  stroke-dasharray: 1000 1000;
  stroke-dashoffset: -1000;
}

@media screen and (max-width: 1024px) {
  .newsletter_wrap {
    padding: 72px 0;
    opacity: 1;
  }
  .newsletter_wrap .content {
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .newsletter_wrap .right_line {
    display: none;
  }
  .newsletter_wrap .newsl_title {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .newsletter_wrap {
    padding: 43px 0 64px;
  }
  .newsletter_wrap .newsl_title {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 56px;
  }
  .newsletter_wrap .newsl_title br {
    display: none;
  }
  .newsletter_wrap input[type=email] {
    width: 100%;
    font-size: 12px;
    line-height: 16px;
  }
  .newsletter_wrap .form_elem_wrap {
    width: 100%;
  }
  .newsletter_wrap .submit_wrap .arrow_wrap {
    margin-right: -25px;
  }
}
/*=====  Newsletter  ======*/
/*=====================================
=            Contact Modal            =
=====================================*/
.contact_modal {
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  height: 100vh;
}
.contact_modal .modal_scroll_wrap {
  height: -webkit-calc(100vh - 216px);
  height: -moz-calc(100vh - 216px);
  height: calc(100vh - 216px);
  overflow-y: scroll;
  padding-bottom: 86px;
  scrollbar-color: #A2AAAD #F5F5F5;
  scrollbar-width: thin;
}
.contact_modal .modal_scroll_wrap::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.contact_modal .modal_scroll_wrap::-webkit-scrollbar-thumb {
  background: #A2AAAD;
  -webkit-border-radius: 16px;
          border-radius: 16px;
}
.contact_modal .left_blur {
  width: 100vw;
  position: absolute;
  height: 100vh;
  opacity: 0.8;
  top: 0;
  left: 0;
}
.contact_modal .right_content {
  width: 1204px;
  margin-left: auto;
}
.contact_modal .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 86px;
}
.contact_modal .close_btn {
  position: relative;
  margin-left: auto;
  margin-top: 19px;
  margin-bottom: 76px;
  padding: 30px 30px 0 30px;
}
.contact_modal .close_btn .circle {
  position: absolute;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background-color: #18291B;
  left: -18px;
  top: 7px;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  left: 11px;
  top: 34px;
}
.contact_modal .con_mod_title {
  border-bottom: 1px solid #18291B;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.contact_modal .contact_modal_map {
  height: 575px;
  width: 100%;
}
.contact_modal .contact_modal_map .gm-fullscreen-control,
.contact_modal .contact_modal_map .gm-style-mtc,
.contact_modal .contact_modal_map .gm-svpc,
.contact_modal .contact_modal_map .gm-style-cc {
  display: none;
}
.contact_modal .center_elements {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 72px 0 112px;
}
.contact_modal .center_elements .left_side {
  width: -webkit-calc(100% - 684px);
  width: -moz-calc(100% - 684px);
  width: calc(100% - 684px);
  padding-right: 30px;
}
.contact_modal .center_elements .left_side .small_title {
  margin-bottom: 8px;
}
.contact_modal .center_elements .one_info {
  margin-bottom: 32px;
}
.contact_modal .center_elements .right_side {
  max-width: 625px;
	width: 100%;
}
main .contact_modal.contact_page {
  position: relative;
  height: auto;
  display: block !important;
}
.contact_modal.contact_page {
  position: relative;
  height: auto;
  display: block !important;
}
.contact_modal.contact_page .left_blur {
  display: none;
}
.contact_modal.contact_page .right_content {
  width: 100%;
}
.contact_modal.contact_page .con_mod_title {
  padding-top: 179px;
}
.contact_modal.contact_page .bottom_page_content {
  width: 1156px;
  margin-left: auto;
}

.modal_behavior, .modal_behavior2 {
  z-index: 1000;
  pointer-events: none;
}
.modal_behavior .left_blur, .modal_behavior2 .left_blur {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.modal_behavior .right_content, .modal_behavior2 .right_content {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}
.modal_behavior.active_con_modal, .modal_behavior2.active_con_modal {
  pointer-events: all;
}
.modal_behavior.active_con_modal .left_blur, .modal_behavior2.active_con_modal .left_blur {
  opacity: 0.8;
}
.modal_behavior.active_con_modal .right_content, .modal_behavior2.active_con_modal .right_content {
  -webkit-transform: translateX(0%);
     -moz-transform: translateX(0%);
      -ms-transform: translateX(0%);
       -o-transform: translateX(0%);
          transform: translateX(0%);
}

.contact_modal form input[type=text], .contact_modal form input[type=email], .contact_modal form input[type=tel], .contact_modal form textarea {
  border: 0;
  background-color: transparent;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 48px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.contact_modal form input[type=text]::-webkit-input-placeholder, .contact_modal form input[type=email]::-webkit-input-placeholder, .contact_modal form input[type=tel]::-webkit-input-placeholder, .contact_modal form textarea::-webkit-input-placeholder {
  opacity: 1;
}
.contact_modal form input[type=text]::-moz-placeholder, .contact_modal form input[type=email]::-moz-placeholder, .contact_modal form input[type=tel]::-moz-placeholder, .contact_modal form textarea::-moz-placeholder {
  opacity: 1;
}
.contact_modal form input[type=text]:-moz-placeholder, .contact_modal form input[type=email]:-moz-placeholder, .contact_modal form input[type=tel]:-moz-placeholder, .contact_modal form textarea:-moz-placeholder {
  opacity: 1;
}
.contact_modal form input[type=text]:-ms-input-placeholder, .contact_modal form input[type=email]:-ms-input-placeholder, .contact_modal form input[type=tel]:-ms-input-placeholder, .contact_modal form textarea:-ms-input-placeholder {
  opacity: 1;
}
.contact_modal form input[type=text]:focus, .contact_modal form input[type=email]:focus, .contact_modal form input[type=tel]:focus, .contact_modal form textarea:focus {
  background-color: #D1D3D4;
}
.contact_modal form input[type=text], .contact_modal form input[type=email], .contact_modal form input[type=tel] {
  height: 48px;
  border-bottom: 1px solid #18291B;
  padding: 0 8px;
}
.contact_modal form textarea {
  border: 1px solid #18291B;
  height: 192px;
  resize: none;
  padding: 16px 17px;
}
.contact_modal form .submit_wrap {
  position: relative;
  display: inline-block;
}
.contact_modal form .submit_wrap input[type=submit] {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #18291B;
  border: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
  position: relative;
}
.contact_modal form .submit_wrap .wpcf7-spinner {
  position: absolute;
}
.contact_modal form .submit_wrap .anim_wrap {
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: transparent;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media screen and (min-width: 1025px) {
  .contact_modal form .submit_wrap:hover input[type=submit] {
    color: #FFFFFF;
  }
  .contact_modal form .submit_wrap:hover .anim_wrap {
    height: -webkit-calc(100% - 8px);
    height: -moz-calc(100% - 8px);
    height: calc(100% - 8px);
    background: #18291B;
  }
}
.contact_modal form .wpcf7-response-output {
  display: none;
}
.contact_modal form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.contact_modal form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 16px;
  color: #AB6B38;
  bottom: 30px;
}

@media screen and (max-width: 1023px) {
  .contact_modal .right_content {
    width: 590px;
  }
  .contact_modal .content {
    padding-bottom: 80px;
  }
  .contact_modal .contact_modal_map {
    width: 534px;
    height: 265px;
    margin-left: auto;
  }
  .contact_modal .center_elements {
    padding: 72px 0 66px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 542px;
    margin-left: auto;
  }
  .contact_modal .center_elements .left_side {
    width: 100%;
    margin-bottom: 24px;
  }
  .contact_modal .center_elements .right_side {
    width: 100%;
  }
  .contact_modal.contact_page .bottom_page_content {
    width: 100%;
  }
  .contact_modal.active_con_modal {
    z-index: 9999;
  }
}
@media screen and (max-width: 767px) {
  .contact_modal .contact_modal_map {
    height: 269px;
    width: 100%;
  }
  .contact_modal .center_elements {
    width: 100%;
    padding-bottom: 64px;
  }
}
/*=====  Contact Modal  ======*/
/*=====================================
=      Ready to talk to an expert    =
=====================================*/
.link_to_contact {
  padding: 302px 0 77px;
}
.link_to_contact span {
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
}
.link_to_contact a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 192px;
}
.link_to_contact .rotated_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.link_to_contact .marqueeStyle {
  display: inline-block;
  -webkit-animation: scrolling-left1 20s linear infinite;
     -moz-animation: scrolling-left1 20s linear infinite;
       -o-animation: scrolling-left1 20s linear infinite;
          animation: scrolling-left1 20s linear infinite;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.link_to_contact .marqueeStyle2 {
  display: inline-block;
  -webkit-animation: scrolling-left2 20s linear infinite;
     -moz-animation: scrolling-left2 20s linear infinite;
       -o-animation: scrolling-left2 20s linear infinite;
          animation: scrolling-left2 20s linear infinite;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@-webkit-keyframes scrolling-left1 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-moz-keyframes scrolling-left1 {
  0% {
    -moz-transform: translateX(0%);
         transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
  }
}

@-o-keyframes scrolling-left1 {
  0% {
    -o-transform: translateX(0%);
       transform: translateX(0%);
  }
  100% {
    -o-transform: translateX(-100%);
       transform: translateX(-100%);
  }
}

@keyframes scrolling-left1 {
  0% {
    -webkit-transform: translateX(0%);
       -moz-transform: translateX(0%);
         -o-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scrolling-left2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-moz-keyframes scrolling-left2 {
  0% {
    -moz-transform: translateX(0%);
         transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-100%);
         transform: translateX(-100%);
  }
}
@-o-keyframes scrolling-left2 {
  0% {
    -o-transform: translateX(0%);
       transform: translateX(0%);
  }
  100% {
    -o-transform: translateX(-100%);
       transform: translateX(-100%);
  }
}
@keyframes scrolling-left2 {
  0% {
    -webkit-transform: translateX(0%);
       -moz-transform: translateX(0%);
         -o-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .link_to_contact a {
    font-size: 64px;
    line-height: 96px;
  }
}
/*=====  Ready to talk to an expert   ======*/
.p404 .content {
  padding: 314px 0 360px;
}
.p404 .title_wrap, .p404 .subtitle_wrap {
  text-decoration: underline;
}
.p404 .title_wrap {
  font-size: 88px;
  line-height: 116px;
}
.p404 .subtitle_wrap {
  padding-top: 16px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .p404 .content {
    padding: 314px 0 304px;
  }
}
@media screen and (max-width: 767px) {
  .p404 .content {
    padding: 314px 0 272px;
  }
  .p404 .subtitle_wrap {
    font-size: 32px;
    line-height: 48px;
  }
}/*# sourceMappingURL=page.css.map */

.filter_btn {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	border-radius: 44px;
	border: 1.4px solid #2D3E2F !important;
	display: flex;
	padding: 7px 22px 8px 22px;
	justify-content: center;
	align-items: center;
	gap: 24px;
    position: relative;
    display: inline-flex;
  	transition: 0.5s ease-in-out 0s;
    text-decoration: unset !important;
	background-color: white !important;
	color: #2D3E2F !important;
	font-size: 16px !important;
}
.filter_btn svg {
	display: none;
}
.filter_btn:hover {
	background-color: #2D3E2F !important;
	color: white !important;
}

.filter_btn.active {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	border-radius: 44px;
	border: 1.4px solid #2D3E2F !important;
	display: flex;
	color: #ffffff !important;
	background-color: #2D3E2F !important;
	padding: 7px 22px 8px 22px;
	justify-content: center;
	align-items: center;
	gap: 24px;
    position: relative;
    display: inline-flex;
  	transition: 0.5s ease-in-out 0s;
    text-decoration: unset !important;
	font-size: 16px !important;
}
.btn-primary span, .large_btn span, .large_icon_btn span {
	text-decoration: unset !important;
}
.filter_btn.active:hover {
	background-color: #ffffff !important;
	color: #2D3E2F !important;
  	transition: 0.5s ease-in-out 0s;
}

@media screen and (max-width: 1023px) {
  .mobile_filter_parent_btn {
    color: #000000!important;
  }

  .single_checkbox_item {
    color: #000000!important;
  }

  .mobile_filters_wrap .close_btn {
    color: #000000!important;
  }

  .mobile_filters_wrap .clear_all_btn {
    color: #000000!important;
  }
}