@charset "utf-8";

:root {
  --brand-clr: #FFC72A;
  --white-clr: #F9F9F9;
  --black-clr: #333333;
  --blue-clr: #004B98;
  --lighter-blue-clr: #005DA3;
  --transition: all ease .4s;
  --shadow1: 2px 2px 13px rgba(0, 0, 0, 0.1);
  --note-bg: #E3F3FF
}
@media screen {
  :root {
    --small-banner-height: 290px;
    --tall-banner-height: 400px;
    --taller-banner-height: 500px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --small-banner-height: 140px;
    --tall-banner-height: 300px;
    --taller-banner-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --small-banner-height: 210px;
    --tall-banner-height: 300px;
    --taller-banner-height: 350px;
  }
}

html {
  overflow-x: hidden;
}

body {
  font-size: 20px;
  background: #fff;
  color: var(--black-clr);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.42857143;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

*,
*:focus {
  outline: none;
}

a {
  color: var(--black-clr);
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover {
  color: #333;
}

a:focus {
  outline: none;
  outline-offset: 0;
}

p {
  font-family: "Roboto";
  font-size: 20px;
  line-height: 30px;
  color: #333;
  font-weight: 400;
  margin-bottom: 10px;
}

ul {
  padding-left: 0;
  margin: 0;
  list-style-type: none;
}

ol li {
  margin-bottom: 10px;
}

blockquote {
  border-left: 3px solid var(--brand-clr);
  margin: 20px 0;
  padding: 20px;
  background: #f7f7f7;
}

blockquote p {
  margin: 0;
}

ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) {
  line-height: 38px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--black-clr);
}

ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li {
  position: relative;
  padding-left: 35px;
}

ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  height: 25px;
  width: 25px;
  border: 1.7px solid #9AC7F7;
  border-radius: 100%;
  background-color: var(--blue-clr);
}

ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  left: 8px;
  top: 12px;
  transform: rotate(45deg);
}

.tribe-events-meta-group a {
  color: var(--black-clr);
  text-decoration: underline;
}

.tribe-events-meta-group a:hover {
  color: var(--brand-clr);
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  padding-bottom: 10px;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--black-clr) !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--black-clr) !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--black-clr) !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: var(--black-clr) !important;
}

/* Icon CSS Start */
@font-face {
  font-family: "icomoon";
  src: url("/legacy-content/themes/arcsys/assets/fonts/icomoon.eot?w2jsyn");
  src: url("/legacy-content/themes/arcsys/assets/fonts/icomoon.eot?w2jsyn#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/icomoon.ttf?w2jsyn") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/icomoon.woff?w2jsyn") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/icomoon.svg?w2jsyn#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

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

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

.icon-support:before {
  content: "\e91c";
  color: #004b98;
}

.icon-speaker01:before {
  content: "\e91b";
  color: #005da3;
}

.icon-Vector1:before {
  content: "\e91a";
  color: #fff;
}

.icon-Vector5:before {
  content: "\e916";
  color: #fff;
}

.icon-Vector4:before {
  content: "\e917";
  color: #fff;
}

.icon-Vector3:before {
  content: "\e918";
  color: #fff;
}

.icon-Vector2:before {
  content: "\e919";
  color: #fff;
}

.icon-accounting:before {
  content: "\e903";
  color: #f9f9f9;
}

.icon-application:before {
  content: "\e904";
  color: #f9f9f9;
}

.icon-asset-bg:before {
  content: "\e905";
  color: #004b98;
}

.icon-authorize:before {
  content: "\e906";
  color: #f9f9f9;
}

.icon-call:before {
  content: "\e907";
  color: #f9f9f9;
}

.icon-chart:before {
  content: "\e908";
  color: #f9f9f9;
}

.icon-data-modelling-1:before {
  content: "\e909";
  color: #f9f9f9;
}

.icon-data-warehouse:before {
  content: "\e90a";
  color: #fff;
}

.icon-email:before {
  content: "\e90b";
  color: #004b98;
}

.icon-evidence:before {
  content: "\e90c";
  color: #f9f9f9;
}

.icon-file:before {
  content: "\e90d";
  color: #f9f9f9;
}

.icon-institution:before {
  content: "\e90e";
  color: #f9f9f9;
}

.icon-leader:before {
  content: "\e90f";
  color: #f9f9f9;
}

.icon-location:before {
  content: "\e910";
  color: #004b98;
}

.icon-money-management:before {
  content: "\e911";
  color: #f9f9f9;
}

.icon-phone:before {
  content: "\e912";
  color: #004b98;
}

.icon-read-only:before {
  content: "\e913";
  color: #f9f9f9;
}

.icon-reporting:before {
  content: "\e914";
  color: #f9f9f9;
}

.icon-statistics:before {
  content: "\e915";
  color: #f9f9f9;
}

.icon-linkedin:before {
  content: "\e900";
  color: #ffc72a;
}

.icon-right-arrow:before {
  content: "\e901";
  color: #76787B;
}

.icon-twitter:before {
  content: "\e902";
  color: #ffc72a;
}

/* Icon CSS End */

/* Font Family CSS Start */
@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Black.svg#Roboto-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Roboto-Thin.svg#Roboto-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Font Family Inter */
@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Bold.svg#Inter-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Light.svg#Inter-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Black.svg#Inter-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Regular.svg#Inter-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Medium.svg#Inter-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-Thin.svg#Inter-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Inter-SemiBold.svg#Inter-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Rubik Font Family */
@font-face {
  font-family: "Rubik";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Light.svg#Rubik-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Bold.svg#Rubik-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Black.svg#Rubik-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Medium.svg#Rubik-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/Rubik-Regular.svg#Rubik-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*Font Family Arial*/
@font-face {
  font-family: "arialregular";
  src: url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.eot");
  src: url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.eot#iefix") format("embedded-opentype"),
  url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.woff2") format("woff2"),
  url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.woff") format("woff"),
  url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.ttf") format("truetype"),
  url("/legacy-content/themes/arcsys/assets/fonts/arial-webfont.svg#arialregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Font Family CSS End */

/* Form CSS */
.form-control {
  font-size: 18px;
  overflow: hidden;
  line-height: 30px;
  border-radius: 10px;
  padding: 16px 22px;
  font-family: "Roboto";
  background-color: #004B9814;
  border: 1px solid #E0E0E0;
  height: 56px;
}

.form-control:focus {
  color: var(--black-clr);
  box-shadow: none;
  border: 1px solid #E0E0E0;
}

textarea.form-control {
  height: 134px;
  margin: 0;
  resize: none;
  overflow: auto;
}

/* Container CSS */
.container-fluid {
  padding: 0 50px;
}

/* Btn CSS */
.btn,
.event-btn {
  font-size: 24px;
  line-height: 37px;
  font-weight: 300;
  padding: 12px 35px;
  box-shadow: none !important;
  display: inline-flex;
  justify-content: center;
  background: var(--brand-clr);
  color: var(--black-clr);
  border-radius: 109px;
  border: 2px solid var(--brand-clr);
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: none;
  min-width: 198px;
}

.btn:hover,
.btn:focus,
.btn:active,
.event-btn:hover,
.event-btn:focus,
.event-btn:active,
.tribe-events-content a.event-btn:hover,
.tribe-events-content a.event-btn:focus,
.tribe-events-content a.event-btn:active {
  background-color: transparent !important;
  color: var(--brand-clr) !important;
  border: 2px solid var(--brand-clr) !important;
  transform: scale(1.1) !important;
}

.tribe-events-content a.event-btn {
  border: 2px solid var(--brand-clr);
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
}

.tribe-events-content p,
.tribe-events-content li {
  /* line-height: 1.5; */
}

.event-btn {
  font-size: 20px;
  line-height: 30px;
}

.white-btn, .white-btn-holder .btn {
  background-color: var(--white-clr);
  border: 2px solid var(--white-clr);
  color: var(--black-clr);
}

.white-btn:hover,
.white-btn:focus,
.white-btn:active {
  color: var(--white-clr) !important;
  border-color: var(--white-clr) !important;
}

.blue-btn {
  background-color: var(--blue-clr);
  color: var(--white-clr);
  border: 2px solid var(--brand-clr);
}

.blue-btn:hover,
.blue-btn:focus,
.blue-btn:active {
  background-color: transparent !important;
  color: var(--white-clr) !important;
  border: 2px solid var(--white-clr) !important;
}

.btn-link {
  font-size: 16px;
  line-height: 16px;
  color: #76787B;
  font-weight: 700;
  font-family: "Inter";
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-link:hover,
.btn-link:focus {
  color: var(--brand-clr);
}

.btn-block {
  text-align: center;
}

/* Common CSS */
.banner:before,
.small-banner:before,
.team-client:before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}

.section-title {
  font-size: 70px;
  line-height: 82px;
  color: var(--blue-clr);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.yellow-box {
  background-color: var(--brand-clr);
}

.blue-box {
  background-color: var(--blue-clr);
}

.small-title-wrap {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  color: var(--brand-clr);
  padding-bottom: 0;
  text-transform: uppercase;
}

.small-title-wrap span {
  color: var(--white-clr);
}

#button {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: 1px solid #fff;
  z-index: 99;
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
  cursor: pointer;
  color: var(--blue-clr);
  background-color: var(--brand-clr);
}

#button.show {
  opacity: 1;
  visibility: visible;
}

#button span {
  display: flex;
}

#button svg {
  width: 22px;
  height: 22px;
}

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

/* Header CSS */
header.header {
  background-color: rgba(0, 93, 163, .7);
  color: var(--white-clr);
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 0;
  z-index: 999;
}

.sticky-header header.header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  background-color: rgba(0, 93, 163, 1);
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-animation: sticky-menu 0.8s forwards;
  -ms-animation: sticky-menu 0.8s forwards;
  -o-animation: sticky-menu 0.8s forwards;
  animation: sticky-menu 0.8s forwards;
  display: initial;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes sticky-menu {
  from {
    top: -50%;
  }

  to {
    top: 0;
  }
}

@keyframes sticky-menu {
  from {
    top: -50%;
  }

  to {
    top: 0;
  }
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .slogan {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--white-clr);
}

header .logo {
  display: flex;
  align-items: center;
  gap: 58px;
}

.header .navbar {
  padding: 0;
  font-family: "Rubik";
}

.header .navbar .navbar-nav .menu-item {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  white-space: nowrap;
}

header .navbar-nav .menu-item .nav-link {
  font-size: 24px;
  line-height: 34px;
  color: var(--white-clr);
  font-weight: 400;
  padding: 42px 0;
  position: relative;
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
}

header .navbar-nav .menu-item:hover > .nav-link,
.header .navbar-nav .menu-item .nav-link:hover,
.header .navbar-nav .menu-item.current-menu-item > .nav-link,
.header .navbar-nav .menu-item.current-menu-ancestor > .nav-link {
  color: var(--brand-clr);
}

.menu-arrow {
  position: relative;
  cursor: pointer;
}

.menu-arrow::after {
  height: 6px;
  width: 6px;
  border-left: 2px solid var(--brand-clr);
  border-bottom: 2px solid var(--brand-clr);
  border-right: 0;
  border-top: 0;
  transform: rotate(-45deg);
  display: block;
  content: "";
  margin-bottom: 4px;
}

.navbar-expand-lg .navbar-nav {
  display: flex;
  align-items: center;
}

.header .dropdown-menu {
  border-radius: 0;
  min-width: 150px;
  background-color: var(--white-clr);
  padding: 19px 30px;
  top: 130%;
  left: -10px;
  border: none;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header .dropdown-menu .menu-arrow::after {
  margin-bottom: 0;
}

header .navbar-nav .dropdown-menu .nav-link {
  padding: 0;
  font-size: 16px;
  line-height: 40px;
  color: var(--black-clr);
  font-weight: 400;
  font-family: "Roboto";
}

.header .navbar-nav .menu-item.current-menu-item > .nav-link {
  /* font-weight: 500; */
}

.header .navbar .navbar-nav .dropdown-menu .menu-item {
  margin-left: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--brand-clr);
  opacity: 1;
  background-color: transparent;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 0;
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
}

.menu-item-has-children:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.dropdown-menu .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  left: 100%;
  top: 40px;
}

