/*
  Author: Sprintax Team
  Version: 1.0.0
*/

/*------------------------------------------
                Fonts
--------------------------------------------*/
/* Poppins */
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Light.woff2') format('woff2'),
      url('./fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;;
}
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Regular.woff2') format('woff2'),
      url('./fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Medium.woff2') format('woff2'),
      url('./fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('./fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-Bold.woff2') format('woff2'),
      url('./fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('./fonts/Poppins-ExtraBold.woff2') format('woff2'),
      url('./fonts/Poppins-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'icomoon';
  src:  url('./fonts/icomoon/icomoon.eot');
  src:  url('./fonts//icomoon/icomoon.eot') format('embedded-opentype'),
    url('./fonts//icomoon/icomoon.ttf') format('truetype'),
    url('./fonts//icomoon/icomoon.woff') format('woff'),
    url('./fonts//icomoon/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body-bg { background-color: #f9f7f5; }
.red-bg { background-color:	#c33a32; }
.white-bg { background-color: #ffffff; }

.text-red { color: #c33a32; }

.img-fit { 
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fs_18 { font-size: 18px; }
.fs_20 { font-size: 20px; }
.fw_500 { font-weight: 500; }
.fw_600 { font-weight: 600; }

.col-left-gap { padding-left: 80px !important; padding-right: 15px !important; }
.col-right-gap { padding: 80px 50px 80px 80px !important; }
.col-gap--40 { padding: 40px !important; }

.pt_30 { padding-top: 30px; }

.border-top-3--red { border-top: 3px solid #c33a32; }

.text-dark { color: #1f1f1f; }

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

[style*="background: #c33a32"] a:not(.btn), 
[style*="background-color: #c33a32"] a:not(.btn),
[style*="background: #c33a32"] a:not(.btn), 
[style*="background-color: #c33a32"] a:not(.btn) {
  color: inherit;
  text-decoration: underline;
}
[style*="background: #c33a32"] a:not(.btn):hover, 
[style*="background-color: #c33a32"] a:not(.btn):hover,
[style*="background: #c33a32"] a:not(.btn):hover, 
[style*="background-color: #c33a32"] a:not(.btn):hover {
  text-decoration: none;
}

/* Tables */
.table-bordered td, 
.table-bordered th {
  border: 1px solid #111;
}


/* Layout 2-column Half fluid width, half container (Text and image) */
.half-fluid__img {
  width: auto;
  margin-left: auto;
  position: absolute;
}
.half-fluid__img--left {
  left: 0;
  right: 50%;
}
.half-fluid__img--right {
  right: 0;
  left: 50%;
}
.half-fluid .left-col {
  padding: 80px 80px 80px 0;
}
.half-fluid .left-col::before,
.half-fluid .right-col::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.half-fluid .left-col::before {
  left: -200%;
  right: 0;
}
.half-fluid .left-col.red-bg::before { background: #c33a32; }
.half-fluid .left-col.tax-human-bg::before { background: #e8e1d0; }
.half-fluid .right-col { padding: 80px 0 80px 80px; }
.half-fluid .right-col::before { left: 0; right: -200%; }
.half-fluid .right-col.red-bg::before { background: #c33a32; }
.half-fluid .right-col.tax-human-bg::before { background: #e8e1d0; }

.hero.hero-5a .left-col,
.hero.hero-5b .left-col {
  padding-bottom: 60px;
}

/*------------------------------------------
                Global
--------------------------------------------*/
*:focus {
  outline: 0 !important;
}
::-moz-selection {
  color: #fff;
  background: #333;
}
::selection {
  color: #fff;
  background: #333;
}
html, body {
  height: 100%;
}
html.overflow-y-scroll {
  overflow-y: scroll;
}
body {
  font: 400 16px/24px 'Poppins', sans-serif;
  color: #1f1f1f;
  background: #f9f7f5;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
ul {
  padding-left: 0;
}
small {
  font-weight: 300;
  font-size: 14px;
}
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Top bar */
.top-bar {
  padding: 20px 30px;
  background: rgba(231, 70, 50, 0.05);
}
.top-bar i {
  font-size: 20px;
  color: #686868;
  transition: opacity .5s;
}
.socials-wrapper > a {
  margin-right: 30px;
}
.socials-wrapper > a:hover {
  text-decoration: none;
}
.socials-wrapper > a:hover i {
  color: #c33a32;
}

.global-overlay {
  display: none;
  position: fixed;
  z-index: 21;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: .3;
}

/* Header */
.top-bar,
.header {
  position: absolute;
  left: 0;
  right: 0;
}
.header {
  top: 60px;
  background: #f9f7f5;
}
.header.sticky {
  position: fixed;
  top: 0;
  z-index: 1001;
}
.main {
  padding-top: 140px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.main:not(.about) {
  overflow-x: hidden;
}
.main a {
  color: #c33a32;
}
.hamburger-menu {
  width: 100px;
  padding: 19px 30px;
  background: #c33a32;
}
.hamburger-menu__btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.hamburger-menu__label {
  margin-top: 4px;
  font-weight: 500;
  line-height: 14px;
  font-size: 14px;
}
.logo {
  margin-left: 30px;
}

/* Lang switcher */
.trp-language-switcher .trp-ls-shortcode-language::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.trp-language-switcher .trp-ls-shortcode-language::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #ccc;
  border-radius: 10px;
}

/* Handle */
.trp-language-switcher .trp-ls-shortcode-language::-webkit-scrollbar-thumb {
  background: #1f1f1f;
  border-radius: 10px;
}
.trp_language_switcher_shortcode {
  position: absolute;
  right: 30px;
}
.trp-language-switcher > div {
  border: 0;
  background-color: transparent;
}
.trp_language_switcher_shortcode .trp-language-switcher .trp-ls-shortcode-language.trp-ls-clicked, 
.trp_language_switcher_shortcode .trp-language-switcher:hover .trp-ls-shortcode-language.trp-ls-clicked {
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
  box-shadow: 0 0 5px 0 rgba(0,0,0,.2);
}
.trp-language-switcher > div > a {
  font-weight: 500;
  line-height: 24px;
  font-size: 14px;
  color: #686868;
}
.trp-ls-shortcode-language > a {
  padding: 10px 12px;
}
.trp-language-switcher > div > a > img {
  width: 20px;
  height: 20px;
}

/* Search */
.bcs-host-div {
  background-color: #f9f7f5 !important;
}
#search-form .bcs-container-searchbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  border: 0;
}
#search-form .bcs-searchbox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 20px;
  color: #1f1f1f;
}
#search-form .bcs-searchbox::-moz-placeholder { /* Firefox 19+ */
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 20px;
  color: #1f1f1f;
}
#search-form .bcs-searchbox:-ms-input-placeholder { /* IE 10+ */
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 20px;
  color: #1f1f1f;
}
#search-form .bcs-searchbox:-moz-placeholder { /* Firefox 18- */
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 20px;
  color: #1f1f1f;
}
#search-form .bcs-searchbox {
  width: 100px;
  margin: 4px 0px 0 4px;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: width .5s;
  -o-transition: width .5s;
  transition: width .5s;
}
#search-form .bcs-searchbox:focus {
  width: 250px;
}
#search-form .bcs-searchbox-submit {
  background: url(./assets/icons/magnifier.svg) no-repeat center center;
}
#search-form .bcs-modal {
  z-index: 9999;
}
#search-form .bcs-modal-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#search-form .bcs-pagination .bcs-current-page {
  background: #c33a32;
  color: #fff;
}
#search-form .bcs-pagination>ul>li>a:hover {
  color: #fff !important;
}
#toggle-search {
  cursor: pointer;
}

.info-page .hero-overlay {
  min-height: 352px;
}
.info-page .hero-overlay::before {
  background: #c33a32;
}
.info-body > p {
  margin-bottom: 20px;
}
.info-body ul li {
  margin-left: 30px;
}
.info-body ul li::marker {
  color: #c33a32;
}
/* .info-body ul > li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.info-body ul > li:before {
  content: url(assets/menu-arrow.svg);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
} */
.info-body ol {
  padding-left: 0;
  counter-reset: item; 
}
.info-body ol > li {
  margin-bottom: 20px;
  display: block; 
}
.info-body ol > li:before {
  margin-bottom: 15px;
  display: inline-block;
  content: counters(item, ".") ". "; 
  counter-increment: item;
  font-weight: 700;
}
.info-body ol > li > ol {
  padding-left: 15px;
}

h1 {
  font-weight: 800;
  line-height: 70px;
  font-size: 64px;
}
.heading-secondary,
h2 {
  font-weight: 700;
  line-height: 62px;
  font-size: 48px;
}
h3 {
  font-weight: 600;
  line-height: 34px;
  font-size: 24px;
}

p:last-child {
  margin-bottom: 0;
}
figure {
  margin: 0;
}
/* Buttons */
.btn {
  border-radius: 0;
  font-weight: 600;
  line-height: 27px;
  font-size: 18px;
  border-radius: 0;
  -webkit-transition: ease .5s;
  -o-transition: ease .5s;
  transition: ease .5s;
}
.btn-icon {
  padding: 15px 25px;
}
.btn-icon > .icon {
  display: inline-block;
  margin-top: -3px;
  vertical-align: middle;
}
.btn-ghost--white {
  border: 2px solid #fff;
  color: #fff !important;
}
.btn-ghost--white:hover {
  background-color: #fff;
  color: #c33a32 !important;
}

.btn--primary {
  background: #c33a32;
  color: #fff !important;
}
.btn--primary:hover {
  color: #fff !important;
  background: #cf3f2d;
}
#login-btn {
  padding: 20px 30px;
}

.btn--green {
  background: #5e7b2b;
  color: #fff !important;
}
.btn--green:hover {
  background: #668f20;
}

.hero { border-top: 1px solid #e0e0e0; }

/* .hero::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 66.666667%;
  background: url(./assets/tb-sign.svg) no-repeat right center;
  background-size: 100% 100%;
  z-index: 1;
} */
.hero .left-col,
.hero .right-col {
  width: 100%;
  min-height: 700px;
  position: relative;
}
.hero:not(.hero-bg-img, .hero-3a) .left-col  {
  background: #f9f7f5;
}
.hero .left-col {
  padding: 60px 40px 160px 15px;
}
.hero .left-col::before,
.hero .right-col::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero:not(.hero-bg-img) .left-col::before {
  background: #f9f7f5;
  right: 0;
  left: -200%;
}
.hero .left-col::before {
  right: 0;
  left: -200%;
}
.hero .right-col { padding: 60px 0 60px 60px; }

.hero .right-col::before {
  right: -200%;
  left: 0;
  background: #e8e1d0;
  z-index: 0;
}
.hero .right-col h3 {
  font-weight: 800;
  font-size: 36px;
}
.hero .right-col h3,
.hero .right-col p {
  position: relative;
  z-index: 1;
}

.left-col h1,
.hero-overlay h1 {
  padding-top: 15px;
  position: relative;
}
.left-col h1::after,
.hero-overlay h1::after {
  content: '';
  display: block;
  width: 150px;
  height: 3px;
  background: #c33a32;
  position: absolute;
  top: 0;
}

.hero h1 { margin-bottom: 80px; }

.hero-overlay-form .left-col h1::after, 
.hero-overlay h1::after { 
  background: #ffffff; 
}
.hero-overlay h1::after {
  left: 0;
  right: 0;
  margin: auto;
}
.hero-5a h1, .hero-5b h1 { margin-bottom: 30px; }

.hero-5b h1 ~ * {
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}

.hero-clippy h1 { 
  max-width: 720px; 
}
/* .hero-1a h1,
.hero-1b h1 { 
  max-width: 700px; 
} */

.hero-1a h1::before,
.hero-1b h1::before,
.hero-1c h1::before,
.hero-1d h1::before,
.shape-outside {
  content: '';
  width: 145px;
  height: 240px;
  margin-top: 240px;
  background: transparent;
  shape-outside: circle();
  shape-margin: 30px;
  clip-path: circle();
  float: right;
}
.hero-bg-img .left-col {
  position: relative;
}
.hero-bg-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 54.77%, rgba(0, 0, 0, 0.9) 90.7%);
  z-index: 1; 
}

.hero-bg-img .left-col,
.hero-bg-img .right-col {
  position: relative;
  z-index: 2;
}

.hero-1d h1 { margin-bottom: 30px; }
.hero-2a h1 { max-width: 660px; }
.hero-overlay-form h1 { max-width: 650px; }

.hero .left-col h3 { font-weight: 400; }

.hero__img {
  position: absolute;
  bottom: 80px;
  right: 0;
  height: auto;
}
.hero__img.bottom-0 { bottom: 0; }

.hero-5b .hero__img {
  z-index: 1;
  max-width: 600px;
}

.hero.hero-1c .left-col p,
.hero-bullets .left-col ul:not(.quick-links) li {
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}

.hero-bullets .left-col ul:not(.quick-links) {
  max-width: 480px;
  list-style: none;
}
.hero-bullets .left-col ul:not(.quick-links) li {
  padding-left: 45px;
  position: relative;
}
.hero-bullets .left-col ul:not(.quick-links) li:not(:last-child) { 
  margin-bottom: 15px;
}
.hero-bullets .left-col ul:not(.quick-links) li::before {
  content: "\ed58";
  font-family: 'icomoon';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  color: #c33a32;
}
.hero-bullets.hero-overlay-form .left-col ul:not(.quick-links) li::before {
  content: "\e9d0";
  color: #ffffff;
}
.hero-bullets .left-col ul:not(.quick-links) li em {
  font-size: 16px;
  font-style: normal;
}
.hero-1d ul:not(.quick-links) {
  margin-top: 40px;
}

.hero p {
  line-height: 24px;
  font-size: 16px;
  max-width: 480px; 
}

.hero-1b h1 + *,
.hero-1b h1 + *,
.hero-1c h1 + *,
.hero-bullets .left-col ul:not(.quick-links) + p {
  max-width: 480px;
  font-weight: 500;
  line-height: 28px;
  font-size: 20px;
}

.hero-overlay-form .left-col ul li::before {
  color: #fff;
}
.hero .left-col ul:not(.quick-links) li span {
  font-size: 16px;
}

.hero .form-label { font-weight: 500; }

.breadcrumbs {
  max-width: 100% !important;
}
.breadcrumbs a,
.breadcrumbs .breadcrumb_last {
  font-weight: 600;
  font-size: 17px;
  color: #1f1f1f !important;
  transition: color .3s;
}
.breadcrumbs a:hover {
  text-decoration: none;
  color: #c33a32 !important;
}
.breadcrumbs--white a,
.breadcrumbs--white .breadcrumb_last {
  color: #ffffff !important;
}
.breadcrumbs--white a:hover {
  text-decoration: underline;
  color: #ffffff !important;
}
.breadcrumbs span:not(:last-child)::after {
  content: '';
  width: 7px;
  height: 12px;
  margin: 0 10px;
  display: inline-block;
  background: url(./assets/icons/breadcrumb-separator.svg) no-repeat center center;
}
.breadcrumbs--white span:not(:last-child)::after {
  background: url(./assets/icons/breadcrumb-separator-white.svg) no-repeat center center;
}

/* Hero overlay */
.hero-overlay {
  min-height: 440px;
  padding: 80px 0;
}
.hero-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#c33a32), to(rgba(231, 70, 50, 0.8)));
  background: -o-linear-gradient(top, #c33a32 0%, rgba(231, 70, 50, 0.8)100%);
  background: linear-gradient(180deg, #c33a32 0%, rgba(231, 70, 50, 0.8) 100%);
}
.hero-overlay h1 ~ *,
.hero-2a h1 ~ *,
.hero-5a h1 ~ * {
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
}
.hero-overlay h2 {
  font-size: 24px;
}
.hero-5a h1 ~* {
  max-width: 520px;
}

.hero-overlay .breadcrumbs a,
.hero-overlay .breadcrumbs .breadcrumb_last {
  color: #fff !important;
}
.hero-overlay .breadcrumbs a:hover {
  text-decoration: underline;
  color: #fff !important;
}
.hero-overlay .breadcrumbs .separator {
  background: url(./assets/icons/breadcrumb-separator-white.svg) no-repeat center center;
}
.quick__list {
  padding: 26px 30px;
}
.qick__item:last-child {
  margin-bottom: 0 !important;
}
.quick__link {
  line-height: 24px;
  font-size: 24px;
  color: #1f1f1f !important;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.quick__link > img {
  margin-right: 5px;
}
.red-bg .quick__link {
  color: #fff !important;
}

.hero-overlay-form .left-col {
  background: transparent;
  min-height: 600px;
}

.quick-links--fluid.hero-4b .quick-link-item:not(:last-child) {
  border-right: 2px solid #e0e0e0;
}

/*Hero cut out */
.hero-clippy::before { content: none; }
.hero-clippy .left-col { z-index: 1; }

.hero-clippy .left-col.red-bg,
.hero-clippy .left-col.red-bg::before { background: #c33a32; }

.hero-clippy .left-col::after {
  content: '';
  width: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: -10%;
  bottom: 0;
  background: #e8e1d0;
  -webkit-clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%, 35% 50%);
  clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%, 35% 50%);
  z-index: -1;
}

.hero-clippy .hero__img { bottom: 0; }


/* Select */
.bootstrap-select { 
  width: 100% !important; 
  min-height: 50px; 
}
.tb-select select {
  width: 100% !important;
  height: 50px !important;
  padding: 10px 0 !important;
  border: 2px solid #f6f8fb;
  border-radius: 0;
  display: block !important;
  left: 0;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #495057;
  opacity: 1 !important;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background: url(./assets/arrow-down-red.svg) #fff no-repeat 97% center;
  background-size: 12px 12px;
}
.bootstrap-select > select {
  display: none !important;
}
.bootstrap-select>.dropdown-toggle {
  width: 100%;
  padding: 10px 35px 10px 15px;
  border-radius: 0;
  border: 2px solid #f6f8fb;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #495057;
  background-color: #fff;
  text-transform: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.bootstrap-select>.dropdown-toggle:active {
  color: #495057;
  background-color: #fff !important;
  outline: 0;
}
.bootstrap-select>.dropdown-toggle:focus {
  outline: 0 !important;
}
.dropdown-toggle:after {
  content: '';
  padding: 3px;
  border: solid #c33a32;
  border-width: 0 2px 2px 0;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transform: rotate(45deg) translateY(-50%);
}
.bootstrap-select.show .dropdown-menu {
  max-height: 200px;
  margin: 0;
  -webkit-animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
  -o-animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
  animation: showDropdown .2s cubic-bezier(.6, .2, .1, 1) both;
}
@-webkit-keyframes showDropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95, 0.95);
    transform: translateY(-10px) scale(0.95, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes showDropdown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px) scale(0.95, 0.95);
    transform: translateY(-10px) scale(0.95, 0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.bootstrap-select .dropdown-menu > .active > a, 
.bootstrap-select .dropdown-menu > .selected > a, 
.bootstrap-select .dropdown-menu > .active > a:hover, 
.bootstrap-select .dropdown-menu > .selected > a:hover,
.bootstrap-select .dropdown-menu > .active > a:focus, 
.bootstrap-select .dropdown-menu > .selected > a:focus {
  color: #fff !important;
  text-decoration: none;
  background-color: #c33a32;
  outline: 0;
}
.dropdown-item.active, 
.dropdown-item:active {
  background-color: #f8f9fa;
  color: #222;
}
.bootstrap-select .dropdown-menu li a span.text {
  white-space: normal;
  line-height: normal;
  font-size: 15px;
}
.bootstrap-select .no-results {
  padding: 10px;
  font-size: 13px;
  white-space: normal;
  line-height: normal;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-weight: 400;
  font-size: 18px;
  color: #1f1f1f;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.bootstrap-select .selected + .dropdown-toggle .filter-option-inner-inner {
  font-weight: 600;
}
.bootstrap-select.selected-option-bold .filter-option-inner-inner {
  font-weight: 600;
}
.bootstrap-select .dropdown-menu {
  border: 0;
  -webkit-box-shadow: 0 20px 66px 0 rgba(34, 48, 73, .2);
  box-shadow: 0 20px 66px 0 rgba(34, 48, 73, .2);
}

.bs-searchbox .form-control { padding: 0 15px; }
.bs-searchbox .form-control:focus { box-shadow: none; }

.show>.btn-light.dropdown-toggle {
  background-color: #fff;
  border-color: #f6f8fb;
}
.dropdown-item:focus,
.dropdown-item:hover {
  outline: 0;
}
.bootstrap-select .dropdown-menu li a {
  color: #1f1f1f !important;
}

.top-bar .bootstrap-select {
  width: auto !important;
}
.bootstrap-select > #lang-switcher + .dropdown-toggle {
  width: 200px;
  padding: 0;
  border: 0;
  background: transparent;
}
.bootstrap-select > #lang-switcher + .dropdown-toggle.dropdown-toggle:after {
  display: none;
}
.bootstrap-select > #lang-switcher + .dropdown-toggle .filter-option-inner-inner {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #686868;
  text-align: right;
  text-transform: capitalize;
}
.bootstrap-select > #lang-switcher ~ .dropdown-menu li a {
  padding: 5px 10px;
  text-transform: capitalize;
}

