@charset "UTF-8";
/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 SCSS Variables - Centralized Theme Configuration
============================================================*/
/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 SCSS Mixins - Reusable Style Patterns
============================================================*/
/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Base Styles - Resets & Common Elements
============================================================*/
:root {
  /* Hamburger menu icon style */
  --hamWidth: 40px;
  --hamHeight: 4px;
  --hamMargin: 6px;
  --hamTranslate: 10px;
  --hamTranslate3: -10px;
  --hamBg: red;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
}

body {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #151515;
  background: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

strong {
  font-weight: 700;
}

u {
  border-bottom: 1px solid #fff;
  line-height: 1;
  text-decoration: unset;
}

ul {
  padding: 0;
  margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  text-decoration: none !important;
}

*:active,
*:focus {
  outline: none;
  border: 0;
}

button {
  background-color: transparent;
  border: 0;
}
button:active, button:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img.lazy {
  background-image: url("../img/loading.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50px auto;
  height: auto;
}

input::-webkit-input-placeholder {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}
input:-moz-placeholder {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}
input::-moz-placeholder {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}
input:-ms-input-placeholder {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.39px;
}

#npreOverlay {
  background: var(--preloaderBg);
}

.go-top {
  bottom: 28px;
  display: none;
  position: fixed;
  right: 28px;
  z-index: 999;
}
.go-top img {
  width: 35px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.go-top img:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.go-top span {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  float: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  padding: 8px 12px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.go-top span:hover {
  color: #fff;
}

.wrapper {
  width: 100%;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.content-area {
  padding: 0 20px;
}

.content-inner {
  position: relative;
  width: 100%;
  max-width: 1130px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
  background: #fff;
  height: 100%;
  top: 56px;
}

.logo {
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.logoContainer .logo {
  padding-top: 28px;
  padding-bottom: 28px;
}
.logoContainer img {
  height: 128px;
  width: auto;
}

.calendeer-icon {
  position: absolute;
  right: 28px;
  top: 50px;
  background: #F06830;
  float: right;
  padding: 10px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 9;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.calendeer-icon:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
  background: #f38b60;
}
.calendeer-icon img {
  width: 25px;
}

table {
  border: none;
}

th {
  background: #f8f8f8;
  padding-left: 12px;
}

tr {
  border-bottom: 1px solid #DFDFDF;
}

tbody tr {
  vertical-align: baseline;
}
tbody tr:hover {
  background-color: #E9E9E9;
  color: #000;
}
tbody tr td {
  padding: 8px 12px;
}

.wpb_text_column h1 {
  font-weight: 400;
  color: #F06830;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.wpb_text_column h2 {
  font-size: 33px;
  line-height: 1.25;
  letter-spacing: -1px;
  color: #F06830;
  font-weight: 300;
}
.wpb_text_column h3 {
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -1px;
  font-weight: 400;
}
.wpb_text_column h1:not(:last-child),
.wpb_text_column h2:not(:last-child),
.wpb_text_column h3:not(:last-child),
.wpb_text_column h4:not(:last-child),
.wpb_text_column h5:not(:last-child),
.wpb_text_column h6:not(:last-child) {
  margin-bottom: 32px;
}
.wpb_text_column p:not(:last-child),
.wpb_text_column ul:not(:last-child),
.wpb_text_column ol:not(:last-child) {
  margin-bottom: 20px;
}
.wpb_text_column a {
  color: #F06830;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpb_text_column a:hover {
  color: #f38b60;
  text-decoration: none;
}
.wpb_text_column a {
  text-decoration: underline;
}
.wpb_text_column ul,
.wpb_text_column ol {
  padding-left: 40px;
}

.single-post-content ul {
  margin: revert;
  padding: revert;
}
.single-post-content a {
  color: #F06830;
}
.single-post-content p {
  margin-bottom: 12px;
}
.single-post-content h1 {
  font-weight: 700;
  margin-bottom: 12px;
}
.single-post-content h1 + p {
  font-weight: 700;
}

.single-article {
  margin-bottom: 48px;
}
.single-article a {
  color: #F06830;
}
.single-article .date {
  color: #888;
}

.date {
  border-top: 1px solid #eee;
}

.read-more {
  display: inline-block;
  margin: 12px 0;
}

.pagination {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 48px !important;
  margin-top: 35px !important;
}
.pagination a {
  color: #F06830;
}

#breadcrumbs .separator img {
  height: 60px;
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center {
  margin-bottom: 0;
}
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon {
  color: #F06830;
}
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon:before {
  font-size: 48px;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Header & Navigation Styles
============================================================*/
.header-area {
  padding: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  height: 56px;
  background-color: #F06830;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  height: 44px;
}
.header-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 12px;
}
.header-area ul li ul {
  z-index: 9;
}
.header-area ul img {
  display: block;
}
.header-area li {
  color: #fff;
  display: block;
  float: left;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-area li a {
  color: #fff;
  text-decoration: none;
  line-height: 56px;
  font-size: 17px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 12px;
  display: flex;
  align-items: center;
  height: 44px;
}
.header-area li a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.header-area li:hover {
  cursor: pointer;
}
.header-area ul li ul {
  border: 1px solid #eee;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  padding: 8px 0 0 0;
  left: -15px;
  display: none;
  width: 260px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
}
.header-area ul li ul a {
  color: #4c4c4c;
  padding: 12px 28px;
  display: block;
  font-size: 16px !important;
  line-height: 1.5 !important;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  height: auto;
}
.header-area ul li ul a:hover {
  background: #f8f8f8;
  color: #F06830;
  padding-left: 32px;
}
.header-area ul li:hover > ul,
.header-area ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}
.header-area ul li ul li {
  clear: both;
  width: 100%;
}

.header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu ul li {
  list-style: none;
  display: inline-block;
}
.menu ul li a {
  color: #3e3e3e;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 12px;
}
.menu ul li a:hover {
  color: #d25419;
}

.menu-image-title-before.menu-image-not-hovered img,
.menu-image-hovered.menu-image-title-before .menu-image-hover-wrapper,
.menu-image-title-after.menu-image-title {
  padding-left: 0px;
}

.menu-image-title-after.menu-image-not-hovered img,
.menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper,
.menu-image-title-before.menu-image-title {
  padding-right: 0px;
}

.home:not(body) {
  width: 27px;
  position: relative;
  left: 7px;
}

main .mobileMenuOpener {
  display: none;
}

.panel-header {
  display: none;
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}
.slideout-menu-left {
  left: 0;
}
.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #fff;
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
  background: #fff;
}

.btn-hamburger {
  cursor: pointer;
}
.btn-hamburger img {
  width: 27px;
}

.slideout-menu-container {
  padding: 36px 28px;
}
.slideout-menu-container .slideout-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.slideout-menu-container .slideout-menu-list > li {
  display: block;
  border-bottom: 1px solid rgba(238, 238, 238, 0.3);
}
.slideout-menu-container .slideout-menu-list > li:last-child {
  border-bottom: none;
}
.slideout-menu-container .slideout-menu-list > li > a {
  display: block;
  padding: 20px 0;
  color: #F06830;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.slideout-menu-container .slideout-menu-list > li > a:hover {
  color: #f38b60;
  padding-left: 8px;
}
.slideout-menu-container .slideout-menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-bottom: 12px;
  background: rgba(248, 248, 248, 0.5);
}
.slideout-menu-container .slideout-menu-list .sub-menu li {
  display: block;
  border-bottom: none;
}
.slideout-menu-container .slideout-menu-list .sub-menu li a {
  display: block;
  padding: 12px;
  color: #6c6c6c;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.slideout-menu-container .slideout-menu-list .sub-menu li a::before {
  content: "→";
  position: absolute;
  left: -12px;
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.slideout-menu-container .slideout-menu-list .sub-menu li a:hover {
  color: #F06830;
  padding-left: 32px;
}
.slideout-menu-container .slideout-menu-list .sub-menu li a:hover::before {
  opacity: 1;
  left: 12px;
}
.slideout-menu-container .slideout-menu-list .sub-menu li .sub-menu {
  padding-left: 20px;
  background: rgba(248, 248, 248, 0.7);
}
.slideout-menu-container .slideout-menu-list .sub-menu li .sub-menu a {
  font-size: 14px;
  color: #888;
}
.slideout-menu-container .slideout-menu-list .current-page-ancestor > a,
.slideout-menu-container .slideout-menu-list .current-menu-ancestor > a,
.slideout-menu-container .slideout-menu-list .current-menu-item > a,
.slideout-menu-container .slideout-menu-list .current-page-item > a {
  color: #F06830;
  font-weight: 700;
}

.hamburger .line {
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger:hover .line {
  opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
  opacity: 0;
}
.slideout-open .line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.slideout-open .line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.dropdown-menu {
  margin: 0;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.dropdown a {
  position: relative;
}
.dropdown > a::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown > a:hover::after {
  color: #d25419;
}

@media (max-width: 991px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Footer Styles
============================================================*/
.footer-area {
  background: #fff;
  width: 100%;
  left: 0;
  border-top: 1px solid #DFDFDF;
  margin-top: 100px;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.footer {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #F06830;
  padding: 28px 0;
}
.footer div {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 1130px;
  padding: 0 28px;
  width: 100%;
  margin: 0 auto;
}
.footer p {
  color: #fff;
  font-size: 16px;
}
.footer ul li {
  list-style: none;
  display: inline-block;
}
.footer ul li a {
  text-decoration: none;
  margin: 12px;
  color: #fff;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.footer ul li a:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
}

.footer-inner {
  width: 100%;
  max-width: 1130px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 0;
  background: #fff;
}

.footerContent {
  border-bottom: 1px solid #ebebeb;
  border-top: 2px solid #fff;
  padding-bottom: 28px;
}
.footerContent p {
  line-height: 1.9;
  font-weight: 400;
  color: #151515;
}
.footerContent a {
  color: #F06830;
}

.footer-btm {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  padding: 28px 0;
}
.footer-btm img {
  max-height: 65px;
  width: auto;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.footer-btm img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 0.85;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
.sidebar-navigation {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 28px;
  position: sticky;
  top: 28px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
}
.sidebar-navigation .sidebar-inner {
  width: 100%;
}

.sidebar-menu-container .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-menu-container .sidebar-menu > li {
  border-bottom: 1px solid #eee;
}
.sidebar-menu-container .sidebar-menu > li:last-child {
  border-bottom: none;
}
.sidebar-menu-container .sidebar-menu > li > a {
  display: none;
}
.sidebar-menu-container .sidebar-menu > li > ul {
  padding-bottom: 0 !important;
}
.sidebar-menu-container .sidebar-menu > li > ul > li {
  margin-bottom: 28px;
}
.sidebar-menu-container .sidebar-menu > li > ul > li:last-of-type {
  margin-bottom: 0;
}
.sidebar-menu-container .sidebar-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(238, 238, 238, 0.3);
}
.sidebar-menu-container .sidebar-menu .sub-menu li {
  border-bottom: none;
}
.sidebar-menu-container .sidebar-menu .sub-menu li a {
  display: block;
  padding: 12px 12px;
  color: #6c6c6c;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.sidebar-menu-container .sidebar-menu .sub-menu li a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-menu-container .sidebar-menu .sub-menu li a:hover {
  color: #F06830;
  padding-left: 20px;
}
.sidebar-menu-container .sidebar-menu .sub-menu li a:hover::before {
  opacity: 1;
  left: 0;
}
.sidebar-menu-container .sidebar-menu .sub-menu li.current-page-ancestor > a, .sidebar-menu-container .sidebar-menu .sub-menu li.current-menu-ancestor > a, .sidebar-menu-container .sidebar-menu .sub-menu li.current-menu-item > a, .sidebar-menu-container .sidebar-menu .sub-menu li.current-page-item > a {
  color: #F06830;
  font-weight: 700;
}
.sidebar-menu-container .sidebar-menu .sub-menu .sub-menu {
  padding-left: 20px;
  background: rgba(238, 238, 238, 0.5);
}
.sidebar-menu-container .sidebar-menu .sub-menu .sub-menu a {
  font-size: 14px;
  color: #888;
}
.sidebar-menu-container .sidebar-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 48px;
}

.content-with-sidebar {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}
.content-with-sidebar .main-content-area {
  flex: 1;
  min-width: 0;
}
.content-with-sidebar .sidebar-navigation {
  flex: 0 0 280px;
  width: 280px;
}

.single-post-with-sidebar {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}
.single-post-with-sidebar .single-post-content {
  flex: 1;
  min-width: 0;
}
.single-post-with-sidebar .sidebar-navigation {
  flex: 0 0 280px;
  width: 280px;
  align-self: flex-start;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Button Styles
============================================================*/
.button {
  text-align: center;
}
.button a {
  background-color: #196FB8;
  border: 6px solid #196FB8;
  padding: 18px 42px;
  font-size: 1.3em;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.button a:hover {
  border: 6px solid #196FB8;
  background: #fff;
  color: #196FB8;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.button a:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
  background-color: #196FB8;
  border: 6px solid #196FB8;
  padding: 18px 42px;
  font-size: 1.3em;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  background-image: none;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
  border: 6px solid #196FB8;
  background: #fff;
  color: #196FB8;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Card & Plan Styles
============================================================*/
.application-area {
  background-color: #fff;
  padding: 40px 0 40px 0;
  margin-left: 0;
  margin-right: 0;
}

.card-img {
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  margin-top: 80px;
  border-bottom: 1px solid #eee;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-img:hover {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  transform: translateY(-6px);
}

.plans-area {
  border-top: 1px solid #ABABAB;
  padding-top: 64px;
  margin-top: 64px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.single-plan {
  width: 48%;
}
.single-plan h3 {
  font-size: 1.6em;
  line-height: 1.3;
  letter-spacing: -0.1rem;
  font-weight: 400;
  margin-top: 20px;
}

.drawer,
.drawer-2 {
  margin-top: 36px;
}
.drawer h3,
.drawer-2 h3 {
  font-size: 1.6em;
  line-height: 1.3;
  letter-spacing: -0.1rem;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 1px solid #DFDFDF;
  margin-bottom: 28px;
  padding-bottom: 12px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer h3:hover,
.drawer-2 h3:hover {
  color: #F06830;
  border-bottom-color: #F06830;
}

.drawer-text,
.drawer-text-2 {
  display: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.drawer-text.active,
.drawer-text-2.active {
  display: block;
}
.drawer-text.active p,
.drawer-text-2.active p {
  line-height: 1.8;
  font-weight: 400;
  color: #151515;
  margin-bottom: 20px;
}
.drawer-text.active p a,
.drawer-text-2.active p a {
  color: #F06830;
}

.drawer .vc_tta-panel-heading {
  border: none !important;
  border-bottom: 1px solid #ABABAB !important;
  background: none !important;
}
.drawer .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 1.6em;
  line-height: 1.3 !important;
  letter-spacing: -0.1rem;
  font-weight: 400;
  cursor: pointer;
}
.drawer .vc_tta-panel-heading .vc_tta-panel-title > a {
  color: #000 !important;
}
.drawer .vc_tta-panel-heading .vc_tta-panel-title i.vc_tta-controls-icon.vc_tta-controls-icon-chevron {
  left: 12px;
}
.drawer .vc_tta-panel-heading .vc_tta-panel-title i.vc_tta-controls-icon.vc_tta-controls-icon-chevron:before {
  border-color: #F06830;
  border-width: 0 3px 3px 0;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 0px;
}
.drawer .vc_tta-panel-body {
  padding: 0px !important;
  background: none !important;
  border: none !important;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Download Section Styles
============================================================*/
.download-inner {
  background-color: #fff;
  padding: 40px 0 40px 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.single-download {
  position: relative;
  width: 100%;
  background: #fff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  margin-bottom: 36px;
  overflow: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-download::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #F06830;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-download:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.single-download:hover::before {
  width: 8px;
}
.single-download:hover .download-icon i {
  -webkit-transform: scale(1.15) translateY(-3px);
  -moz-transform: scale(1.15) translateY(-3px);
  transform: scale(1.15) translateY(-3px);
  color: #f38b60;
}

.download-card-link {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 36px 48px;
  text-decoration: none;
  color: #151515;
}
.download-card-link:hover {
  text-decoration: none;
  color: #151515;
}

.download-icon {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(240, 104, 48, 0.1) 0%, rgba(240, 104, 48, 0.05) 100%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.download-icon i {
  font-size: 36px;
  color: #F06830;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-file-type {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #F06830;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  line-height: 1;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-text {
  flex: 1;
  min-width: 0;
}

.download-title {
  margin-bottom: 8px;
}
.download-title h4 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #151515;
  line-height: 1.2;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-description {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #888;
}

.download-meta {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.download-meta-item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6c6c6c;
  font-weight: 400;
}
.download-meta-item i {
  font-size: 16px;
  color: #F06830;
  opacity: 0.7;
}

.download-card-link:hover .download-title h4 {
  color: #F06830;
}
.download-card-link:hover .download-file-type {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  background: #f38b60;
}

.download-tags {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
}

.download-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(240, 104, 48, 0.1);
  color: #F06830;
  font-size: 12px;
  font-weight: 700;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-tag:hover {
  background: rgba(240, 104, 48, 0.15);
}

.wb-download-filter {
  margin-bottom: 64px;
  padding: 28px 0;
}

.download-filter-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(238, 238, 238, 0.3);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.download-filter-btn {
  background-color: transparent;
  border: 0;
}
.download-filter-btn:active, .download-filter-btn:focus {
  outline: 0;
}
.download-filter-btn {
  padding: 12px 28px;
  background: #fff;
  color: #151515;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #DFDFDF;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.download-filter-btn:hover {
  background: rgba(240, 104, 48, 0.1);
  border-color: #F06830;
  color: #F06830;
}
.download-filter-btn.active {
  background: #F06830;
  border-color: #F06830;
  color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
}
.download-filter-btn.active:hover {
  background: #f38b60;
  border-color: #f38b60;
  color: #fff;
}

.single-download {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.single-download.filtering-hide {
  opacity: 0;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  transform: scale(0.95);
  pointer-events: none;
}

.download-filter-loading {
  display: none;
  text-align: center;
  padding: 80px 0;
  margin: 48px 0;
}
.download-filter-loading p {
  margin-top: 20px;
  font-size: 16px;
  color: #6c6c6c;
  font-weight: 700;
}

.download-filter-loading .spinner {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(240, 104, 48, 0.2);
  border-top-color: #F06830;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
}

@keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wb-download-filter.filtering {
  pointer-events: none;
  opacity: 0.6;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Logos Section Styles
============================================================*/
.pt-logos {
  padding-top: 120px;
}

.logos {
  position: relative;
}
.logos li {
  z-index: 10;
}
.logos li img {
  max-height: 100%;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.logos a,
.logos .logo-no-link {
  width: 100%;
  justify-content: center;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  height: 100%;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  z-index: 10;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  background: #fff;
  position: relative;
}
.logos a img,
.logos .logo-no-link img {
  border-radius: 15px;
}
.logos a::before,
.logos .logo-no-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240, 104, 48, 0.02) 0%, rgba(25, 111, 184, 0.02) 100%);
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-center {
  width: 315px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 11;
}
.logo-center a,
.logo-center .logo-no-link {
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
}
.logo-center a:hover,
.logo-center .logo-no-link:hover {
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.logo-left,
.logo-right {
  position: absolute;
  top: -60px;
  width: 200px;
  height: auto;
  min-height: 200px;
  z-index: 1;
  -webkit-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-left a,
.logo-left .logo-no-link,
.logo-right a,
.logo-right .logo-no-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px;
  border: 10px solid #F06830;
  background: #fff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
}
.logo-left a:hover,
.logo-left .logo-no-link:hover,
.logo-right a:hover,
.logo-right .logo-no-link:hover {
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
}

.logo-left {
  top: -100px;
  left: -275px;
}

.logo-right {
  top: -100px;
  right: -275px;
}

.logo-left,
.logo-right,
.logo-center a,
.logo-center .logo-no-link,
#list li {
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
}

.logo-left,
.logo-right,
.logo-center a,
.logo-center .logo-no-link {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

#list a {
  -webkit-filter: grayscale(90%);
  filter: grayscale(90%);
}

.logo-left:hover,
.logo-right:hover,
.logos li:hover {
  z-index: 100;
}

.logos a:hover,
.logos .logo-no-link:hover {
  z-index: 100;
  -webkit-transform: scale(1.4) translateY(-4px);
  -moz-transform: scale(1.4) translateY(-4px);
  transform: scale(1.4) translateY(-4px);
  -webkit-filter: grayscale(10%);
  filter: grayscale(10%);
  -webkit-box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.03);
  -moz-box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.03);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.03);
}
.logos a:hover::before,
.logos .logo-no-link:hover::before {
  opacity: 1;
}

.logo-center a:hover,
.logo-center .logo-no-link:hover {
  -webkit-transform: scale(1.05) translateX(-50%) translateY(-50%);
  -moz-transform: scale(1.05) translateX(-50%) translateY(-50%);
  transform: scale(1.05) translateX(-50%) translateY(-50%);
}

.logo-left:hover a,
.logo-left:hover .logo-no-link,
.logo-right:hover a,
.logo-right:hover .logo-no-link {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
  border-color: #f38b60;
}

.logo-annotation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -moz-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(255, 255, 255, 0.95);
  color: #151515;
  padding: 12px 20px;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 11;
  font-weight: 700;
  line-height: 1.2;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  max-width: 200px;
}

.logos a:hover .logo-annotation,
.logo-no-link:hover .logo-annotation {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.logo-left .logo-description,
.logo-right .logo-description {
  margin: 0;
  text-align: center;
  color: #151515;
  font-size: 13.6px;
  line-height: 1.25;
  font-weight: 400;
  width: 100%;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
.wb-accordion {
  width: 100%;
  margin-bottom: 36px;
}
.wb-accordion .wb-accordion-item {
  border: 1px solid #DFDFDF;
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-accordion .wb-accordion-item:last-child {
  margin-bottom: 0;
}
.wb-accordion .wb-accordion-item .wb-accordion-header {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 36px;
  background-color: #fff;
  cursor: pointer;
  text-align: left;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-accordion .wb-accordion-item .wb-accordion-header:hover {
  background-color: rgba(240, 104, 48, 0.05);
}
.wb-accordion .wb-accordion-item .wb-accordion-header h3 {
  margin: 0;
  font-size: 1.4em;
  font-weight: 700;
  color: #151515;
  line-height: 1.25;
  flex: 1;
  text-align: left;
}
.wb-accordion .wb-accordion-item .wb-accordion-header .wb-accordion-icon {
  font-size: 28px;
  color: #F06830;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-right: 20px;
}
.wb-accordion .wb-accordion-item .wb-accordion-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -moz-transition: max-height 0.3s ease;
  -ms-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.wb-accordion .wb-accordion-item .wb-accordion-content .wb-accordion-content-inner {
  padding: 36px 36px 0 36px;
  border-top: 1px solid #eee;
}
.wb-accordion .wb-accordion-item.active {
  border-color: #F06830;
}
.wb-accordion .wb-accordion-item.active .wb-accordion-header {
  background-color: rgba(240, 104, 48, 0.05);
}
.wb-accordion .wb-accordion-item.active .wb-accordion-header .wb-accordion-icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.wb-accordion .wb-accordion-item.active .wb-accordion-content {
  max-height: 5000px;
  display: block !important;
}

@media (max-width: 767px) {
  .wb-accordion .wb-accordion-item .wb-accordion-header {
    padding: 20px 28px;
  }
  .wb-accordion .wb-accordion-item .wb-accordion-header h3 {
    font-size: 1.3em;
  }
  .wb-accordion .wb-accordion-item .wb-accordion-header .wb-accordion-icon {
    font-size: 24px;
  }
  .wb-accordion .wb-accordion-item .wb-accordion-content .wb-accordion-content-inner {
    padding: 28px;
  }
}
/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
.wb-news-grid {
  display: grid;
  gap: 64px;
  margin-bottom: 80px;
}
.wb-news-grid.wb-news-columns-1 {
  grid-template-columns: 1fr;
}
.wb-news-grid.wb-news-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wb-news-grid.wb-news-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wb-news-grid.wb-news-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.wb-news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wb-news-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.wb-news-card:hover .wb-news-thumbnail {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}
.wb-news-card:hover .wb-news-title {
  color: #F06830;
}
.wb-news-card:hover .wb-news-read-more {
  color: #f38b60;
}
.wb-news-card:hover .wb-news-read-more i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  transform: translateX(5px);
}

.wb-news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.wb-news-card-link:hover, .wb-news-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.wb-news-image {
  position: relative;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16/10;
}
.wb-news-image .wb-news-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-news-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wb-news-meta-top {
  margin-bottom: 20px;
}

.wb-news-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240, 104, 48, 0.1) 0%, rgba(240, 104, 48, 0.05) 100%);
  color: #F06830;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-news-title {
  margin: 0 0 20px 0;
  font-size: 26px;
  line-height: 1.2;
  color: #151515;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-news-date {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: #6c6c6c;
  font-size: 14px;
  margin-bottom: 20px;
}
.wb-news-date i {
  font-size: 16px;
  color: #F06830;
}

.wb-news-excerpt {
  color: #888;
  line-height: 1.5;
  margin-bottom: 28px;
  flex-grow: 1;
}
.wb-news-excerpt p {
  margin: 0;
}

.wb-news-read-more {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: #F06830;
  font-weight: 700;
  font-size: 15px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  display: inline-flex;
}
.wb-news-read-more i {
  font-size: 18px;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-news-no-posts {
  text-align: center;
  padding: 80px;
  color: #6c6c6c;
  font-size: 1.4em;
}

.wb-news-pagination {
  margin-top: 80px;
  margin-bottom: 64px;
}
.wb-news-pagination .page-numbers {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wb-news-pagination .page-numbers li {
  list-style: none;
}
.wb-news-pagination .page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #DFDFDF;
  border-radius: 6px;
  color: #151515;
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-news-pagination .page-numbers .page-numbers i {
  font-size: 20px;
}
.wb-news-pagination .page-numbers .page-numbers:hover {
  background: #F06830;
  border-color: #F06830;
  color: #fff;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
}
.wb-news-pagination .page-numbers .page-numbers.current {
  background: #F06830;
  border-color: #F06830;
  color: #fff;
  font-weight: 700;
  cursor: default;
}
.wb-news-pagination .page-numbers .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
  min-width: auto;
}
.wb-news-pagination .page-numbers .page-numbers.dots:hover {
  background: transparent;
  color: #151515;
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.wb-news-pagination .page-numbers .page-numbers.prev, .wb-news-pagination .page-numbers .page-numbers.next {
  font-weight: 700;
  gap: 8px;
}
.wb-news-pagination .page-numbers .page-numbers.prev i, .wb-news-pagination .page-numbers .page-numbers.next i {
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-news-pagination .page-numbers .page-numbers.prev:hover i {
  -webkit-transform: translateX(-3px);
  -moz-transform: translateX(-3px);
  transform: translateX(-3px);
}
.wb-news-pagination .page-numbers .page-numbers.next:hover i {
  -webkit-transform: translateX(3px);
  -moz-transform: translateX(3px);
  transform: translateX(3px);
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
.wb-page-navigation {
  margin: 80px 0;
  padding: 0;
}

.wb-page-nav-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 28px;
}

.wb-page-nav-link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
  padding: 36px 48px;
  background: #fff;
  border: 1px solid #DFDFDF;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
}
.wb-page-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #F06830;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-page-nav-link:hover {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: #F06830;
}
.wb-page-nav-link:hover::before {
  width: 8px;
}
.wb-page-nav-link:hover .wb-page-nav-title {
  color: #F06830;
}
.wb-page-nav-link:hover .wb-page-nav-icon i {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
  color: #f38b60;
}

.wb-page-nav-prev::before {
  left: 0;
}
.wb-page-nav-prev .wb-page-nav-icon {
  margin-right: 20px;
}
.wb-page-nav-prev:hover .wb-page-nav-icon i {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  transform: translateX(-5px);
}

.wb-page-nav-next::before {
  right: 0;
}
.wb-page-nav-next {
  justify-content: flex-end;
  text-align: right;
}
.wb-page-nav-next .wb-page-nav-icon {
  margin-left: 20px;
  order: 2;
}
.wb-page-nav-next .wb-page-nav-content {
  order: 1;
}
.wb-page-nav-next:hover .wb-page-nav-icon i {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  transform: translateX(5px);
}

.wb-page-nav-icon {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 104, 48, 0.1) 0%, rgba(240, 104, 48, 0.05) 100%);
  flex-shrink: 0;
}
.wb-page-nav-icon i {
  font-size: 32px;
  color: #F06830;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.wb-page-nav-content {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.wb-page-nav-label {
  font-size: 14px;
  font-weight: 400;
  color: #6c6c6c;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.wb-page-nav-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #151515;
  line-height: 1.2;
  -webkit-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  word-wrap: break-word;
}

.wb-page-nav-container:has(.wb-page-nav-link:only-child) .wb-page-nav-link {
  max-width: 600px;
}

/*===========================================================
 Utility Classes
============================================================*/
.cboth {
  overflow: hidden;
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
}

/*===========================================================
 Main SCSS File - WB Theme

 This file imports all the modular SCSS partials.
 Compile this file to generate the final CSS.
============================================================*/
/*===========================================================
 Responsive Styles
============================================================*/
@media (max-width: 1199px) {
  .logo-left {
    left: -150px;
    z-index: 1;
  }
  .logo-right {
    right: -150px;
    z-index: 1;
  }
}
@media (max-width: 991px) {
  .wb-news-grid.wb-news-columns-3, .wb-news-grid.wb-news-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb-news-content {
    padding: 28px;
  }
  .content-with-sidebar,
  .single-post-with-sidebar {
    flex-direction: column;
  }
  .sidebar-navigation {
    width: 100%;
    flex: 1;
    position: static;
    margin-top: 48px;
    order: 2;
  }
  .main-content-area,
  .single-post-content {
    width: 100%;
    flex: 1;
  }
  .logos a:hover {
    -webkit-transform: scaleX(1.25) scaleY(1.25);
    -moz-transform: scaleX(1.25) scaleY(1.25);
    transform: scaleX(1.25) scaleY(1.25);
  }
  .pt-logos {
    padding-top: 160px;
  }
  .logo-left {
    left: -50px;
    z-index: 1;
    top: -100px;
  }
  .logo-right {
    right: -50px;
    z-index: 1;
    top: -100px;
  }
  .single-download {
    width: 100%;
  }
  .application-area {
    background-color: #fff;
    padding: 50px 32px;
  }
  .single-plan h3 {
    font-size: 1.4em;
  }
  .button a {
    padding: 14px 32px;
  }
  .calendeer-icon {
    position: absolute;
    right: 3px;
  }
  .dropdown-menu {
    margin: 0;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .dropdown a {
    position: relative;
  }
  .dropdown > a:hover::after {
    color: #d25419;
  }
  .dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
  .button a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    padding: 14px 32px;
  }
}
@media (max-width: 767px) {
  .wb-news-grid {
    gap: 36px;
  }
  .wb-news-grid.wb-news-columns-2, .wb-news-grid.wb-news-columns-3, .wb-news-grid.wb-news-columns-4 {
    grid-template-columns: 1fr;
  }
  .wb-news-content {
    padding: 20px;
  }
  .wb-news-title {
    font-size: 1.4em;
  }
  .wb-news-pagination {
    margin-top: 48px;
  }
  .wb-news-pagination .page-numbers {
    gap: 8px;
  }
  .wb-news-pagination .page-numbers .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 8px 12px;
    font-size: 14px;
  }
  .wb-news-pagination .page-numbers .page-numbers i {
    font-size: 18px;
  }
  .wb-news-pagination .page-numbers .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
    display: none;
  }
  .sidebar-navigation {
    padding: 20px;
    margin-top: 28px;
  }
  .sidebar-menu-container .sidebar-menu > li > a {
    padding: 12px;
    font-size: 15px;
  }
  .sidebar-menu-container .sidebar-menu .sub-menu {
    padding-left: 20px;
  }
  .sidebar-menu-container .sidebar-menu .sub-menu a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .sidebar-menu-container .menu-item-has-children > a {
    padding-right: 36px;
  }
  .header-area {
    display: none;
  }
  .mobile-logo {
    width: 100px;
  }
  .dropdown-menu {
    padding-top: 0;
    width: 100%;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    position: unset;
    top: unset;
  }
  .menu ul li {
    display: block;
  }
  .menu ul li .dropdown-menu li {
    padding-left: 12px;
  }
  .menu ul li .dropdown-menu li a {
    padding-left: 0;
    padding-right: 0;
    line-height: 2;
  }
  .menu ul li a {
    color: #F06830;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #F06830;
    line-height: 2;
    text-decoration: none;
  }
  .dropdown > a::after {
    right: 12px;
    position: absolute;
    top: 50%;
    margin-top: -1px;
  }
  main .mobileMenuOpener {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    z-index: 10;
  }
  .panel-header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background: #F06830;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
    padding: 12px 20px;
  }
  .logo-left,
  .logo-right,
  .logo-center a {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  .logo-left,
  .logo-right {
    height: 100px;
  }
  .logo-left a,
  .logo-right a {
    border-width: 6px;
  }
  #list {
    padding: 20px;
    padding-top: 0;
  }
  #list,
  #logos {
    width: 100% !important;
    height: auto !important;
  }
  .logos a:hover {
    z-index: 100;
    -webkit-transform: scaleX(1) scaleY(1);
    -moz-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    -webkit-filter: grayscale(10%);
    filter: grayscale(10%);
  }
  .pt-logos {
    padding-top: 50px;
  }
  .logo-center {
    width: 100%;
    position: unset;
    left: unset;
    right: unset;
    top: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    transform: unset;
    text-align: center;
    margin-top: 200px;
  }
  .logo-center img {
    max-width: 300px;
  }
  .logo-center a {
    background: unset;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  #logos .list-item {
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    transform: unset !important;
    list-style: none !important;
    position: unset !important;
    top: unset !important;
    left: unset !important;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
    width: 100% !important;
    margin: 20px 0 !important;
  }
  .logo-left {
    left: 20px;
  }
  .logo-right {
    right: 20px;
  }
  .logo-left,
  .logo-right {
    top: -215px;
  }
  .button a {
    width: 85%;
    font-size: 1.2rem;
  }
  .application-area {
    background-color: #fff;
    padding: 50px 32px;
  }
  .download-inner {
    padding: 60px 80px;
  }
  .single-plan h3 {
    font-size: 1.3em;
  }
  .footer div {
    flex-direction: column;
  }
  .button a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    width: 85%;
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .logo-left {
    margin-bottom: 20px;
  }
  .logo-left,
  .logo-right {
    top: unset;
    position: unset;
    left: unset;
    right: unset;
    top: unset;
    width: calc(100% - 30px);
    margin-left: 20px;
  }
  .logo-center {
    margin-top: 20px;
  }
  .download-inner {
    padding: 50px 32px;
  }
  .download-button {
    width: 90%;
  }
  .download-button a {
    padding: 28px 12px;
  }
  .button a {
    width: 100%;
    font-size: 1.2rem;
    padding: 12px 28px;
  }
  .application-area {
    background-color: #fff;
    padding: 50px 32px;
  }
  .single-plan {
    width: 100%;
  }
  .footer-btm {
    flex-direction: column;
  }
  .button a.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    padding: 12px 28px;
    width: 100%;
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
