html {
  font-size: 1rem;
}
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  color: #5a6381;
}

sup.trade {
  top: -.7em;
  font-weight: 300;
  font-size: 50%;
}

.toro-button-v2 i.fas.fa-play {
  font-size: 11px;
  margin-right: 3px;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

@-webkit-keyframes fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-justify {
  text-align: justify;
}
.toro-light-blue-text {
  color: #459ecb;
}
.toro-light-blue-bg {
  background-color: #459ecb;
}
.toro-light-gray-bg {
  background-color: #f6f7fa;
}
.line-height-1 {
  line-height: 1em;
}
.bg-white {
  background: #fff;
}
.bg-dark {
  background: #1d1d1d;
}
.bg-cyan {
  background-color: #5eb6e4;
}
.bg-blue {
  background-color: #101a41;
}
.bg-dark-blue {
  background-color: #0b122d;
}
.bg-dark-blue-blur {
  background: rgba(11, 18, 45, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.toro-gradient-bg {
  background-image: -webkit-radial-gradient(30% 30%, circle 500px, #1b3d82, #091b3d);
  background-image: -o-radial-gradient(30% 30%, circle 500px, #1b3d82, #091b3d);
  background-image: radial-gradient(circle 500px at 30% 30%, #1b3d82, #091b3d);
}

.toro-gradient-light-purple-bg {
  background: #5eb6e4;
  background: -webkit-linear-gradient(144deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: -webkit-linear-gradient(306deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: -o-linear-gradient(306deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: linear-gradient(144deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5eb6e4",endColorstr="#9b59b6",GradientType=1);
}

.blue-violet-gradient,
.blue-violet-gradient-opposite,
.blue-violet-gradient-top-left,
.toro-gradient-bg-nav,
.toro-gradient-light-purple-bg-vert,
.toro-gradient-dark-purple-bg,
.toro-gradient-purple-bg {
  background: #71236e;
  background: -webkit-linear-gradient(295deg,  #71236E  0%, #101A41 50%);
  background: -o-linear-gradient(295deg,  #71236E  0%, #101A41 50%);
  background: linear-gradient(155deg,  #71236E  0%, #101A41 50%);
}

.toro-side-paddings-section {
  padding: 0 21%;
}
.toro-main-nav {
  padding: 0 21%;
}
.toro-main-nav .toro-main-nav-list p {
  font-size: 14px !important;
}
.toro-main-nav .toro-main-nav-list a {
  font-size: 14px !important;
}
.toro-banner {
  padding: 0 21%;
}
.toro-subnav {
  padding: 0 21%;
}
.toro-subnav p {
  font-size: 14px !important;
}
.toro-subnav a {
  font-size: 14px !important;
}
.toro-footer {
  padding: 0 21%;
}
.toro-body-section {
  padding: 70px 21%;
}
.extra-padding-y {
  padding-top: 110px;
  padding-bottom: 110px;
}
.dropdown-display-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.dropdown-display-block {
  display: block !important;
}
.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}
.subnav-mobile {
  display: none !important;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-content-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.justify-content-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.flex-row,
.flex-direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-column,
.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('https://static.torocloud.com/integrate-this-assets/nunitosans-light-webfont.woff2') format('woff2'),
  url('https://static.torocloud.com/integrate-this-assets/assets/cmsstatic/nunitosans-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  line-height: 1.1;
  color: inherit;
}
p,
.text-xxl,
.text-xl,
.text-lg,
.text-md,
.text-sm,
.text-xs,
.text-xss {
  line-height: 1.5;
}
p {
  font-size: 1.25rem;
}
.text-xxl {
  font-size: 1.5rem;
}
.text-xl {
  font-size: 1.375rem;
}
.text-lg {
  font-size: 1.25rem;
}
.text-md {
  font-size: 1.125rem;
}
.text-sm {
  font-size: 1rem;
}
.text-xs {
  font-size: 0.875rem;
}
.text-xxs {
  font-size: 0.75rem;
}
a {
  font-size: 1rem;
  text-decoration: none;
}
a:link {
  text-decoration: none;
}
a:link:active {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:visited:active {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
h1,
.heading-xxl {
  font-size: 3.5rem;
  font-weight: 600;
}
h2,
.heading-xl {
  font-size: 3rem;
}
h3,
.heading-lg {
  font-size: 2.25rem;
}
h4,
.heading-md {
  font-size: 2rem;
}
h5,
.heading-sm {
  font-size: 1.875rem;
}
h6,
.heading-xs {
  font-size: 1.75rem;
}
.heading-xxs {
  font-size: 1.625rem;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-none {
  text-transform: none !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-bold-uppercase {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.text-light {
  font-weight: 200 !important;
}
.text-normal {
  font-weight: 300 !important;
}
.text-bold {
  font-weight: 700;
}
.text-larger {
  font-size: 1.50em !important;
}
.text-small,
.text-small a {
  font-size: .8em !important;
}
.toro-semi-bold {
  font-weight: 600;
}
.toro-bold {
  font-weight: 800;
}
.toro-help-text {
  font-size: 18px;
  font-weight: 300;
  color: #459ecb;
  cursor: pointer;
}
.toro-help-text i {
  margin: 0 6px 0 0;
}
.text-dark {
  color: #222 !important;
}
.text-gray {
  color: #999 !important;
}
.text-slategray-light {
  color: #5a6381;
}
.text-slategray-dark {
  color: #404967;
}
.text-white {
  color: #fff;
}
.text-purple {
  color: #9b59b6;
}
.text-bright-purple {
  color: #da90f8;
}
.text-orange {
  color: #ffa91c;
}
.text-green {
  color: #1ac222;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
a.text-green:hover {
  color: #01a909 !important;
}
.larger-icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  font-weight: 200;
}
.btn {
  position: relative;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 3rem;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 0.2rem;
  border: none;
  cursor: pointer;
}
.btn__text {
  display: inline-block;
  font-size: .9rem;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.btn__icon {
  width: 11px;
  display: inline-block;
  position: absolute;
  right: 36px;
  top: auto;
  bottom: auto;
  opacity: 0;
  -webkit-transition: right 0.15s linear, opacity 0.1s linear;
  -o-transition: right 0.15s linear, opacity 0.1s linear;
  transition: right 0.15s linear, opacity 0.1s linear;
}

.btn:hover > .btn__text {
  -webkit-transform: translate3d(-9px, 0, 0);
  transform: translate3d(-9px, 0, 0);
}

.btn:hover > .btn__icon {
  right: 30px;
  opacity: 1;
}
.toro-button {
  border-radius: 5px;
  padding: 7px 45px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.toro-button-v2 {
  border-radius: 3px;
  padding: 7px 45px;
  font-size: 15px !important;
  text-transform: capitalize !important;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.toro-button i {
  margin: 0 5px;
}
.toro-button:hover,
.toro-button-v2:hover {
  text-decoration: none;
}
.toro-button:visited,
.toro-button-v2:visited {
  text-decoration: none;
}
.toro-button:link,
.toro-button-v2:link {
  text-decoration: none;
}
.toro-button:active,
.toro-button-v2:active {
  text-decoration: none;
}
.toro-button-big {
  padding: 15px 38px;
}
.button-fill {
  border: none;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#1ac222), to(#4cf84e));
  background-image: -webkit-linear-gradient(left, #1ac222, #4cf84e);
  background-image: -o-linear-gradient(left, #1ac222, #4cf84e);
  background-image: linear-gradient(to right, #1ac222, #4cf84e);
}
.button-fill:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#17ab1e), to(#33f736));
  background-image: -webkit-linear-gradient(left, #17ab1e, #33f736);
  background-image: -o-linear-gradient(left, #17ab1e, #33f736);
  background-image: linear-gradient(to right, #17ab1e, #33f736);
}
.button-fill:hover,
.blue-button-fill:hover {
  color: #fff;
}
.button-fill:visited,
.blue-button-fill:visited {
  color: #fff;
}
.button-fill:link,
.blue-button-fill:link {
  color: #fff;
}
.button-fill:active,
.blue-button-fill:active {
  color: #fff;
}
.button-outline {
  color: #1ac222;
  -webkit-box-shadow: 0 0 1px 1px #1ac222 inset;
  box-shadow: 0 0 1px 1px #1ac222 inset;
  background: transparent;
}
.button-outline:visited {
  color: #1ac222;
}
.button-outline:link {
  color: #1ac222;
}
.button-outline:active {
  color: #1ac222;
}
.button-outline:hover {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#1ac222), to(#4cf84e));
  background-image: -webkit-linear-gradient(left, #1ac222, #4cf84e);
  background-image: -o-linear-gradient(left, #1ac222, #4cf84e);
  background-image: linear-gradient(to right, #1ac222, #4cf84e);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.blue-button-fill {
  border: none;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#4684f6), to(#38d0f6));
  background-image: -webkit-linear-gradient(left, #4684f6, #38d0f6);
  background-image: -o-linear-gradient(left, #4684f6, #38d0f6);
  background-image: linear-gradient(to right, #4684f6, #38d0f6);
}
.blue-button-fill:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#2e74f5), to(#20caf5));
  background-image: -webkit-linear-gradient(left, #2e74f5, #20caf5);
  background-image: -o-linear-gradient(left, #2e74f5, #20caf5);
  background-image: linear-gradient(to right, #2e74f5, #20caf5);
}
.blue-button-outline {
  color: #4684f6;
  -webkit-box-shadow: 0 0 1px 1px #4684f6 inset;
  box-shadow: 0 0 1px 1px #4684f6 inset;
  background: transparent;
}
.blue-button-outline:visited {
  color: #4684f6;
}
.blue-button-outline:link {
  color: #4684f6;
}
.blue-button-outline:active {
  color: #4684f6;
}
.blue-button-outline:hover {
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#4684f6), to(#38d0f6));
  background-image: -webkit-linear-gradient(left, #4684f6, #38d0f6);
  background-image: -o-linear-gradient(left, #4684f6, #38d0f6);
  background-image: linear-gradient(to right, #4684f6, #38d0f6);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.toro-button-extension-dropdown {
  z-index: 99;
  position: relative;
  display: inline-block;
  width: 37px;
  padding: 5px 0;
  margin-left: -10px;
  margin-top: -1.5px;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-left: 1px solid #fff;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: #4cf84e;
}
.toro-button-extension-dropdown:hover {
  color: #fff;
}
.toro-button-extension-dropdown:visited {
  color: #fff;
}
.toro-button-extension-dropdown:link {
  color: #fff;
}
.toro-button-extension-dropdown:active {
  color: #fff;
}
.toro-input {
  border-radius: 5px;
  padding: 7px 20px;
  font-size: 12px;
  border: none;
}
.show-on-mobile {
  display: none !important;
}
.dropdown-filter {
  z-index: 99;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0);
}
.fadeIn {
  -webkit-animation: fadeInAnim 0.4s;
  animation: fadeInAnim 0.4s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.sticky {
  position: fixed !important;
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 9999 !important;
  border-top: 0 !important;
}
.sticky-content {
  position: fixed !important;
  top: 60px;
}
.gradient-line {
  margin: 0;
  width: 65px;
  height: 8px;
  background: #091b3d;
  background: -webkit-linear-gradient(270deg, #71236E  0%, #101A41 51%, rgba(155, 89, 182, 1) 100%);
  background: -webkit-gradient(linear, right top, left top, from(#71236E ), color-stop(51%, #101A41), to(rgba(155, 89, 182, 1)));
  background: -webkit-linear-gradient(right, #71236E  0%, #101A41 51%, rgba(155, 89, 182, 1) 100%);
  background: -o-linear-gradient(right, #71236E  0%, #101A41 51%, rgba(155, 89, 182, 1) 100%);
  background: linear-gradient(270deg, #71236E  0%, #101A41 51%, rgba(155, 89, 182, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#091b3d",endColorstr="#9b59b6",GradientType=1);
}
.gradient-line-light {
  margin: 0;
  margin-right: 100%;
  width: 75px;
  height: 10px;
  background: #5eb6e4;
  background: -webkit-linear-gradient(279deg, rgba(155, 89, 182, 1) 0%, rgba(94, 182, 228, 1) 100%);
  background: -webkit-linear-gradient(171deg, rgba(155, 89, 182, 1) 0%, rgba(94, 182, 228, 1) 100%);
  background: -o-linear-gradient(171deg, rgba(155, 89, 182, 1) 0%, rgba(94, 182, 228, 1) 100%);
  background: linear-gradient(279deg, rgba(155, 89, 182, 1) 0%, rgba(94, 182, 228, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5eb6e4",endColorstr="#9b59b6",GradientType=1);
}
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mt-big {
  margin-top: 50px;
}
.mb-big {
  margin-bottom: 50px;
}
.mr-big {
  margin-right: 50px;
}
.ml-big {
  margin-left: 50px;
}
.my-big {
  margin-top: 50px;
  margin-bottom: 50px;
}
.mx-big {
  margin-left: 50px;
  margin-right: 50px;
}
.mt-medium {
  margin-top: 36px;
}
.mb-medium {
  margin-bottom: 36px;
}
.mr-medium {
  margin-right: 36px;
}
.ml-medium {
  margin-left: 36px;
}
.my-medium {
  margin-top: 36px;
  margin-bottom: 36px;
}
.mx-medium {
  margin-left: 36px;
  margin-right: 36px;
}
.mt-small {
  margin-top: 30px;
}
.mb-small {
  margin-bottom: 30px;
}
.mr-small {
  margin-right: 30px;
}
.ml-small {
  margin-left: 30px;
}
.my-small {
  margin-top: 30px;
  margin-bottom: 30px;
}
.mx-small {
  margin-left: 30px;
  margin-right: 30px;
}
.mt-mid-small {
  margin-top: 15px;
}
.mb-mid-small {
  margin-bottom: 15px;
}
.mr-mid-small {
  margin-right: 15px;
}
.ml-mid-small {
  margin-left: 15px;
}
.my-mid-small {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mx-mid-small {
  margin-left: 15px;
  margin-right: 15px;
}
.mt-extra-small {
  margin-top: 15px;
}
.mb-extra-small {
  margin-bottom: 15px;
}
.mr-extra-small {
  margin-right: 15px;
}
.ml-extra-small {
  margin-left: 15px;
}
.my-extra-small {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mx-extra-small {
  margin-left: 15px;
  margin-right: 15px;
}
.p-0 {
  padding: 0 !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.flex-basis-100 { -ms-flex-preferred-size: 100%; flex-basis: 100%; }
.flex-1 { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.mw-100 { max-width: 100%; }
.mw-50 { max-width: 50%; }
.paragraph-max {
  max-width: 950px;
  text-align: justify;
  text-align-last: center;
  -moz-text-align-last: center;
  margin-left: auto;
  margin-right: auto;
}
.text-align-last-right {
  text-align-last: right;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.breadcrumbs,
.breadcrumbs-icon {
  color: #5a6381;
}
.breadcrumbs {
  font-size: .9rem;
  cursor: pointer;
}
.breadcrumbs-icon {
  font-size: .85rem;
  margin: 0 .25rem;
}
.accordion {
  border-bottom: 1px solid #999;
}
.arrow-down {
  font-size: 16px !important;
  margin-left: 5px;
}
.accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accordion-title i {
  margin-left: 20px;
}
.accordion-content {
  display: none;
  margin: 20px;
  padding: 20px;
  border-left: 4px solid #ffa91c;
  -webkit-animation: fadeInAnim 0.4s;
  animation: fadeInAnim 0.4s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.max-width-100 {
  max-width: 100%;
}
.max-width-95 {
  max-width: 95%;
}
.max-width-90 {
  max-width: 90%;
}
.max-width-80 {
  max-width: 80%;
}
.max-width-75 {
  max-width: 75%;
}
.max-width-70 {
  max-width: 70%;
}
.max-width-65 {
  max-width: 65%;
}
.max-width-50 {
  max-width: 50%;
}
.min-width-100 {
  min-width: 100%;
}
.min-width-95 {
  min-width: 95%;
}
.min-width-90 {
  min-width: 90%;
}
.min-width-80 {
  min-width: 80%;
}
.min-width-75 {
  min-width: 75%;
}
.min-width-65 {
  min-width: 65%;
}
.min-width-50 {
  min-width: 50%;
}
.min-height-100 {
  min-height: 100%;
}
.rounded-white-tab li a {
  position: relative;
  display: block;
  padding: 15px 25px;
}
.rounded-white-tab li.active:first-child {
  margin-right: 25px;
}
.rounded-white-tab li.active:last-child {
  margin-left: 25px;
}
.rounded-white-tab li.active:not(:first-child) {
  margin: 0 25px;
}
.rounded-white-tab li.active:not(:last-child) {
  margin: 0 25px;
}
.rounded-white-tab li.active > a::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  background-size: 45px;
  background-position: top left;
  left: 0;
  width: 100%;
  height: 142px;
  background-image: url('https://torocloud.com/cmsstatic/left-tab-shape.png');
  margin-left: -40px;
}
.rounded-white-tab li.active > a::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  background-size: 45px;
  background-position: top right;
  right: 0;
  width: 100%;
  height: 142px;
  background-image: url('https://torocloud.com/cmsstatic/right-tab-shape.png');
  margin-right: -40px;
}
.rounded-gradient-tab {
  border: none;
}
.rounded-gradient-tab li a {
  color: #777;
  cursor: pointer;
  border: none;
  padding: 2px 25px;
  white-space: nowrap;
}
.rounded-gradient-tab li:not(.active) a:hover {
  background-color: transparent;
  border: none;
}
.rounded-gradient-tab li.active > a {
  color: #fff;
  padding: 2px 25px;
  border-radius: 100px;
  background: #5eb6e4;
  background: -webkit-linear-gradient(144deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: -webkit-linear-gradient(306deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: -o-linear-gradient(306deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  background: linear-gradient(144deg, rgba(94, 182, 228, 1) 0%, rgba(155, 89, 182, 1) 100%);
  cursor: pointer;
  border: none;
}
.rounded-gradient-tab li.active > a:active {
  color: #fff;
  border: none;
}
.rounded-gradient-tab li.active > a:link {
  color: #fff;
  border: none;
}
.rounded-gradient-tab li.active > a:hover {
  color: #fff;
  border: none;
}
.center-position-margin {
  margin-left: auto;
  margin-right: auto;
}
.center-position-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.center-position-text-align {
  text-align: center;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.post-details {
  color: #555 !important;
}
.post-details span {
  padding: 0 15px;
  margin-right: 10px;
  border-radius: 100px;
  color: #fff !important;
}
.main-nav-bg {
  background: -webkit-linear-gradient(306deg, #091b3d 0%, #1b3d82 89%);
  background: -o-linear-gradient(306deg, #091b3d 0%, #1b3d82 89%);
  background: linear-gradient(144deg, #091b3d 0%, #1b3d82 89%);
}
.col1of1 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col1of2 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col1of3 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col1of4 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col1of5 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.row {
  margin-right: -15px !important;
  margin-left: -15px !important;
}
@media (max-width: 1625px) {
  .toro-side-paddings-section {
    padding: 0 16%;
  }
  .toro-main-nav {
    padding: 0 16%;
  }
  .toro-banner {
    padding: 0 16%;
  }
  .toro-subnav {
    padding: 0 16%;
  }
  .toro-footer {
    padding: 0 16%;
  }
  .toro-body-section {
    padding: 70px 16%;
  }
  .extra-padding-y {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1400px) {
  .toro-side-paddings-section {
    padding: 0 6%;
  }
  .toro-main-nav {
    padding: 0 6%;
  }
  .toro-banner {
    padding: 0 6%;
  }
  .toro-subnav {
    padding: 0 6%;
  }
  .toro-footer {
    padding: 0 6%;
  }
  .toro-body-section {
    padding: 50px 6%;
  }
  .extra-padding-y {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 1040px) {
  .hidden-sidenav {
    display: none !important;
  }
  .subnav-dropdown-content {
    display: none !important;
  }
}
@media (max-width: 1040px) {
  .toro-main-nav {
    height: 60px !important;
    padding-right: 5%;
    padding-left: 5%;
    height: 60px;
    padding-right: 5%;
    padding-left: 5%;
  }
  .toro-main-nav div .toro-logo {
    height: 20px !important;
    height: 20px;
  }
  .toro-subnav {
    height: 60px !important;
    padding-right: 5%;
    padding-left: 5%;
  }
  .toro-bars {
    display: block !important;
  }
  .subnav-mobile {
    display: block !important;
  }
  .subnav-desktop {
    display: none !important;
  }
  .dl-mobile {
    display: none !important;
  }
  .toro-main-nav-list {
    display: none !important;
  }
}
@media (max-width: 991px) {
  h1,
  .heading-xxl {
    font-size: 3rem;
  }
  h2,
  .heading-xl {
    font-size: 2.5rem;
  }
  h3,
  .heading-lg {
    font-size: 1.875rem;
  }
  h4,
  .heading-md {
    font-size: 1.75rem;
  }
  h5,
  .heading-sm {
    font-size: 1.625rem;
  }
  h6,
  .heading-xs {
    font-size: 1.5rem;
  }
  .heading-xxs {
    font-size: 1.375rem;
  }
  p {
    font-size: 1.125rem;
  }
  .text-xxl {
    font-size: 1.375rem;
  }
  .text-xl {
    font-size: 1.25rem;
  }
  .text-lg {
    font-size: 1.125rem;
  }
  .text-md {
    font-size: 1rem;
  }
  .text-sm {
    font-size: 1rem;
  }
  .text-xs {
    font-size: 0.875rem;
  }
  .text-xxs {
    font-size: 0.75rem;
  }
}
@media (max-width: 575px) {
  h1,
  .heading-xxl {
    font-size: 2.125rem;
  }
  h2,
  .heading-xl {
    font-size: 1.75rem;
  }
  h3,
  .heading-lg {
    font-size: 1.625rem;
  }
  h4,
  .heading-md {
    font-size: 1.5rem;
  }
  h5,
  .heading-sm {
    font-size: 1.375rem;
  }
  h6,
  .heading-xs {
    font-size: 1.25rem;
  }
  .heading-xxs {
    font-size: 1.125rem;
  }
  p {
    font-size: 1rem;
  }
  .text-xxl {
    font-size: 1.25rem;
  }
  .text-xl {
    font-size: 1.125rem;
  }
  .text-lg {
    font-size: 1rem;
  }
  .text-md {
    font-size: 1rem;
  }
  .text-sm {
    font-size: 1rem;
  }
  .text-xs {
    font-size: 0.875rem;
  }
  .text-xxs {
    font-size: 0.75rem;
  }
  .text-bold-uppercase {
    font-size: 14px;
  }
}
@media (max-width: 330px) {
  .toro-button {
    font-size: 12px;
  }
  .toro-button-big {
    padding: 15px 19px;
  }
  .rounded-gradient-tab li.active > a {
    padding: 2px 10px;
  }
}
@media (max-width: 800px) {
  .hide-on-mobile {
    display: none !important;
  }
  .show-on-mobile {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .sticky {
    top: 60px;
  }
}
@media (max-width: 1000px) {
  .paragraph-max {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .max-width-50 {
    max-width: 100% !important;
  }
  .max-width-65 {
    max-width: 100% !important;
  }
  .max-width-75 {
    max-width: 100% !important;
  }
  .max-width-70 {
    max-width: 100% !important;
  }
  .max-width-80 {
    max-width: 100% !important;
  }
  .max-width-90 {
    max-width: 100% !important;
  }
  .max-width-95 {
    max-width: 100% !important;
  }
  .min-width-50 {
    max-width: auto !important;
  }
  .min-width-65 {
    max-width: auto !important;
  }
  .min-width-75 {
    max-width: auto !important;
  }
  .min-width-80 {
    max-width: auto !important;
  }
  .min-width-90 {
    max-width: auto !important;
  }
  .min-width-95 {
    max-width: auto !important;
  }
}
@media (min-width: 992px) {
  .col1of1 {
    float: left;
    width: 100%;
  }
  .col1of2 {
    float: left;
    width: 50%;
  }
  .col1of3 {
    float: left;
    width: 33.33333%;
  }
  .col1of4 {
    float: left;
    width: 25%;
  }
  .col1of5 {
    float: left;
    width: 20%;
  }
  .col1of1-pull {
    right: 100%;
  }
  .col1of2-pull {
    right: 50%;
  }
  .col1of3-pull {
    right: 33.33333%;
  }
  .col1of4-pull {
    right: 25%;
  }
  .col1of5-pull {
    right: 20%;
  }
  .col1of1-push {
    left: 100%;
  }
  .col1of2-push {
    left: 50%;
  }
  .col1of3-push {
    left: 33.33333%;
  }
  .col1of4-push {
    left: 25%;
  }
  .col1of5-push-1 {
    left: 20%;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left
  }
  .text-md-right {
    text-align: right
  }
  .text-md-center {
    text-align: center
  }
  .text-md-justify {
    text-align: justify
  }
  .d-md-none {
    display: none !important
  }
  .d-md-block {
    display: block !important
  }
  .flex-md-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
          flex-direction: row
  }
  .flex-md-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
          flex-direction: column
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left
  }
  .text-lg-right {
    text-align: right
  }
  .text-lg-center {
    text-align: center
  }
  .text-lg-justify {
    text-align: justify
  }
  .d-lg-none {
    display: none !important
  }
  .d-lg-block {
    display: block !important
  }
  .flex-lg-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
          flex-direction: row
  }
  .flex-lg-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
          flex-direction: column
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center  !important;
    align-items: center  !important;
  }
}