.bootstrap-select.show > #lang-switcher ~ .dropdown-menu .dropdown-menu.inner {
  max-height: initial;
}

.submit-btn {
  margin-top: 60px;
  width: 100%;
  padding: 11px 20px;
  border: 0;
  border-radius: 0;
  background-color:#5e7b2b;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  transition: ease .5s;
}

.submit-btn:hover {
  color: #fff;
  background-color: #668f20;
}

.hero-1c-d-btn:disabled {
  background-color:#5e7b2b;
  cursor: not-allowed !important;
}

.hero form {
  width: 435px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* Quick links */
.quick-links--half {
  margin-top: 113px;
  padding: 26px 50px 26px 0;
}

.quick-links--half {
  width: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  list-style: none;
}

.hero-2a .quick__nav::before,
.hero-2a .quick__nav::after,
.quick-links--half::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: -200%;
  bottom: 0;
  background: #c33a32;
}
.hero-2a .quick__nav::after {
  left: 0;
  right: -200%;
}
.quick-links * {
  z-index: 1;
}

.quick-links .quick-link-item {
  height: 80px;
  padding: 0 30px;
  border-right: 2px solid #f9f7f5;
}
.quick-links--fluid .quick-link-item { border: 0; }

.hero-clippy .quick-links--fluid .quick-link-item:not(:last-child) { border-right: 2px solid #f9f7f5; }

.quick-links--half .quick-link-item:first-child { 
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.quick-links--half .quick-link-item:last-child { border-right: 0; }

.quick-link {
  border-bottom: 4px solid transparent;
  font-weight: 400;
  line-height: 24px;
  font-size: 24px;
}

.white-bg .quick-link  {
  color: #1f1f1f;
}

.quick-links .quick-link::before {
  content: '';
  margin-right: 5px;
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
}

.hero-1a .quick-link-item:first-child .quick-link::before,
.hero-1b .quick-link-item:first-child .quick-link::before,
.hero-1c .quick-link-item:first-child .quick-link::before,
.hero-1d .quick-link-item:first-child .quick-link::before,
.hero-3a .quick-link-item:first-child .quick-link::before,
.hero-clippy .quick-link-item:first-child .quick-link::before {
  width: 18px;
  height: 20px;
  background: url(./assets/icons/calculator-white.svg) no-repeat center center;
  background-size: 18px 20px;
}
.hero-1a .quick-link-item:nth-child(2) .quick-link::before,
.hero-3a .quick-link-item:nth-child(2) .quick-link::before {
  width: 16px;
  height: 21px;
  background: url(./assets/icons/self-assessed-white.svg) no-repeat center center;
  background-size: 16px 21px;
}
.hero-1b .quick-link-item:nth-child(2) .quick-link::before,
.hero-3a .quick-link-item:nth-child(3) .quick-link::before  {
  width: 20px;
  height: 20px;
  background: url(./assets/icons/graph-white.svg) no-repeat center center;
  background-size: 20px 20px;
}
.hero-clippy .quick-link-item:nth-child(2) .quick-link::before,
.hero-1c .quick-link-item:nth-child(2) .quick-link::before,
.hero-1d .quick-link-item:nth-child(2) .quick-link::before,
.hero-1a .quick-link-item:nth-child(3) .quick-link::before {
  width: 22px;
  height: 20px;
  background: url(./assets/icons/building-white.svg) no-repeat center center;
  background-size: 22px 20px;
}
.hero-1b .quick-link-item:nth-child(3) .quick-link::before,
.hero-1c .quick-link-item:nth-child(3) .quick-link::before,
.hero-1d .quick-link-item:nth-child(3) .quick-link::before,
.hero-clippy .quick-link-item:nth-child(3) .quick-link::before {
  width: 21px;
  height: 19px;
  background: url(./assets/icons/healthcare.svg) no-repeat center center;
  background-size: 21px 19px;
}
.hero-3a .quick-link-item:nth-child(4) .quick-link::before {
  width: 20px;
  height: 20px;
  background: url(./assets/icons/contact.svg) no-repeat center center;
  background-size: 20px 20px;
}



.hero-3a .quick-link-item:first-child .quick-link::before { background: url(./assets/icons/calculator.svg) no-repeat center center; }
.hero-3a .quick-link-item:nth-child(2) .quick-link::before { background: url(./assets/icons/self-assessed.svg) no-repeat center center; }
.hero-3a .quick-link-item:nth-child(3) .quick-link::before { background: url(./assets/icons/graph.svg) no-repeat center center; }


.quick-link::after {
  content: '';
  width: 100%;
  height: 4px;
  display: block;
  position: absolute;
  bottom: -15px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease .5s;
  -o-transition: ease .5s;
  transition: ease .5s;
}
.tax-human-bg .quick-link::after { background: #1f1f1f; }
.white-bg .quick-link::after { background: #c33a32; }

.quick-link:hover::after {
  opacity: 1;
  visibility: visible;
}
.quick-link:hover {
  text-decoration: none;
}
/* 100% quick links */
.quick__nav {
  z-index: 1;
}

/* Main nav */
.main-nav {
  width: 420px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #c33a32;
  -webkit-transform: translate3d(-120%,0,0);
  transform: translate3d(-120%,0,0);
  -webkit-transition: 350ms ease-in-out;
  -o-transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
}

.main-nav.opened {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

[class^="menu-main-"][class$="-container"] {
  width: 420px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  top: 80px;
  z-index: 9998;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.main-nav .menu > .menu-item { margin-bottom: 25px; }

.main-nav .menu > .menu-item > a {
  font-weight: 500;
  line-height: 36px;
  font-size: 24px;
}
.main-nav .menu > .menu-item > a:hover,
.main-nav .menu-item.open > a {
  font-weight: 700;
  text-decoration: none;
}
.main-nav .menu-item-has-children > a {
  padding-right: 20px;
  background: url(./assets/menu-arrow.svg) no-repeat center right;
  background-size: 12px 20px;
}
.main-nav .menu-item-has-children > a:hover,
.main-nav .menu-item.open > a {
  font-weight: 700 !important;
  background: url(./assets/menu-arrow-hovered.svg) no-repeat center right;
  background-size: 12px 20px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 50px 80px 50px;
}
.main-nav .menu {
  height: calc(100% - 50px);
  padding-top: 80px;
  position: static;
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
}
.main-nav .menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.main-nav .menu::-webkit-scrollbar-track { background-color: #bbb; }
.main-nav .menu::-webkit-scrollbar-thumb { background-color: #fff; }
.main-nav .menu::-webkit-scrollbar-track,
.main-nav .menu::-webkit-scrollbar-thumb {
  border-radius: 12px;
}
.menu-item > a { color: #fff; }

.main-nav .menu > .menu-item:not(.menu-item-has-children) {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}
/* .main-nav .menu > .menu-item:not(.menu-item-has-children):hover { opacity: .75; } */

.main-nav .menu > .menu-item.social {
  display: inline-block;
  position: relative;
}
.main-nav .menu > .menu-item.social { margin: 35px 10px 60px 0; }

.main-nav .menu > .menu-item.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  text-indent: -9999px;
}

.main-nav .menu > .menu-item.social.instagram a { background: url(./assets/icons/instagram.svg) no-repeat center center #fff; }
.main-nav .menu > .menu-item.social.facebook a { background: url(./assets/icons/facebook.svg) no-repeat center center #fff; }
.main-nav .menu > .menu-item.social.twitter a { background: url(./assets/icons/twitter.svg) no-repeat center center #fff; }
.main-nav .menu > .menu-item.social.linkedin a {background: url(./assets/icons/linkedin.svg) no-repeat center center #fff; }

.main-nav .menu > .menu-item.additional { margin-bottom: 15px; }
.main-nav .menu > .menu-item.additional a { 
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}

.close-nav__btn {
  width: 80px;
  height: 80px;
  padding: 20px;
  border-radius: 0;
  position: fixed;
  top: 0;
  background: #c33a32;
  z-index: -1;
  -webkit-transition: 350ms ease-in-out;
  -o-transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
  right: -80px;
}

.main-nav__logo {  margin: 15px 10px 0 30px; }

.main-nav .sub-menu-wrap {
  width: 100%;
  height: 100%;
  border-left: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: none;
  -webkit-transition: 300ms ease;
  -o-transition: 300ms ease;
  transition: 300ms ease;
}

.main-nav .sub-menu {
  height: calc(100% - 65px);
  padding: 65px 50px;
  position: static;
  overflow: scroll;
  overflow-x: visible;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #fff #bbb;
}
.open>.sub-menu-wrap {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
.main-nav .sub-menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.main-nav .sub-menu::-webkit-scrollbar-track {
  background-color: #bbb;
}
.main-nav .sub-menu::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.main-nav .sub-menu::-webkit-scrollbar-track, 
.main-nav .sub-menu::-webkit-scrollbar-thumb {
  border-radius: 12px;
}

.main-nav .sub-menu .menu-item { padding: 27px 0; }
.main-nav .sub-menu .menu-item:first-child { padding-top: 0; }
.main-nav .sub-menu .menu-item:not(:last-child) { border-bottom: 2px solid #fff; }

.main-nav .sub-menu .menu-item > a {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
  display: block;
}
.main-nav .sub-menu .menu-item > a:hover { text-decoration: none; }
/* .main-nav .sub-menu .menu-item:not(.menu-item-has-children) > a {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
} */
.main-nav .sub-menu .menu-item:not(.menu-item-has-children) > a:hover { font-weight: 700; }
.nav__item {
  width: 320px;
  padding: 15px 0;
  position: fixed;
  bottom: 80px;
  background: #c33a32;
}
.sub__close {
  font-weight: 800;
  font-size: 28px;
  color: #fff;
}
.sub__close:hover {
  color: #fff;
  text-decoration: none;
}

/* Home countries */
.countires {
  background: url(./assets/world-map.svg) no-repeat top center;
}

.section {
  /* margin-top: 40px; */
  /* padding-top: 120px; */
  padding: 80px 0;
  z-index: 1;
}

.section h2::before,
.hero .right-col h3::before,
.heading-secondary::before {
  content: '';
  width: 150px;
  height: 3px;
  margin-bottom: 10px;
  display: block;
  background: #c33a32;
}
.section h2.separator-0::before {
  display: none;
}
.red-bg h2::before,
.section h2.separator--white::before {
  background: #fff;
}

.section .text-center > h2::before,
.section .text-center > .heading-secondary::before,
.section h2.text-center::before,
.section h2[style*="text-align: center;"]::before {
  margin: 0 auto 10px;
}

.country__col {
  padding: 15px;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.flag { margin-right: 30px; }
.country {
  font-weight: 600;
  line-height: 26px;
  font-size: 24px;
  color: #1f1f1f;
  border-bottom: 3px solid transparent;
  transition: border-color .5s;
}
.country__col:hover { text-decoration: none; }
.country__col:hover .country { border-color: #1f1f1f; }

/* How it works */
.how-works-sign {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
/* .how-works-irl::before {
  content: "";
  position: absolute;
  width: 50%;
  display: block;
  top: 0;
  right: -5%;
  bottom: 0;
  background: url(./assets/tb-sign-how-works.svg) no-repeat right center / cover;
  z-index: 1;
} */
.steps-wrapper {
  /* min-height: 35vw; */
  padding: 80px 50px 80px 80px;
}
.steps {
  counter-reset: step-counter;
}
.step {
  min-width: 100%;
}
.step:not(:last-child) {
  padding-bottom: 50px;
}
.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 800;
  font-size: 32px;
  z-index: 2;
}
.step:not(:last-child)::after {
  content: '';
  width: 4px;
  position: absolute;
  top: 70px;
  bottom: -30px;
  display: block;
  left: 34px;
}
.step p {
  margin: 0 0 0 20px;
  max-width: 350px;
}

/* Employees */
#employees-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #f9f7f5;
}
#employees-carousel .item {
  padding: 30px;
  border-radius: 3px;
  text-align: center;
}
#employees-carousel .item img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
#employees-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.custom-owl-nav button {
  width: 60px;
  height: 60px;
  border-radius: 0;
  font-size: 20px;
}
.custom-owl-nav button:hover {
  color: #fff;
}

/* Taxback in numbers */
.numbers {
  padding-bottom: 120px;
}
.arrows-pattern-5 {
  max-width: 70%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -65px;
  margin: auto;
  z-index: 0;
}
.arrows-pattern {
  margin-top: -40px;
  z-index: 1;
}
.statistic-box:nth-child(-n + 2) {
  margin-bottom: 80px;
}
.statistic__title {
  font-weight: 600;
  line-height: 40px;
  font-size: 28px;
}
.statistic__number {
  font-weight: 800;
  line-height: 77px;
  font-size: 64px;
}
.statistic__summary {
  color: #1f1f1f;
}
/* Tax services */
.service-box {
  height: calc(100% - 40px);
  background: #fff;
  margin-bottom: 40px;
  border: 1px solid transparent;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
.service-box:hover {
  border-color: #c33a32;
  text-decoration: none;
}
/* .service-box__header::before {
  content: "\e901";
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  position: absolute;
  top: 25px;
  right: 25px;
  line-height: 50px;
  font-size: 50px;
  color: #fff;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
} */
.service-box:hover .service-box__header::before {
  color: #c33a32;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.service-box__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-box__body {
  padding: 30px;
  background: #fff;
  color: #1f1f1f;
}
.service__title {
  line-height: 30px;
  font-size: 28px;
  color: #1f1f1f;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
.service__description {
  color: #1f1f1f;
}
.service-box:hover .service__title {
  color: #c33a32;
}

/* Reviews */
#reviews-carousel {
  width: 90%;
  margin: auto;
}
#reviews-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#reviews-carousel .owl-item {
  background: #fff;
}
#reviews-carousel .review {
  height: 100%;
  padding: 20px 30px 40px;
}
.review-content {
  font-weight: 400;
}
.review-author,
.review-title {
  margin-bottom: 5px;
  font-weight: 600;
  line-height: normal;
  font-size: 20px;
}
.review-date {
  display: block;
  font-weight: 400;
  font-style: italic;
}
.rating .star {
  margin-right: 2px;
}

#reviews-carousel .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#reviews-carousel .owl-nav button {
  position: absolute;
}
#reviews-carousel .owl-nav .owl-prev {
  left: -60px;
}
#reviews-carousel .owl-nav .owl-next {
  right: -60px;
}

#reviews-carousel .owl-nav .owl-next.disabled{
  display: none;
}
#reviews-carousel .owl-nav button .icon {
  font-size: 50px;
  color: #c33a32;
}


/* /* Half columns offset with red box  */

/* .offset-half-col {
  background-size: 600px 550px ;
}

.offset-half-col--left {
  padding-bottom: 20%;
  background-position-x: 0 !important;
  background-position-y: bottom !important;
}

.offset-half-col--right {
  padding-top: 25%;
  background-position-x: 40px !important;
  background-position-y: top !important;
} 

.half-red-box {
  width: calc(100% - 110px);
  background: #c94e3b;
  color: #fff;
}

.half-red-box--right {
  padding: 48px 80px 48px 48px;
  margin-left: auto;
  margin-right: -80px;
}
.half-red-box--left {
  padding: 48px 48px 48px 80px;
  margin: 120px auto 0 -23px;
}
*/

/* Tax refunds */
/* .tax-refunds {
  padding-bottom: 160px;
} */

/* Feature 2 B */
.features-2b__text-block h2 ~ * {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
  margin: 15px 0 0;
}
.features-2b-bullets > *:not(ul) {
  font-weight: 600;
  line-height: 40px;
  font-size: 28px;
}

.features-2b-bullets ul {
  margin-top: 25px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.features-2b-bullets ul li {
  padding-left: 40px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}
.features-2b-bullets ul li::before,
.features-2c-bullets ul li::before {
  content: "\ed58";
  font-family: 'icomoon';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

.features-2b-bullets ul li em { 
  display: block;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  font-style: normal;
}

/* Services cards */
.services h2 { 
  max-width: 600px;
  margin-bottom: 20px; 
}

.services h2 ~ * {
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
}

/* Footer */
.footer {
  padding-top: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  background: #fff;
}

.footer a { color: #1f1f1f; }

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list__title { font-size: 16px; }

.footer-list__item > a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}

.copyright {
  margin-top: 40px;
  padding: 18px 0;
  background: #f9f7f5;
}
.copyright a {
  margin-left: 25px;
  font-weight: 400;
  text-decoration: underline;
}
.copyright a:first-child { margin-left: 0; }
.copyright a:hover { text-decoration: none; }

.footer-socials__list {
  min-width: 160px;
  list-style: none;
}
.footer-socials__list a {
  -webkit-transition: ease .5s;
  -o-transition: ease .5s;
  transition: ease .5s;
}
.footer-socials__list a:hover { text-decoration: none; }
.footer-socials__list-item:not(:last-child) { margin-bottom: 15px; }

.footer-socials__list-item i {
  width: 25px;
  font-size: 22px !important;
  color: #686868;
  text-align: center;
}

.certificates a:hover img {
  opacity: .8;
}

.policies li {
  margin-left: 15px;
}

.residents h2 { margin-bottom: 25px; }

.global-service {
  padding: 19px 15px 19px 60px;
  border-bottom: 2px solid #e0e0e0;
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
  color: #000 !important;
  -webkit-transition: background .3s ease;
  -o-transition: backgrounde .3s ease;
  transition: background .3s ease;
}
.global-service .icon-next { font-size: 25px; color: #c33a32; }
.global-service__icon { font-size: 40px; }
.global-service:last-child { border-bottom-color: transparent; }

.global-service:hover {
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: #c33a32;
}
.global-service:hover > i {
  color: #fff;
}

/* PAYE Service */
.features {
  padding-bottom: 110px;
  z-index: 1;
}
.feature-title {
  line-height: 30px;
  font-size: 28px;
}
.feature:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #c33a32;
  display: block;
  margin: 30px auto;
}
.features img {
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.office-contact-info p > span {
  padding-left: 40px;
  font-weight: 600;
  font-size: 24px;
  color: #c33a32;
  background: url(./assets/icons/phone.svg) no-repeat center left;
}

/* FAQ */
.card {
  background-color: transparent;
  border: 0;
}
.card .card-header {
  padding: 0;
  position: relative;
  background-color: transparent;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  transition: background-color .5s;
}
.card-header h3 {
  font-weight: 600;
  font-size: 16px;
}
.card-header a {
  min-height: 100px;
  padding: 15px 20px 15px 0;
  display: block;
  color: #1f1f1f;
}
.card-header a:hover {
  text-decoration: none;
}
.card .icon {
  font-size: 15px;
  position: absolute;
  right: 0;
}
.card a[aria-expanded="true"] .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.card-header,
.card-body {
  border-bottom: 1px solid #c33a32;
}
.card-body {
  padding: 15px;
}
.card-body a {
  color: #c33a32;
}
.card-body ul {
  padding-left: 20px;
}

.office-card__header {
  height: 250px;
  position: relative;
}
.office-card__header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(0,0,0,.2);
}
.office-town {
  left: 15px;
  bottom: 15px;
}
.office-card__body {
  height: 60%;
  padding: 30px;
  background: #fff;
}
.office-card__body p:last-child {
  margin-bottom: 0;
}


/* List with checkmarks */
/* .checkmarks__list-item {
  min-height: 85px;
  padding: 15px 30px 15px 60px;
  font-weight: 500;
  font-size: 20px;
  position: relative;
} */

/* .checkmarks__list--yellow .checkmarks__list-item:not(:last-child) { border-bottom: 1px solid #fbbe49; } */
/* .checkmarks__list--green .checkmarks__list-item:not(:last-child) { border-bottom: 1px solid #668f20; } */
/* .checkmarks__list--red .checkmarks__list-item:not(:last-child) { border-bottom: 1px solid #c33a32; } */

/* .checkmarks__list--white-bg .checkmarks__list-item {
  min-height: auto;
  margin-bottom: 20px;
  background: #fff;
  border-bottom: 0;
}
.checkmarks__list--white-bg .checkmarks__list-item:last-child {
  margin-bottom: 0;
} */

.checkmarks__list-item .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 30px;
}
/* .checkmarks__list--yellow .checkmarks__list-item .icon { color: #fbbe49; }
.checkmarks__list--green .checkmarks__list-item .icon { color: #668f20; }
.checkmarks__list--red .checkmarks__list-item .icon { color: #c33a32; } */


.arrow-bg {
  height: 100%;
  top: 0;
  right: -60px;
  z-index: -1;
  transform: scale(1.5);
}

/* CTA Section */
.cta-section { padding: 40px 0; }
.cta-section h2::before { display: none; }
.cta-section a:not(.btn) { color: inherit; text-decoration: underline; }
.cta-section a:not(.btn):hover { text-decoration: none; }

/* .right-gap { padding: 48px 80px 48px 48px; } */
.push-left { left: 80px; }
/* .push-left-220 { left: 220px; } */

/* .push-right-15 { right: 15px; } */
.push-right { right: 80px; }
/* .push-right-200 { right: 200px; } */


/* .push-bottom-80 { top: auto; bottom: 80px; } */

/* Jobs board */
.whr-items,
.whr-info {
  padding: 0;
  list-style: none;
}
.whr-title {
  margin-bottom: 35px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 28px;
  background: url(./assets/icons/next-red.svg) no-repeat left center;
  background-size: 15px 24px;
}
.whr-title > a {
  color: #1f1f1f;
}
.whr-title > a:hover {
  text-decoration: none;
  color: #c33a32;
}
.whr-item .whr-info > li {
  margin-bottom: 15px;
  padding-left: 30px;
  font-weight: 400;
}
.whr-item .whr-info > li:last-child {
  margin: 0;
}
.whr-item .whr-info > li > span {
  font-weight: 700;
}
.whr-dept {
  background: url(./assets/icons/building.svg) no-repeat left center;
  background-size: 18px 20px;
}
.whr-location {
  background: url(./assets/icons/location-sharp.svg) no-repeat 2px center;
  background-size: 13px 19px;
}
.whr-date {
  background: url(./assets/icons/calendar.svg) no-repeat left center;
  background-size: 18px 20px;
}
.whr-item:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #c33a32;
  display: block;
  margin: 40px auto;
}

/* YouTube iframe videos */
.wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
/* The outer-div to move the elements */
.box-video {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.box-video--square {
  width: 100%;
  max-width: 600px;
  height: 600px;
}
/* Set Cover aka Background-Image */
.box-video .bg-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
}
/* Add light shade to make play button visible*/
.bg-video::after{ 
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.1);
  z-index: 3;
  transition: .5s ease;
}
.bg-video:hover::after {
  background-color: rgba(0,0,0,.5);
}


/* The Play-Button using CSS-Only */
.box-video .bt-play {
  width: 100px;
  height: 100px;
  display: inline-block;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  text-indent: -999em;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  z-index: 4;
}
/* The Play-Triangle */
.box-video .bt-play:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  height: 0;
  width: 0;
  margin: -12px 0 0 -6px;
  border: solid transparent;
  border-left-color: #fff;
  border-width: 12px 20px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
/* .box-video:hover .bt-play {
  transform: scale(1.1);
} */
/* When Class added the Cover gets hidden... */
.box-video.open .bg-video {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;  
}
/* and iframe shows up */
.box-video.open .video-container {
  opacity: 1;
  -webkit-transition: all .6s .8s;
  transition: all .6s .8s;
}
/* Giving the div ratio of 16:9 with padding */
.video-container {
	position: relative;
	width: 100%;
	height: 0;
  margin: 0;
  z-index: 1;
	padding-bottom: 56.27198%;
}
.box-video--square .video-container {
  height: 100%;
  padding-bottom: 0;
}
.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* New Video Block */
.media-video-wrap {
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.media-box-video--square {
  width: 100%;
  max-width: 600px;
  height: 100%;
}

.media-service-box {
  height: calc(100% - 40px);
  background: #fff;
  margin-bottom: 40px;
  border: 1px solid transparent;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}

.nav-tabs{
  border-bottom: 0;
}

.nav-tabs .video-nav-link {
  color:#1f1f1f;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
}

.nav-tabs .video-nav-link.active {
  color:#c33a32;
  border-bottom: 1px solid #c33a32;
}

.nav-tabs .video-nav-link:hover {
  text-decoration: none;
  color:#c33a32;
}

/*------------------------------------------
            About us
--------------------------------------------*/
/* No one should overpay tax */
/* .about-overpay-box {
  -webkit-transform: translateX(80px) translateY(-45px);
  -ms-transform: translateX(80px) translateY(-45px);
  transform: translateX(80px) translateY(-45px);
  padding: 80px 200px 80px 80px !important;
  z-index: 1;
}
.about-overpay-box h2 { margin-bottom: 30px; }
.about-overpay-box h2::before { background: #fff; } */

/* Roadmap */
.threshold {
  position: sticky;
  width: 100%;
  height: 1px;
  background-color: red;
  z-index: 9999999999;
}
.threshold--top {
  top: 50%;
}
.image,
.track h2 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.track.active .image,
.track.active h2 {
  opacity: 1;
}
.roadmap,
.roadmap__image {
  position: relative;
}
.track {
  width: auto;
  height: 70vh;
  position: absolute;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.roadmap__container {
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.roadmap__section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.timeline {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
}
.tl {
  width: 3px;
  height: 70vh;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tl:before {
  content: ' ';
  width: 3px;
  height: 100%;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  background: #b3b3b3;
  background: -o-linear-gradient(top, rgba(179,179,179,0) 0%, rgb(179,179,179) 8%, rgb(179,179,179) 92%, rgba(179,179,179,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(179,179,179,0)), color-stop(8%, rgb(179,179,179)), color-stop(92%, rgb(179,179,179)), to(rgba(179,179,179,0)));
  background: linear-gradient(to bottom, rgba(179,179,179,0) 0%, rgb(179,179,179) 8%, rgb(179,179,179) 92%, rgba(179,179,179,0) 100%);
  z-index: 5;
}
.tl__item {
  padding: 1em 0;
}
.tl__flag::before {
  content: ' ';
  height: 15px;
  width: 15px;
  margin-top: -10px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: -6px;
  background: #1f1f1f;
  z-index: 5;
}
.tl__flag.active::before { background: #c33a32; }

/* Team */
.team-card__header {
  width: 100%;
  height: 296px;
}
.team-card__img,
.modal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__body,
.modal-card__body {
  background: #c33a32;
  transition: ease .5s;
}

.team-card__body { cursor: pointer; }
.team-card__body:hover { background: #cf3f2d; }

.team-card__name,
.modal-card__name {
  font-size: 24px;
}
.team-card__name .icon { font-size: 16px; }
.modal-card__name .icon:hover { opacity: .8; }

.modal-card__header {
  width: 100%;
  height: 330px;
}
.modal-card__bio {
  padding: 60px;
  font-size: 15px;
}
.modal-card__close {
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  background-color: #c33a32 !important;
  text-shadow: none;
  opacity: 1;
  z-index: 1;
}
.modal-card__close:hover { color: #fff; }

/* Services */
.about-services__list { padding-top: 75px; }
.about-services__item { padding: 27px 15px; }

.about-services__link {
  font-weight: 600;
  font-size: 24px;
  color: #1f1f1f !important;
}
.about-services__link .icon { color: #c33a32 !important; }
.about-services__link:hover { text-decoration: none;  color: #c33a32 !important; }

/* Contact Us */
.office { padding: 30px 20px; }
.office__country { font-weight: 600; font-size: 28px; }
.office__country > span { font-size: 14px; }
.country__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contacts-social__link {
  width: 96px;
  height: 55px;
  -webkit-transition: ease .5s;
  -o-transition: ease .5s;
  transition: ease .5s;
}
.contacts-social__link .icon { font-size: 28px; }

.contacts-social__link:hover {
  text-decoration: none;
}
.contact-box > div { padding: 40px; }

.contact-box__icon {
  font-size: 80px;
}

.contact-box__title {
  font-weight: 800;
  font-size: 28px;
}
.contact-box__title + p { margin-bottom: 40px; }
.contact-box a { color: #fff; }

.form__wrapper .form-label { font-weight: 700; }
.form__wrapper .form-group { margin-bottom: 20px; }
.form__wrapper .form-control {
  height: auto;
  padding: 8px 15px;
  text-align: center;
  border: 2px solid #f6F8fb;
  background: #fff;
  font-weight: 500;
  color: #1f1f1f;
}
.form__wrapper .bootstrap-select>.dropdown-toggle { padding: 7px 35px 6px 15px; }

.form__wrapper .form-control::-webkit-input-placeholder {
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
  color: #6f6f6f;
}
.form__wrapper .form-control:-ms-input-placeholder {
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
  color: #6f6f6f;
}
.form__wrapper .form-control::placeholder {
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
  color: #6f6f6f;
}
.form__wrapper .wpcf7-acceptance input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-right: 15px;
  width: 20px;
}
.form__wrapper .wpcf7-acceptance input[type="checkbox"]:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: -5px;
  z-index: 9;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
}
.form__wrapper .wpcf7-acceptance input[type="checkbox"]:checked:after {
  content: '';
  width: 2px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 7px;
  background: #fff;
  -webkit-box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}
.form__wrapper .wpcf7-acceptance input[type="checkbox"]:checked::before { background: #c33a32; }
.wpcf7-list-item { margin: 0; }
.form__wrapper .wpcf7-not-valid-tip { margin-left: 5px; font-size: 14px; }
.wpcf7-spinner { margin: 0 auto; }

.wpcf7 form .wpcf7-response-output,
.wpcf7 form div.visible-only-if-sent,
.wpcf7 form div.visible-only-if-invalid,
.wpcf7 form div.visible-only-if-failed,
.wpcf7 form div.visible-only-if-spam,
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7 form.invalid div.visible-only-if-invalid,
.wpcf7 form.failed div.visible-only-if-failed,
.wpcf7 form.spam div.visible-only-if-spam,
.wpcf7 form.sent div.visible-only-if-sent {
  display: block;
}

/* Hide fields after submit */
.wpcf7-form.sent .form-group,
.wpcf7-form.sent .wpcf7-submit,
.wpcf7-form.sent .recaptcha {
  display: none !important;
}

/* Landlords */
.hidden-content { display: none; }
.hidden-content p { border-top: 1px solid #fff; }
.icon.rotated { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); }

.features-1h__box {
  max-width: 700px;
  padding: 48px 200px 48px 80px;
  margin-right: -150px;
  margin-top: 50px;
  z-index: 0;
}
/* .red-box-shapes::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(./assets/tb_shapes/arrows-top-white.svg);
  opacity: 0.05;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
} */


/* FWS */
/* .tb-sign-bg {
  background: url(./assets/vector.svg) no-repeat;
  background-size: cover;
}
.tb-sign-sm-bg {
  background: url(./assets/tb-sign-sm.svg) no-repeat;
  background-position: left center;
}
.tb-sign-sm-bg--right {
  background-position: right center;
} */
.fws p:first-child > strong {
  margin-top: 0;
}
.fws p > strong {
  margin-top: 30px;
  display: block;
  font-size: 20px;
}
.fws-contact-card {
  max-width: 365px;
}
.fws-contact-card__name {
  font-size: 24px;
}
.fws-contact-card__email {
  border-top: 2px solid rgba(255,255,255,.5);
}
#request-callback h2 {
  margin-bottom: 30px;
}
#request-callback .wpcf7 {
  z-index: 1;
}
.tb-sign-red {
  max-width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20%;
  bottom: 0;
  z-index: -1;
}
.tb-sign-red--left {
  right: auto;
  left: 0;
}

/* .offset-red-box p > a,
.half-red-box p > a,
.red-box-shapes p > a, */
.red-bg p > a {
  color: #fff;
  text-decoration: underline;
}
/* .offset-red-box p > a:hover,
.half-red-box p > a:hover,
.red-box-shapes p > a:hover, */
.red-bg p > a:hover {
  text-decoration: none;
}

/*------------------------------------------
            Custom Blocks
--------------------------------------------*/

/* 1. Features */

/* Features 1 A */
/* .highlight::before {
  content: '';
  width: 150px;
  height: 3px;
  display: block;
  background: #c33a32;
}

.highlight--center::before { margin: 15px auto; }
.highlight--left::before  {margin: 15px 0; } */

.feature__icon { font-size: 36px; }
.feature__icon--lg { font-size: 71px; }
.feature__btn { padding: 14px 25px; }
.feature__btn .icon { font-size: 20px; }

.features_1_a__figure,
.features_1i__figure {
  width: 525px;
  height: 356px;
  margin-left: 25px;
}
.features_1_a__figure::before,
.features_1i__figure::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 75px;
  right: 0;
  bottom: 0;
  left: 75px;
  z-index: -1;
}
.features_1_a__img,
.features_1i__img,
.tab-pane__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features 3A */
.features-square__img { min-height: 640px; }
.feature__inner-wrapper--1i { max-width: 545px; }
.feature__inner-wrapper ul { padding-left: 20px; }
.feature__inner-wrapper h2 { margin-bottom: 25px; }

/* Features 2A */
.tab-pane__img {
  max-width: 100%;
  height: 500px;
}
.tablist h3 {
  font-weight: 600;
  line-height: 34px;
  font-size: 28px;
}
.tablist .nav-link {
  padding: 0 30px;
  margin: 20px 0;
  border-left: 2px solid transparent;
  border-radius: 0;
}

.tablist .nav-link.active {
  border-color:#c33a32;
  background: transparent;
}

/* Features 4A */
.checkmarks h2 { margin-bottom: 25px; }
.checkmarks h2 ~:not(ul) {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}


.checkmarks__list .checkmarks__list-item {
  min-height: auto;
  padding: 5px 30px 5px 40px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 16px;
  position: relative;
}

.checkmarks__list .checkmarks__list-item:last-child { margin-bottom: 0; }

.checkmarks__list .checkmark__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  font-size: 30px;
}

.checkmarks__list--highlighted .checkmark__icon {
  left: 15px;
}
.checkmarks__list--highlighted .checkmarks__list-item {
  min-height: 64px;
  padding: 15px 30px 15px 60px;
}


.feature-img-cut h2 { margin-bottom: 50px; }

.separator-0 h1 {padding-top: 0; }
.separator-0 h1::after,
.separator-0 h2::before { content: none; }


.features_1d__img {
  height: 464px;
  object-fit: cover;
}
.features_1e__img {
  height: 588px;
  object-fit: cover;
}

.offset-box {
  min-width: 830px;
  padding: 48px 80px 48px 48px;
  z-index: 1;
}
.offset-box--left {
  margin: 60px 0 0 220px;
  float: left;
}
.offset-box--right {
  margin: 60px 80px 0 0;
  float: right;
}

.offset-box h3 { font-weight: 700; }

/* 5A */
.percentage {
  font-weight: 600;
  line-height: 60px;
  font-size: 48px;
}


/* 7a */
.fully-filled-block {
  margin: 80px 0;
}
.fully-filled-block .left-side,
.headings-medium h3 {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}
.bg-color a:not(.btn) {
  color: inherit;
  text-decoration: underline;
}
.bg-color a:hover {
  text-decoration: none;
}
/* 7b */
.fully-filled-block:not(.fully-filled-block-9c) .arrow-bg {
  top: 0;
  left: 220px;
  right: auto;
  -webkit-transform: scale(3);
  -ms-transform: scale(3);
  transform: scale(3);
}

/* 7d */
.clipped-content-7d {
  -webkit-clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0);
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0);
}
.clipped-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div[class*="left-col-7d"] h2 {
  margin-bottom: 25px;
}
div[class*="left-col-7d"] h2 ~ * {
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
}
#people {
  padding: 0;
}

/* 9a */
.feature-9a h3,
.feature-9a p {
  margin-bottom: auto;
}

.headings-medium h3 {
  margin-bottom: 25px;
}

.fully-filled-block-9c .arrow-bg {
  right: 10%;
}

/* 20 */
.features-20__text-block p:only-child {
  font-weight: 600;
  line-height: 34px;
  font-size: 24px;
}

/* 1c */
.half-box {
  max-width: 530px;
  position: absolute;
}
.half-box--left {
  padding: 48px 48px 48px 80px;
  left: -65px;
}
.half-box--right {
  padding: 48px 80px 48px 48px;
  right: -65px;
  bottom: 65px;
}

/* 1g */
.clipped-content-1g {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 80% 100%, 100% 50%, 80% 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 80% 100%, 100% 50%, 80% 0);
}
/* 1f */
.clipped-content-1f {
  -webkit-clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 20% 100%, 0% 50%, 20% 0);
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 20% 100%, 0% 50%, 20% 0);
}

.half-box li:not(:last-child) {
  margin-bottom: 15px;
}
.half-box__figure {
  width: 100%;
  max-width: 600px;
  height: 550px;
}
.half-box__figure--left {
  margin-top: 65px;
}
.half-box__figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-width: 1200px) and (max-width: 1309px) {
  /* .half-box--left { left: -30px; }
  .half-box--right { right: -30px; }
  .half-box__figure { width: 550px; height: 500px; } */
}

/* 14 Reviews */
.reviews-count::before {
  content: '';
  height: 1px;
  background: #c33a32;
  margin: 0 auto;
  position: absolute;
  left: 200px;
  right: 300px;
}

/* 24 About us */
.features-24__title h2 + * {
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 28px;
  font-size: 20px;
}

/* 25 About us */
.medium-text-block span { font-weight: 500; }
.features-25-full-width__img { min-height: 410px; }

/* Feature 26 Values */
.feature-26__title h2 + * {
  max-width: 715px;
  margin: 0 auto 30px;
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}
.v-card {
  max-width: 350px;
  min-height: 300px;
  padding: 45px 30px;
  z-index: 1;
}
.v-card__wrapper:nth-of-type(2) .v-card { margin-left: auto; }
.v-card__wrapper:nth-of-type(3) .v-card { margin-left: auto; margin-right: auto; }
.v-card__title { font-size: 28px; }

.v-card:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.section--feature-29 + .section--feature-29 {
  padding-top: 0;
}

.feature-29__card {
  padding: 30px;
  background: #fff;
}
.feature-29__card h3 {
  font-size: 28px;
}

.feature-29__icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 54px;
  border-radius: 5px;
}

.video-block .col-xl-7 {
  padding: 100px 15px;
  background: url(./assets/tb_shapes/video-arrow-bg.svg) no-repeat center center;
}

/* Team */
.team h2 + * {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}

/* feature 15c */
.feature-15__text-block h2 ~ * {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}

/* Counter 1b */
.counter-1b::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.counter__card {
  padding: 23px 30px;
}
.counter__card > p:first-child {
  line-height: 70px;
  font-size: 64px;
}
.counter__card > p:nth-child(2) {
  font-weight: 500;
  line-height: 30px;
  font-size: 24px;
}

.counter__date {
  line-height: 34px;
  font-size: 28px;
}

/* Counter 1a */
.counter-1a {
  padding-bottom: 170px;
}
.counter-1a .container {
  z-index: 1;
}
.arrows-pattern-4 {
  max-width: 45%;
  position: absolute;
  right: 150px;
  bottom: -140px;
  z-index: -1;
}

/* Feature 27 Awards */
.award { 
  max-width: 200px;
  padding: 0 15px;
}

/* Feature 23 Partner logos*/
.features-23__text-block h2 {
  font-weight: 600;
  line-height: 34px;
  font-size: 28px;
}
.features-23__text-block h2::before {
  content: none;
}

/* Pricing 4a */
.p-card {
  padding: 30px;
  border: 4px solid transparent;
}
.p-card.best {
  border-color: #668f20;
  background-color: #fff;
}
.p-card__plan {
  font-weight: 600;
  line-height: 26px;
  font-size: 20px;
}
.p-card__month {
  margin: 0;
  font-weight: 600;
  line-height: 67px;
  font-size: 56px;
}

.p-card__body {
  padding-top: 30px;
  margin: 30px 0 40px;
  border-top: 3px solid #c33a32;
}

.p-card.best .p-card__body {
  border-top-color:#668f20;
}

.p-card__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-card__body ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.p-card__body ul li::before {
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  color: #668f20;
  font-size: 20px;
}
.p-card__body ul li:not(.disabled)::before { font-weight: 900; }
.p-card__body ul li.disabled,
.p-card__body ul li.disabled:before {
  color: #6f6f6f;
}

.p-card__btn {
  background: transparent;
  border: 2px solid #668f20;
  color: #1f1f1f !important;
  font-weight: 600;
  font-size: 16px;
  transition: ease .5s;
}
.p-card__btn:hover {
  background: #668f20;
  color: #fff !important;
}

.best .p-card__btn {
  background: #668f20;
  color: #fff !important;
}
.best .p-card__btn:hover {
  background: #28b567;
  border-color: #28b567;
}
.label-best {
  padding: 5px 15px;
  font-weight: 500;
  background: #668f20;
  font-size: 16px;
  color: #fff;
}

/* Pricing 3B */
.p-card__plan--3b {
  font-weight: 600;
  line-height: 30px;
  font-size: 24px;
}
.p-card__btn--green {
  background: #668f20;
  color: #fff !important;
}
.p-card__btn--green:hover {
  background: #28b567;
  border-color: #28b567;
}
.p-card__icon {
  font-size: 36px;
}

/* Procing 1A */
.p-card__plan--1a {
  font-weight: 600;
  line-height: 34px;
  font-size: 28px;
}
.media-p1a .icon {
  font-size: 24px;
}

/* Pricing 2B */
.p-card__plan--2b {
  font-weight: 600;
  line-height: 30px;
  font-size: 24px;
}
.p-card__year--2b {
  font-weight: 600;
  line-height: 67px;
  font-size: 56px;
  display: none;
}

/* taeb-switch styles */
.switch-wrapper {
  background-color: transparent;
  border: 2px solid #668f20;
  max-width: 315px;
}
.taeb-switch:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  -webkit-transition: left cubic-bezier(.48,-0.12,.77,1.1) .3s;
  -o-transition: left cubic-bezier(.48,-0.12,.77,1.1) .3s;
  transition: left cubic-bezier(.48,-0.12,.77,1.1) .3s;
  background-color: #668f20;
  z-index: 0;
}

.taeb-switch.left:after { left: 0; }
.taeb-switch.right:after { left: 50%; }

.taeb-switch .taeb {
  width: 50%;
  padding: 12px 0;
  z-index: 1;
  position: relative;
  cursor: pointer;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.taeb-switch .taeb.active {
  font-weight: 600;
  color: #ffffff;
}

/* Team 1A */
.speaker-card__img {
  width: 100%;
  height: 296px;
  object-fit: cover;
}
.speaker-card__icon {
  font-size: 24px;
  color: #1f1f1f;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}
.speaker-card__icon:hover {
  color: #c33a32;
}

/* Feature 11 */
.feature-11__img {
  max-width: 350px;
  z-index: 1;
}
.feature-11-arrow {
  position: absolute;
  height: 100%;
  left: 15px;
  z-index: 0;
}

/* Features_28 */
.features-28__text-block h2 ~ *,
.features-2c__text-block h2 ~ *,
.features-2-d__text_block h2 ~ * {
  font-weight: 500;
  line-height: 26px;
  font-size: 20px;
}

/* Features 2C */
.features-2c-bullets ul {
  list-style: none;
}
.features-2c-bullets ul li {
  min-height: 85px;
  padding: 15px 30px 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  position: relative;
}
.features-2c-bullets ul li:last-child {
  border-bottom: 0;
}
.features-2c-bullets ul li::before {
  position: relative;
  margin-right: 15px;
}

/* Features 2D */
.features-2-d__body-text p {
  font-weight: 500;
  line-height: 30px;
  font-size: 20px;
}

/* Canada Territory Tax  */
.territory-tax { margin-top: 80px; }
.provinces { padding: 105px 0 0; }
.province { border-bottom: 1px solid #e0e0e0; }
.province:nth-last-child(-n+2) { border: 0; }
.province:nth-child(odd) { border-right: 1px solid #e0e0e0; }

.province__abbr {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  font-weight: 700;
  line-height: 60px;
  font-size: 24px;
  color: #c33a32;
  background: #fff;
  vertical-align: middle;
  text-align: center;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
.province-item:hover .province__abbr,
.province-item.active .province__abbr {
  background: #c33a32;
  color: #fff;
}
.province__name {
  margin-left: 20px;
  font-weight: 600;
  font-size: 24px;
}
.province-item {
  padding: 10px;
  margin-right: 85px;
  cursor: pointer;
  display: inline-block;
}
.province-item::after {
  content: '';
  width: 21px;
  height: 13px;
  display: inline-block;
  background: url(./assets/icons/arrow-down.svg) no-repeat center center / cover;
  margin-left: auto;
  -webkit-transition: ease .3s;
  -o-transition: ease .3s;
  transition: ease .3s;
}
.province-item.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.province:nth-child(odd) .province-item { margin-left: 110px; }
.province:nth-child(even) .province-item { margin-left: 75px; }
.territory-tax ul { padding-left: 30px; }

.toggle-change-territory__btn,
.province-details { 
  display: none; 
}

/* Webinar page */
.hero-shape {
  min-height: 900px;
  padding-top: 100px;
}
.hero-shape h1 {
  margin: 0 30px;
  font-weight: 500;
  line-height: normal;
  font-size: 26px;
  color: #fff;
}
.webinar-partner { max-width: 90px; }

.hero-shape .box-video {
  border: 15px solid #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 40px 0 rgba(51, 51, 51, .2);
  box-shadow: 0 0 40px 0 rgba(51, 51, 51, .2);
}

.wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load {
  width: 100% !important;
  height: 100% !important;
}
.mejs-container {
  padding-top: 56.25%;
}
.wp-video, video.wp-video-shortcode {
  max-width: 100% !important;
}
video.wp-video-shortcode {
  position: relative;
}
.mejs-mediaelement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.mejs-controls {
  display: none;
}
.mejs-overlay-play {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}

/* Dynamic Webinar page */
.webinar-section-wrapper{
  padding-top: 100px;
  margin-bottom: 100px;
}

.webinar-title{
  margin: 0 30px;
  font-weight: 500;
  line-height: normal;
  font-size: 26px;
  color:#1f1f1f !important;
}

.webinar-cta-btn{
  background-color: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}

.webinar-cta-btn:hover {
  background-color: #fff;
  color: #c33a32 !important;
  border: 2px solid #fff;
}

/* Webinar Registration Hero */
.partner-name + p {
  display: inline-block;
}

/* Speaker Block */
.speaker-card {
  background-color: #fff;
  max-width: 330px;
  height: 100%;
  padding: 40px;
}

.speaker-card .fws-contact-card__img{
  border-radius: 15px;
}

/* Form Styles */

.lp-form__wrapper input[type="checkbox"]:checked::before { background: #fff; }
.lp-form__wrapper input[type="checkbox"]:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: -5px;
    z-index: 9;
    border: 2px solid #f2ece5;
    border-radius: 0;
}

.lp-form__wrapper input[type="checkbox"]:checked:after {
    content: '';
    width: 2px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 7px;
    background: #c33a32;
    -webkit-box-shadow: 2px 0 0 #c33a32, 4px 0 0 #c33a32, 4px -2px 0 #c33a32, 4px -4px 0 #c33a32, 4px -6px 0 #c33a32, 4px -8px 0 #c33a32;
    box-shadow: 2px 0 0 #c33a32, 4px 0 0 #c33a32, 4px -2px 0 #c33a32, 4px -4px 0 #c33a32, 4px -6px 0 #c33a32, 4px -8px 0 #c33a32;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

.lp-form__wrapper input[type="checkbox"] {
    width: 20px;
    padding: 0;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.alert-danger {
    border: 0;
    border-radius: 0;
    font-size: 16px;
    color: #4e4e4e;
} 

.wpcf7-list-item { margin: 0; }

.wpcf7-submit {
  font-size: 18px;
  margin: 0;
  width: 100%;
  min-height: 60px;
  background-color: #5e7b2b !important;
  border-radius: 0;
  font-weight: 700;
  color: #fff;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  border: 0;
}

.wpcf7-submit:hover { 
  background-color: #668f20 !important;
  color: #fff; 
}

.form-spinner {
  margin: auto;
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: -30px;
  right: 0;
  bottom: 0;
  left: 0;
  stroke: #ffffff;
  display: none;
}

.form-spinner .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 2.5s ease-in-out infinite;
          animation: dash 2.5s ease-in-out infinite;
  stroke-linecap: round;
}

.form-control {
  border-radius: 0;
  font-size: 14px;
  color: #111111;
}

.lp-form__wrapper .form-control::-webkit-input-placeholder {
  text-transform: none;
  color: #999;
}
.lp-form__wrapper .form-control:-ms-input-placeholder {
  text-transform: none;
  color: #999;
}
.lp-form__wrapper .form-control::placeholder {
  text-transform: none;
  color: #999;
}

.bootstrap-select {
  min-height: auto;
}

.form-holder {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  padding: 25px 50px;
}

.form-holder { padding: 25px; }

.lp-hero__form h3 {
  text-align: center;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  padding: 25px 25px 0;
  margin-bottom: 20px;
  text-align: center;
  background: #fff;
}
.lp-hero__form h3::before {
  content: '';
  width: 150px;
  height: 3px;
  background: #c33a32;
  display: block;
  margin: 0 auto 20px;
}
.lp-hero .tb-select select {
  padding: 10px 35px 10px 15px !important;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #999;
  background: url(./assets/arrow-down-red.svg) #fff no-repeat 96% center;
  background-size: 12px 12px;
}

.wpcf7-date {
  width: 100%;
  border: 2px solid #f2ece5;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
}

.lp-form__wrapper .wpcf7-select > .dropdown-toggle {
  padding: 2px 30px 2px 15px;
  border: 0;
  background-color: #fff;
}

.lp-form__wrapper .dropdown-toggle:after {
  top: 47%;
  -ms-transform: rotate(45deg) translateY(-47%);
  transform: rotate(45deg) translateY(-47%);
  -webkit-transform: rotate(45deg) translateY(-47%);
}
.dropdown-toggle:focus {
  color: #999 !important;
  background-color: #fff !important;
  border-color: #80bdff !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%) !important;
}

.form-group .bootstrap-select.disabled .dropdown-toggle:focus {
  border-color: transparent !important;
  box-shadow: none !important;
} 

.lp-form__wrapper .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

.bootstrap-select >.dropdown-toggle.bs-placeholder .filter-option-inner-inner { color: #999; }

.lp-hero .form-control,
.wpcf7-select,
.lp-hero .chzn-container-single .chzn-single,
.lp-hero .chzn-container-active.chzn-with-drop .chzn-single {
  border: 2px solid #f2ece5;
}

.error-message { color: #dc3232; margin-bottom: 0; }
select.wpcf7-select + .error-message { 
  position: absolute;
  bottom: -25px;
}
#phone-error-msg,
#firstName-error-msg,
#lastName-error-msg,
#tfn-error-msg {
  color: #dc3232;
}
#phone-error-msg.hidden,
#firstName-error-msg.hidden,
#lastName-error-msg.hidden,
#tfn-error-msg.hidden {
  display: none;
}

.phone-error-msg,
.first-name-error-msg,
.last-name-error-msg {
    color: #dc3232;
}
.phone-error-msg.hidden,
.first-name-error-msg.hidden,
.last-name-error-msg.hidden {
    display: none;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.alert-success {
  color: #4e4e4e;
  border: none;
  border-radius: 0;
  font-size: 16px;
}

#captchavalidation {
  margin: -15px 0 15px;
}

.loader__wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid;
  border-color: #668f20 transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

@-webkit-keyframes rotation  {

  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }

  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}

@keyframes rotation  {

  0% {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  }

  100% {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

/* Cookie consent */
.cc-change {
  max-width: 230px;
  height: 55px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: #c33a32;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 12%), 0 2px 2px rgb(0 0 0 / 12%), 0 4px 4px rgb(0 0 0 / 12%), 0 8px 8px rgb(0 0 0 / 12%), 0 16px 16px rgb(0 0 0 / 12%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 12%), 0 2px 2px rgb(0 0 0 / 12%), 0 4px 4px rgb(0 0 0 / 12%), 0 8px 8px rgb(0 0 0 / 12%), 0 16px 16px rgb(0 0 0 / 12%);
  text-decoration: none;
  -webkit-transition: ease .5s;
  -o-transition: ease .5s;
  transition: ease .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cc-change:hover {
  background: #a03e2c;
  color: #ffffff;
  text-decoration: none;
}
.cc-change>img {
    margin-right: 10px;
}
.cc-change::after {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
}


/* .datepicker-dropdown {
  top: 0;
  left: 0;
  width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  border-radius: 4px;
} */
.datepicker table tr td, 
.datepicker table tr th {
  height: 20px;
  line-height: 20px;
  width: 20px;
  padding: 5px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}
.datepicker table tr td.active.active, 
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active, 
.datepicker table tr td.active:active {
  background-color: #c33a32;
  border-color: #c33a32;
}
.datepicker table tr td.active.active.focus, 
.datepicker table tr td.active.active:focus, 
.datepicker table tr td.active.active:hover, 
.datepicker table tr td.active.highlighted.active.focus, 
.datepicker table tr td.active.highlighted.active:focus, 
.datepicker table tr td.active.highlighted.active:hover, 
.datepicker table tr td.active.highlighted:active.focus, 
.datepicker table tr td.active.highlighted:active:focus, 
.datepicker table tr td.active.highlighted:active:hover, 
.datepicker table tr td.active:active.focus, 
.datepicker table tr td.active:active:focus, 
.datepicker table tr td.active:active:hover {
  background-color: #cf3f2d;
  border-color: #cf3f2d;
}

.datepicker table tr td.disabled, 
.datepicker table tr td.disabled:hover {
  color: #ccc;
  cursor: not-allowed;
}

.date {
  background: url(./assets/icons/calendar.svg) no-repeat 93% center;
  background-size: 13px 13px;
  background-color: #fff;
}

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
  display: none;
}

@media(min-width: 1340px) {
  /* .sub-menu.level-1 {
    left: 425px;
  }
  .sub-menu.sub-menu.level-2 {
    left: 829px;
  } */
}

@media(min-width: 1200px) {
  .hero-5a .hero__img {
    max-width: 555px;
    height: auto;
    z-index: 1;
    right: 0;
  }
  .half-fluid__img.push-left { left: 80px; }
  .half-fluid__img.push-right { right: 80px; }
  
  .feature__inner-wrapper { max-width: 600px; }

  .half-box-col:first-child { padding-top: 120px; }

  .features-25 h2,
  .video-block h2 {
    font-weight: 800;
    line-height: 70px;
    font-size: 64px;
  }
  .footer-socials__list a:hover i { 
    color: #c33a32; 
  } 
  .hero .right-col p {
    width: 435px;
  }

  .hero .right-col .alert p {
    width: 100%;
  }
  
  .country__col:nth-child(4n+4) {
    border-right: 0;
  }
  .country__col:nth-last-child(-n+4) {
    border-bottom: 0;
  }

  .main-nav.lg { width: 840px; }
  .main-nav.xl { width: 1260px; }
  .main-nav.opened .sub-menu-wrap {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

  .p-card__body--flex ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-card__body--flex ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .p-card__body--flex ul li:nth-child(odd) {
    padding-right: 20px;
  }
}

@media(min-width: 1200px) and (max-width: 1470px) {
  .hero:not(.hero-bg-img):before {
    width: 575px;
    right: -105px;
  }
  .hero .right-col { 
    padding: 60px 15px 60px 60px;
  }
}

/* @media(max-width: 1470px) {
  .hero form {
    width: 380px;
  }
} */

@media (min-width: 1400px) {
  .hero .left-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .hero .right-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media(min-width: 1370px) {
  .container,
  .container-lg {
    max-width: 1310px;
  }
  /* .hero-1b h1::before {
    margin-top: 190px;
  } */
}

@media(min-width: 1200px) and (max-width: 1369px) {
  .offset-box--left {
    margin: 60px 0 0 75px;
  }
  .hero-1a h1::before,
  .hero-1b h1::before,
  .hero-1c h1::before,
  .hero-1d h1::before {
    shape-margin: 0;
    margin-top: 350px;
  }
  .province-item { margin-right: 40px; }
  .province:nth-child(odd) .province-item { margin-left: 30px; }
  .province:nth-child(even) .province-item { margin-left: 40px; }
  .team-card__body { min-height: 110px; }
}

@media(min-width: 1200px) and (max-width: 1440px) {
  .hero h1 {
    line-height: 66px;
    font-size: 54px;
  }
  .hero-1a .hero__img, 
  .hero-1b .hero__img, 
  .hero-1c .hero__img {
    max-width: 300px !important;
    /* max-height: 360px !important; */
  }
  .hero .left-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .hero .right-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .hero:not(.hero-bg-img):before {
    left: 58.333333%;
  }
  .hero .left-col ul:not(.quick-links) {
    max-width: 350px;
  }
  .hero-3a .left-col ul:not(.quick-links) {
    max-width: 90%;
  }
  .hero p {
    max-width: 370px;
  }

  .hero-clippy h1 {
    max-width: 575px;
    font-size: 52px;
    line-height: 60px;
  }
  .hero-clippy:not(.hero-5a):not(.hero-5b) .hero__img {
    right:  -60px; 
  }

  /* .hero-5a .hero__img { right: 35%; } */

  .quick-links .quick-link-item {
    padding: 0 15px;
  }
  .quick-link {
    font-size: 20px;
  }
  .hero-1a .hero__img {
    width: 300px;
    height: 315px;
    object-fit: contain;
  }
}

@media(min-width: 1200px) and (max-width: 1359px) {
  .main-nav,
  [class^="menu-main-"][class$="-container"] {
    width: 370px;
  }
  .main-nav.lg { width: 740px; }
  .main-nav.xl { width: 1110px; }
  .main-nav ul { padding: 0 25px 80px 25px; }
  .main-nav .sub-menu { padding: 65px 25px; }

  .main-nav { 
    -webkit-transform: translate3d(-140%,0,0);
    transform: translate3d(-140%,0,0);
  }
}

@media(max-width: 1199px) {
  .main-nav .sub-menu-wrap {
    border: 0;
    background: #c33a32;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
  }

  h1 {
    line-height: 64px;
    font-size: 54px;
  }

  .open>.sub-menu-wrap {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
  }

  .main-nav .sub-menu {
    display: block;
  }
  .close-nav__btn { right: 0; }
  .main-nav .sub-menu { padding: 80px 50px; }

  .main-nav .sub-menu {
    width: 420px;
  }
  .open > .btn-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hero form {
    width: 100%;
  }

  .quick-links::before,
  .hero .left-col::before,
  .hero .right-col::before {
    left: -100%;
    right: -100%;
  }
  .hero:not(.hero-bg-img):before {
    content: none;
  }

  .hero .right-col { 
    padding: 60px 15px;
  }

  /* .hero .right-col::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(./assets/tb-sign.svg) no-repeat center center;
    background-size: 50%;
    z-index: 0;
  } */

  .hero .right-col h3 {
    width: 50%;
    float: left;
  }
  .hero .form-description {
    width: 50%;
    float: right
  }
  .hero .form-description * {
    font-weight: 500;
    line-height: 32px;
    font-size: 20px;
  }
  .hero form {
    margin-top: 0;
    padding-top: 50px;
    clear: both;
  }

  .col-left-gap { padding: 40px !important; }
  
  .half-fluid:not(.half-fluid--stackable) .right-col::before { left: -200%; }
  .half-fluid:not(.half-fluid--stackable) .left-col::before { right: -200%; }
  .hero-overlay-form::after { min-height: 600px; }
  .arrows-pattern { margin-top: -30px; }

  .features_1_a__figure,
  .features_1i__figure {
    width: 90%;
    height: 400px;
  }
  .features-square__img { 
    min-height: 500px;
  }
  .v-card,
  .box-video--square {
    max-width: 100%;
  }
  .hero-clippy:not(.hero-2a) .hero__img {
    position: relative;
    max-width: 100%;
    height: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    z-index: 1;
  }
  .hero-clippy:not(.hero-2a) .right-col {
    padding: 60px 15px 0;
  }
  .hero-clippy .right-col::before {
    left: 50%;
  }
  .hero-clippy .left-col::after {
    display: none;
  }
  .hero-clippy .right-col::after {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    background: #e8e1d0;
    -webkit-clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%, 35% 50%);
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 80% 100%, 35% 50%);
    left: -50%;
  }

  .province:nth-child(odd) .province-item,
  .province:nth-child(even) .province-item { 
    margin-left: 15px; 
  }
  .province-item { margin-right: 15px; }

  .footer-logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .slogan {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
  .footer-socials__list {
    width: 100%;
    max-width: 100%;
  }
  .footer-socials__list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    padding: 0 15px 0 0;
  }
  .footer-socials__list-item > a {
    padding: 8px;
    border: 2px solid #1f1f1f;
    transition: ease .5s;
  }
  .footer-socials__list-item i {
    color: #1f1f1f;
  }
  .footer-socials__list-item > a:hover > i {
    color: #fff;
  }
  .footer-socials__list-item > a:hover {
    background: #1f1f1f;
    color: #fff;
  }
}

@media(min-width: 768px) and (max-width: 1199px) {
  .quick-links--fluid.hero-4b .quick-link-item {
    flex: 0 0 33.3333%;
    padding: 28px;
    border-bottom: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
  }
  .quick-links--fluid.hero-4b .quick-link-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .quick-links--fluid.hero-4b .quick-link-item:nth-child(3),
  .quick-links--fluid.hero-4b .quick-link-item:nth-child(6) {
    border-right: 0;
  }
  .hero-2a .right-col {
    padding: 150px 15px;
  }
}

@media(min-width: 992px) and (max-width: 1199px) {
  .hero h1 {
    max-width: 85%;
  }
  .hero-1a h1::before, 
  .hero-1b h1::before, 
  .hero-1c h1::before, 
  .hero-1d h1::before {
    max-width: 280px;
    /* margin-top: 250px; */
  }
  .hero-1a .hero__img, 
  .hero-1b .hero__img, 
  .hero-1c .hero__img, 
  .hero-1d .hero__img {
    max-width: 300px !important;
  }
  .quick__link {
    font-size: 20px;
  }
  .country__col:nth-child(3n+3) {
    border-right: 0;
  }
  .country__col:nth-last-child(-n+3) {
    border-bottom: 0;
  }
  .steps-wrapper {
    padding: 80px 0px 80px 30px;
  }
  .half-fluid__img.push-left {
    left: 40px;
  }
  .half-fluid__img.push-right {
    right: 40px;
  }
  .half-fluid .left-col {
    padding: 80px 40px 80px 0;
  }
  .half-fluid .right-col {
    padding: 80px 0px 80px 40px;
  }
  .offset-box {
    min-width: 680px;
  }
  .offset-box--left {
    margin: 60px 0 0 100px;
  }
  .modal-team .modal-dialog {
    max-width: 930px
  }
  .modal-card__bio {
    padding: 30px;
  }

  .features_1d__img {
    height: 370px;
  }
  .features_1e__img {
    height: 450px;
  }
  .label-best {
    display: block;
    max-width: 70%;
    margin: 10px auto 0;
  }

  .hero .left-col, 
  .hero .right-col {
    min-height: auto;
  }
  .quick-links--half {
    margin-top: 80px;
    position: relative;
  }
  .hero:not(.hero-2a) .left-col {
    padding: 60px 15px 0;
  }
  .half-box-col:nth-child(2) {
    margin-top: 215px;
  }
  .half-box--left {
    padding: 40px;
    left: 15px;
    bottom: -65px;
  }
  .half-box--right {
    padding: 40px;
    top: -65px;
    right: 15px;
    bottom: auto;
  }
  .half-box__figure {
    max-width: 465px;
    height: 465px;
  }
  .half-box__figure--left {
    margin-top: 0;
    margin-left: auto;
  }
  .award {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
  .partner {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

@media(max-width: 991px) {
  .logo {
    margin-left: auto;
    padding-right: 10px;
  }
  .hero h1 {
    margin-bottom: 40px;
  }
  .hero h1 br {
    display: none;
  }
  .hero .left-col, 
  .hero .right-col {
    min-height: auto;
  }
  .hero-3a .right-col::after {
    background-size: 100%;
  }
  .quick-link:not(:last-child) {
    margin-bottom: 30px;
  }
  .hero-3a .quick-links--fluid .quick-link-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
  }
  .hero-1a h1::before,
  .hero-1b h1::before,
  .hero-1c h1::before,
  .hero-1d h1::before {
    display: none;
  }
  .hero p,
  .hero-bullets .left-col ul:not(.quick-links) {
    max-width: 100%;
  }

  .hero__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    bottom: 0;
    right: 0;
    -o-object-fit: initial;
    object-fit: initial;
    position: relative;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .hero .left-col {
    padding: 60px 15px 0 15px;
  }
  .hero-bullets:not(.hero-bg-img, .hero-3a) .left-col ul:not(.quick-links)::before,
  .hero-bullets:not(.hero-bg-img, .hero-3a) .left-col ul:not(.quick-links)::after {
    content: '';
    background: #c33a32;
    display: block;
    position: absolute;
    bottom: 0;
    top: 0;
  }
  .hero-3a .left-col ul:not(.quick-links)::before,
  .hero-3a .left-col ul:not(.quick-links)::after {
    display: none;
  }
  .hero-bullets .left-col ul:not(.quick-links)::before {
    left: -100%;
    right: 100%
  }
  .hero-bullets .left-col ul:not(.quick-links)::after {
    left: 100%;
    right: -100%
  }

  .hero-bullets:not(.hero-3a, .hero-bg-img) .left-col ul:not(.quick-links) {
    padding: 20px 0;
    margin: 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    background: #c33a32;
    color: #fff;
    position: relative;
  }
  .hero-bullets .left-col ul:not(.quick-links) li::before {
    color: #fff;
  }
  .hero .right-col h3,
  .hero .form-description {
    width: 100%;
    float: none;
  }
  .hero .right-col::after {
    right: -25%;
    background-size: 100%;
  }
  .half-red-box--left {
    padding: 30px;
    margin: 185px auto 0 0;
  }
  .half-red-box--right {
    padding: 30px;
  }
  .half-fluid__img {
    width: 100%;
    min-height: 600px;
    position: relative;
    left: 0;
  }
  .half-fluid .left-col,
  .half-fluid .right-col {
    padding: 80px 30px;
  }
  .half-fluid.half-fluid--stackable {
    padding: 0 !important;
  }
  .half-fluid.half-fluid--stackable .left-col::before {
    right: -200%;
  }
  .half-fluid.half-fluid--stackable .left-col,
  .half-fluid.half-fluid--stackable .right-col {
    padding: 80px 30px;
  }
  #search-form {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 9;
    -webkit-box-shadow: 1px 3px 7px 0 rgba(0,0,0,.1);
    box-shadow: 1px 3px 7px 0 rgba(0,0,0,.1);
  }

  #search-form .bcs-searchbox,
  #search-form .bcs-searchbox:focus {
    width: 100%;
  }
  #search-form .bcs-searchbox-submit {
    height: 50px;
  }
  .v-card {
    min-height: auto;
    text-align: center;
  }
  .clipped-content-7d,
  .clipped-content-1f {
    -webkit-clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 10% 50%, 25% 0);
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 25% 100%, 10% 50%, 25% 0);
  }
  .clipped-content-1g {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 75% 100%, 90% 50%, 75% 0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 75% 100%, 90% 50%, 75% 0);
  }

  .half-box {
    max-width: 100%;
    padding: 40px;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .half-box__figure {
    height: 400px;
  }
  .half-box {
    margin-top: -100px;
    margin-left: 30px;
  }
  .box-video--square {
    height: 400px;
  }
  .features-1h__box {
    margin-right: 0;
    padding: 40px;
  }
  .offset-box {
    min-width: auto;
    padding: 40px;
    float: none;
    margin: -80px 0 0 15px;
  }
  .offset-box.no-img {
    margin: 0;
}
  .features_1e__img,
  .features_1d__img {
    max-width: 90%;
  }
  .features_1e__img {
    height: 464px;
  }
  .award {
    max-width: 33.3333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    text-align: center;
    margin-top: 30px;
  }
  .partner {
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 0 15px;
    margin-top: 30px;
    text-align: center;
  }
  .features-25-full-width__img {
    min-height: auto;
    padding-bottom: 20%;
    background-size: 100% !important;
  }
  .province:nth-child(odd) { border-right: 0; }
  .province:nth-last-child(2) { border-bottom: 1px solid #e0e0e0; }
  
  .footer-socials__list-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .hero-shape h1 { text-align: center; }
}

@media (min-width: 768px) {
  .hero-overlay h1 {
    margin-bottom: 30px;
    font-size: 60px;
  }
  .medium-text-block > * {
    font-weight: 400;;
    line-height: 30px;
    font-size: 24px;
  }
  /* .hero-1a h1,
  .hero-1b h1,
  .hero-1c h1,
  .hero-1d h1 {
    max-width: 90%;
  } */
  .hero-1a .hero__img,
  .hero-1b .hero__img,
  .hero-1c .hero__img {
    max-width: 380px;
    max-height: 460px;
  }
  .hero-1d .hero__img  {
    max-width: 380px;
    max-height: 540px;
  }
  .hero-2a .hero__img { 
    max-height: 460px;
  }
}

@media(min-width: 768px) and (max-width: 991px) {
  .hero-1a h1::before, 
  .hero-1b h1::before, 
  .hero-1c h1::before, 
  .hero-1d h1::before {
    max-width: 260px;
  }
  .hero-1a .hero__img,
  .hero-1b .hero__img,
  .hero-1c .hero__img,
  .hero-1d .hero__img {
    max-width: 300px;
  }
  .quick-links .quick-link-item {
    padding: 0 15px;
  }
  .quick-link {
    font-size: 20px;
  }
  .steps-wrapper {
    padding: 80px 30px 80px 0;
  }
  .section {
    padding-top: 40px;
  }
  .service__title {
    font-size: 22px;
  }
  .country__col:nth-child(2n+2) {
    border-right: 0;
  }
  .country__col:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .hero p,
  .hero-bullets .left-col ul:not(.quick-links) {
    max-width: 400px;
  }
}

@media(max-width: 767px) {
  #reviews-carousel .owl-nav {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: center;
  }
  #reviews-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    margin: 0 15px;
    border: 2px solid #c33a32;
    position: relative;
    line-height: 15px;
  }
  #reviews-carousel .owl-nav .owl-prev {
    left: 0;
  }
  #reviews-carousel .owl-nav .owl-next {
    right: 0;
  }
  #reviews-carousel .owl-nav button .icon {
    font-size: 20px;
  }
  #reviews-carousel .owl-nav button:hover {
    background: #c33a32;
  }
  #reviews-carousel .owl-nav button:hover .icon {
    color: #fff;
  }
  /* .offset-red-box--right,
  .offset-red-box--left {
    min-width: auto;
    margin: -120px 0 0 30px;
  } */
  .offices {
    padding: 80px 0 60px;
  }
  .owl-nav {
    margin-top: 50px;
  }
  .country__col {
    border-right: 0;
  }
  .statistic-box,
  .statistic-box:nth-child(-n + 2) {
    margin-bottom: 48px;
  }
  .statistic-box:last-child {
    margin-bottom: 0;
  }
  .arrows-pattern {
    margin-top: -20px;
  }
  .global-service { 
    padding: 20px;
    font-size: 18px;
  }
  .half-box__figure {
    width: calc(100% - 70px);
  }
  .feature-summary {
    display: none;
  }
  .feature-title {
    font-size: 24px;
  }
  .award {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media(min-width: 576px) and (max-width: 767px) {
  .heading-secondary,
  h2 {
    line-height: 56px;
    font-size: 42px;
  }
  .counter__card {
    padding: 15px;
  }
  .counter__card > p:first-child {
    line-height: 56px;
    font-size: 48px;
  }
  .counter__card > p:nth-child(2) {
    font-size: 20px;
  }
  .hero-overlay h1 {
    font-size: 48px;
    line-height: 60px;
  }
  .quick-links--fluid.hero-4b .quick-link-item {
    flex: 0 0 50%;
    padding: 28px;
    border-bottom: 2px solid #e0e0e0;
  }
  .quick-links--fluid.hero-4b .quick-link-item:nth-child(odd) {
    border-right: 2px solid #e0e0e0;
  }
}
@media(max-width: 575px) {
  .quick-links--fluid.hero-4b .quick-link-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .quick-links--fluid.hero-4b .quick-link-item:not(:last-child) {
    border-bottom: 2px solid #e0e0e0;
  }
  .breadcrumbs a, 
  .breadcrumbs .breadcrumb_last {
    font-size: 12px;
  }
  .breadcrumbs span:not(:last-child)::after {
    margin: -2px 10px;
  }
  .btn {
    font-size: 16px;
  }
  .box-video--square {
    height: 200px;
  }
  .residents {
    margin-top: 0px;
  }

  .close-nav__btn {
    padding: 25px 0 20px 20px;
    position: absolute;
    left: auto;
    right: 10px;
    z-index: 9;
  }
  /* .logo {
    margin-left: 0;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .logo img {
    max-width: 120px;
  } */
  .header {
    height: 80px;
  }
  .hamburger-menu {
    width: 80px;
    padding: 19px 15px;
  }
  #login-btn {
    padding: 15px;
  }
  .section {
    padding: 40px 0;
  }
  .cta-section {
    padding: 40px 15px !important;
  }
  h1 {
    line-height: 46px;
    font-size: 36px;
  }
  .heading-secondary,
  h2 {
    line-height: 38px;
    font-size: 32px;
  }
  h3 {
    font-weight: 600;
    line-height: 30px;
    font-size: 22px;
  }
  .quick__link,
  .quick-link {
    font-size: 20px;
  }
  .submit-btn {
    padding: 11px 20px;
    font-size: 16px;
  }
  .statistic__number {
    line-height: 58px;
    font-size: 48px;
  }
  .statistic__title {
    line-height: 26px;
    font-size: 24px;
  }
  .half-fluid .half-fluid__img {
    min-height: 300px !important;
  }
  .modal-card__bio {
    padding: 30px;
  }
  .main-nav .sub-menu .menu-item {
    padding: 20px 0;
  }
  .main-nav .menu > .menu-item > a,
  .sub__close {
    font-size: 24px;
  }
  .main-nav .sub-menu .menu-item > a,
  .main-nav .menu > .menu-item.additional a {
    font-size: 20px;
  }
  .main-nav,
  .main-nav .sub-menu,
  .nav__item,
  [class^="menu-main-"][class$="-container"] {
    width: 100%;
  }
  
  .main-nav ul {
    padding: 0 15px 40px 15px;
  }
  .main-nav .sub-menu {
    padding: 40px 15px 90px;
  }
  .main-nav__logo {
    margin: 20px 10px 40px 15px;
  }
  .service__title {
    font-size: 24px;
  }
  .btn-icon {
    width: 100%;
    padding: 15px;
  }
  .step {
    min-width: 100%;
  }
  .numbers:after {
    content: '';
    width: 100%;
    height: 100px;
    display: block;
    position: absolute;
    bottom: -70px;
    background: url(./assets/tb_shapes/pattern_3.svg) no-repeat;
  }
  .label-best {
    display: block;
    max-width: 70%;
    margin: 10px auto 0;
  }
  .half-box__figure {
    height: 170px;
  }
  .half-box {
    padding: 30px;
    margin-top: -30px;
  }
  .features_1i__figure {
    height: 200px;
    margin-left: 0;
  }
  .offset-box {
    padding: 30px;
  }
  .features_1d__img,
  .features_1e__img  {
    height: auto;
  }
  .steps-wrapper {
    padding: 50px;
  }
  .provinces {
    padding: 50px 0 0;
  }
  .province:nth-child(odd) .province-item,
  .province:nth-child(even) .province-item {
    margin-left: 0;
  }
  .province-item { margin-right: 0; }
  .province__name  { margin-right: 15px; }
  .province__abbr,
  .province__name {
    font-size: 20px;
  }
  .reviews-count::before,
  .footer-list__item {
    display: none;
  }
  .footer-list__item.active {
    display: block;
  }
  .footer-list__title {
    font-size: 18px;
  }
  .footer-list__title > i {
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
  }
  .footer-list__title.active > i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .footer-list {
    margin-bottom: 30px;
  }
  .footer-socials__list-item > a {
    border-color: #c33a32;
  }
  .footer-socials__list-item > a:hover {
    background: #c33a32;
  }
}
