/* =================================================================
   Fabrica – Oil Industry (recreation)
   ================================================================= */

/* ---------- Color schemes ---------- */
.scheme_default {
  --bg_color:#F8F8F8; --bd_color:#D5DDE6;
  --text:#57606E; --text_light:#868E99; --text_dark:#0A1E52;
  --text_link:#00A651; --text_hover:#00803E;
  --alter_bg_color:#FFFFFF; --alter_bg_hover:#F1F1F1; --alter_bd_color:#D5DDE6;
  --alter_text:#57606E; --alter_light:#868E99; --alter_dark:#0A1E52;
  --alter_link:#00A651; --alter_hover:#00803E;
  --extra_bg_color:#040D24; --extra_bd_color:#2B3A63; --extra_text:#9AA6BF; --extra_dark:#FFFFFF;
  --inverse_link:#FFFFFF;
}
.scheme_light {
  --bg_color:#FFFFFF; --bd_color:#D5DDE6;
  --text:#57606E; --text_light:#868E99; --text_dark:#0A1E52;
  --text_link:#00A651; --text_hover:#00803E;
  --alter_bg_color:#F8F8F8; --alter_bg_hover:#F1F1F1; --alter_bd_color:#D5DDE6;
  --alter_text:#57606E; --alter_light:#868E99; --alter_dark:#0A1E52;
  --alter_link:#00A651; --alter_hover:#00803E;
  --extra_bg_color:#040D24; --extra_bd_color:#2B3A63; --extra_text:#9AA6BF; --extra_dark:#FFFFFF;
  --inverse_link:#FFFFFF;
}
.scheme_dark {
  --bg_color:#061231; --bd_color:#2B3A63;
  --text:#9AA6BF; --text_light:#A2ADC2; --text_dark:#FCFCFC;
  --text_link:#00A651; --text_hover:#00803E;
  --alter_bg_color:#122045; --alter_bg_hover:#1B2A52; --alter_bd_color:#2B3A63;
  --alter_text:#9AA6BF; --alter_light:#A2ADC2; --alter_dark:#FCFCFC;
  --alter_link:#00A651; --alter_hover:#00803E;
  --extra_bg_color:#040D24; --extra_bd_color:#2B3A63; --extra_text:#9AA6BF; --extra_dark:#FFFFFF;
  --inverse_link:#FFFFFF;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65em;
  letter-spacing: 0;
  color: var(--text);
  background-color: var(--bg_color);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--text_link); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--text_hover); }
p { margin: 0 0 1.57em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: Outfit, sans-serif; font-weight: 500; color: var(--text_dark); margin: 0; }
h1 { font-size: 3.353em; line-height: 1em; letter-spacing: -1.7px; }
h2 { font-size: 2.765em; line-height: 1.021em; letter-spacing: -1.4px; }
h3 { font-size: 2.059em; line-height: 1.086em; letter-spacing: -1px; }
h4 { font-size: 1.647em; line-height: 1.214em; letter-spacing: -0.6px; }
h5 { font-size: 1.412em; line-height: 1.208em; letter-spacing: -0.5px; }
h6 { font-size: 1.118em; line-height: 1.474em; letter-spacing: -0.6px; }

/* ---------- Layout helpers ---------- */
.page_wrap { position: relative; overflow-x: clip; overflow-y: visible; }
/* NB: overflow:hidden here would make .page_wrap a scroll container and kill every
   position:sticky descendant (the service-detail sidebar). overflow-x:clip clips the
   same way without creating one; body{overflow-x:hidden} is the fallback guard. */
.container { max-width: 1290px; margin: 0 auto; padding: 0; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row_nogap { margin: 0; }
.row_middle { align-items: center; }
.col { padding: 0 15px; }
.row_nogap > .col { padding: 0; }
.col_50 { width: 50%; }
.sc_align_center { text-align: center; }

.sc_height_huge   { height: 120px; }
.sc_height_big    { height: 90px; }
.sc_height_medium { height: 60px; }
.sc_height_small  { height: 45px; }
.sc_height_tiny   { height: 20px; }
.sc_spacer_15 { height: 15px; }
.sc_spacer_20 { height: 20px; }
.sc_spacer_25 { height: 25px; }
.sc_spacer_30 { height: 30px; }

/* ---------- Titles ---------- */
.sc_item_subtitle {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 14px; font-weight: 500; line-height: 18px;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--text_dark);
  margin: 0 0 19.6px;
}
.sc_item_title { font-size: 57px; line-height: 57px; letter-spacing: -1.7px; color: var(--text_dark); margin: 0; }
.sc_item_descr { margin: 23.8px 0 0; color: var(--text); }
.sc_item_descr p { margin: 0; }