.dropdown-menu .menu-item-has-children .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  left: calc(100% + 30px);
  top: -19px;
}

.dropdown-menu .menu-item-has-children:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Our Team */
.our-team .blue-box {
  height: 100%;
}

.our-team .yellow-box {
  padding: 49px 124px 56px 66px;
  border-radius: 0px 0px 375px 0px;
  max-width: 793px;
}

.our-team .img-block {
  height: 100%;
  margin-right: -1px;
}

.our-team .img-block img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 0px 375px;
}

.our-team .blue-box p {
  color: var(--white-clr);
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 30px;
}

.our-team .bottom-content {
  padding: 50px 30px 48px 0;
  max-width: 514px;
  margin-left: 88px;
}

.consult-team .yellow-box-wrap {
  width: 66%;
  max-width: 1250px;
}

.yellow-box-wrap {
  padding: 96px 0;
  border-radius: 375px 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  opacity: 95%;
  background-color: var(--brand-clr);
  /*   max-width: 1240px; */
}

/* Team Client */
.team-client {
  background: no-repeat 50% 50% /cover;
  padding: 232px 0px;
  position: relative;
}

.team-client:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .65);
}

.team-client .container-sm {
  position: relative;
  z-index: 1;
}

.team-client .section-title {
  font-size: 68px;
  line-height: 80px;
  color: #fff;
  font-weight: 300;
  padding-bottom: 16px;
}

.team-client span {
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  display: block;
}

.team-client-inner {
  text-align: center;
}

/* Team Support */
.team-support {
  background-color: #E3F3FF;
  border-radius: 0px 0px 375px 0px;
  padding: 66px 0;
  position: relative;
}

.team-support .section-title {
  white-space: nowrap;
}

.team-support .img-block {
  text-align: right;
  height: 100%;
  display: inline-flex;
  align-items: flex-end;
}

.team-support .blue-box {
  padding: 46px 60px 46px 20px;
  border-radius: 0px 375px 0px 0px;
  background-color: var(--lighter-blue-clr);
  width: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.blue-box .small-title-wrap {
  max-width: 570px;
  margin: 0 auto;
}

.since-2010 .blue-box .small-title-wrap,
.management .blue-box .small-title-wrap {
  max-width: 100%;
}

.team-support p {
  letter-spacing: .5px;
  color: #000;
}

.team-support .container {
  position: relative;
  z-index: 1;
}

/* Small Banner CSS */
.small-banner {
  height: var(--small-banner-height);
  background: no-repeat 50% 50% /cover;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.small-banner.tall {
  height: var(--tall-banner-height);
}

.small-banner.taller {
  height: var(--taller-banner-height);
}

.small-banner-title {
  font-size: 90px;
  line-height: 110px;
  font-weight: 500;
  color: var(--brand-clr);
  padding-bottom: 46px;
}

.small-banner .container {
  position: relative;
  z-index: 1;
}

p strong {
  font-weight: 500;
}

.our-team.two p strong {
  font-size: 50px;
  line-height: 60px;
}

.our-team.two .yellow-box {
  padding: 134px 30px 96px 98px;
  height: 100%;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
}

.our-team.two .yellow-box .inner-content {
  max-width: 580px;
  margin-right: auto;
}

.our-team.two .yellow-box .inner-content p,
.p-lg {
  /*   font-size: 40px;
  line-height: 1.25; */
  font-weight: 300;
  color: #000;
}

/* Competitors CSS */
.competitors {
  background-color: var(--blue-clr);
  border-radius: 0px 0px 375px 0px;
  margin-bottom: 254px;
  padding: 138px 0 105px;
}

.left-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.verses {
  min-width: 92px;
}

.right-content {
  text-align: center;
  width: 100%;
}

.competitors span {
  font-size: 30px;
  line-height: 35px;
  color: var(--white-clr);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.competitors .right-content > span > span {
  display: block;
}

.competitors .competition-item + .competition-item {
  margin-top: 8px;
}

.competition-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.competition-item h3 {
  padding-bottom: 0;
}

.competition-item p,
.competition-item h3 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--black-clr);
  margin-bottom: 0;
}

.competition-item p strong,
.competition-item h3 strong {
  font-weight: 900;
}

.competition-item .gray-box-wrapper p,
.competition-item .gray-box-wrapper h3 {
  color: var(--white-clr);
}

.yellow-box-wrapper,
.gray-box-wrapper {
  background-color: var(--brand-clr);
  border-radius: 20px 0px 0px 20px;
  height: 95px;
  width: 100%;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;;
}

.gray-box-wrapper {
  background-color: #8E8E8E;
  border-radius: 0px 20px 20px 0px;
}

.competitors .img-box {
  height: 95px;
  min-width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 35px;
}

.competitors .btn-block {
  padding-top: 70px;
}

.competitors .top-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 35px;
}

/* Accordion CSS */
.accordion-item {
  background: none;
  border-radius: 0 !important;
  border: none;
  border-bottom: 1px solid #B3B8BC;
}

.accordion-button {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--blue-clr) !important;
  padding: 16px 0 !important;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  padding-right: 12px !important;
}

.accordion-header {
  padding: 0;
}

.accordion-button .img-wrap {
  background-color: var(--lighter-blue-clr);
  border-radius: 100%;
  padding: 6px;
  height: 57px;
  width: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.accordion-button .img-wrap i {
  font-size: 36px;
}

.accordion-body p {
  font-size: 16px;
  line-height: 26px;
}

.accordion-button::after {
  content: "";
  height: 2px;
  width: 10px;
  background-color: var(--lighter-blue-clr);
}

.accordion-button.collapsed::after,
.accordion-button.collapsed::before {
  content: "";
  height: 3px;
  width: 13px;
  background-color: var(--lighter-blue-clr);
}

.accordion-button.collapsed::before {
  height: 13px;
  width: 3px;
  position: absolute;
  right: 17px;
}

/* Circle CSS */
.circle {
  position: absolute;
  width: 135px;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wraps {
  position: absolute;
  width: 72px;
  height: 29px;
  background: url("/legacy-content/themes/arcsys/assets/images/logo-sm.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.page-id-27 .our-team.two .logo-wraps,
.page-id-29 .our-team.two .logo-wraps {
  background: url("/legacy-content/themes/arcsys/assets/images/logo-sm01.svg");
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  color: black;
  font-family: "Roboto";
  font-size: 18px;
  animation: textRotation 20s linear infinite;
  background: url("/legacy-content/themes/arcsys/assets/images/badge-text.svg");
  background-position: center;
  background-size: 100%;
}

.text p { display: none; }

@keyframes textRotation {
  to { transform: rotate(360deg); }
}

@keyframes textRotationSpastic {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
  90% { transform: rotate(360deg); }
  95% { transform: rotate(-720deg); }
  100% { transform: rotate(-720deg); }
}

@keyframes textRotationSpin {
  0%, 100% { animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5); }
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(1800deg); animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1); }
  100% { rotateY(3600 deg); }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 18px;
  transform-origin: 0 75px;
}

/* Footer */
footer {
  background-color: var(--blue-clr);
  color: var(--white-clr);
  font-size: 20px;
  line-height: 37px;
  font-weight: 500;
  padding-top: 60px;
}

.top-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 42px;
}

footer a {
  color: var(--white-clr);
}

footer a:hover,
footer a:focus {
  color: var(--brand-clr);
}

footer .quick-links .current-menu-item > a {
  color: var(--brand-clr);
}

footer .footer-title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-left: 32px;
  padding-bottom: 0;
  margin-bottom: 16px;
  display: block;
}

footer .footer-title:before {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background-color: var(--brand-clr);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

footer .quick-links {
  column-count: 3;
  display: block;
}

footer .quick-links li {
  position: relative;
  padding-left: 15px;
  width: 100%;
  line-height: 1;
  margin-bottom: 10px;
}

footer .quick-links li a {
  line-height: 1.3;
}

footer .row ul {
  padding-left: 32px;
}

footer .quick-links li::before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 100%;
  position: absolute;
  top: 14px;
  left: 0;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}

footer .row ul:not(.quick-links) li {
  /* border-bottom: 1px solid var(--white-clr); */
  padding-bottom: 10px;
  position: relative;
}

footer .row ul:not(.quick-links) li::before {
  content: "";
}

footer .row ul:not(.quick-links) li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: calc(100% - 80px);
  background: #B3B8BC;
}

footer .row > div:nth-child(2) ul li::before {
  width: 100%;
}

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials a {
  /*display: inline-block;*/
  font-size: 45px;
}

.socials a span:before {
  -webkit-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.socials a:hover span:before {
  color: #fff;
}

footer .row {
  padding-bottom: 60px;
  margin: 0 -32px;
}

footer .row [class*="col-"] {
  padding: 0 32px;
}

.copyright {
  border-top: 1px solid rgba(249, 249, 249, 0.20);
  padding: 17px 0;
}

.copyright .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-clr);
  font-family: "arialregular";
}