/* ---------- Buttons ---------- */
.sc_button_wrap { margin-bottom: -10px; }
.sc_button_wrap.sc_align_center { text-align: center; }
.sc_button {
  position: relative;
  display: inline-block; vertical-align: top;
  font-family: Outfit, sans-serif;
  font-size: 16px; font-weight: 500; line-height: 21px;
  text-transform: none; white-space: nowrap; text-align: center;
  padding: 17px 57px 18px;
  margin-bottom: 10px;
  color: #fff; background-color: var(--text_link);
  border: none; cursor: pointer; overflow: hidden;
  transition: background-color .3s ease, color .3s ease;
}
.sc_button:hover { color: #fff; background-color: var(--text_hover); }

/* ---------- Read-more links ---------- */
.sc_services_item_more_link,
.item_more_link {
  position: relative; z-index: 1;
  display: inline-block;
  font-family: Outfit, sans-serif;
  font-size: 15px; font-weight: 500; line-height: 21px;
  color: var(--text_dark); overflow: hidden;
}
.sc_services_item_more_link .link_text,
.item_more_link .link_text {
  display: inline-block; position: relative; vertical-align: middle;
  white-space: nowrap; text-indent: -110px; opacity: 0; visibility: hidden; margin-right: 0;
  transition: visibility .4s, margin-right .4s ease-out, text-indent .4s ease-out, opacity .4s;
}
.sc_services_item_more_link .link_icon,
.item_more_link .link_icon {
  position: relative; display: inline-block; vertical-align: middle;
  width: 21px; height: 21px; line-height: 21px; text-align: center;
}
.sc_services_item_more_link .link_icon:before,
.item_more_link .link_icon:before {
  content: '\e9a4'; font-family: fontello; font-size: 11px; line-height: inherit;
  font-weight: 400; display: inline-block; vertical-align: top; color: currentColor;
  transition: transform .3s ease;
}
.sc_services_item:hover .sc_services_item_more_link .link_text,
.sc_services_item_more_link:hover .link_text,
.sc_blogger_item:hover .item_more_link .link_text,
.item_more_link:hover .link_text {
  opacity: 1; text-indent: 0; margin-right: 8px; visibility: visible;
  transition: visibility .4s, margin-right .3s ease-out, text-indent .4s ease-out, opacity .4s;
}
.sc_services_item:hover .sc_services_item_more_link .link_icon:before,
.sc_blogger_item:hover .item_more_link .link_icon:before { transform: rotate(-45deg); }

/* =================================================================
   HEADER
   ================================================================= */
.top_panel { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; background: transparent; }
.header_row_inner {
  display: flex; align-items: center;
  padding: 20px 70px;
  min-height: 115px;
}
.top_panel .logo { display: block; flex: 0 0 auto; }
.top_panel .logo img { width: 183px; height: auto; }

.main_menu { margin-left: 48px; }
.menu_nav { display: flex; align-items: center; }
.menu_nav > li { position: relative; }
.menu_nav > li > a {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 17px; font-weight: 500; line-height: 25.5px;
  color: #FCFCFC; padding: 15.3px;
  position: relative;
}
.menu_nav > li > a:after {
  content: ''; position: absolute; left: 15.3px; right: 15.3px; bottom: 10px; height: 2px;
  background-color: #FCFCFC; transform: scaleX(0); transform-origin: left center;
  transition: transform .3s ease;
}
.menu_nav > li:hover > a:after,
.menu_nav > li.current-menu-item > a:after { transform: scaleX(1); }
.menu_nav > li:hover > a { color: #fff; }

.menu_nav .sub-menu {
  position: absolute; top: 100%; left: 0; z-index: 10;
  min-width: 250px; padding: 15px 0;
  background-color: #040D24;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.menu_nav .sub-menu .sub-menu { top: -15px; left: 100%; }
.menu_nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu_nav .sub-menu li { position: relative; }
.menu_nav .sub-menu a {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 15px; font-weight: 400; line-height: 22.5px;
  color: #9AA6BF; padding: 9.75px 24px;
  transition: color .3s ease, background-color .3s ease;
}
.menu_nav .sub-menu a:hover,
.menu_nav .sub-menu > li.current-menu-item > a { color: #fff; }
.menu_nav .sub-menu > li.menu-item-has-children > a:after {
  content: '\e908'; font-family: fontello; font-size: 9px;
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
}

.header_tools { margin-left: auto; display: flex; align-items: center; }
.sc_layouts_cart { position: relative; color: #FCFCFC; cursor: pointer; line-height: 1; }
.sc_layouts_cart_icon { font-size: 24px; line-height: 26.4px; display: inline-block; }
.sc_layouts_cart_icon:before { margin: 0; width: auto; }
.sc_layouts_cart_items_short {
  position: absolute; right: -9px; bottom: -2px;
  min-width: 15px; height: 15px; line-height: 15px; padding: 0 3px;
  border-radius: 50%; text-align: center;
  font-family: Outfit, sans-serif; font-size: 10px; font-weight: 500;
  color: #fff; background-color: var(--text_link);
}
.sc_layouts_search { margin-left: 25.5px; }
.sc_layouts_search .search_submit {
  display: inline-block; font-size: 24px; line-height: 24px; color: #FCFCFC; cursor: pointer;
  transition: color .3s ease;
}
.sc_layouts_search .search_submit:before { margin: 0; width: auto; }
.sc_layouts_search .search_submit:hover { color: var(--text_link); }
.header_dots { display: inline-block; margin-left: 25.5px; line-height: 0; }
.header_dots svg { width: 21px; height: 21px; fill: #fff; transition: fill .3s ease; }
.header_dots:hover svg { fill: var(--text_link); }
.header_login { display: none; font-size: 24px; color: #FCFCFC; margin-left: 25.5px; line-height: 24px; }
.header_login:before { margin: 0; width: auto; }

.header_burger { display: none; margin-left: 25.5px; width: 26px; height: 20px; position: relative; }
.header_burger span,
.header_burger:before,
.header_burger:after {
  content: ''; position: absolute; left: 0; width: 26px; height: 2px; background-color: #fff;
  transition: transform .3s ease, opacity .3s ease;
}
.header_burger:before { top: 0; }
.header_burger span { top: 9px; }
.header_burger:after { bottom: 0; }

.header_row_mobile { display: none; }

/* Sticky header */
.top_panel_fixed {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background-color: #061231;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.top_panel_fixed.is-shown { transform: translateY(0); }

/* ---------------------------------------------------------------
   Light page header  (this page has no hero photo - the nav sits on
   the page background, so logo / menu / icons all flip to dark)
   --------------------------------------------------------------- */
.page_header.page_header_light { background-color: transparent; background-image: none; }
.page_header.page_header_light:before { display: none; }

.page_header.page_header_light .page_header_body { position: relative; z-index: 2; }
.page_header.page_header_light .page_header_sp_top { height: 85px; }
.page_header.page_header_light .page_header_sp_bot { height: 30px; }
.page_header.page_header_light .page_title { color: var(--text_dark); }
.page_header.page_header_light .page_header_icon { height: 19px; display: flex; align-items: center; justify-content: center; }
.page_header.page_header_light .page_header_icon svg { fill: var(--text_dark); }
.page_header.page_header_light .page_header_icon a { display: inline-block; line-height: 0; animation: gea-bob 2.2s ease-in-out infinite; }

.page_header.page_header_light .menu_nav > li > a { color: var(--text_dark); }
.page_header.page_header_light .menu_nav > li > a:after { background-color: var(--text_link); }
.page_header.page_header_light .menu_nav > li:hover > a,
.page_header.page_header_light .menu_nav > li.current-menu-item > a { color: var(--text_link); }
.page_header.page_header_light .sc_layouts_cart { color: var(--text_dark); }
.page_header.page_header_light .sc_layouts_search .search_submit { color: var(--text_dark); }
.page_header.page_header_light .sc_layouts_search .search_submit:hover { color: var(--text_link); }
.page_header.page_header_light .header_dots svg { fill: var(--text_dark); }
.page_header.page_header_light .header_login { color: var(--text_dark); }
.page_header.page_header_light .header_burger span,
.page_header.page_header_light .header_burger:before,
.page_header.page_header_light .header_burger:after { background-color: var(--text_dark); }

.top_panel_fixed .header_row_inner { min-height: 115px; padding: 20px 70px; }

/* =================================================================
   HERO (Slider)
   ================================================================= */
.hero { position: relative; width: 100%; overflow: hidden; background-color: #061231; }
.hero_stage {
  position: absolute; top: 0; left: 0;
  transform-origin: 0 0;
  overflow: hidden;
}
.hero_bg {
  position: absolute; inset: 0;
  background-color: #061231;
  background-image: url(../images/108_4-bg.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.hero_slide { position: absolute; inset: 0; visibility: hidden; }
.hero_slide.is-active { visibility: visible; }

.hero_photo { position: absolute; overflow: hidden; }
.hero_photo img { width: 100%; height: 100%; object-fit: cover; }

.hero_content { position: absolute; z-index: 8; }
.hero_title { color: #fff; font-family: Outfit, sans-serif; font-weight: 500; margin: 0; }
.hero_btn {
  display: inline-block; font-family: Outfit, sans-serif; font-weight: 500;
  color: #fff; background-color: #00A651; text-align: center;
  transition: background-color .3s ease;
}
.hero_btn:hover { color: #fff; background-color: #00803E; }

.hero_counter {
  position: absolute; z-index: 6;
  font-family: Outfit, sans-serif; font-weight: 500; letter-spacing: 2px;
  color: #9AA6BF; cursor: pointer; transition: color .3s ease;
}
.hero_counter:hover { color: #fff; }
.hero_counter_current { color: #fff; }

.hero_aside { position: absolute; z-index: 6; }
.hero_aside_label {
  display: block; color: #fff; font-family: Outfit, sans-serif; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
}
.hero_aside_text { color: #9AA6BF; font-family: "DM Sans", sans-serif; margin: 0; }

.hero_thumbs { position: absolute; z-index: 10; background-color: #061231; overflow: hidden; }
.hero_thumb { position: absolute; top: 0; overflow: hidden; display: block; }
.hero_thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- hero grid levels --- */
.hero[data-level="d"] .hero_photo   { left: -30px; top: 50%; margin-top: -462px; width: 1368px; height: 924px; }
.hero[data-level="d"] .hero_content { left: 70px; top: 50%; transform: translateY(-50%); }
.hero[data-level="d"] .hero_title   { font-size: 100px; line-height: 100px; letter-spacing: -3px; }
.hero[data-level="d"] .hero_title_gap { height: 42px; }
.hero[data-level="d"] .hero_btn     { font-size: 16px; line-height: 56px; padding: 0 56px; }
.hero[data-level="d"] .hero_counter { left: 70px; bottom: 60px; font-size: 14px; line-height: 24px; }
.hero[data-level="d"] .hero_aside   { right: 70px; top: 50%; margin-top: -197px; width: 338px; }
.hero[data-level="d"] .hero_aside_label { font-size: 14px; line-height: 24px; }
.hero[data-level="d"] .hero_aside_gap { height: 20px; }
.hero[data-level="d"] .hero_aside_text { font-size: 18px; line-height: 28px; width: 335px; }
.hero[data-level="d"] .hero_thumbs  { right: 70px; bottom: 60px; width: 616px; height: 250px; }
.hero[data-level="d"] .hero_thumb   { width: 200px; height: 250px; }
.hero[data-level="d"] .hero_thumb:nth-child(1) { left: 0; }
.hero[data-level="d"] .hero_thumb:nth-child(2) { left: 208px; }
.hero[data-level="d"] .hero_thumb:nth-child(3) { left: 416px; }

.hero[data-level="n"] .hero_photo   { left: -12px; top: 50%; margin-top: -351px; width: 1040px; height: 702px; }
.hero[data-level="n"] .hero_content { left: 70px; top: 50%; transform: translateY(-50%); }
.hero[data-level="n"] .hero_title   { font-size: 68px; line-height: 68px; letter-spacing: -2px; }
.hero[data-level="n"] .hero_title_gap { height: 30px; }
.hero[data-level="n"] .hero_btn     { font-size: 16px; line-height: 52px; padding: 0 50px; }
.hero[data-level="n"] .hero_counter { left: 70px; bottom: 50px; font-size: 13px; line-height: 24px; }
.hero[data-level="n"] .hero_aside   { right: 50px; top: 50%; margin-top: -155px; width: 202px; }
.hero[data-level="n"] .hero_aside_label { font-size: 11px; line-height: 20px; }
.hero[data-level="n"] .hero_aside_gap { height: 12px; }
.hero[data-level="n"] .hero_aside_text { font-size: 14px; line-height: 20px; width: 196px; }
.hero[data-level="n"] .hero_thumbs  { right: 40px; bottom: 50px; width: 444px; height: 180px; }
.hero[data-level="n"] .hero_thumb   { width: 144px; height: 180px; }
.hero[data-level="n"] .hero_thumb:nth-child(1) { left: 0; }
.hero[data-level="n"] .hero_thumb:nth-child(2) { left: 150px; }
.hero[data-level="n"] .hero_thumb:nth-child(3) { left: 300px; }

.hero[data-level="t"] .hero_photo   { left: -6px; top: 50%; margin-top: -302px; width: 894px; height: 604px; }
.hero[data-level="t"] .hero_content { left: 30px; top: 50%; transform: translateY(-50%); }
.hero[data-level="t"] .hero_title   { font-size: 56px; line-height: 56px; letter-spacing: -2px; }
.hero[data-level="t"] .hero_title_gap { height: 30px; }
.hero[data-level="t"] .hero_btn     { font-size: 15px; line-height: 47px; padding: 0 45px; }
.hero[data-level="t"] .hero_counter { left: 30px; bottom: 40px; font-size: 12px; line-height: 20px; }
.hero[data-level="t"] .hero_aside   { display: none; }
.hero[data-level="t"] .hero_thumbs  { right: 30px; bottom: 40px; width: 394px; height: 170px; border: 6px solid #061231; }
.hero[data-level="t"] .hero_thumb   { width: 124px; height: 155px; top: auto; bottom: 0; }
.hero[data-level="t"] .hero_thumb:nth-child(1) { left: 0; }
.hero[data-level="t"] .hero_thumb:nth-child(2) { left: 129px; }
.hero[data-level="t"] .hero_thumb:nth-child(3) { left: 258px; }

.hero[data-level="m"] .hero_photo   { left: 50%; margin-left: -344px; top: 50%; margin-top: -273px; width: 809px; height: 546px; }
.hero[data-level="m"] .hero_content { left: 20px; top: 50%; transform: translateY(-50%); }
.hero[data-level="m"] .hero_title   { font-size: 52px; line-height: 52px; letter-spacing: -2px; }
.hero[data-level="m"] .hero_title_gap { height: 24px; }
.hero[data-level="m"] .hero_btn     { font-size: 15px; line-height: 46px; padding: 0 42px; }
.hero[data-level="m"] .hero_counter { left: 20px; bottom: 30px; font-size: 12px; line-height: 20px; }
.hero[data-level="m"] .hero_aside   { display: none; }
.hero[data-level="m"] .hero_thumbs  { display: none; }

/* --- hero entrance animations --- */
.hero_photo     { opacity: 0; }
.hero_title     { opacity: 0; }
.hero_btn       { opacity: 0; }
.hero_aside_label, .hero_aside_gap, .hero_aside_text { opacity: 0; }
.hero_thumbs    { opacity: 0; }
.hero_thumb     { opacity: 0; }
.hero_counter   { opacity: 0; }

.hero.is-playing .hero_slide.is-active .hero_photo { animation: hero-photo-in 1200ms cubic-bezier(.165,.84,.44,1) 540ms both; }
.hero.is-playing .hero_slide.is-active .hero_title { animation: hero-x-in 1000ms cubic-bezier(.165,.84,.44,1) 510ms both; --x: 40px; }
.hero.is-playing .hero_slide.is-active .hero_btn   { animation: hero-x-in 1000ms cubic-bezier(.165,.84,.44,1) 1040ms both; --x: 30px; }
.hero.is-playing .hero_slide.is-active .hero_aside_label { animation: hero-x-in 1000ms cubic-bezier(.165,.84,.44,1) 700ms both; --x: 50px; }
.hero.is-playing .hero_slide.is-active .hero_aside_gap   { animation: hero-fade-in 1000ms ease 700ms both; }
.hero.is-playing .hero_slide.is-active .hero_aside_text  { animation: hero-x-in 1000ms cubic-bezier(.165,.84,.44,1) 880ms both; --x: 50px; }
.hero.is-playing .hero_counter { animation: hero-fade-in 800ms ease 300ms both; }
.hero.is-playing .hero_thumbs { animation: hero-thumbs-in 1200ms cubic-bezier(.165,.84,.44,1) 180ms both; }
.hero.is-playing .hero_thumb:nth-child(1) { animation: hero-thumb-in 1200ms cubic-bezier(.165,.84,.44,1) 1060ms both; }
.hero.is-playing .hero_thumb:nth-child(2) { animation: hero-thumb-in 1200ms cubic-bezier(.165,.84,.44,1) 1360ms both; }
.hero.is-playing .hero_thumb:nth-child(3) { animation: hero-thumb-in 1200ms cubic-bezier(.165,.84,.44,1) 1660ms both; }

@keyframes hero-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes hero-x-in {
  from { opacity: 0; transform: translateX(var(--x, 40px)); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-photo-in {
  from { opacity: 0; transform: translateX(20%) skewX(-2deg); clip-path: inset(0 0 0 90%); }
  to   { opacity: 1; transform: translateX(0) skewX(0deg); clip-path: inset(0 0 0 0); }
}
@keyframes hero-thumbs-in {
  from { opacity: 1; clip-path: inset(100% 0 0 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes hero-thumb-in {
  from { opacity: 1; transform: translateY(105%) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}

/* =================================================================
   SECTION: spacer after hero
   ================================================================= */
.sec_spacer { background-color: #FFFFFF; }

/* =================================================================
   SECTION: About / what we do
   ================================================================= */
.sec_about {
  position: relative;
  background-color: #FFFFFF;
  background-image: url(../images/oil-plumb.png);
  background-repeat: no-repeat;
  background-position: 110% 110%;
  background-size: 30%;
  padding: 0 0 7.5%;
}
.about_media { position: relative; }
.about_media_col1 { width: 69.84%; }
.about_media_col2 { width: 30.003%; display: flex; align-items: flex-end; }
.about_img2 { width: 210%; margin-left: -110%; }
.about_spacer_1 { height: 190px; }
.about_info { }
.about_spacer_2 { height: 30px; }
.about_spacer_3 { height: 40px; }
.about_spacer_4 { height: 40px; }
.about_info > .sc_title { }
.about_bottom { display: flex; }
.about_hours_col { width: 50%; padding-right: 15px; }
.about_sign_col {
  width: 50%;
  position: relative;
  min-height: 152px;
}
.about_sign_col:before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 315px; height: 172.5px; margin: -86.25px 0 0 -157.5px;
  background: url(../images/gea-signature.png) no-repeat center center;
  background-size: contain;
  transform: rotate(-30deg);
  pointer-events: none;
}
.about_hours p {
  font-size: 15px; font-weight: 500; line-height: 28.05px;
  text-transform: uppercase; letter-spacing: 1px; color: #0A1E52; margin: 0;
}
/* right column offset (18% of the column width) */
.about_info > * { max-width: none; }
.sec_about .about_info { padding-left: calc(9% + 15px); }

/* =================================================================
   SECTION: Services
   ================================================================= */
.sec_services { position: relative; background-color: #F9F9F9; overflow: hidden; }
.sec_services_overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url(../images/oil-back-stroke-on-white.png);
  background-position: center center; background-repeat: no-repeat; background-size: cover;
  opacity: .01;
}
.sec_services > .container { position: relative; z-index: 1; }
.services_head { margin: 0; }
.services_head > .col { padding: 0; }
.services_head_title { width: 34%; padding-right: 1.7% !important; }
.services_head_descr { width: 51%; }
.services_head_controls { width: 15%; }
.services_head_descr p { margin: 0; }
.services_spacer_1 { height: 50px; }
.services_spacer_2 { height: 58px; }
.services_spacer_3 { height: 45px; }

.slider_controls_wrap { display: flex; justify-content: flex-end; }
.slider_prev, .slider_next {
  display: block; width: 40px; height: 40px; line-height: 36px; text-align: center;
  border: .8px solid var(--bd_color); background-color: #fff; color: var(--text_dark);
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.slider_next { margin-left: 5px; }
.slider_prev:before { content: '\e907'; font-family: fontello; font-size: 14px; }
.slider_next:before { content: '\e908'; font-family: fontello; font-size: 14px; }
.slider_prev:hover, .slider_next:hover { background-color: var(--text_link); border-color: var(--text_link); color: #fff; }

.services_slider { overflow: hidden; }
.services_track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.services_slide { flex: 0 0 auto; width: calc((100% - 60px) / 3); margin-right: 30px; }
.sc_services_item {
  position: relative; background-color: var(--alter_bg_color); color: var(--alter_text);
  padding: 74.8px 44.2px; height: 100%;
  will-change: color, background-color;
  transition: color .3s, background-color .3s;
}
.sc_services_item:hover { background-color: var(--alter_link); color: rgba(255,255,255,.8); }
.sc_services_item:hover .sc_services_item_content { color: rgba(255,255,255,.8); }
.sc_services_item:hover .sc_services_item_icon { color: #fff; }
.sc_services_item:hover .sc_services_item_more_link { color: #fff; }
.sc_services_item_icon {
  display: inline-block; font-size: 69.7px; line-height: 1; color: var(--alter_link);
  transition: color .3s ease;
}
.sc_services_item_icon:before { margin: 0; width: auto; }

.sc_services_item_info { padding-top: 34px; }
.sc_services_item_title { font-size: 26.452px; line-height: 32.11px; letter-spacing: -.6px; margin: 0; }
.sc_services_item_title a { color: var(--text_dark); }
.sc_services_item:hover .sc_services_item_title a { color: #fff; }
.sc_services_item_content { margin-top: 13.6px; }
.sc_services_item_content p { margin: 0; }
.sc_services_item_button { margin-top: 19px; }

/* =================================================================
   SECTION: Video / play
   ================================================================= */
.sec_video { position: relative; }
.sec_video_inner {
  position: relative;
  background-image: url(../images/gea-index-band.jpg);
  background-position: center center; background-repeat: no-repeat; background-size: cover;
}
.sec_video_overlay { position: absolute; inset: 0; }
/* keeps the band the same height now that the play button has gone */
.sec_video_btn_gap { height: 54px; }
.sec_video .container { position: relative; z-index: 1; }
.video_play_wrap { text-align: center; }
.video_play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; padding: 20px; border-radius: 50%;
  background-color: #fff; color: #000;
  transition: background-color .3s ease, transform .3s ease;
}
.video_play svg { width: auto; height: 14px; fill: #000; transition: fill .3s ease; }
.video_play:hover { transform: scale(1.08); }
.video_play:hover svg { fill: #00A651; }

/* =================================================================
   SECTION: Mission
   ================================================================= */
.sec_mission {
  position: relative;
  background-color: #061231;
  background-image: url(../images/oil-back-stroke-on-dark.png);
  background-position: 0% 0%; background-repeat: repeat; background-size: auto;
  overflow: hidden;
}
.mission_title .sc_item_title { max-width: 980px; margin: 0 auto; }
.mission_title .sc_item_subtitle { max-width: 980px; margin-left: auto; margin-right: auto; }
.sec_mission .sc_item_title u.accent1 { color: var(--text_link); text-decoration-color: var(--text_link); }
.mission_name { font-size: 18px; line-height: 1; font-weight: 500; text-align: center; color: #FCFCFC; margin: 0; }
.mission_role { text-align: center; margin-top: 3px; }
.mission_role p { font-size: 16px; line-height: 28.05px; color: #8E99AE; margin: 0; }
.mission_spacer_1 { height: 100px; }

.mission_cards { display: flex; margin: 0 -15px; }
.mission_card { width: 25%; padding: 0 15px; }
.mission_card_bg {
  position: relative; overflow: hidden; z-index: 1;
  background-color: #050C22; background-size: cover; background-position: center center; background-repeat: no-repeat;
  padding-bottom: 151%;
}
.mission_card_bg:before {
  content: ' '; position: absolute; z-index: 0; inset: 0;
  background: rgba(0,0,0,.3);
  transition: opacity .3s ease-out, background-color .3s ease-out;
}
.mission_card_bg:hover:before { opacity: .9; background: var(--text_link); }
.mission_card_inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: stretch; align-items: flex-start;
  width: 100%; padding: 40px;
}
.mission_card_top {
  margin-bottom: 20px; transform: translateY(-15px); opacity: 0;
  will-change: transform, opacity;
  transition: transform .3s ease-out, opacity .3s ease-out;
}
.mission_card_bg:hover .mission_card_top { transform: translateY(0); opacity: 1; }
.mission_card_bottom {
  display: flex; flex-direction: column; justify-content: flex-end; flex-grow: 1; width: 100%;
  transform: translateY(30px); will-change: transform;
  transition: transform .3s ease-out;
}
.mission_card_bg:hover .mission_card_bottom { transform: translateY(0); }
.mission_card_number { display: inline-block; font-family: Outfit, sans-serif; font-size: 24px; line-height: 1em; font-weight: 500; letter-spacing: -.2px; color: #fff; }
.mission_card_title { font-size: 26.452px; line-height: 1.3em; font-weight: 500; letter-spacing: -.6px; margin: 0; }
.mission_card_title a, .mission_card_title a:hover { color: #fff; }
.mission_card_subtitle {
  font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 24px; margin-top: .3em;
  opacity: 0; will-change: opacity; transition: opacity .3s ease-out;
}
.mission_card_bg:hover .mission_card_subtitle { opacity: 1; }
.mission_card_subtitle a, .mission_card_subtitle a:hover { color: rgba(255,255,255,.8); }
.mission_card_link { position: absolute; inset: 0; z-index: 10; }

/* counters */
.sc_skills { display: flex; }
.sc_skills_column { width: 25%; padding-right: 30px; position: relative; }
.sc_skills_item_wrap {
  position: relative; height: 139px;
  display: flex; align-items: center; justify-content: center;
}
.sc_skills_total {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 0; text-align: center;
  font-family: Outfit, sans-serif; font-size: 90px; line-height: 90px; font-weight: 500;
  color: var(--alter_light); opacity: .1; white-space: nowrap;
}
.sc_skills_item_title {
  position: relative; z-index: 1; text-align: center;
  font-family: Outfit, sans-serif; font-size: 24px; line-height: 33.6px; font-weight: 500;
  color: #FCFCFC;
}

/* =================================================================
   SECTION: Portfolio
   ================================================================= */
.sec_portfolio { position: relative; }
.portfolio_grid { display: flex; flex-wrap: wrap; }
.portfolio_item { width: 25%; }
.post_featured { position: relative; overflow: hidden; }
.portfolio_item .post_featured { padding-bottom: 94%; }
.portfolio_item .post_thumb {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center center;
  transform: scale(1.009);
  transition: transform .5s;
}
.portfolio_item:hover .post_thumb { transform: scale(1.07); }
.portfolio_item .mask {
  position: absolute; inset: 0; z-index: 4; background-color: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transform: scale(1.005); transition: .5s;
}
.portfolio_item:hover .mask { opacity: 1; }
.post_info_bc {
  position: absolute; z-index: 2; bottom: 0; left: 50%; transform: translateX(-50%) translateY(100%);
  width: 70%; text-align: center;
  background-color: #fff; padding: 21px 26px 17px;
  opacity: 0; transition: opacity .4s ease, transform .4s ease;
}
.portfolio_item:hover .post_info_bc { opacity: 1; transform: translateX(-50%) translateY(0); }
.portfolio_title { font-size: 22.61px; line-height: 27.31px; letter-spacing: -.5px; margin: 0; }
.portfolio_title a { color: var(--text_dark); }
.portfolio_title a:hover { color: var(--text_link); }
.post_info_bc .post_meta { font-size: 16px; line-height: 21px; }
.post_info_bc .post_meta a { color: var(--text); }
.post_info_bc .post_meta a:hover { color: var(--text_link); }
.portfolio_item .post_link { position: absolute; inset: 0; z-index: 3; }

/* =================================================================
   SECTION: Clients
   ================================================================= */
.sec_clients { background-color: #FFFFFF; overflow: hidden; }
.clients_row {
  display: flex; flex-wrap: nowrap; width: 200%;
  animation: clients-marquee 40s linear infinite;
  will-change: transform;
}
@keyframes clients-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.clients_col { width: 8.3333%; flex: 0 0 auto; padding: 61px 0; text-align: center; }
.clients_col a { display: block; font-size: 0; line-height: 0; }
.clients_col img { display: inline-block; opacity: .15; transition: opacity .3s ease; }
.clients_col a:hover img { opacity: 1; }

/* =================================================================
   SECTION: Team
   ================================================================= */
.sec_team {
  position: relative;
  background-color: #FFFFFF;
  background-image: url(../images/oil-bank.png);
  background-repeat: no-repeat;
  background-position: 104% 100%;
  background-size: 29%;
}
.sec_team > .container { position: relative; z-index: 1; }
.team_row { margin: 0; }
.team_row > .col { padding: 0; }
.team_grid { display: flex; flex-wrap: wrap; gap: 30px; }
.sc_team_item { width: calc((100% - 30px) / 2); padding: 0; }
.team_info_col { padding-left: 7.52% !important; }
.team_thumb_wrap { position: relative; overflow: hidden; padding-bottom: 100%; }
.team_thumb_wrap .post_thumb {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center center;
  transition: transform .3s;
}
.sc_team_item:hover .post_thumb { transform: scale(1.1); }
.team_hover_mask {
  position: absolute; inset: 0; z-index: 10; overflow: hidden;
  background-color: #3C4E9C;
  opacity: 0; transition: .3s ease-out .1s; pointer-events: none;
}
.sc_team_item:hover .team_hover_mask { opacity: .8; transition: .4s ease-out; }
.team_hover {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100%; height: 100%; padding: 60px 20px; z-index: 99;
  display: flex; flex-wrap: wrap; text-align: center;
}
.team_hover_center { align-self: center; text-align: center; width: 100%; }
.sc_team_item_title {
  position: relative; top: 10px; opacity: 0; margin: 0;
  font-size: 24px; font-weight: 500; line-height: 1.2em; letter-spacing: -.6px;
  transition-property: all; transition-duration: .3s;
}
.sc_team_item_title a, .sc_team_item_title a:hover { color: #fff; }
.sc_team_item_subtitle {
  position: relative; top: 10px; opacity: 0;
  font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 20px; font-weight: 400; color: #fff;
  margin-top: 8px;
  transition-property: all; transition-duration: .3s;
}
.sc_team_item:hover .sc_team_item_title { opacity: 1; top: 0; transition-delay: .2s; }
.sc_team_item:hover .sc_team_item_subtitle { opacity: 1; top: 0; transition-delay: .3s; }
.sc_team_item_socials {
  position: absolute; left: 50%; transform: translateX(-50%); width: 100%; bottom: 27px; z-index: 9; margin: 0;
}
.sc_team_item_socials .social_item {
  position: relative; top: 15px; opacity: 0;
  display: inline-block; vertical-align: top; line-height: 1; margin: 6px 11px;
  transition-property: all; transition-duration: .4s;
}
.sc_team_item:hover .sc_team_item_socials .social_item { opacity: 1; top: 0; }
.sc_team_item:hover .sc_team_item_socials .social_item:nth-child(1) { transition-delay: .4s; }
.sc_team_item:hover .sc_team_item_socials .social_item:nth-child(2) { transition-delay: .5s; }
.sc_team_item:hover .sc_team_item_socials .social_item:nth-child(3) { transition-delay: .6s; }
.sc_team_item:hover .sc_team_item_socials .social_item:nth-child(4) { transition-delay: .7s; }
.sc_team_item_socials .social_icon {
  display: block; width: 20px; height: 20px; line-height: 20px; font-size: 15px;
  color: #fff; border-radius: 2px; transition: opacity .3s ease;
}
.sc_team_item_socials .social_icon:before { margin: 0; width: auto; }
.sc_team_item_socials .social_item:hover .social_icon { opacity: .8; }

.team_info_col .sc_item_button { margin-top: 36px; }

/* =================================================================
   SECTION: Blog
   ================================================================= */
.sec_blog { position: relative; overflow: hidden; }
.sec_blog_overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url(../images/oil-back-stroke-on-white.png);
  background-position: center center; background-repeat: no-repeat; background-size: cover;
  opacity: .01;
}
.sec_blog > .container { position: relative; z-index: 1; }
.blog_grid { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.sc_blogger_item { width: 33.3333%; padding: 0 15px; }
/* the card puts the title above the picture, so titles of different lengths
   would start the three pictures at different heights - reserve the tallest */
.sc_blogger_item_header { padding: 26px 32px 24px; min-height: 186px; }
.sc_blogger_item_content { padding: 26px 32px; }
.sc_blogger_item .post_meta { font-size: 14px; line-height: 21px; }
.sc_blogger_item .post_categories a {
  font-family: Outfit, sans-serif; font-size: 14px; font-weight: 500; line-height: 21px;
  letter-spacing: .8px; text-transform: uppercase; color: var(--text_dark);
}
.sc_blogger_item .post_categories a:hover { color: var(--text_link); }
.sc_blogger_item .post_date { margin-left: 14px; }
.sc_blogger_item .post_date a { font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--text_light); }
.sc_blogger_item_title { font-size: 28px; line-height: 33.6px; letter-spacing: -.5px; margin: 14px 0 0; }
.sc_blogger_item .post_featured { position: relative; overflow: hidden; }
.sc_blogger_item_title a { color: var(--text_dark); }
.sc_blogger_item_title a:hover { color: var(--text_link); }

.sc_blogger_item .post_featured img { width: 100%; height: auto; transition: transform .5s; }
.sc_blogger_item:hover .post_featured img { transform: scale(1.07); }
.sc_blogger_item .post_featured .mask {
  position: absolute; inset: 0; z-index: 3; background-color: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transform: scale(1.005); transition: .5s;
}
.sc_blogger_item:hover .post_featured .mask { opacity: 1; }
.sc_blogger_item .post_featured .link { position: absolute; inset: 0; z-index: 2; }


/* =================================================================
   FOOTER
   ================================================================= */
.footer_wrap { background-color: #122045; }
.footer_top_spacer { height: 100px; }
.footer_main { background-color: #061231; padding: 12.75px 0; }
.footer_columns { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.footer_col { padding: 0 15px; }
.footer_col_1 { width: 33.94%; }
.footer_col_2 { width: 24.85%; }
.footer_col_3 { width: 22.12%; }
.footer_col_4 { width: 19.09%; }
.footer_main .sc_item_title { font-size: 19px; line-height: 28px; letter-spacing: -.6px; color: #FCFCFC; }
.footer_text p { font-size: 17px; line-height: 28.22px; color: #9AA6BF; margin: 0; }
.footer_text a { color: #9AA6BF; }
.footer_text a:hover { color: var(--text_link); }
.footer_links li a { display: block; font-size: 17px; line-height: 28.22px; color: #9AA6BF; padding: 5.4px 0; }
.footer_links li a:hover { color: var(--text_link); }
.footer_socials { margin-top: 12px; }
.footer_socials .social_item { display: flex; align-items: center; margin-bottom: 6px; color: #9AA6BF; }
.footer_socials .social_icon {
  width: 32px; height: 32px; line-height: 32px; text-align: center; font-size: 16px;
  background-color: #122045; border-radius: 50%; margin-right: 12px; flex: 0 0 auto;
  transition: background-color .3s ease, color .3s ease;
}
.footer_socials .social_icon:before { margin: 0; width: auto; }
.footer_socials .social_name { font-size: 17px; line-height: 28.22px; }
.footer_socials .social_item:hover { color: #fff; }
.footer_socials .social_item:hover .social_icon { background-color: var(--text_link); color: #fff; }

.footer_bottom { background-color: #122045; padding: 25px 0 0; }
.footer_divider { height: 1px; background-color: rgba(255,255,255,.1); }
.footer_copyright p { font-size: 16px; line-height: 28.22px; color: #8E99AE; margin: 8px 0; text-align: left; }
.footer_copyright a { color: #FCFCFC; }
.footer_copyright a:hover { color: var(--text_link); }

/* =================================================================
   Search overlay / mobile menu / scroll top
   ================================================================= */
.search_overlay {
  position: fixed; inset: 0; z-index: 100000;
  background-color: rgba(4,13,36,.97);
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
}
.search_overlay.is-open { opacity: 1; visibility: visible; }
.search_overlay .search_wrap { position: relative; height: 100%; }
.search_header_wrap { display: flex; align-items: center; justify-content: space-between; padding: 33px 70px; }
.search_header_wrap .logo_image { width: 183px; height: auto; }
.search_close { position: relative; width: 30px; height: 30px; }
.search_close:before, .search_close:after {
  content: ''; position: absolute; left: 0; top: 14px; width: 30px; height: 2px; background-color: #fff;
}
.search_close:before { transform: rotate(45deg); }
.search_close:after { transform: rotate(-45deg); }
.search_form_wrap { position: absolute; left: 0; right: 0; top: 45%; transform: translateY(-50%); padding: 0 70px; }
.search_form { position: relative; max-width: 900px; margin: 0 auto; display: flex; align-items: center; }
.search_field {
  flex: 1 1 auto; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff; font-family: Outfit, sans-serif; font-size: 34px; line-height: 1.4em; padding: 12px 40px 12px 0;
  outline: none;
}
.search_field::placeholder { color: #6b7280; }
.search_form .search_submit {
  position: absolute; right: 0; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
}
.search_form .search_submit:before { margin: 0; width: auto; }

.menu_mobile {
  position: fixed; inset: 0; z-index: 100001;
  background-color: #061231;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
  overflow-y: auto;
}
.menu_mobile.is-open { opacity: 1; visibility: visible; }
.menu_mobile_inner { padding: 33px 30px 60px; }
.menu_mobile .logo img { width: 183px; height: auto; }
.menu_mobile_close { position: absolute; right: 30px; top: 44px; width: 26px; height: 26px; }
.menu_mobile_close:before, .menu_mobile_close:after {
  content: ''; position: absolute; left: 0; top: 12px; width: 26px; height: 2px; background-color: #fff;
}
.menu_mobile_close:before { transform: rotate(45deg); }
.menu_mobile_close:after { transform: rotate(-45deg); }
.menu_mobile_nav_area { margin-top: 40px; }
.menu_mobile_nav > li > a {
  display: block; font-family: Outfit, sans-serif; font-size: 22px; font-weight: 500; line-height: 1.4em;
  color: #FCFCFC; padding: 10px 0;
}
.menu_mobile_nav .sub-menu { display: none; padding-left: 18px; }
.menu_mobile_nav li.is-open > .sub-menu { display: block; }
.menu_mobile_nav .sub-menu a { display: block; font-size: 17px; color: #9AA6BF; padding: 7px 0; }
/* The chevron is a separate tap target so the parent item itself stays a real
   link - tapping "Services" goes to the Services page, tapping the chevron
   opens its sub-list. */
.menu_mobile_nav li.menu-item-has-children { position: relative; }
.menu_mobile_nav li.menu-item-has-children > a { position: relative; padding-right: 52px; }
.menu_mobile_toggle {
  position: absolute; right: -14px; top: 0; z-index: 2;
  width: 52px; height: 52px; padding: 0; border: none; background: none;
  color: #FCFCFC; cursor: pointer; line-height: 52px; text-align: center;
}
.menu_mobile_toggle:before {
  content: '\e908'; font-family: fontello; font-size: 11px;
  display: inline-block; transform: rotate(90deg); transition: transform .3s ease;
}
.menu_mobile_nav li.menu-item-has-children.is-open > .menu_mobile_toggle:before { transform: rotate(-90deg); }

@media (max-width: 1279px) { .sc_blogger_item_header { min-height: 219px; } }
@media (max-width: 1023px) { .sc_blogger_item_header { min-height: 256px; } }
@media (max-width: 479px)  { .sc_blogger_item_header { min-height: 0; } }

/* ---------- Side panel (opened by the dots icon) ---------- */
.header_dots { cursor: pointer; }
.gea_panel_overlay {
  position: fixed; inset: 0; z-index: 100002;
  background-color: rgba(4,13,36,.45);
  opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s;
}
.gea_panel_overlay.is-open { opacity: 1; visibility: visible; }
.gea_panel {
  position: fixed; top: 0; right: 0; z-index: 100003;
  width: 388px; max-width: 100%; height: 100vh; height: 100dvh;
  background-color: #061231; color: #9AA6BF;
  transform: translateX(100%); visibility: hidden;
  transition: transform .8s cubic-bezier(.16,1,.3,1), visibility .8s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.gea_panel.is-open { transform: translateX(0); visibility: visible; }
.gea_panel_inner {
  position: relative; box-sizing: border-box; min-height: 100%;
  display: flex; flex-direction: column; padding: 48px 50px 38px;
}
.gea_panel_logo { align-self: flex-start; }
.gea_panel_logo img { width: 183px; height: auto; display: block; }
.gea_panel_close {
  position: absolute; top: 41px; right: 25px; width: 47px; height: 47px;
  padding: 0; border: none; background: none; cursor: pointer;
}
.gea_panel_close:before, .gea_panel_close:after {
  content: ''; position: absolute; left: 12px; right: 12px; top: 50%; height: 2px;
  background-color: #FCFCFC; transition: background-color .3s ease;
}
.gea_panel_close:before { transform: rotate(45deg); }
.gea_panel_close:after  { transform: rotate(-45deg); }
.gea_panel_close:hover:before, .gea_panel_close:hover:after { background-color: var(--text_link); }
.gea_panel_nav_area { flex: 1 0 auto; margin: 38px 0 30px; }
.menu_panel_nav, .menu_panel_nav .sub-menu { list-style: none; margin: 0; }
.menu_panel_nav { padding: 0; }
.menu_panel_nav > li > a {
  display: block; font-family: Outfit, sans-serif; font-size: 22px; font-weight: 500;
  line-height: 1.4em; color: #FCFCFC; padding: 6px 0; transition: color .3s ease;
}
.menu_panel_nav > li > a:hover,
.menu_panel_nav > li.current-menu-item > a { color: var(--text_link); }
.menu_panel_nav .sub-menu { padding: 0 0 6px 16px; }
.menu_panel_nav .sub-menu a {
  display: block; font-size: 16px; line-height: 1.5em; color: #9AA6BF; padding: 3px 0;
  transition: color .3s ease;
}
.menu_panel_nav .sub-menu a:hover,
.menu_panel_nav .sub-menu li.current-menu-item > a { color: var(--text_link); }
.gea_panel_contact { border-top: 1px solid rgba(252,252,252,.12); padding-top: 22px; }
.gea_panel_contact a {
  display: block; font-family: Outfit, sans-serif; font-weight: 500; color: #FCFCFC;
  transition: color .3s ease;
}
.gea_panel_contact a:hover { color: var(--text_link); }
.gea_panel_contact .gea_panel_phone { font-size: 19px; line-height: 28px; }
.gea_panel_contact .gea_panel_email { font-size: 16px; line-height: 26px; margin-top: 6px; color: #9AA6BF; }
.gea_panel_contact .gea_panel_email:hover { color: var(--text_link); }
.gea_panel_address { margin: 12px 0 0; font-size: 15px; line-height: 24px; color: #9AA6BF; }
@media (max-width: 479px) {
  .gea_panel_inner { padding: 40px 30px 35px; }
  .gea_panel_close { top: 32px; right: 12px; }
}

.trx_addons_scroll_to_top {
  position: fixed; right: 30px; bottom: 30px; z-index: 1000;
  width: 44px; height: 44px; line-height: 44px; text-align: center;
  background-color: var(--text_link); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background-color .3s ease;
}
.trx_addons_scroll_to_top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.trx_addons_scroll_to_top:hover { background-color: var(--text_hover); color: #fff; }
.trx_addons_scroll_to_top:before { content: '\ea08'; font-family: fontello; font-size: 15px; }

/* =================================================================
   Scroll animations
   ================================================================= */
.anim { visibility: hidden; }
.anim.is-visible { visibility: visible; animation: fabrica-fadeinup .9s ease both; }
.anim_sequental.is-visible { animation: none; }
.anim_sequental.is-visible > * { animation: fabrica-fadeinup .9s ease both; }
.anim_sequental.is-visible > *:nth-child(1) { animation-delay: 0ms; }
.anim_sequental.is-visible > *:nth-child(2) { animation-delay: 100ms; }
.anim_sequental.is-visible > *:nth-child(3) { animation-delay: 200ms; }
.anim_sequental.is-visible > *:nth-child(4) { animation-delay: 300ms; }
@keyframes fabrica-fadeinup {
  0%   { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fabrica-fadein { 0% { opacity: 0; } 100% { opacity: 1; } }

/* =================================================================
   RESPONSIVE
   ================================================================= */
.hide_on_notebook, .hide_on_tablet, .hide_on_mobile { display: block; }

@media (max-width: 1679px) {
  .hide_on_notebook { display: none !important; }
}
@media (max-width: 1439px) {
  .sc_height_huge   { height: 100px; }
  .sc_height_big    { height: 80px; }
  .sc_height_medium { height: 50px; }
  .sc_height_small  { height: 35px; }
  .sc_height_tiny   { height: 15px; }
}
@media (max-width: 1279px) {
  .page_header.page_header_light .page_header_sp_top { height: 50px; }
  .page_header.page_header_light .page_header_sp_bot { height: 12px; }
  .container { max-width: 100%; padding: 0 30px; }
  .header_row_inner { padding: 20px 30px; }
  .sc_height_huge   { height: 90px; }
  .sc_height_big    { height: 75px; }
  .sc_height_medium { height: 50px; }
  .sc_height_small  { height: 35px; }

  .sc_item_title { font-size: 46px; line-height: 46px; letter-spacing: -1.3px; }
  .sec_about { padding-bottom: 80px; background-position: 108% 105%; }

  /* header: switch to mobile row */
  .header_row_desktop { display: none; }
  .header_row_mobile { display: block; }
  .top_panel_fixed { display: none; }
  .header_login { display: inline-block; }
  .header_burger { display: block; }

  /* about */
  .sec_about .about_info { padding-left: 15px; }
  .about_spacer_1 { height: 100px; }
  .about_spacer_2 { height: 15px; }
  .about_spacer_3 { height: 20px; }
  .about_spacer_4 { height: 25px; }
  .about_hours_col { width: 62%; }
  .about_sign_col { width: 38%; }
  .about_sign_col:before { width: 225px; height: 123px; margin: -61.5px 0 0 -112.5px; }

  /* services */
  .services_head_title { width: 100%; padding-right: 0 !important; }
  .services_head_descr { width: 70%; }
  .services_head_controls { width: 30%; }
  .services_spacer_3 { height: 30px; }
  .sc_services_item { padding: 51px 34px; }
  .sc_services_item_icon { font-size: 64.6px; }
  .sc_services_item_info { padding-top: 28px; }
  .slider_controls_wrap { margin-right: 0; }
  .services_slide { width: calc((100% - 30px) / 2); }

  /* mission */
  .mission_card { width: 50%; margin-bottom: 30px; }
  .mission_cards { flex-wrap: wrap; margin-bottom: -30px; }
  .mission_card_bg { padding-bottom: 110%; }
  .mission_spacer_1 { height: 70px; }
  .sc_skills_total { font-size: 64px; line-height: 64px; }

  /* portfolio */
  .portfolio_item { width: 50%; }

  /* clients */
  .clients_row { width: 400%; }
  .clients_col { padding: 45px 0; }

  /* team */
  .team_row { flex-direction: column-reverse; }
  .team_grid_col, .team_info_col { width: 100%; }
  .team_info_col { padding-left: 0 !important; }
  .team_info_col { margin-bottom: 40px; }

}
@media (min-width: 768px) and (max-width: 1279px) {
  .hide_on_tablet { display: none !important; }
  .services_spacer_1, .services_spacer_2 { display: none; }
}
@media (max-width: 1023px) {
  .page_header.page_header_light .page_header_sp_top { height: 48px; }
  .page_header.page_header_light .page_header_sp_bot { height: 16px; }
  .sc_height_huge   { height: 80px; }
  .sc_height_big    { height: 70px; }
  .sc_height_medium { height: 45px; }
  .sc_height_small  { height: 30px; }
  .sc_item_title { font-size: 38px; line-height: 40px; letter-spacing: -1px; }
  .sc_services_item_title, .mission_card_title { font-size: 23.8px; line-height: 30px; }
  .sc_blogger_item_title { font-size: 24px; line-height: 30px; }
}
@media (max-width: 767px) {
  .page_header.page_header_light .page_header_sp_top { height: 20px; }
  .page_header.page_header_light .page_header_sp_bot { height: 15px; }
  .container { padding: 0 30px; }
  .header_row_inner { padding: 20px 20px; min-height: 90px; }
  .top_panel .logo img { width: 125px; height: auto; }

  .sc_height_huge   { height: 60px; }
  .sc_height_big    { height: 55px; }
  .sc_height_medium { height: 35px; }
  .sc_height_small  { height: 25px; }
  .sc_height_tiny   { height: 15px; }

  .sec_about { padding-bottom: 54px; background-position: 140% 104%; background-size: 70%; }
  .about_media, .about_info { width: 100%; }
  .about_media_col1 { width: 100%; }
  .about_media_col2 { width: 100%; display: block; }
  .about_img1 img { width: 65%; }
  .about_img2 { width: 65%; margin-left: 35%; margin-top: -50%; }
  .about_spacer_1 { display: none; }
  .about_spacer_2 { height: 20px; }
  .about_spacer_3 { height: 30px; }
  .about_spacer_4 { display: none; }
  .about_hours_col { width: 65%; padding-right: 10px; }
  .about_sign_col { width: 35%; }
  .about_sign_col:before { width: 180px; height: 98px; margin: -49px 0 0 -90px; }
  .sec_about .about_info { padding-left: 15px; }

  .services_head_descr, .services_head_controls { width: 100%; }
  .services_head_controls { margin-top: 10px; }
  .slider_controls_wrap { justify-content: flex-start; }
  .services_spacer_1 { height: 12px; }
  .services_spacer_2 { height: 25px; }
  .services_slide { width: 100%; }
  .sc_services_item { padding: 32px; }
  .sc_services_item_icon { font-size: 60.8px; }
  .sc_services_item_info { padding-top: 24px; }

  .mission_card { width: 100%; }
  .mission_card_bg { padding-bottom: 95%; }
  .mission_spacer_1 { height: 55px; }
  .sc_skills_column { width: 50%; padding-right: 0; margin-bottom: 20px; }
  .sc_skills { flex-wrap: wrap; }
  .sc_skills_item_wrap { height: 108px; }
  .sc_skills_total { font-size: 64px; line-height: 64px; }
  .sc_skills_item_title { font-size: 20px; }

  .portfolio_item { width: 100%; }
  .clients_row { width: 600%; }
  .clients_col { padding: 30px 0; }

  .sc_team_item { width: 100%; }
  .sec_team { background-position: 110% 100%; background-size: 70%; }
  .blog_grid { display: block; }
  .sc_blogger_item { width: 100%; margin-bottom: 40px; }
  .sc_blogger_item:last-child { margin-bottom: 0; }

  .footer_top_spacer { height: 55px; }
  .footer_col_1, .footer_col_2, .footer_col_3, .footer_col_4 { width: 100%; }
  .video_play_wrap { text-align: left; }
}
@media (max-width: 767px) {
  .hide_on_mobile { display: none !important; }
}
@media (max-width: 479px) {
  html { font-size: 16px; }
  .sc_item_title { font-size: 30px; line-height: 34px; letter-spacing: -.8px; }
  .sc_height_huge   { height: 54px; }
  .sc_height_big    { height: 54px; }
  .sc_height_medium { height: 30px; }
  .sc_height_small  { height: 20px; }
  .sc_height_tiny   { height: 10px; }
  .sc_button { padding: 15px 40px 16px; font-size: 15px; }
}