.copyright .designby {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(20%);
    -ms-transform: translateX(20%);
    transform: translateX(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    visibility: visible
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

/*Event Page CSS*/

.tribe-events-content li {
  line-height: 1.7 !important;
  margin-bottom: 10px;
  font-size: 20px !important;
  font-family: "Roboto" !important;
}

/*.tribe-events-content li::before {
  top: 5px !important;
}*/

.tribe-events-content p {
  font-size: 20px !important;
  line-height: 1.7;
  font-family: "Roboto" !important;
}

.tribe-events-content li:last-child {
  margin-bottom: 0 !important;
}

.tribe-events .tribe-events-c-search__button,
.tribe-events button.tribe-events-c-search__button,
.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
  background-color: var(--brand-clr);
  color: var(--black-clr);
  outline: none;
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
}

.tribe-events .tribe-events-c-search__button:hover,
.tribe-events .tribe-events-c-search__button:focus,
.tribe-events button.tribe-events-c-search__button:hover,
.tribe-events button.tribe-events-c-search__button:focus,
.tribe-common .tribe-common-c-btn-border:hover,
.tribe-common .tribe-common-c-btn-border:focus,
.tribe-common a.tribe-common-c-btn-border:hover,
.tribe-common a.tribe-common-c-btn-border:focus {
  background-color: var(--blue-clr) !important;
  color: var(--white-clr) !important;
}

.tribe-events button.tribe-events-c-top-bar__datepicker-button:focus {
  outline: none;
}

.tribe-events button.tribe-events-c-top-bar__datepicker-button {
  color: var(--black-clr);
}

.tribe-common a:focus {
  outline: none;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector__list-item,
.tribe-events .tribe-events-c-view-selector__list-item-text {
  -webkit-transition: all ease .4s;
  -o-transition: all ease .4s;
  transition: all ease .4s;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector__list-item:hover,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector__list-item:focus,
.tribe-events .tribe-events-c-view-selector__list-item-text:hover,
.tribe-events .tribe-events-c-view-selector__list-item-text:focus {
  background-color: transparent;
  color: var(--brand-clr) !important;
}

.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border {
  border-color: var(--brand-clr);
}

.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button-text:focus,
.tribe-events .tribe-events-c-subscribe-dropdown button.tribe-events-c-subscribe-dropdown__button-text:focus,
.tribe-common .tribe-common-form-control-text__input:focus {
  outline: none;
}

.tribe-common .tribe-common-c-btn-border:hover,
.tribe-common .tribe-common-c-btn-border:focus,
.tribe-common a.tribe-common-c-btn-border:hover,
.tribe-common a.tribe-common-c-btn-border:focus {
  border-color: var(--blue-clr);
}

.tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button-ico {
  margin-bottom: 4px;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-bottom: 100px;
  padding-top: 100px;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input {
  padding: 20px 42px;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item-link {
  padding: 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar {
  padding: 8px 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event::before {
  width: 100px;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event:last-child {
  margin-bottom: 50px;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__time-separator + .tribe-events-calendar-day__event {
  margin-top: 30px;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search__input-control {
  margin: 0;
}

.tribe-events .tribe-events-c-subscribe-dropdown {
  margin: 30px 0 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-details {
  width: 80%;
}

.tribe-events .tribe-events-l-container {
  min-height: auto;
}

.tribe-events .tribe-events-c-view-selector__list-item-text,
.tribe-common-c-btn,
.tribe-common .tribe-common-form-control-text__input,
.tribe-common-c-btn-border-small,
.tribe-events-c-top-bar__datepicker-desktop,
.tribe-events-calendar-list__month-separator-text,
.tribe-events .tribe-events-calendar-list__event-datetime,
.tribe-events-calendar-list__event-title,
.tribe-common h1,
.tribe-common h2,
.tribe-common h3,
.tribe-common h4,
.tribe-common h5,
.tribe-common h6,
.tribe-common p,
.tribe-events-calendar-list__event-date-tag-daynum,
.tribe-events-c-nav__prev-label,
.tribe-events-c-nav__next-label,
.tribe-events-c-subscribe-dropdown__button-text,
.tribe-events-calendar-list__event-date-tag-weekday,
.tribe-events-c-small-cta__price {
  font-family: "Roboto" !important;
}

.tribe-common .tribe-events-c-nav__prev:hover,
.tribe-common .tribe-events-c-nav__next:hover {
  color: var(--brand-clr) !important;
}

.tribe-events-back a:hover {
  color: var(--brand-clr) !important;
}

.tribe-common .tribe-events-c-nav__prev svg path,
.tribe-common .tribe-events-c-nav__next svg path {
  transition: all 0.5s ease;
}

.tribe-common .tribe-events-c-nav__prev:hover svg path,
.tribe-common .tribe-events-c-nav__next:hover svg path {
  fill: var(--brand-clr) !important;
}

.tribe-events-calendar-list__event-date-tag-weekday,
.tribe-events-c-small-cta__price {
  font-size: 16px !important;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
  padding-top: 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-details {
  width: 100% !important;
}

.wpcf7-spinner {
  top: 18px;
}

.default-page {
  padding: 100px 0;
}

.default-page ul,
.default-page ol {
  margin-bottom: 15px;
}

.default-page ul li {
  color: var(--black-clr);
}

.default-page .btn {
  margin-top: 20px;
}

.default-page p a {
  color: var(--blue-clr);
}

.default-page p a:hover {
  color: var(--brand-clr);
}

.default-page .btn-block {
  text-align: left;
}

.tribe-events .tribe-events-header {
  margin: 0;
  padding: 20px 0;
}

.circle-wide-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-width: 1px !important;
}

.single .blog-list table tr td {
  vertical-align: top;
}

/*404 Page CSS*/
.errorPage {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 768px;
  padding: 50px 0 80px !important;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.errorPage:before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute
}

.errorPage .container {
  padding-top: 145px;
  position: relative;
  z-index: 1;
}

.errorPage .h1 {
  padding-bottom: 15px;
  font-size: 200px;
  line-height: 200px;
  color: var(--brand-clr);
}

.errorPage .h3 {
  margin-bottom: 27px;
  line-height: normal;
  max-width: 100%;
  font-size: 35px;
  color: var(--white-clr);
}

.errorPage .btn {
  align-items: center;
  gap: 12px;
}

.tribe-events-single > .tribe_events {
  overflow: visible;
}

.tribe-events-content ul {
  list-style-type: none;
}

.tribe-events-content ul,
.tribe-events-content ol {
  margin-bottom: 25px;
}

.tribe-events-content li ul {
  margin: 10px 0 0;
}

.tribe-events.tribe-common {
  /* padding-bottom: 30px; */
}

.tribe-events-nav-pagination .tribe-events-sub-nav li {
  width: 50%;
}

.tribe-events-nav-pagination .tribe-events-sub-nav li.tribe-events-nav-next {
  text-align: right;
}

.tribe-events-event-meta .tribe-events-address .tribe-address {
  display: none;
}

.tribe-events-content h2,
.tribe-events-content h3,
.tribe-events-content h4,
.tribe-events-content h5,
.tribe-events-content h6 {
  margin-bottom: 0;
  line-height: 1.3;
}

.tribe-events-content p + h3,
.tribe-events-content p + h4 {
  padding-top: 20px;
}

.tribe-events-schedule {
  margin: 10px 0;
}

.speakers {
  padding: 30px 0 0;
}

.speaker-title {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.speaker-title [class*="icon-"] {
  position: relative;
}

.speaker-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #ebebeb;
  transform: translateY(-50%);
}

.speaker-title h4 {
  padding: 0 0.8em 0;
  font-size: 100%;
  line-height: normal;
  background-color: #fff;
  position: relative;
}

.speakers .team-member {
  display: block;
  padding-bottom: 40px;
}

.speakers .team-member:last-child {
  padding-bottom: 10px;
}

.speakers .team-member h4 {
  padding: 15px 0 7px;
  font-size: 22px;
}

.speakers .team-member .position {
  font-size: 18px;
}

.speakers .team-member .description {
  padding: 15px 0;
  margin: 15px 0 0;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.speakers .team-member .description p:last-child {
  margin-bottom: 5px;
}

.single-tribe_events .tribe-events-single-event-description ol {
  list-style: none;
  counter-reset: my-sec-counter;
}

.single-tribe_events .tribe-events-single-event-description ol li {
  padding-left: 35px;
  position: relative;

}

.single-tribe_events .tribe-events-single-event-description ol li:before {
  content: "";
  counter-increment: my-sec-counter;
  content: " " counter(my-sec-counter) ". ";
  position: absolute;
  right: calc(100% - 24px);
}

.tribe-events-content {
  word-wrap: break-word;
  white-space: normal;
}

.different-variable .different-variable-inner-content .icon-support {
  font-size: 150px !important;
}

p:empty {
  display: none !important;
}

.page-id-31 .we-support .section-title img {
  margin-left: 50px !important;
}

.page-id-54 .since-2010 .section-title img {
  margin-right: 50px;
}

.single-post .blog-list .img-block {
  padding-bottom: 20px;
}

.single.single-post .blog-list .about-author {
  padding-right: 0;
  padding-left: 0;
}

.single-tribe_events .tribe-events-content .event-btn {
  margin-bottom: 6px;
}

.single-post .blog-list h3 + ul + p strong {
  text-align: center;
  display: inline-block;
  width: 100%;
}

.tribe-events .tribe-events-calendar-list__month-separator-text {
  font-weight: 700;
}

.tribe-events-calendar-list__event-date-tag .tribe-events-calendar-list__event-date-tag-daynum {
  color: var(--brand-clr);
}

body .tribe-common a:not(.tribe-common-anchor--unstyle) {
  color: var(--blue-clr) !important;
}

.tribe-events-back a,
.tribe-events-back,
.tribe-events-single-event-title,
.tribe-events-schedule h2,
.tribe-events-schedule .recurringinfo,
.tribe-events-schedule .tribe-events-cost,
.tribe-events-content h2,
.tribe-events-content h3,
.tribe-events-content h4,
.tribe-events-content h5,
.tribe-events-content h6,
.tribe-events-single .tribe-events-sub-nav,
.tribe-events-event-meta {
  font-family: "Roboto" !important;
}

footer .socials a {
  color: #FFC72A;
}

footer .socials a:hover,
footer .socials a:focus {
  color: #fff !important;
}

.tribe-events-event-url a {
  white-space: nowrap;
}

.tribe-events-event-url a {
  white-space: normal;
}

.tribe-events-single-section {
  width: 100% !important;
}

/* schedule popup */

html.modal-open {
  overflow-y: hidden;
}

.modal-backdrop {
  z-index: 99999;
}

.schedule-modal,
.modal {
  z-index: 999999;
}

.schedule-modal .modal-dialog {
  max-width: 890px;
  width: 100%;
  transform: none !important;
  padding: 20px 0;
}

.schedule-modal iframe {
  height: 774px;
  width: 100%;
}

.schedule-modal .modal-body {
  padding: 0 20px;
  background: #f5f8fa;
}

.modal .modal-body {
  background: #f5f8fa;
}

.schedule-modal .close {
  outline: none;
  border: none;
  background: #fff;
  padding: 0;
  font-size: 0;
}

.schedule-modal .modal-title,
.modal .modal-title {
  padding: 0;
  line-height: 1;
}

.schedule-modal .close span {
  font-size: 42px;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
}

.schedule-modal .modal-header,
.schedule-modal .modal-content,
.modal .modal-header,
.modal .modal-content {
  border-radius: 0;
}

/* svg section */

.svg-section {
  padding: 85px 0;
}

.svg-section .section-title {
  padding-bottom: 0;
}

.svg-section .cta-wrapper {
  margin-top: 80px;
  text-align: center;
}

.svg-sec-inner svg {
  margin-inline: auto;
  display: block;
  width: 100%;
}

.svg-section .section-title span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.svg-section .section-title span img {
  /* height: 17px; */
  align-self: flex-start;
  margin-left: 40px;
}

.svg-section .sec-heading {
  text-align: center;
}

.svg-sec-inner {
  margin-top: 50px;
}

.services {
  transition: 0.3s all ease-in-out;
  transform-origin: center;
  transform-box: fill-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.consulting-service {
  position: relative;
  z-index: 9;

}

/* .services:hover, .services.active{
  transform: scale(1.04);
} */

.services:hover .icon-back,
.services.active .icon-back {
  opacity: 0;
}

.services:hover .icon-group path,
.services.active .icon-group path {
  fill: #fff;
}

.services .svg-overlay {
  transition: 0.4s all ease;
}

.services:hover .svg-overlay,
.services.active .svg-overlay {
  opacity: 0;
}

.services .svg-border {
  transition: 0.4s all ease;
}

.services:hover .svg-border,
.services.active .svg-border {
  opacity: 0;
}

.services .service-path {
  transition: 0.4s all ease;
  opacity: 1;
}

.services:hover .service-path,
.services.active .service-path {
  opacity: 0.8;
}

.services .icon-background-1,
.services .icon-background-2,
.services .icon-background-3,
.services .icon-background-4,
.services .icon-background-5,
.services .icon-background-6,
.services .icon-background-7,
.services .icon-background-8,
.services .icon-background-9,
.services .icon-background-10 {
  transition: 0.4s all ease;
}

.services .icon-group-1 path,
.services .icon-group-2 path,
.services .icon-group-3 path,
.services .icon-group-4 path,
.services .icon-group-5 path,
.services .icon-group-6 path,
.services .icon-group-7 path,
.services .icon-group-8 path,
.services .icon-group-9 path,
.services .icon-group-10 path {
  transition: 0.4s all ease;
}

.services:hover .icon-background-1,
.services.active .icon-background-1 {
  fill: url(#paint0_radial_1426_886);
}

.services:hover .icon-group-1 path,
.services.active .icon-group-1 path {
  fill: #F89134;
}

.services:hover .icon-background-2,
.services.active .icon-background-2 {
  fill: url(#paint1_radial_1426_886);
}

.services:hover .icon-group-2 path,
.services.active .icon-group-2 path {
  fill: #D24450;
}

.services:hover .icon-background-3,
.services.active .icon-background-3 {
  fill: url(#paint2_radial_1426_886);
}

.services:hover .icon-group-3 path,
.services.active .icon-group-3 path {
  fill: #8C173F;
}

.services:hover .icon-background-4,
.services.active .icon-background-4 {
  fill: url(#paint3_radial_1426_886);
}

.services:hover .icon-group-4 path,
.services.active .icon-group-4 path {
  fill: #055481;
}

.services:hover .icon-background-5,
.services.active .icon-background-5 {
  fill: url(#paint4_radial_1426_886);
}

.services:hover .icon-group-5 path,
.services.active .icon-group-5 path {
  fill: #37B2E0;
}

.services:hover .icon-background-6,
.services.active .icon-background-6 {
  fill: url(#paint5_radial_1426_886);
}

.services:hover .icon-group-6 path,
.services.active .icon-group-6 path {
  fill: #6CCBD5;
}

.services:hover .icon-background-7,
.services.active .icon-background-7 {
  fill: url(#paint6_radial_1426_886);
}

.services:hover .icon-group-7 path,
.services.active .icon-group-7 path {
  fill: #F8B33D;
}

.services:hover .icon-background-8,
.services.active .icon-background-8 {
  fill: url(#paint7_radial_1426_886);
}

.services:hover .icon-group-8 path,
.services.active .icon-group-8 path {
  fill: #37B2E0;
}

.services:hover .icon-background-9,
.services.active .icon-background-9 {
  fill: url(#paint8_radial_1426_886);
}

.services:hover .icon-group-9 path,
.services.active .icon-group-9 path {
  fill: #6ACBD6;
}

.services:hover .icon-background-10,
.services.active .icon-background-10 {
  fill: url(#paint9_radial_1426_886);
}

.services:hover .icon-group-10 path,
.services.active .icon-group-10 path {
  fill: #F7B81C;
}

/* 
.services:hover path{
       opacity: 1;
} */

.service-content-wrapper .services-content {
  opacity: 0;
  transition: 0.4s all ease;
  pointer-events: none;
}

.service-content-wrapper .services-content.active {
  opacity: 1;
  pointer-events: all;
}

.page-id-37 .competitors {
  margin-bottom: 20px !important;
}

.top-title .logos img {
  max-width: 200px;
}

.verses img {
  max-width: 65px;
}

/* Responsive CSs */

@media screen and (min-width: 2400px) {
  .yellow-box-wrap {
    width: 57%;
  }
}

@media screen and (min-width: 1699px) {
  .container-sm {
    max-width: 1600px;
  }

  .page-template-our-team .team-support .img-block {
    display: block;
  }
}

@media screen and (min-width: 1499px) {
  .container {
    max-width: 1464px;
  }
}

@media screen and (min-width: 1200px) {
  #button:hover {
    color: var(--white-clr);
    background-color: var(--blue-clr);
  }
}

@media screen and (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .svg-sec-inner.mobile {
    display: none;
  }
}

@media screen and (max-width: 1899px) {
  .our-team.two .yellow-box {
    padding: 74px 30px 46px 78px;
  }
}

@media screen and (max-width: 1699px) {
  .competitors {
    margin-bottom: 174px;
  }

  footer .quick-links {
    display: block;
  }

  footer .quick-links li {
    width: 100%;
  }

  .errorPage .h1 {
    font-size: 160px;
    line-height: 160px;
  }
}

@media screen and (max-width: 1599px) {
  .small-title-wrap {
    font-size: 36px;
    line-height: 46px;
  }

  .our-team.two .yellow-box .inner-content p,
  .p-lg {
    /*     font-size: 36px; */
    /* line-height: 42px; */
  }

  .our-team.two p strong {
    font-size: 44px;
    line-height: 54px;
  }

  .section-title {
    font-size: 60px;
    line-height: 72px;
  }

  .small-banner-title {
    font-size: 65px;
    line-height: 85px
  }

  .svg-section .section-title span img {
    margin-left: 30px;
  }

  .svg-section .cta-wrapper {
    margin-top: 50px;
  }

  #button {
    bottom: 80px;
  }
}

@media screen and (max-width: 1536px) {
  .team-client {
    padding: 200px 0;
  }
}

@media screen and (max-width: 1499px) {
  header .logo {
    gap: 28px;
  }

  .competition-item p,
  .competition-item h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .team-client {
    padding: 150px 0;
  }

  footer .row {
    margin: 0 -16px;
  }

  footer .row [class*="col-"] {
    padding: 0 16px;
  }

  footer .row ul:not(.quick-links) li::before {
    width: 100%;
  }

  .small-title-wrap {
    font-size: 30px;
    line-height: 40px;
  }

  .team-support .section-title {
    white-space: normal;
  }

  .competitors {
    margin-bottom: 130px;
    padding: 110px 0 100px;
  }

  .header .navbar .navbar-nav .menu-item {
    margin-left: 25px;
  }
}

@media screen and (max-width: 1399px) {
  header.header {
    padding-top: 10px;
  }

  header .slogan {
    font-size: 20px;
    line-height: 28px;
  }

  header .navbar-nav .menu-item .nav-link {
    font-size: 20px;
    line-height: 30px;
  }

  .menu-arrow::after {
    margin-bottom: 0;
  }

  header .navbar-nav .dropdown-menu .nav-link {
    font-size: 16px;
    line-height: 40px;
  }

  footer .quick-links {
    column-count: unset;
  }

  .header .navbar .navbar-nav .menu-item {
    margin-left: 20px;
  }

  .dropdown-toggle::after {
    margin-left: 4px;
  }

  .team-client .section-title {
    font-size: 58px;
    line-height: 70px;
  }

  .section-title {
    font-size: 54px;
    line-height: 67px;
  }

  .team-support .blue-box {
    padding: 36px 40px 36px 20px;
  }

  .our-team.two .yellow-box .inner-content p,
  .p-lg {
    /*     font-size: 30px; */
    /* line-height: 36px; */
  }

  .our-team.two p strong {
    font-size: 38px;
    line-height: 48px;
  }

  header {
    padding-top: 5px;
  }

  header .navbar-nav .menu-item .nav-link {
    padding: 32px 0;
  }

  header .navbar-nav .dropdown-menu .nav-link {
    padding: 0;
  }

  .yellow-box-wrap {
    padding: 74px 0;
  }

  .circle {
    width: 90px;
    height: 90px;
  }

  .logo-wraps,
  .page-id-27 .our-team.two .logo-wraps,
  .page-id-29 .our-team.two .logo-wraps {
    width: 45px;
    height: 18px;
    background-size: 45px;
  }

  .text span {
    font-size: 12px;
    transform-origin: 0 48px;
  }

  .competitors {
    margin-bottom: 100px;
    padding: 100px 0;
  }

  .errorPage .h3 {
    font-size: 22px !important;
  }

  .errorPage .h1 {
    font-size: 140px !important;
    line-height: 140px !important;
  }

  .errorPage {
    min-height: 450px;
  }

  .errorPage .container {
    padding-top: 104px;
  }

  .different-variable .different-variable-inner-content .icon-support {
    font-size: 130px !important;
  }

  .svg-sec-inner svg {
    height: auto;
  }
}

@media screen and (max-width: 1299px) {
  header .navbar-nav .menu-item .nav-link {
    font-size: 20px;
    line-height: 30px;
  }

  header .navbar-nav .dropdown-menu .nav-link {
    font-size: 16px;
    line-height: 32px;
  }

  header .slogan {
    font-size: 20px;
    line-height: 30px;
  }

  .section-title {
    font-size: 50px;
    line-height: 62px;
  }

  .section-title img {
    max-width: 56px;
    height: auto;
  }

  .our-team.two .yellow-box {
    padding: 54px 30px 46px 58px;
  }

  .small-banner-title {
    font-size: 55px;
    line-height: 75px;
  }
}

@media screen and (max-width: 1199px) {
  .logo img {
    max-width: 150px;
    height: auto;
  }

  .top-title .logos img {
    max-width: 180px;
  }

  .btn {
    transition: none !important;
  }

  .header .navbar .navbar-nav .menu-item {
    gap: 4px;
  }

  header .navbar-nav .menu-item .nav-link {
    transition: none;
  }

  .container-fluid {
    padding: 0 45px;
  }

  header .navbar-nav .menu-item .nav-link,
  header .slogan {
    font-size: 16px;
    line-height: 32px;
  }

  header .logo {
    gap: 20px;
  }

  body,
  p {
    font-size: 18px;
    line-height: 28px;
  }

  .team-client {
    padding: 130px 0;
  }

  .team-client .section-title {
    font-size: 48px;
    line-height: 55px;
  }

  .team-client span {
    font-size: 24px;
    line-height: 28px;
  }

  .yellow-box-wrap {
    padding: 76px 0;
  }

  .small-banner-title {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 35px;
  }

  .section-title {
    font-size: 42px;
    line-height: 52px;
  }

  .small-title-wrap {
    font-size: 24px;
    line-height: 34px;
  }

  .team-support .blue-box {
    padding: 30px 40px 30px 20px;
  }

  .team-support {
    border-radius: 0px 0px 275px 0px;
  }

  .our-team.two .yellow-box .inner-content p,
  .p-lg {
    /*     font-size: 24px; */
    /* line-height: 30px; */
  }

  .our-team.two p strong {
    font-size: 30px;
    line-height: 40px;
  }

  .our-team.two .yellow-box {
    padding: 50px 20px 40px 50px;
  }

  .competitors {
    margin-bottom: 90px;
    padding: 100px 0 90px;
    border-radius: 0px 0px 235px 0px;
  }

  .competitors .btn-block {
    padding-top: 60px;
  }

  .yellow-box-wrapper,
  .gray-box-wrapper {
    height: 110px;
    padding: 16px;
  }

  .competitors .img-box {
    height: 110px;
    min-width: 115px;
  }

  .competition-item p,
  .competition-item h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .top-title .logos img {
    max-width: 180px;
  }

  .competitors span {
    font-size: 30px;
    line-height: 36px;
  }

  .verses {
    text-align: center;
  }

  .verses img {
    max-width: 65px;
  }

  .competitors .img-box img {
    max-width: 46px;
  }

  #button {
    bottom: 70px;
  }

  footer .row ul:not(.quick-links) li {
    border: none;
    padding-bottom: 0;
  }

  footer {
    font-size: 16px;
    line-height: 30px;
  }

  footer a {
    transition: none;
  }

  footer .quick-links li::before {
    top: 10px;
  }

  .copyright p {
    font-size: 15px;
    line-height: 24px;
  }

  .tribe-common .tribe-common-l-container {
    padding-left: 42px;
    padding-right: 42px;
  }

  .errorPage {
    min-height: 400px;
  }

  .errorPage .container {
    padding-top: 100px;
  }

  .svg-content p {
    -webkit-line-clamp: none !important;
    overflow-y: auto !important;
    height: 72px !important;
    margin-top: 15px;
  }

  .tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
    position: relative;
    top: -2px;
  }

  .svg-section .section-title span img {
    margin-left: 15px;
  }

  .errorPage {
    min-height: 70dvh;
    height: unset;
  }
}

@media screen and (max-width: 991px) {
  .competitors span {
    font-size: 26px;
    line-height: 34px;
  }

  .menu-arrow::after {
    margin-bottom: 0;
  }

  .navbar-expand-lg .navbar-nav {
    margin-bottom: 100px;
  }

  .header .navbar .navbar-nav .menu-item {
    white-space: normal;
  }

  .dropdown-menu .menu-item + .menu-item {
    padding-top: 10px;
  }

  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  header {
    padding: 20px 0 !important;
  }

  .navbar-collapse {
    position: fixed;
    top: 99px;
    right: 0;
    width: 100%;
    padding: 20px;
    background-color: var(--blue-clr);
    z-index: 11;
    height: calc(100vh - 99px);
    transform: translateX(100%);
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .header .navbar {
    position: static;
  }

  .navbar-toggler {
    position: static;
    box-shadow: none !important;
    border: none;
    background-color: transparent;
    padding: 0;
  }

  .navbar-toggler-icon {
    text-indent: -999999px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    background-position: 5px 5px;
  }

  header .navbar-nav .menu-item .nav-link {
    padding: 0;
  }

  header .navbar-nav .dropdown-menu .menu-item .nav-link {
    padding: 0;
  }

  .header .navbar .navbar-nav .menu-item {
    padding-bottom: 10px;
    margin-left: 0;
    width: 100%;
    display: block;
  }

  .navbar-expand-lg .navbar-nav {
    align-items: flex-start;
  }

  .dropdown-item {
    padding: 0;
    font-size: 16px;
    line-height: 18px;
  }

  .header .dropdown-menu {
    padding: 10px 0 0;
    min-width: auto;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background-color: transparent;
    box-shadow: none;
  }

  .header .dropdown-menu .menu-item {
    padding: 0 15px 10px;
  }

  .header .dropdown-menu .dropdown-menu {
    padding: 10px 0 0;
  }

  .header .navbar .navbar-nav .dropdown-menu .menu-item:last-child {
    padding-bottom: 0;
  }

  header .navbar-nav .dropdown-menu .nav-link {
    color: #fff;
  }

  .menu-arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dropdown-menu .menu-item-has-children .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .container-fluid {
    padding: 0 30px;
  }

  .team-client .section-title {
    font-size: 42px;
    line-height: 52px;
  }

  .team-client {
    padding: 100px 0;
  }

  .yellow-box-wrap {
    padding: 46px 0;
  }

  footer {
    text-align: center;
  }

  footer li + li {
    margin-bottom: 6px;
  }

  footer .row [class*="col-"] {
    padding-bottom: 30px;
  }

  footer .quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  footer .row {
    padding-bottom: 80px;
  }

  footer .footer-title {
    margin-bottom: 10px;
    text-align: left;
    padding-left: 25px;
  }

  footer .row ul {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 10px;
  }

  footer .container {
    position: relative;
  }

  footer .quick-links li {
    width: auto;
    padding-left: 25px;
  }

  footer ul li {
    padding-left: 25px;
  }

  footer .socials li {
    padding-left: 0;
  }

  footer .quick-links li::before {
    left: 10px;
  }

  footer .row ul:not(.quick-links) li::before {
    display: none;
  }

  footer .row ul:not(.quick-links) li {
    text-align: left;
  }

  .socials {
    position: absolute;
    bottom: 20px;
  }

  .top-footer {
    padding-bottom: 40px;
    justify-content: flex-start;
  }

  .section-title {
    font-size: 38px;
    line-height: 48px;
  }

  .btn,
  .event-btn {
    font-size: 22px;
    line-height: 35px;
    padding: 12px 32px;
  }

  .small-title-wrap {
    font-size: 22px;
    line-height: 32px;
  }

  .team-support .section-title br {
    display: none;
  }

  .team-support .section-title {
    align-items: flex-start;
  }

  .team-support .row [class*="col-"] + [class*="col-"] {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .team-support {
    padding: 66px 0 0;
  }

  .team-support .blue-box {
    padding: 20px 30px 20px 20px;
    position: static;
    margin-top: 30px;
  }

  .team-support .yellow-box-wrap {
    position: absolute;
  }

  .yellow-box-wrap {
    position: static;
    margin-left: auto;
  }

  .competitors {
    margin-bottom: 80px;
    padding: 80px 0;
  }

  .competitors .img-box {
    height: 100px;
    min-width: 95px;
    width: 100%;
  }

  .competitors span {
    font-size: 26px;
    line-height: 34px;
  }

  .competition-item p,
  .competition-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .yellow-box-wrapper,
  .gray-box-wrapper {
    height: 100px;
    padding: 16px;
  }

  footer .row ul {
    padding-left: 0;
  }

  .yellow-box-wrap {
    width: 90%;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  footer .socials li {
    margin-bottom: 0;
  }

  .default-page {
    padding: 80px 0;
  }

  .tribe-events-header,
  .tribe-events-calendar-list__event-header {
    padding: 0 !important;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-row:last-child {
    margin-bottom: 40px;
  }

  .tribe-events-content p,
  .tribe-events-content li {
    font-size: 18px !important;
  }

  .tribe-events-content ul li::before {
    top: 3px !important;
  }

  .circle-wide-container {
    /* top:auto;*/
    /* top: 0; */
    /* bottom:0; */
  }

  .page-id-37 .team-support .section-title img {
    margin-left: 70px;
  }

  .page-id-54 .since-2010 .section-title img {
    margin-right: 0;
    margin-left: 80px;
  }

  .page-id-41 .team-support {
    padding: 80px 0 10px !important;
  }

  footer .quick-links {
    padding-left: 15px !important;
  }

  .single-post ul li:after,
  .tribe-events-content ul li::after {
    top: 9px !important;
  }

  .schedule-modal .modal-dialog {
    padding: 50px 15px;
  }

  .svg-section {
    padding: 80px 0;
  }

  .svg-sec-inner svg {
    width: 695px;
  }

  .page-id-37 .competitors {
    margin-bottom: 0 !important;
  }

  .errorPage {
    min-height: unset;
    padding: 120px 0 140px !important;
  }
}

@media screen and (max-width: 767px) {
  .competition-item {
    flex-direction: column;
  }

  .competitors .competition-item + .competition-item {
    margin-top: 30px;
  }

  .yellow-box-wrapper,
  .gray-box-wrapper,
  .competitors .img-box {
    border-radius: 10px;
  }

  .team-client .section-title {
    font-size: 32px;
    line-height: 42px;
    padding-bottom: 10px;
  }

  .team-client {
    padding: 50px 0;
  }

  .team-client span {
    font-size: 20px;
    line-height: 24px;
  }

  footer {
    padding-top: 40px;
  }

  .top-footer {
    padding-bottom: 25px;
  }

  footer .row {
    padding-bottom: 80px;
  }

  .small-banner-title {
    font-size: 30px;
    line-height: 36px;
  }

  .section-title {
    font-size: 34px;
    line-height: 44px;
  }

  .btn,
  .event-btn {
    font-size: 20px;
    line-height: 32px;
    padding: 10px 24px;
  }

  .team-support {
    padding: 50px 0 0;
    border-radius: 0;
  }

  /*   .team-support .section-title {
    padding-bottom: 0;
  } */
  .team-support .row [class*="col-"] + [class*="col-"] {
    padding-top: 35px;
  }

  .team-support {
    border-radius: 0;
  }

  .team-client .section-title br {
    display: none;
  }

  .small-title-wrap {
    font-size: 18px;
    line-height: 28px;
  }

  .our-team.two .yellow-box {
    padding: 30px 20px 40px 30px;
  }

  .top-title .logos img {
    max-width: 120px;
  }

  .competitors {
    margin-bottom: 50px;
    padding: 50px 0;
    border-radius: 0px 0px 135px 0px;
  }

  .competitors span {
    font-size: 22px;
    line-height: 30px;
  }

  .verses img {
    max-width: 55px;
  }

  .competitors .top-title {
    padding-bottom: 25px;
  }

  .competitors .btn-block {
    padding-top: 30px;
  }

  .circle {
    display: none !important;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
    padding-bottom: 50px;
    padding-top: 50px;
    min-height: auto;
  }

  .tribe-common.tribe-common--breakpoint-medium button.tribe-events-c-top-bar__datepicker-button {
    font-size: 22px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-details {
    width: 100%;
  }

  .tribe-events .tribe-events-l-container {
    min-height: auto;
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .tribe-events .tribe-events-header {
    margin-bottom: 25px;
  }

  .default-page {
    padding: 50px 0;
  }

  .errorPage .h1 {
    font-size: 110px !important;
    line-height: 120px !important;
  }

  .errorPage .h3 {
    font-size: 20px !important;
  }

  .tribe-events.tribe-common {
    /* padding-bottom: 20px; */
  }

  .tribe-events-nav-pagination .tribe-events-sub-nav {
    display: block
  }

  .tribe-events-nav-pagination .tribe-events-sub-nav li,
  .tribe-events-nav-pagination .tribe-events-sub-nav li.tribe-events-nav-next {
    width: 100%;
  }

  .tribe-events .tribe-events-c-events-bar__search-container {
    top: 100%;
  }

  .tribe-events-schedule {
    padding-bottom: 10px;
  }

  .tribe-events-schedule h2 {
    margin: 0;
    margin-right: 8px;
    width: auto;
    padding: 0;
  }

  .page-id-37 .team-support .section-title img {
    margin-left: 56px;
  }

  .page-id-41 .team-support {
    padding: 50px 0 10px !important;
  }

  .page-id-25 .cecl-arcsys .img-block {
    max-width: 540px;
    margin: 0 auto;
  }

  .svg-content p {
    -webkit-line-clamp: none !important;
  }

  .tribe-events-event-url a {
    white-space: normal;
  }

  .svg-section .sec-heading {
    margin-bottom: 50px;
  }

  .svg-section .sec-heading .btn {
    margin-top: 15px;
  }

  .svg-sec-inner.desktop {
    display: none;
  }

  .svg-sec-inner h3 {
    border-bottom: 3px solid #000;
    margin-bottom: 35px;
    text-align: center;
  }

  .svg-sec-inner h3.software-heading {
    border-color: #086FD8;
    color: #086FD8;
  }

  .svg-sec-inner .service {
    text-align: center;
    margin-bottom: 35px;
  }

  .svg-sec-inner .service .service-icon {
    margin: 0 auto 20px;
  }

  .svg-sec-inner .service p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 80%;
    margin: 0 auto;
    color: #333333;
  }

  .svg-sec-inner .service.service-1 h4,
  .svg-sec-inner .service.service-1 a {
    color: #F79133;
  }

  .svg-sec-inner .service.service-2 h4,
  .svg-sec-inner .service.service-2 a {
    color: #D24450;
  }

  .svg-sec-inner .service.service-3 h4,
  .svg-sec-inner .service.service-3 a {
    color: #8C183F;
  }

  .svg-sec-inner .service.service-4 h4,
  .svg-sec-inner .service.service-4 a {
    color: #055380;
  }

  .svg-sec-inner .service.service-5 h4,
  .svg-sec-inner .service.service-5 a {
    color: #37B2E1;
  }

  .svg-sec-inner .service.service-6 h4,
  .svg-sec-inner .service.service-6 a {
    color: #6CCBD5;
  }

  .svg-sec-inner .service.service-7 h4,
  .svg-sec-inner .service.service-7 a {
    color: #F7B33B;
  }

  .svg-sec-inner .service.service-8 h4,
  .svg-sec-inner .service.service-8 a {
    color: #37B2E0;
  }

  .svg-sec-inner .service.service-9 h4,
  .svg-sec-inner .service.service-9 a {
    color: #6ACAD6;
  }

  .svg-sec-inner .service.service-10 h4,
  .svg-sec-inner .service.service-10 a {
    color: #F6B81B;
  }

  .svg-sec-inner .service a {
    font-weight: 500;
    margin-top: 6px;
    display: inline-block;
  }

  .svg-section {
    padding: 50px 0;
  }

  .svg-sec-inner {
    margin-top: 40px;
  }

}

@media screen and (max-width: 575px) {
  .wpcf7-spinner {
    top: 14px;
  }

  .container-fluid {
    padding: 0 12px;
  }

  body,
  p {
    font-size: 16px;
    line-height: 26px;
  }

  footer .footer-title {
    font-size: 18px;
    line-height: 30px;
    padding-left: 20px;
  }

  footer {
    font-size: 16px;
    line-height: 30px;
  }

  footer .footer-title {
    font-size: 16px;
    line-height: 24px;
  }

  footer .footer-title::before {
    height: 10px;
    width: 10px;
  }

  footer .quick-links li,
  footer ul li {
    padding-left: 20px;
  }

  footer .quick-links li::before {
    left: 5px;
  }

  .copyright .container {
    flex-direction: column;
    gap: 5px;
  }

  .btn,
  .event-btn {
    font-size: 16px;
    line-height: 26px;
    padding: 10px 24px;
    min-width: auto;
  }

  .team-support {
    border-radius: 0px 0px 175px 0px;
  }

  .team-support .blue-box {
    width: 70%;
  }

  .small-banner-title {
    font-size: 28px;
    line-height: 34px;
  }

  .our-team.two .yellow-box {
    padding: 30px 16px 40px 16px;
  }

  .competition-item p,
  .competition-item h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .yellow-box-wrapper,
  .gray-box-wrapper {
    height: 82px;
    padding: 16px;
  }

  .competitors .img-box {
    height: 80px;
  }

  .competitors .img-box img {
    max-width: 46px;
  }

  .section-title {
    font-size: 30px;
    line-height: 40px;
  }

  .team-client .section-title {
    font-size: 28px;
    line-height: 38px;
  }

  #button {
    bottom: 40px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 26px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li::before {
    top: 3px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li::after {
    height: 10px;
    width: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 10px;
    top: 10px;
  }

  .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tribe-common .tribe-common-c-btn,
  .tribe-common a.tribe-common-c-btn,
  .tribe-common button.tribe-common-c-btn {
    padding: 9px 16px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar {
    flex-wrap: wrap;
    padding: 12px 12px 12px 0 !important;
    gap: 4px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-header__events-bar {
    margin-bottom: 20px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-header__top-bar {
    margin-bottom: 20px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-datetime-wrapper {
    margin: 0 0 10px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-description {
    margin-top: 10px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__time-separator + .tribe-events-calendar-day__event {
    margin-top: 20px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event:last-child {
    margin-bottom: 35px;
  }

  .tribe-common .tribe-common-l-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-description {
    margin-top: 0;
  }

  .tribe-common.tribe-common--breakpoint-medium button.tribe-events-c-top-bar__datepicker-button {
    font-size: 18px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__month-separator + .tribe-events-calendar-list__event-row {
    margin-top: 25px;
  }

  .tribe-events-content li {
    margin-bottom: 10px !important;
    font-size: 16px !important;
  }

  .tribe-events-content p {
    font-size: 16px !important;
  }

  .tribe-events-content li::before {
    height: 20px !important;
    width: 20px !important;
  }

  .page-id-37 .team-support .section-title img {
    margin-left: 46px;
  }

  .page-id-54 .since-2010 .section-title img {
    margin-left: 65px;
  }

  .svg-section {
    padding: 50px 0 20px;
  }

  .page-id-25 .cecl-arcsys .img-block {
    max-width: 100%;
  }

  .single-post ul li:after,
  .tribe-events-content ul li::after {
    left: 7px !important;
    top: 7px !important;
  }

  .schedule-modal .modal-body {
    padding: 0;
  }

  .schedule-modal .modal-dialog {
    padding: 50px 0;
    margin: 0 auto;
  }

  .svg-section .sec-heading {
    margin-bottom: 30px;
  }

  .errorPage {
    min-height: unset;
    padding: 80px 0 100px !important;
  }

}

@media screen and (max-width: 480px) {
  header {
    padding: 13px 0 !important;
  }

  .navbar-collapse {
    top: 73px;
    height: calc(100vh - 73px);
  }

  .logo img {
    max-width: 120px;
  }

  header .logo {
    gap: 10px;
  }

  .socials a {
    font-size: 36px;
  }

  .socials {
    gap: 12px;
  }

  .copyright p {
    font-size: 14px;
    line-height: 24px;
  }

  .small-title-wrap {
    font-size: 12px;
    line-height: 22px;
  }

  .section-title img {
    max-width: 32px;
  }

  .team-support {
    border-radius: 0;
  }

  .team-support .blue-box {
    width: 80%;
  }

  .yellow-box-wrap {
    padding: 36px 0;
  }

  .small-banner-title {
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
  }

  .our-team.two .yellow-box .inner-content p,
  .p-lg {
    /*     font-size: 22px; */
  }

  .our-team.two p strong {
    font-size: 28px;
    line-height: 36px;
  }

  .competitors .top-title {
    padding-bottom: 25px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .competition-item p,
  .competition-item h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .yellow-box-wrapper,
  .gray-box-wrapper {
    height: 90px;
  }

  .section-title {
    font-size: 26px;
    line-height: 36px;
  }

  .competitors .img-box {
    height: auto;
    padding: 14px 16px;
    min-width: auto;
  }

  .competitors {
    border-radius: 0px 0px 95px 0px;
  }

  .team-client .section-title {
    font-size: 24px;
    line-height: 34px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li {
    padding-left: 28px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li::before {
    height: 20px;
    width: 20px;
  }

  ul:not(header ul, .stand-for ul, .process-sec ul, .timeline ul, .service-different ul, footer ul, .our-support ul, .yellow-box ul, .tribe-events-c-nav ul, .tribe-events-c-subscribe-dropdown__list, .pagination, .tribe-events-sub-nav, .tribe-events-notices ul) li::after {
    height: 10px;
    width: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    left: 7px;
    top: 7px;
  }

  .team-client span {
    font-size: 15px;
    line-height: 18px;
  }

  #button {
    bottom: 100px;
  }

  .tribe-common--breakpoint-medium.tribe-common .tribe-common-h4--min-medium {
    font-size: 20px;
  }

  .tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day-nav {
    padding-top: 20px;
  }

  .tribe-events .tribe-events-c-subscribe-dropdown {
    margin: 20px 0 0;
  }

  footer {
    text-align: left;
  }

  .top-footer {
    justify-content: flex-start;
  }

  footer .quick-links {
    align-items: flex-start;
  }

  .top-footer,
  footer .row [class*="col-"] {
    padding-bottom: 15px;
  }

  .copyright .designby img {
    width: 100px;
  }

  .socials {
    bottom: 30px;
  }

  .errorPage .container {
    padding-top: 74px;
  }

  .single-tribe_events .tribe-events-single-event-description ol li {
    padding-left: 28px;
  }

  .page-id-31 .we-support .section-title img {
    margin-left: 30px !important;
  }

  .page-id-54 .since-2010 .section-title img {
    margin-left: 55px;
  }

  .svg-sec-inner .service p {
    max-width: 100%;
  }

  .tribe-events-single .tribe-events-sub-nav .tribe-events-nav-previous {
    padding-bottom: 12px;
  }

  .tribe-events-nav-pagination .tribe-events-sub-nav li {
    line-height: 22px;
  }

  footer .quick-links {
    padding-left: 19px !important;
  }

  .page-id-25 .cecl-arcsys .img-block {
    width: 100%;
    height: auto;
  }

  .page-id-25 .cecl-arcsys .img-block img {
    width: auto;
    height: auto;
  }

}

@media screen and (max-width: 399px) {
  .navbar-collapse {
    top: 65px;
    height: calc(100vh - 65px);
  }

  header .slogan {
    font-size: 12px;
    line-height: 14px;
  }

  .logo img {
    max-width: 100px;
  }

  #button {
    right: 5px;
  }

  .circle {
    display: none;
  }

  .section-title img {
    max-width: 40px;
  }

  .tribe-events-content a {
    display: inline-block;
  }

  .tribe-events-schedule h2 {
    font-size: 14px;
  }

}

@media screen and (max-width: 330px) {
  .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar {
    gap: 12px;
  }
}

.flex-vmiddle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
