/* anton styles */

/* font */

.jost-font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* variables */

:root {
  --bodyfont: 'Jost', sans-serif;
  --headingfont: 'Inter', sans-serif;
  --headingcolor: #0b032d;
  --headingcolor2: #98B450;
  --headingcoloralt: #fff;
  --linkcolor: #fa9500;
  --hoverhighlight: #98B450;
  --buttonbg: #98b450;
  --buttonbghover: #FA9500;
  --bodycolor: #323232;
  --bodycoloralt: #0b032d;
  --headerbg: #fff;
  --footerbg: #0b032d;
  --footerheading: #98b450;
  --footertext: #fff;
  --navlink: #0b032d;
  --navactivelink: #fa9500;
  --dropdownbg: #fff;
  --carouselarrow: #4e6238;
  --carouselarrowhover: #fa9500;
  --palegreenbg: #f4f7ea;
  --darkgreenbg: #4e6238;
  --lightgrey: #c6c6c6;
}

.CodeMirror-wrap .CodeMirror-scroll {
  height: 600px;
}

.content-wrapper {
  line-height: 26px;
  font-weight: 400;
}

.body-public .nav > li.nav-menu-login\.php {
  display: none;
}

.body-public .nav > li.nav-menu-competition\.php, .body-public .nav > li.nav-menu-competition2\.php, .body-class-members.php-login .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* general styles */

html body {
  font-size: 16px;
  font-family: var(--bodyfont);
  color: var(--bodycolor);
  background: #fff;
}

body h1 {
  font-weight: 400;
  font-size: 50px;
  line-height: 56px;
  color: var(--headingcolor);
  margin-bottom: 30px;
  font-family: var(--headingfont);
}

body h2 {
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

body h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: var(--headingcolor);
  margin-top: 20px;
  margin-bottom: 25px;
  font-family: var(--headingfont);
}

body h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--headingfont);
}

body h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--headingcolor);
  margin-bottom: 20px;
  font-family: var(--bodyfont);
}

body h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 10px;
  color: var(--bodycolor);
  font-family: var(--bodyfont);
}

body h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
  background: linear-gradient(to left, transparent 50%, var(--buttonbg) 50%) right;
  background-size: 200% 100%;
  border: 1px solid var(--headingcolor);
  color: var(--headingcolor);
  display: inline-block;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-family: var(--bodyfont);
  position: relative;
  text-decoration: none;
}

body h5 a {
  margin: 15px 0px;
}

body h5 a::after {
  content: '';
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 20px;
  top: 3px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

body h5 a:hover::after {
  transform: rotate(45deg);
}

body h5 a:hover, body h5 a:focus, .gallery-image .ss-controls a:hover, .gallery-image .ss-controls a:focus, .gallery-image .nav-controls a:hover, .gallery-image .nav-controls a:focus {
  background-position: left;
  color: #000;
  border-color: var(--buttonbg);
}

@media (min-width: 768px) {
  .gallery-image .nav-controls a.next {
    margin-left: 10px;
  }
}

body a {
  color: var(--linkcolor);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

body a:hover, body a:focus {
  color: var(--hoverhighlight);
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

input, button, select, textarea {
  font-family: var(--bodyfont);
}

/* header styles */

.header-wrapper {
  position: fixed;
  top: 20px;
  left: 200px;
  right: 200px;
  z-index: 1001;
  width: calc(100% - 400px);
  min-height: 81px;
  background: #fff;
  border-radius: 50px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.fix .header-wrapper {
  top: 0px;
  min-height: 61px;
}

.header-logo {
  width: 175px;
  position: absolute;
  top: 23px;
  left: 50px;
  z-index: 50;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.fix .header-logo {
  top: 12px;
}

.header-button {
  position: absolute;
  top: 30px;
  right: 16px;
  z-index: 48;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.fix .header-button {
  top: 18px;
}

.header-button a {
  background: var(--buttonbg);
  padding: 14px 25px;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to left, var(--buttonbg) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
}

.fix .header-button a {
  padding: 10px 25px;
}

.header-button a::after {
  content: '';
  position: relative;
  background: url('/images/resources/newmarketing/content-button-arrow-white.png');
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 20px;
  top: 3px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.header-button a:hover::after {
  transform: rotate(45deg);
}

.header-button a:hover, .header-button a:focus {
  color: #fff;
  text-decoration: none;
  background-position: left;
}

/* navbar */

.nav-section {
  margin: 0px 225px 0px 240px;
  position: relative;
  top: 22px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.fix .nav-section {
  top: 10px;
}

.nav-section .navbar {
  margin: 0px;
}

.nav-section .navbar-inverse .navbar-inner {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-section .navbar .nav {
  float: none;
  text-align: right;
}

.nav-section .navbar .nav > li {
  float: none;
  display: inline-block;
  font-size: 0px;
  position: relative;
}

.nav-section .navbar .nav > li.nav-haslevel-3 {
  position: initial;
}

.nav-section .navbar-inverse .nav > li > a {
  text-shadow: none;
  color: var(--navlink);
  font-size: 18px;
  padding: 10px 25px;
  position: relative;
}

.nav-section .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  content: '\f107';
  font-family: 'FontAwesome';
  margin-left: 6px;
  position: absolute;
  right: 5px;
  transform: perspective(1000px) rotateX(0deg);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.nav-section .navbar-inverse .nav > li.nav-haslevel-2.open > a::after, .nav-section .navbar-inverse .nav > li.triple-menu > a::after {
  transform: perspective(1000px) rotateX(-180deg);
}

.nav-section .navbar-inverse .nav > li > a:focus, .nav-section .navbar-inverse .nav > li > a:hover, .nav-section .navbar-inverse .nav > li.current > a, .nav-section .navbar-inverse .nav > li.active > a {
  color: var(--navactivelink);
}

.header-wrapper .triple-menu .dropdown-menu {
    /*height: 238px;*/
  height: 208px;
    width: 120%;
    position: absolute;
    left: -60px;
    right: 0px;
    padding-top: 20px;
}

.header-wrapper ul.nav > li.nav-haslevel-2.triple-menu > ul.dropdown-menu::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 30%;
    width: 1px;
    height: calc(100% - 60px);
    border: none;
    top: 30px;
    bottom: 30px;
    background: #CAD0C4;
}

.header-wrapper .dropdown-menu > li.nav-level-2 {
    margin-bottom: 10px;
}

.header-wrapper .dropdown-menu > li.nav-level-2 > a::after {
    display: none;
}

.header-wrapper .dropdown-menu > li.nav-level-2 > a::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 80%;
    height: 100%;
    opacity: 0;
    transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fa9500+0,fa9500+100&1+0,0.6+1,0+100 */
    background: linear-gradient(to right, rgba(250,149,0,0.4) 0%,rgba(250,149,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.header-wrapper .dropdown-menu > li.nav-level-2 > a:hover::before, .header-wrapper .dropdown-menu > li.nav-level-2.third-level-menu > a::before  {
  opacity: 1;
}

.header-wrapper .nav-haslevel-3.triple-menu > .dropdown-menu, .header-wrapper .nav-haslevel-3.triple-menu.open > .dropdown-menu {
  display: block;
}

.header-wrapper .nav-haslevel-3.open > .dropdown-menu {
  display: none;
}

.header-wrapper .nav-section .third-level-menu {
  position: initial;
}

.header-wrapper .nav-section .third-level-menu > .dropdown-menu {
  display: block;
  left: 32%;
  padding: 15px 0px;
  margin: 0px;
  /*height: 216px;*/
  height: 186px;
  top: 17px;
  width: 68%;
}

.header-wrapper .nav-section .third-level-menu > .dropdown-menu > li {
  width: 45%;
  margin-right: 30px;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(1)::before {
  content: '';
  background: url('/images/resources/newmarketing/competitions-icon.svg');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(2)::before {
  content: '';
  background: url('/images/resources/newmarketing/membership-icon.svg');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(3)::before {
  content: '';
  background: url('/images/resources/newmarketing/tee-time-management-icon.svg');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(4)::before {
  content: '';
  background: url('/images/resources/newmarketing/golf-management-icon.svg');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(5)::before {
  content: '';
  background: url('/images/resources/newmarketing/member-photo-verification-icon-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

/*.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(6)::before {
  content: '';
  background: url('/images/resources/newmarketing/smart-diary-view-icon-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}*/

.header-wrapper .nav-section .third-level-menu.nav-menu-golf_management > .dropdown-menu > li:nth-child(6)::before {
  content: '';
  background: url('/images/resources/newmarketing/responsive-across-devices-icon-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-payments_and_finance > .dropdown-menu > li:nth-child(1)::before {
  content: '';
  background: url('/images/resources/newmarketing/effortless-refund-handling-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-payments_and_finance > .dropdown-menu > li:nth-child(2)::before {
  content: '';
  background: url('/images/resources/newmarketing/xero-icon-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu.nav-menu-payments_and_finance > .dropdown-menu > li:nth-child(3)::before {
  content: '';
  background: url('/images/resources/newmarketing/smart-diary-view-icon-nobg.png');
  width: 40px;
  height: 40px;
  background-size: 40px;
  position: absolute;
  top: 0px;
  left: 5px;
}

.header-wrapper .nav-section .third-level-menu > .dropdown-menu > li > a {
  padding: 0px 20px 23px 60px;
  font-weight: 600;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(1) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Effortless competition setup';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(2) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Centralised membership management';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(3) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Flexible tee time management';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(4) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Plan and manage events with ease';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(5) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'All-in-one EPOS system';
  font-weight: 400;
  font-size: 14px;
}

/*.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(6) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'The smart golf club app';
  font-weight: 400;
  font-size: 14px;
}*/

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(6) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Bespoke websites';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(1) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Take control of your payments';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(2) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Seamless Xero sync';
  font-weight: 400;
  font-size: 14px;
}

.header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(3) > a::before {
  position: absolute;
  bottom: 0px;
  left: 60px;
  content: 'Support membership growth';
  font-weight: 400;
  font-size: 14px;
}

.nav-section .navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .nav-section .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .nav-section .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle, .nav-section .navbar-inverse .nav li.triple-menu > a {
  background: transparent;
  box-shadow: none;
  color: var(--navactivelink);
}

.nav-section .navbar .nav > li > .dropdown-menu::before, .nav-section .navbar .nav > li > .dropdown-menu::after {
  display: none;
}

.nav-section .dropdown-menu {
  text-align: left;
  box-shadow: none;
  border-radius: 0px;
  border: none;
  min-width: 220px;
  margin-top: 10px;
}

.nav-section .dropdown-menu > li > a {
  color: var(--navlink);
  font-size: 16px;
  padding: 6px 20px;
  position: relative;
}

.nav-section .triple-menu .dropdown-menu > li.nav-level-2 {
  width: 30%;
}

.nav-section .triple-menu .dropdown-menu > li.nav-level-2 > a {
  padding: 10px 20px;
  font-weight: 600;
}

.nav-section .dropdown-menu > li > a::after {
  content: '\f105';
  font-family: 'FontAwesome';
  position: absolute;
  right: 5px;
}

.nav-section .dropdown-menu > li > a:hover, .nav-section .dropdown-menu > li > a:focus, .nav-section .dropdown-menu > li.current > a {
  color: var(--navactivelink);
  background: transparent;
}

/* footer */

.footer-block {
  background: var(--footerbg);
  color: var(--footertext);
  padding: 100px 0px 0px;
}

.footer-block h6 {
  color: var(--footerheading);
  margin: 0px 0px 15px;
}

.footer-space {
  padding: 0px 200px;
}

.footer-flex {
  display: flex;
}

.ff-info {
  width: 24%;
}

.ff-info .ffi-logo {
  width: 185px;
}

.ff-info .ffi-social {
  margin-top: 25px;
}

.ff-info .ffi-social a {
  display: inline-block;
  margin-right: 20px;
}

.ff-info .ffi-contact {
  margin-top: 45px;
}

.ff-info .ffi-contact h6 {
  margin-bottom: 25px;
}

.ff-links h6, .ffi-contact h6, .ff-newsletter h6 {
  text-align: left;
}

.footer-block p {
  margin-bottom: 20px;
}

.ff-info .ffi-contact p:last-of-type {
  margin: 0px;
}

.ff-info .ffi-contact a {
  color: var(--footertext);
}

.ff-info .ffi-contact a:hover, .ff-info .ffi-contact a:focus {
  color: var(--linkcolor);
  text-decoration: none;
}

.ff-info .ffi-contact a img {
  margin-right: 14px;
}

.ff-links {
  margin: 0px 15px;
}

.ff-links a {
  color: var(--footertext);
}

.ff-links a:hover, .ff-links a:focus {
  color: var(--linkcolor);
}

.ff-links.ff-links-one {
  width: 19%;
}

.ff-links.ff-links-two {
  width: 18%;
}

.ff-links.ff-links-three {
  width: 17%;
}

.ff-links-three h6 {
  margin-bottom: 30px;
}

.ff-links h6 a {
  display: inline;
  background: transparent;
  padding: 0px;
  color: var(--footerheading);
  border: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

.ff-newsletter {
  width: 22%;
}

.ff-newsletter form {
  position: relative;
}

.ff-newsletter form input[type*="text"] {
  width: calc(100% - 12px);
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  height: 39px;
  margin-bottom: 20px;
}

.ff-newsletter form label {
  position: absolute;
  top: 14px;
  left: 10px;
  margin: 0px;
  color: rgba(255,255,255,0.7);
  opacity: 1;
  visibility: visible;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.ff-newsletter form span.hide-label label {
  opacity: 0;
  visibility: hidden;
}

.ff-newsletter form input[type*="submit"] {
  background: linear-gradient(to left, transparent 50%, var(--buttonbg) 50%) right;
  background-size: 200% 100%;
  margin: 20px 0px 0px;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 14px 51px 14px 25px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 4;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.ff-newsletter form input[type*="submit"]:hover, .ff-newsletter form input[type*="submit"]:focus {
  border-color: var(--buttonbg);
  background-position: left;
}

.ff-newsletter form .ff-newsletter-submit::after {
  content: '';
  position: absolute;
  background: url('/images/resources/newmarketing/content-button-arrow-white.png');
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: -37px;
  bottom: 30px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.ff-newsletter form .ff-newsletter-submit:hover::after {
  transform: rotate(45deg);
   z-index: 5;
}

.footer-flex {
  padding-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #858196;
  padding: 30px 0px;
  text-align: center;
}

.footer-bottom a {
  font-size: 14px;
  color: var(--footertext);
}

.footer-bottom a:hover, .footer-bottom a:focus {
  color: var(--linkcolor);
}

/*.footer-bottom a::after {
  content: '';
  width: 1px;
  height: 11px;
  margin: 0px 3px 0px 8px;
  background: #fff;
  display: inline-block;
  position: relative;
  top: 1px;
}

.footer-bottom a:last-of-type::after {
  display: none;
}*/

.fb-vert-line {
  position: relative;
  margin: 0px 8px;
  background: #fff;
  width: 1px;
  height: 11px;
  display: inline-block;
  top: 6px;
}

.content-wrapper .footer-block a::after, .content-wrapper .footer-block a:hover::after {
  display: none;
}

.members-footer {
  background: var(--footerbg);
  color: var(--footertext);
  padding: 40px 0px;
}

.mf-flex {
  display: flex;
  align-items: center;
}

.mff-copy {
  width: 75%;
}

.mff-ig {
  width: 25%;
  text-align: right;
}

.mff-ig img {
  width: 120px;
}

/* page */

#globalwrap {
  padding-top: 0px;
}

.page-space {
  padding: 0px 200px;
}

/* home */

.home-main a::after {
  content: '';
  background: url('/images/resources/newmarketing/explore-more-orange-arrow.png');
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.content-wrapper h5 a::after {
  background: url('/images/resources/newmarketing/content-button-arrow.png');
  width: 18px;
  height: 18px;
}

.home-main a:hover::after {
  content: '';
  background: url('/images/resources/newmarketing/explore-more-green-arrow.png');
  width: 16px;
  height: 13px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.content-wrapper h5 a:hover::after {
  background: url('/images/resources/newmarketing/content-button-arrow.png');
  width: 18px;
  height: 18px;
}

.home-slideshow {
  position: relative;
  height: auto;
}

#home-carousel .carousel-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.body-class-home .home-page-wrapper .carousel-inner .carousel-main-image::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 50%;
  height: 100%;
  background: url('/images/resources/newmarketing/intro-white-pattern.png');
  background-size: cover;
}

.carousel-flex {
  position: absolute;
  top: 50%;
  left: 200px;
  right: 200px;
  z-index: 10;
  display: flex;
}

.cf-content {
  width: 50%;
  margin-right: 20px;
}

.body-class-home .carousel-flex {
  top: 40%;
}

.cf-content h1 {
  color: #fff;
}

.cf-content p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-family: var(--headingfont);
}

.cf-content h5 a {
  background: linear-gradient(to left, var(--buttonbg) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  color: #fff;
  border: none;
}

.cf-content h5 a:hover, .cf-content a:focus {
  background-position: left;
  color: #fff;
}

.cf-content h5 a::after {
  background: url('/images/resources/newmarketing/content-button-arrow-white.png');
}

.cf-content h5 a:hover::after {
  background: url('/images/resources/newmarketing/content-button-arrow-white.png');
}

.cf-pic {
  width: 50%;
  margin-left: 20px;
}

.home-main > div {
  margin: 100px 0px;
}

/* two column equal with vertical carousel */

.two-equal-flex {
  display: flex;
}

.tef-content {
  width: 50%;
  margin-right: 60px;
}

/*.tef-content h5 a {
  background: transparent;
  border: 1px solid var(--headingcolor);
  color: var(--headingcolor);
}

.tef-content h5 a:hover, .tef-content h5 a:focus {
  border-color: var(--buttonbg);
  background: var(--buttonbg);
  color: #000;
}*/

.home-main .tef-content h2 {
  margin-top: 45px;
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
}

.home-main .tef-content .wysiwyg-editable {
  max-width: 620px;
}

.tef-carousels {
  width: 50%;
  margin-left: 60px;
}

.tefc-flex {
  display: flex;
  flex: 1 1 0;
}

.tefcf-two {
  margin: 0px 30px;
}

.vert-holder-one, .vert-holder-two {
  height: 440px;
  position: relative;
  overflow: hidden;
  width: 170px;
  left: 0px;
}

.vert-holder-one::before, .vert-holder-two::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  z-index: 1;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.vert-holder-one::after, .vert-holder-two::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.vert-carousel-wrapper {
  list-style: none;
  padding: 0;
  height: 10000px;
  position: absolute;
}

.vert-carousel-item {
  margin-bottom: 18px;
}

/* Two column unequal 60/40 */

.two-uneven-flex {
  display: flex;
}

.tuf-col-with-grid {
  width: 60%;
  background: var(--palegreenbg);
  background-image: url('/images/resources/newmarketing/intro-dark-pattern-faded.png');
  background-size: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.tufc-space {
  padding: 90px 160px 90px 120px;
}

.tufc-space h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 600;
  margin-top: 0px;
}

.tufc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 550px;
  margin-top: 60px;
}

.tufcg-col {
  min-height: 150px;
  border-bottom: 1px solid #96959E;
  font-size: 18px;
  font-weight: 600;
}

.tufcg-col:nth-of-type(1), .tufcg-col:nth-of-type(3) {
  border-right: 1px solid #96959E;
}

.tufcg-col:nth-of-type(3), .tufcg-col:nth-of-type(4) {
  border-bottom: none;
  padding-top: 50px;
}

.tufcg-col:nth-child(even) {
  padding-left: 60px;
}

.tufcg-col div[id*="block"] {
  color: var(--headingcolor2);
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 15px;
  font-weight: 600;
}

.tuf-pic {
  width: 40%;
}

.tuf-pic .wysiwyg-editable {
  height: 100%;
}

.tuf-pic img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 100%;
  object-fit: cover;
}

/* features carousel */

.hfr-title {
  max-width: 680px;
  padding-left: 200px;
}

.hfr-title h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 600;
  margin-top: 0px;
}

.hfr-main {
  position: relative;
}

.hfr-main::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,1+50,0+100 */
background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 300px;
  height: 100%;
}

.hfr-main::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+50,1+100 */
background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 300px;
  height: 100%;
}

.feature-carousel {
  position: relative;
  margin-top: 50px;
  height: 360px;
  overflow: hidden;
}

.fci-space {
  padding: 35px;
}

.fci-space img {
  max-width: 57px;
  width: 100%;
}

.fci-space p:nth-child(2) {
  font-weight: 600;
  color: var(--headingcolor);
  text-transform: uppercase;
}

.feature-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
}

.feature-carousel-item {
  width: 420px;
  display: inline-block;
  margin: 0px 25px;
  background: var(--palegreenbg);
  border-radius: 8px;
  height: 360px
}

.feature-carousel-prev {
  position: absolute;
  top: -140px;
  right: 270px;
  font-size: 36px;
}

.feature-carousel-prev::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-left.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.feature-carousel-prev:hover::after {
  opacity: 1;
}

.feature-carousel-prev:hover {
  cursor: pointer;
}

.feature-carousel-next {
  position: absolute;
  top: -140px;
  right: 200px;
  font-size: 36px;
}

.feature-carousel-next::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-right.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.feature-carousel-next:hover::after {
  opacity: 1;
}

.feature-carousel-next:hover {
  cursor: pointer;
}

/* home uneven col 40/60 */

.two-uneven-flex.flip-flex.full-colour {
  flex-direction: row-reverse;
  background: var(--palegreenbg);
  border-radius: 10px;
  padding: 30px 100px 30px 30px;
  background-image: url('/images/resources/newmarketing/intro-dark-pattern-faded.png');
  background-size: 48% 150%;
  background-position: -100px;
  background-repeat: no-repeat;
  align-items: center;
}

.tuf-content {
  width: 50%;
  margin-left: 80px;
}

.tuf-content h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 600;
  margin-top: 0px;
}

.tuf-pic {
  width: 50%;
}

/* dark green block */

.dark-green-block {
  background: var(--darkgreenbg);
  background-image: url('/images/resources/newmarketing/intro-white-pattern.png');
  background-repeat: repeat;
  color: var(--footertext);
  padding: 60px 70px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.dgb-uneven-flex {
  display: flex;
  align-items: center;
}

.dgb-main {
  width: 70%;
  margin-right: 60px;
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--headingfont);
}

.dgb-sidebar {
  width: 30%;
  margin-left: 60px;
}

body .dgb-sidebar h5 a {
  background: linear-gradient(to left, var(--footertext) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  color: var(--headingcolor);
}

body .dgb-sidebar h5 a:hover, body .dgb-sidebar h5 a:focus {
  background-position: left;
  color: #000;
  border-color: var(--buttonbghover);
}

/* video block */

.video-block {
  position: relative;
  height: 570px;
  overflow: hidden;
}

.video-block::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 8;
  border-radius: 10px;
}

.video-block video {
  width: 100%;
  height: auto;
  object-position: top;
  border-radius: 10px;
}

.video-block .vb-flex {
  position: absolute;
  bottom: 50px;
  z-index: 12;
  color: var(--footertext);
  left: 90px;
  right: 90px;
  display: flex;
  align-items: end;
}

.vbf-left-col {
  width: 60%;
  margin-right: 60px;
}

.vbf-left-col h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  font-family: var(--headingfont);
  color: var(--footertext);
  margin: 40px 0px 0px;
}

.vbf-left-col img {
  /*padding: 12px 30px;
  background: #fff;
  border-radius: 8px;*/
  width: 185px;
}

.vbf-right-col {
  width: 40%;
  margin-left: 60px;
}

/* testimonials carousel */

.testimonial-carousel {
  position: relative;
  margin-top: 50px;
  height: 400px;
  overflow: hidden;
}

.tci-space {
  padding: 35px;
}

.testimonial-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
}

.testimonial-carousel-item {
  width: 420px;
  display: inline-block;
  margin: 0px 25px;
  background: var(--palegreenbg);
  border-radius: 8px;
}

.testimonial-carousel-item h6 {
  color: var(--darkgreenbg);
  text-transform: initial;
  font-size: 16px;
  text-align: left;
}

.testimonial-carousel-prev {
  position: absolute;
  top: -140px;
  right: 270px;
  font-size: 36px;
}

.testimonial-carousel-prev::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-left.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.testimonial-carousel-prev:hover::after {
  opacity: 1;
}

.testimonial-carousel-prev:hover {
  cursor: pointer;
}

.testimonial-carousel-next {
  position: absolute;
  top: -140px;
  right: 200px;
  font-size: 36px;
}

.testimonial-carousel-next::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-right.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.testimonial-carousel-next:hover::after {
  opacity: 1;
}

.testimonial-carousel-next:hover {
  cursor: pointer;
}

.full-width-block {
  text-align: center;
}

.full-width-block h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 600;
  margin-top: 0px;
}

.grid-block {
  margin-top: 50px;
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-block > div {
  border-radius: 8px;
  background: #fff;
}

.grid-block h3 {
  font-weight: 600;
  margin-top: 0px;
  font-size: 30px;
  line-height: 40px;
}

.grid-block > div:nth-child(even) {
  background: #F4F7EA;
}

.gb-content {
  padding: 30px 40px;
  box-shadow: 0px 0px 5px 10px #F2F2F2;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.grid-block > div:nth-child(even) .gb-content {
  padding: 60px 40px;
  box-shadow: none;
}

.gb-pic {
  overflow: hidden;
}

.gb-pic p {
  margin: 0px;
}

.gb-pic img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transform: scale(1,1);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.gb-pic:hover img {
  transform: scale(1.1,1.1);
}

.gb-one {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}

.gb-two {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 1;
}

.gb-three {
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}

.gb-four {
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 3;
  grid-row-end: 4;
}

.gb-five {
  grid-column-start: 2;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 4;
}

.gb-six {
  grid-column-start: 3;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}

/* inner */

.inner-slideshow {
  position: relative;
}

.inner-page-wrapper .carousel-main-image::after {
  display: none;
}

.inner-page-wrapper .cf-content h1 {
  color: #fff;
}

.inner-page-wrapper .cf-content p {
  font-size: 18px;
  line-height: 28px;
}

.inner-main > div {
  margin: 100px 0px;
}

.breadcrumbs-holder {
  position: absolute;
  top: 40%;
  left: 190px;
  z-index: 10;
  color: #fff;
  text-transform: capitalize;
}

.breadcrumbs-holder .breadcrumb {
  background: transparent;
  padding: 4px 10px;
  margin: 0px;
}

.breadcrumbs-holder .breadcrumbs {
  font-size: 0px;
}

.breadcrumbs-holder .breadcrumbs a {
  color: #fff;
  font-size: 20px;
}

.breadcrumbs-holder .breadcrumbs > .separator {
  display: none;
}

.breadcrumbs-holder .breadcrumbLevel1 .separator {
  margin-left: 10px;
  font-size: 20px;
}

.body-nav-current-3 .breadcrumbLevel2, .body-nav-current-3 .breadcrumbLevel3 {
  display: none;
}

.breadcrumbs-holder .breadcrumbs span.breadcrumbCurrent a {
  color: var(--buttonbg);
  display: inline-block;
}

/* inner two equal */

.inner-two-equal-flex {
  display: flex;
  align-items: center;
}

.inner-two-equal-flex.flip-flex {
  flex-direction: row-reverse;
}

.itef-content {
  width: 50%;
  margin-right: 35px;
}

.itef-content h2 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.flip-flex .itef-content {
  margin-right: 0px;
  margin-left: 35px;
}

.itef-pic {
  width: 50%;
  margin-left: 35px;
}

.flip-flex .itef-pic {
  margin-left: 0px;
  margin-right: 35px;
}

/* grid block - 7 */

.inner-grid-7 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.inner-grid-7 .ig-col:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-7 .ig-col:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-7 .ig-col:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-7 .ig-col:nth-child(4) {
  grid-column-start: 7;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-7 .ig-col:nth-child(5) {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 2;
}

.inner-grid-7 .ig-col:nth-child(6) {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 2;
}

.inner-grid-7 .ig-col:nth-child(7) {
  grid-column-start: 6;
  grid-column-end: 8;
  grid-row-start: 2;
  grid-row-end: 2;
}

.ig-col {
  position: relative;
  border: 1px solid #C6C6C6;
  border-radius: 8px;
}

.ig-col::before {
  content: '';
  background: url('/images/resources/newmarketing/content-button-arrow.png');
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
}

.igc-space {
  padding: 30px 10px;
  text-align: center;
}

.inner-grid-7 .ig-col .igc-space p:nth-of-type(1) {
  height: 79px;
}

.ig-col-hover {
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--palegreenbg);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.ig-col:hover {
  border-color: var(--palegreenbg);
}

.ig-col:hover .ig-col-hover {
  opacity: 1;
  visibility: visible;
}

.ig-col-hover .wysiwyg-editable {
  padding: 20px 10px;
  line-height: 24px;
}

.ig-col-hover p:nth-of-type(1) {
  font-weight: 600;
  color: var(--headingcolor);
}

/* inner accordion block */

.large-page-space {
  padding: 0px 350px;
}

.image-bg {
  background: url('/images/resources/newmarketing/intro-dark-pattern-faded.png');
  background-repeat: repeat-x;
  background-position: 0px 250px;
  background-size: 35% 100%;
}

.accordion-block-bg {
  background: var(--palegreenbg);
  border-radius: 8px;
}

.abb-space {
  padding: 70px;
}

.abb-space h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  margin-top: 0px;
}

.body-contentpage .accordion-title:hover {
  cursor: pointer;
}

.accordion-object {
  border-bottom: 2px solid #C5C6C4;
  padding: 14px 0px 14px 0px;
}

.accordion-title {
  position: relative;
  padding-right: 40px;
}

.body-contentpage .accordion-title h4 {
  margin: 0px; 
  font-size: 20px;
  line-height: 30px;
}

.body-contentpage .accordion-title h4 br {
  display: none;
}

.body-contentpage .accordion-title h4::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 14px;
  right: 0px;
  width: 30px;
  height: 2px;
  background: var(--darkgreenbg);
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.body-contentpage .accordion-title h4::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 0px;
  right: 14px;
  height: 30px;
  width: 2px;
  background: var(--darkgreenbg);
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.body-contentpage .active-accord .accordion-title h4::after {
  opacity: 0;
}

.body-contentpage .accordion-content {
  display: none;
  padding-top: 20px;
}

/* inner carousel */

.ofb-title {
  text-align: center;
}

.ofb-title h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 46px;
  margin-top: 0px;
}

.ofb-carousel {
  margin: 60px 0px;
  position: relative;
}

.ofb-carousel::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
  width: 300px;
  height: 100%;
}

.ofb-carousel::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
  width: 300px;
  height: 100%;
}

.other-feature-carousel {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.other-feature-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
}

.other-feature-carousel-item {
  width: 400px;
  display: inline-block;
  margin: 0px 25px;
}

.ofci-pic {
  overflow: hidden;
}

.ofci-pic img {
  border-radius: 10px;
  transform: scale(1,1);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.other-feature-carousel-item:hover .ofci-pic img {
  transform: scale(1.1,1.1);
}

.ofci-content {
  margin-top: 25px;
}

.ofci-content p:first-of-type {
  font-weight: 600;
  color: var(--headingcolor);
}

.other-feature-carousel-prev {
  position: absolute;
  bottom: -50px;
  right: 270px;
  font-size: 36px;
}

.other-feature-carousel-prev::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-left.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.other-feature-carousel-prev:hover::after {
  opacity: 1;
}

.other-feature-carousel-prev:hover {
  cursor: pointer;
}

.other-feature-carousel-next {
  position: absolute;
  bottom: -50px;
  right: 200px;
  font-size: 36px;
}

.other-feature-carousel-next::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-right.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.other-feature-carousel-next:hover::after {
  opacity: 1;
}

.other-feature-carousel-next:hover {
  cursor: pointer;
}

.other-feature-carousel-pagination {
  width: 70%;
  position: absolute;
  left: 200px;
  bottom: -51px;
}

.other-feature-carousel-pagination a {
  width: 20%;
  font-size: 0px;
  display: inline-block;
  height: 2px;
  background: #CECDD3;
}

.other-feature-carousel-pagination a.active {
  background: #FCCA7F;
}

/* success stories */

.body-root-clients .breadcrumbs-holder .breadcrumbs > .separator {
  display: inline-block;
  font-size: 20px;
  margin: 0px 10px;
}

.success-carousel-block {
  position: relative;
}

.success-carousel {
  position: relative;
  height: 370px;
  overflow: hidden;
  max-width: 1520px;
  margin: 0px auto;
}

.success-carousel-title {
  margin-bottom: 75px;
}

.success-carousel-title h2 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.success-carousel::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
  width: 90px;
  height: 100%;
}

.success-carousel::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
  width: 90px;
  height: 100%;
}

.success-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
  display: flex;
}

.success-carousel-item {
  margin: 0px 50px;
  width: 550px;
  display: inline-block;
  height: 270px;
  position: relative;
  background: var(--palegreenbg);
  border-radius: 10px;
  padding: 50px;
}

.success-carousel-item h5 {
  margin: 15px 0px;
  color: var(--darkgreenbg);
  font-size: 18px;
  line-height: 28px;
}

.sci-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  bottom: -10px;
  right: -10px;
  padding: 10px;
}

.sci-pic img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.success-carousel-prev {
  position: absolute;
  top: 0px;
  right: 270px;
}

.success-carousel-prev::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-left.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.success-carousel-prev:hover::after {
  opacity: 1;
}

.success-carousel-prev:hover {
  cursor: pointer;
}

.success-carousel-next {
  position: absolute;
  top: 0px;
  right: 200px;
}

.success-carousel-next::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-right.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.success-carousel-next:hover::after {
  opacity: 1;
}

.success-carousel-next:hover {
  cursor: pointer;
}

.success-logo-title {
  text-align: center;
  margin-bottom: 75px;
}

.success-logo-title h2 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.success-logo-carousel {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.success-logo-carousel::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
  width: 90px;
  height: 100%;
}

.success-logo-carousel::after {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
  width: 90px;
  height: 100%;
}

.success-logo-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.success-logo-item {
  display: inline-block;
  height: 200px;
  width: 240px;
  margin: 0px 25px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.border-four-equal-added {
  border: 1px solid var(--lightgrey);
  display: flex;
  padding: 50px 0px;
  border-radius: 10px;
}

.bfea-col {
  text-align: center;
  flex: 1 1 0;
  margin: 0px 20px;
  position: relative;
  border-right: 1px solid var(--lightgrey);
}

.bfea-col:last-of-type {
  border-right: none;
}

.bfea-col h4 {
  color: var(--headingcolor2);
  font-size: 50px;
  line-height: 50px;
  margin: 0px 0px 30px;
  font-weight: 700;
}

.bfea-col p {
  font-weight: 600;
  margin: 0px;
  color: var(--bodycoloralt);
}

.four-equal-added {
  display: flex;
}

.four-equal-added .ie-col {
  flex: 1 1 0;
  margin: 0px 25px;
  text-align: center;
  color: var(--bodycoloralt);
  font-weight: 600;
}

.page-url-success_stories .four-equal-added .ie-col p:first-of-type {
  margin-bottom: 20px;
}

/* the team */

.body-root-about_us .breadcrumbs-holder .breadcrumbs > .separator {
  display: inline-block;
  font-size: 20px;
  margin: 0px 10px;
}

.body-root-about_us .itef-pic img {
  border-radius: 10px;
}

.two-col-uneven-with-grid {
  display: flex;
}

.tcu-small {
  width: 35%;
  margin-right: 40px;
}

.tcu-large {
  width: 65%;
  margin-left: 40px;
}

.tcu-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.tcug-col {
  background: var(--palegreenbg);
  border-radius: 10px;
  padding: 20px;
}

.inner-main h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
}

.team-info-switch {
  display: flex;
  margin-bottom: 45px;
}

.team-info-switch > div {
  flex: 1 1 0;
  text-align: center;
}

.team-info-switch p {
  display: inline-block;
  width: auto;
  margin: 0px auto;
  padding: 14px 25px;
  border-radius: 50px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to left, var(--buttonbg) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  width: 155px;
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.team-info-switch .active-team p {
  background-position: left;
}

.team-info-switch p:hover {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-position: left;
}

.team-info-main {
  position: relative;
}

.team-info-main > div {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: opacity 1000ms ease-in-out;
  -moz-transition: opacity 1000ms ease-in-out;
  -webkit-transition: opacity 1000ms ease-in-out;
  transition: visibility 1000ms ease-in-out;
  -moz-transition: visibility 1000ms ease-in-out;
  -webkit-transition: visibility 1000ms ease-in-out;
}

.team-info-main .selected-team {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.tism-row {
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}

.tism-item {
  position: relative;
  background: var(--palegreenbg);
  border-radius: 10px;
  text-align: center;
  padding: 0px 0px 0px;
  width: 22%;
  overflow: hidden;
}

.tism-item img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
}

@media (min-width: 1200px) {
  .tism-item:hover img {
    transform: scale(0.7,0.7);
  }
}

.tism-item:nth-of-type(1) {
  margin-right: 20px;
}

.tism-item:nth-of-type(2), .tism-item:nth-of-type(3) {
  margin: 0px 20px;
}

.tism-item:last-of-type {
  margin-left: 20px;
  margin-right: 0px;
}

.tism-item .tism-front {
  transform: perspective(1000px) rotateX(0deg);
  transform-origin: 50% 0%;
  transition: all 600ms linear;
  -moz-transition: all 600ms linear;
  -webkit-transition: all 600ms linear;
}

.tism-item:hover .tism-front {
  transform: perspective(1000px) rotateX(90deg);
}

.tism-item .tism-back {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  height: auto;
  transform: perspective(1000px) rotateX(90deg);
  transform-origin: 0% 100%;
  transition: all 600ms linear;
  -moz-transition: all 600ms linear;
  -webkit-transition: all 600ms linear;
}

.tism-item:hover .tism-back {
  transform: perspective(1000px) rotateX(0deg);
}

/* careers */ 

.careers-positions-block {
  background: var(--palegreenbg);
  border-radius: 20px;
  padding: 100px 0px;
}

.cpb-row {
  display: flex;
}

.cpb-row .ie-col {
  flex: 1 1 0;
  background: #fff;
  border: 1px solid var(--lightgrey);
  border-radius: 10px;
  padding: 30px;
}

.cpb-row .ie-col:nth-of-type(2) {
  margin: 0px 25px;
}

.cpb-row .ie-col a::after {
  content: '\f178';
  font-family: 'FontAwesome';
  margin-left: 10px;
}

/* support */

.border-ie-col {
  text-align: center;
  flex: 1 1 0;
  border: 1px solid var(--lightgrey);
  padding: 40px 20px;
  border-radius: 10px;
}

.fancy-hover {
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.fancy-hover:hover {
  background: var(--darkgreenbg);
  color: #fff;
  border-color: var(--darkgreenbg);
}

.fancy-hover:hover img {
  opacity: 0;
}

.border-ie-col:nth-of-type(1) {
  margin-right: 15px;
}

.border-ie-col:nth-of-type(2), .border-ie-col:nth-of-type(3) {
  margin: 0px 15px;
}

.border-ie-col:nth-of-type(4) {
  margin-left: 15px;
}

.border-ie-col a::after {
  content: '\f178';
  font-family: 'FontAwesome';
  margin-left: 10px;
}

.page-url-support_information p:first-of-type {
  position: relative;
}

.page-url-support_information .border-ie-col:first-of-type p:first-of-type::after {
  position: absolute;
  content: '';
  width: 79px;
  height: 79px;
  background: url('/images/resources/newmarketing/login-white-icon.png');
  opacity: 0;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  visibility: hidden;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.page-url-support_information .border-ie-col:first-of-type:hover p:first-of-type::after {
  opacity: 1;
  visibility: visible;
}

.page-url-support_information .border-ie-col:nth-of-type(2) p:first-of-type::after {
  position: absolute;
  content: '';
  width: 79px;
  height: 79px;
  background: url('/images/resources/newmarketing/tee-white-icon.png');
  opacity: 0;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  visibility: hidden;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.page-url-support_information .border-ie-col:nth-of-type(2):hover p:first-of-type::after {
  opacity: 1;
  visibility: visible;
}

.page-url-support_information .border-ie-col:nth-of-type(3) p:first-of-type::after {
  position: absolute;
  content: '';
  width: 79px;
  height: 79px;
  background: url('/images/resources/newmarketing/membership-white-icon.png');
  opacity: 0;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  visibility: hidden;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.page-url-support_information .border-ie-col:nth-of-type(3):hover p:first-of-type::after {
  opacity: 1;
  visibility: visible;
}

.page-url-support_information .border-ie-col:last-of-type p:first-of-type::after {
  position: absolute;
  content: '';
  width: 79px;
  height: 79px;
  background: url('/images/resources/newmarketing/headset-white-icon.png');
  opacity: 0;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  visibility: hidden;
  transition: all 600ms ease-in-out;
  -moz-transition: all 600ms ease-in-out;
  -webkit-transition: all 600ms ease-in-out;
}

.page-url-support_information .border-ie-col:last-of-type:hover p:first-of-type::after {
  opacity: 1;
  visibility: visible;
}

.support-carousel-block {
  position: relative;
}

.carousel-sep-title {
  margin-bottom: 75px;
}

.carousel-sep-title h2 {
  margin: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.support-carousel {
  position: relative;
  height: 580px;
  overflow: hidden;
  max-width: 1520px;
  margin: 0px auto;
}

.support-carousel-wrapper {
  list-style: none;
  margin: 0px;
  padding: 0;
  width: 10000px;
  position: absolute;
}

.support-carousel-item {
  margin: 0px 20px;
  width: 470px;
  display: inline-block;
  height: 580px;
  position: relative;
}

.support-carousel-prev {
  position: absolute;
  top: 0px;
  right: 270px;
}

.support-carousel-prev::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-left.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.support-carousel-prev:hover::after {
  opacity: 1;
}

.support-carousel-prev:hover {
  cursor: pointer;
}

.support-carousel-next {
  position: absolute;
  top: 0px;
  right: 200px;
}

.support-carousel-next::after {
  content: '';
  background: url('/images/resources/newmarketing/orange-carousel-arrow-right.png');
  width: 36px;
  height: 36px;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 20ms ease-in-out;
  -moz-transition: all 20ms ease-in-out;
  -webkit-transition: all 20ms ease-in-out;
}

.support-carousel-next:hover::after {
  opacity: 1;
}

.support-carousel-next:hover {
  cursor: pointer;
}

.support-ci-pic {
  overflow: hidden;
}

.support-ci-pic img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: scale(1,1);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.support-carousel-item:hover .support-ci-pic img {
  transform: scale(1.1,1.1);
}

.support-ci-content {
  padding: 30px;
  box-shadow: 0px 0px 5px 10px #F2F2F2;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.support-ci-content h3 {
  margin-top: 0px;
}

.support-ci-content a::after {
  content: '\f019';
  font-family: 'FontAwesome';
  margin-left: 10px;
}

.inner-slideshow .carousel {
  margin: 0px;
}

/* claritee */

.page-url-claritee .inner-main .inner-block-one, .page-url-intelligentgolf .inner-main .inner-block-one {
  margin-top: 0px;
}

.pale-green-bg {
  background: var(--palegreenbg);
  padding: 120px 0px 80px;
  border-radius: 10px;
}

.page-url-claritee .breadcrumbs-holder .breadcrumbs > .separator, .page-url-intelligentgolf .breadcrumbs-holder .breadcrumbs > .separator {
  display: inline-block;
  font-size: 20px;
  margin: 0px 10px;
}

.border-ie-col ul {
  margin: 0px 0px 10px 10px;
}

.border-ie-col ul li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
}

.border-ie-col ul li::before {
  content: '\f111';
  font-family: 'FontAwesome';
  font-size: 7px;
  position: absolute;
  color: var(--darkgreenbg);
  margin-right: 8px;
  left: -10px;
}

.flip-flex.large-gap .itef-content {
  margin-left: 70px;
}

.flip-flex.large-gap .itef-pic {
  margin-right: 70px;
}

.inner-slideshow > .wysiwyg-editable > br {
  display: none;
}

.inner-page-wrapper h2 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

/* intelligentgolf page */

.inner-two-equal-flex.top-content {
  align-items: start;
}

.inner-page-wrapper .feature-carousel-item {
  background: #fff;
}

.inner-page-wrapper .hfr-main::before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4f7ea+0,f4f7ea+100&0+0,1+50,1+100 */
background: linear-gradient(to right,  rgba(244,247,234,1) 0%,rgba(244,247,234,1) 50%,rgba(244,247,234,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.inner-page-wrapper .hfr-main::after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f4f7ea+0,f4f7ea+100&0+0,1+50,1+100 */
background: linear-gradient(to right,  rgba(244,247,234,0) 0%,rgba(244,247,234,1) 50%,rgba(244,247,234,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.two-uneven-col {
  display: flex;
}

.tuc-small-title {
  width: 25%;
  margin-right: 15px;
}

.tuc-main-info {
  width: 75%;
  margin-left: 15px;
}

.tuc-main-info .three-equal-col {
  display: flex;
}

.bic-flex {
  display: flex;
}

.bicf-main {
  width: 70%;
  text-align: left;
  margin-right: 20px;
}

.bicf-main h4 {
  color: var(--headingcolor2);
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px;
  font-weight: 600;
}

.bicf-sidebar {
  width: 30%;
  margin-left: 20px;
}

.three-equal-col .border-ie-col:nth-of-type(3) {
  margin-right: 0px;
}

.extra-box {
  margin-top: 30px;
}

.eb-flex {
  display: flex;
}

.ebf-main {
  width: 66%;
  margin-right: 15px;
}

.ebf-sidebar {
  width: 33%;
  margin-left: 15px;
  text-align: right;
}

.ebf-sidebar h5 {
  margin: 0px;
}

.ebf-sidebar h5 a {
  margin: 0px;
}

/* contact */

.colour-block .tuc-blue {
  width: 40%;
  margin-right: 20px;
  background: var(--bodycoloralt);
  color: #fff;
  border-radius: 10px;
  padding: 60px 40px 30px 30px;
}

.colour-block .tuc-blue p {
  margin-left: 10px;
}

.colour-block .tuc-blue h6 {
  color: #fff;
  margin: 0px;
  text-transform: initial;
}

.colour-block .tuc-green {
  width: 60%;
  margin-left: 20px;
  background: var(--darkgreenbg);
  color: #fff;
  border-radius: 10px;
  padding: 60px;
}

.colour-block .tuc-green h2 {
  color: #fff;
}

#map_container {
  width: 100% !important;
  border-radius: 16px;
  height: 350px !important;
}

.tuc-green form {
  position: relative;
}

.tuc-green form span {
  display: inline-block;
}

.tuc-green form span:nth-of-type(1), .tuc-green form span:nth-of-type(3) {
  width: 49%;
  margin-right: 1%;
}

.tuc-green form span:nth-of-type(2), .tuc-green form span:nth-of-type(4) {
  width: 49%;
  margin-left: 1%;
}

.tuc-green form span:nth-of-type(3), .tuc-green form span:nth-of-type(4) {
  margin-top: 30px;
}

.tuc-green form span:nth-of-type(6) {
  display: block;
  margin-top: 10px;
}

.tuc-green form input {
  width: calc(100% - 12px);
  border: none;
  box-shadow: none;
  height: 26px;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 0px;
  font-family: var(--bodyfont);
}

.tuc-green form input:focus {
  box-shadow: none;
  border-color: #fff;
}

.tuc-green form span:nth-of-type(5) {
  width: 49%;
  margin-right: 1%;
}

.tuc-green form select {
  width: calc(100% - 12px);
  border: none;
  box-shadow: none;
  height: 26px;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 0px;
  box-sizing: content-box;
  font-family: var(--bodyfont);
}

.tuc-green form select option {
  color: #000;
}

.tuc-green form textarea {
  width: calc(100% - 12px);
  border: none;
  box-shadow: none;
  height: 96px;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 0px;
  font-family: var(--bodyfont);
}

.tuc-green form textarea:focus {
  box-shadow: none;
  border-color: #fff;
}

.tuc-green form span:nth-of-type(7) {
  float: left;
  margin-top: 30px;
}

.tuc-green form span:nth-of-type(7) input {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #fff;
  -webkit-appearance: none;
  margin-right: 10px;
}

.tuc-green form span:nth-of-type(7) input:checked {
  -webkit-appearance: checkbox;
}

.tuc-green form .form-content {
  margin-top: 35px;
  margin-left: 30px;
}

.tuc-green form input[type*="submit"] {
  background: linear-gradient(to left, #fff 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  border-radius: 50px;
  padding: 14px 51px 14px 25px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: auto;
  height: auto;
  text-transform: uppercase;
  color: var(--headingcolor);
  z-index: 4;
  border: none;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.tuc-green form input[type*="submit"]:hover {
  background-position: left;
}

.tuc-green .contact-submit::after {
  content: '';
  position: absolute;
  background: url('/images/resources/newmarketing/content-button-arrow.png');
  width: 18px;
  height: 18px;
  display: inline-block;
  right: 20px;
  bottom: 30px;
  z-index: 8;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}


.tuc-green .contact-submit:hover::after {
  transform: rotate(45deg);
}

/* news */

.page-url-news .news-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

/*.page-url-news .news-item:nth-of-type(1), .page-url-news .news-item:nth-of-type(4), .page-url-news .news-item:nth-of-type(7), .page-url-news .news-item:nth-of-type(10) {
  margin-right: 30px;
}

.page-url-news .news-item:nth-of-type(2), .page-url-news .news-item:nth-of-type(5), .page-url-news .news-item:nth-of-type(8), .page-url-news .news-item:nth-of-type(11) {
  margin: 0px 15px;
}

.page-url-news .news-item:nth-of-type(3), .page-url-news .news-item:nth-of-type(6), .page-url-news .news-item:nth-of-type(9), .page-url-news .news-item:nth-of-type(12) {
  margin-left: 30px;
}

.page-url-news .news-wrapper .news-item {
  margin-top: 30px;
  margin-bottom: 30px;
}*/

.page-url-news .media .pull-left {
  float: none;
  overflow: hidden;
  margin: 0px;
  display: block;
}

.page-url-news .img-polaroid {
  padding: 0px;
  border: none;
  max-height: 320px;
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transform: scale(1,1);
  transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
}

.page-url-news .news-item:hover .img-polaroid {
  transform: scale(1.1,1.1);
}

.page-url-news .media {
  overflow: visible;
}

.page-url-news .media-body {
  padding: 30px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  float: none;
  overflow: visible;
}

.page-url-news .news-summary::after {
  content: '';
  background: url('/images/resources/newmarketing/explore-more-orange-arrow.png');
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.page-url-news .news-summary:hover::after {
  content: '';
  background: url('/images/resources/newmarketing/explore-more-green-arrow.png');
  width: 16px;
  height: 13px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.news-hidden-block {
  display: none;
}

h6 {
  text-align: center;
}

h6 a {
  background: linear-gradient(to left, var(--buttonbg) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  border: 1px solid var(--buttonbg);
  color: var(--headingcolor);
  display: inline-block;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-family: var(--bodyfont);
  position: relative;
  text-decoration: none;
}

h6 a:hover, h6 a:focus {
  background-position: left;
  color: var(--headingcolor);
  border-color: var(--buttonbghover);
  cursor: pointer;
}

.content-wrapper h6 a::after {
  content: '';
  background: url('/images/resources/newmarketing/content-button-arrow.png');
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 2px;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.content-wrapper h6 a:hover::after {
  transform: rotate(45deg);
}

/* members */

.body-class-members {
  background: #eee;
}

.body-class-members .header-wrapper {
  position: relative;
}

.body-class-members .nav-section {
  margin: 0px 30px 0px 240px;
  width: auto;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .header-left {
  display: none;
}

.body-class-members .nav-logo {
  display: none;
}

.body-class-members .nav-status {
  display: none;
}

.body-class-members .header-status {
  display: none;
}

.body-class-members .header-links {
  display: none;
}

.body-class-members .header-right {
  display: none;
}

.body-public.body-class-home .members-footer, .body-public.body-contentpage .members-footer {
  display: none;
}

.body-class-members .footer-wrapper {
  display: none;
}

body[class*="php-"] .top-header-left, .body-class-members .top-header-left, .body-class-visitorbooking .top-header-left, .body-class-getawayletter .top-header-left, [class*="body-class-setcoursestatus"] .top-header-left, .body-class-opens .top-header-left, .body-loginpage .top-header-left, .invalid-page .top-header-left {
  display: none;
}

body[class*="php-"] .header-top-right, .body-class-members .header-top-right, .body-class-visitorbooking .header-top-right, .body-class-getawayletter .header-top-right, [class*="body-class-setcoursestatus"] .header-top-right, .body-class-opens .header-top-right, .body-loginpage .header-top-right, .invalid-page .header-top-right {
  top: 10px;
  display: none;
}

body[class*="php-"] .header-info, .body-class-members .header-info, .body-class-visitorbooking .header-info, .body-class-getawayletter .header-info, [class*="body-class-setcoursestatus"] .header-info, .body-class-opens .header-info, .body-loginpage .header-info {
  margin-bottom: 10px;
}

.body-class-members .navbar-inverse .nav > li {
  border-bottom: none;
  float: left;
}

.body-class-members .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  letter-spacing: 0px;
  padding: 10px 20px;
  font-size: 15px;
}

.body-class-members .header-space {
  width: 1170px;
  margin: 0px auto;
}

.body-class-members #hamburger-icon {
  position: relative;
  display: none;
}

.body-class-members .nav-wrapper {
  margin-top: 0px;
  height: auto;
  padding: 0px;
  overflow-y: visible;
  position: relative;
  top: 27px;
  margin-left: 95px;
}

.body-class-members .dropdown-menu {
  position: absolute;
}

.body-class-members .dropdown-menu > li > a {
  padding: 3px 20px;
}

.body-class-members .content-wrapper {
  width: auto;
  margin: 0px auto;
}

body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
  padding: 0px 350px;
}

.body-class-members #myNavbar {
  position: relative;
  top: 0px;
  right: 0px;
  min-height: auto;
  background: transparent;
  width: auto;
}

body[class*="php-"] #globalwrap, .body-class-visitorbooking #globalwrap, .body-class-getawayletter #globalwrap, [class*="body-class-setcoursestatus"] #globalwrap, .body-class-opens #globalwrap, .body-loginpage #globalwrap, body[class*="match"] #globalwrap, .invalid-page #globalwrap {
  margin-top: 180px;
  margin-bottom: 60px;
}

.body-class-members #container #globalwrap {
  margin-top: 100px;
  margin-bottom: 60px;
  border: 2px solid var(--headingcolor2);
  padding: 20px;
  background: rgba(255,255,255,0.9);
}

/* sticky footer */

@media (min-width: 768px) {
  html {
    position: relative;
    min-height: 100%;
  }
   .body-class-members {
   margin-bottom: 160px; 
  }
  .body-class-members .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 23px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  html {
    position: relative;
    min-height: 100%;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
   margin-bottom: 185px; 
  }
  body[class*="php-"] .members-footer, .body-class-members .members-footer, .body-class-visitorbooking .members-footer, .body-class-getawayletter .members-footer, [class*="body-class-setcoursestatus"] .members-footer, .body-class-opens .members-footer, .body-loginpage .members-footer, body[class*="match"] .members-footer, .invalid-page .members-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 95px;
    font-size: 15px;
  }
}

/* login page */

#login {
  text-align: center;
}

#login h3 {
  margin: 0px 0px 20px;
  padding-bottom: 10px;
}

#login fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  display: inline-block;
  transform: translateX(-90px);
}

#login input[type*="submit"] {
  margin-top: 20px;
  letter-spacing: 2px;
  font-size: 16px;
}

#login > div {
  padding-bottom: 0px !important;
}

/* buttons */

input[type*="submit"], a.btn, button.btn {
  display: inline-block;
  text-shadow: none;
  background: var(--headingcolor2);
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  margin: 2px;
   transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

input[type*="submit"]:hover, a.btn:hover, button.btn:hover, input[type*="submit"]:focus, a.btn:focus, button.btn:focus {
  background: var(--navactivelink);
  color: #fff;
}

/* no pin page */

.php-login .nav > li.nav-menu-login\.php {
  display: none;
}

.php-login .nav > li.nav-menu-competition\.php, .php-login .nav > li.nav-menu-competition2\.php {
  display: none;
}

/* members */

thead {
  background: var(--headerbg);
  color: #fff;
  font-weight: 400;
}

.body-class-members .content-wrapper thead a {
  color: #fff;
  text-decoration: underline;
}

.table th {
  font-weight: 400;
}

.php-index.body-class-members #container #globalwrap {
  background: transparent;
  border: none;
  padding: 0px;
}

.php-index #leftcontent > div, .php-index #rightcontent > div {
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--headingcolor2);
  position: relative;
}

.php-index #globalwrap .weatherMini {
  position: absolute;
  top: 2px;
  right: 2px;
}

.php-index #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-index #globalwrap .weatherImage img {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-weatherfg #globalwrap .weatherImage.image-night {
  background: transparent;
}

.php-weatherfg #globalwrap .weatherImage img, .php-weatherfg #globalwrap .weatherImage img.image-night {
  background: var(--headingcolor);
  border-radius: 50%;
}

.php-index #globalwrap .weatherImage i {
  font-size: 28px;
}

.php-analysis .content-wrapper .pull-left, .php-courseanalysis .content-wrapper .pull-left {
  float: none;
}

.php-analysis .content-wrapper .pull-right, .php-courseanalysis .content-wrapper .pull-right {
  float: none;
}

.content-wrapper .well {
  background: transparent;
  padding: 10px;
  border: none;
  box-shadow: none;
}

.body-class-members .content-wrapper {
  line-height: 28px;
}

.body-class-members .nav-menu-information .dropdown-menu .nav-menu-information {
  display: none;
}

/*.body-class-members .content-wrapper a {
  text-decoration: underline;
}*/

.body-class-members .content-wrapper a.btn {
  text-decoration: none;
}

.body-class-members .header-login {
  display: none;
}

.body-class-members .navbar-inverse .navbar-inner {
  margin-right: 0px;
}

.php-halloffame .hallOfFame > div:nth-child(3) {
  padding-left: 20px;
}

#ui-datepicker-div {
  display: none;
}

.php-search .content-wrapper input {
  margin-bottom: 0px;
}

.body-class-members .header-wrapper .navbar-inverse .nav > li > a {
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: 0px;
}

.body-class-members .header-wrapper{
  position: relative;
}

.body-class-members.body-contentpage .galleryInner {
  width: 100% !important;
  height: auto !important;
}

.body-class-members.body-contentpage .content-wrapper .container {
  width: auto;
}

.php-eclectic table thead.tableFloatingHeaderOriginal {
  background-color: var(--headingcolor) !important;
}

.php-boardcomps a.btn {
  width: 250px;
  display: block;
  font-size: 14px;
  margin: 5px 0px;
}

.php-boardcomps a.btn.pull-right {
  float: none;
  margin-top: -27px;
}

#memteetimes thead th {
  color: #fff;
}

.php-directory .navbar-inverse .nav > li.nav-haslevel-2 > a::after, .php-friends .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
  font-size: 16px;
}

.php-diary .diary-nav-right a {
  transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -webkit-transition: all 0ms ease-in-out;
}

.php-log #globalwrap {
  overflow-x: scroll;
}

.php-log #globalwrap table tr td:nth-child(3) {
  word-break: break-word;
}

@media (min-width: 0px) and (max-width: 800px) {
  .php-competition2 table.comps-list-table .comp-ical-td {
    right: -10px;
  }
}

.php-igadmin .adminWrapper div.row {
  width: 100%;
  margin-left: 0px;
}

.php-igadmin .adminWrapper .row .span12 {
  margin-left: 0px;
  width: 100%;
}

.php-igadmin .tabsWrapper .tabList li a span {
  padding: 10px 17px;
}

/* desktop responsive */

@media (min-width: 1600px) and (max-width: 1799px) {
  .header-wrapper {
    left: 150px;
    right: 150px;
    width: calc(100% - 300px);
  }
  .page-space {
    padding: 0px 150px;
  }
  .footer-space {
    padding: 0px 150px;
  }
  .large-page-space {
    padding: 0px 250px;
  }
  .feature-carousel-prev {
    right: 220px;
  }
  .feature-carousel-next {
    right: 150px;
  }
  .tufc-space {
    padding: 60px 120px 60px 80px;
  }
  .header-wrapper .triple-menu .dropdown-menu {
    width: 135%;
    left: -125px;
  }
  .success-carousel-item {
    width: 680px;
    height: 260px;
  }
  .breadcrumbs-holder {
    left: 140px;
  }
  .carousel-flex {
    left: 150px;
    right: 150px;
  }
  .support-carousel {
    width: 1300px;
  }
  .support-carousel-item {
    width: 393px;
  }
  .success-carousel {
    width: 1300px;
  }
  .success-carousel-item {
    width: 450px;
    height: 260px;
  }
  .hfr-title {
    padding-left: 150px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 250px;
  }
  .feature-carousel-prev {
    right: 220px;
  }
  .feature-carousel-next {
    right: 150px;
  }
  .testimonial-carousel-prev {
    right: 220px;
  }
  .testimonial-carousel-next {
    right: 150px;
  }
  .other-feature-carousel-pagination {
    left: 150px;
  }
  .other-feature-carousel-prev {
    right: 220px;
  }
  .other-feature-carousel-next {
    right: 150px;
  }
  .success-carousel-prev {
    right: 220px;
  }
  .success-carousel-next {
    right: 150px;
  }
  .support-carousel-prev {
    right: 220px;
  }
  .support-carousel-next {
    right: 150px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .header-wrapper {
    left: 100px;
    right: 100px;
    width: calc(100% - 200px);
  }
  .page-space {
    padding: 0px 100px;
  }
  .footer-space {
    padding: 0px 100px;
  }
  .large-page-space {
    padding: 0px 200px;
  }
  .tufc-space {
    padding: 40px 100px 40px 60px;
  }
  .header-wrapper .triple-menu .dropdown-menu {
    width: 140%;
    left: -130px;
  }
  .success-carousel-item {
    width: 600px;
    height: 240px;
    padding: 25px;
    margin: 0px 30px;
  }
  .breadcrumbs-holder {
    left: 90px;
  }
  .carousel-flex {
    left: 100px;
    right: 100px;
  }
  .support-carousel {
    width: 1200px;
  }
  .support-carousel-item {
    width: 358px;
  }
  .video-block {
    height: 450px;
  }
  .hfr-title {
    padding-left: 100px;
  }
  .page-url-news .img-polaroid {
    height: 260px;
    max-height: 260px;
  }
  .success-carousel {
    width: 1200px;
  }
  .success-carousel-item {
    width: 480px;
    height: 260px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 200px;
  }
  .feature-carousel-prev {
    right: 170px;
  }
  .feature-carousel-next {
    right: 100px;
  }
  .testimonial-carousel-prev {
    right: 170px;
  }
  .testimonial-carousel-next {
    right: 100px;
  }
  .other-feature-carousel-pagination {
    left: 100px;
  }
  .other-feature-carousel-prev {
    right: 170px;
  }
  .other-feature-carousel-next {
    right: 100px;
  }
  .success-carousel-prev {
    right: 170px;
  }
  .success-carousel-next {
    right: 100px;
  }
  .support-carousel-prev {
    right: 170px;
  }
  .support-carousel-next {
    right: 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .header-wrapper {
    left: 50px;
    right: 50px;
    width: calc(100% - 100px);
  }
  .page-space {
    padding: 0px 50px;
  }
  .footer-space {
    padding: 0px 50px;
  }
  .large-page-space {
    padding: 0px 150px;
  }
  .tufc-space {
    padding: 30px 70px 30px 40px;
  }
  .nav-section .navbar-inverse .nav > li > a {
    font-size: 16px;
    padding: 10px 20px;
  }
  .header-wrapper .triple-menu .dropdown-menu {
    width: 150%;
    left: -165px;
  }
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu > li {
    width: 43%;
    margin-right: 20px;
  }
  body h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .other-feature-carousel-pagination {
    left: 50px;
  }
  .other-feature-carousel-item {
    width: 345px;
  }
  .success-carousel-item {
    width: 470px;
    height: 260px;
    margin: 0px 25px;
    padding: 25px;
  }
  .success-logo-item {
    width: 190px;
    height: 155px;
  }
  .tism-back {
    font-size: 14px;
    line-height: 20px;
  }
  .breadcrumbs-holder {
    left: 40px;
  }
  .carousel-flex {
    left: 50px;
    right: 50px;
  }
  .support-carousel {
    width: 1100px;
  }
  .support-carousel-item {
    width: 323px;
  }
  .success-carousel {
    width: 1100px;
  }
  .success-carousel-item {
    width: 435px;
    height: 300px;
  }
  .page-url-news .img-polaroid {
    max-height: 245px;
    height: 245px;
  }
  .dgb-main {
    font-size: 40px;
    line-height: 50px;
  }
  .hfr-title {
    padding-left: 50px;
  }
  .video-block {
    height: 440px;
  }
  .video-block .vb-flex {
    left: 40px;
    right: 40px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 150px;
  }
  .feature-carousel-prev {
    right: 120px;
  }
  .feature-carousel-next {
    right: 50px;
  }
  .testimonial-carousel-prev {
    right: 120px;
  }
  .testimonial-carousel-next {
    right: 50px;
  }
  .other-feature-carousel-pagination {
    left: 50px;
  }
  .other-feature-carousel-prev {
    right: 120px;
  }
  .other-feature-carousel-next {
    right: 50px;
  }
  .success-carousel-prev {
    right: 120px;
  }
  .success-carousel-next {
    right: 50px;
  }
  .support-carousel-prev {
    right: 120px;
  }
  .support-carousel-next {
    right: 50px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .tuf-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
  .testimonial-carousel-item {
    width: 360px;
    margin: 0px 15px;
  }
  .feature-carousel-item {
    width: 360px;
  }
}

/* main responsive */

/* landscape tablet */

@media (min-width: 980px) and (max-width: 1199px) {
  .header-wrapper {
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
  }
  .header-logo {
    left: 25px;
  }
  .header-button a {
    text-transform: initial;
    font-size: 14px;
  }
  .header-wrapper .triple-menu .dropdown-menu {
    width: 150%;
    left: -140px;
  }
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu > li {
    width: 41%;
  }
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu > li > a {
    font-size: 14px;
  }
  .nav-section .navbar-inverse .nav > li > a {
    padding: 10px 15px;
    font-size: 16px;
  }
  .nav-section .navbar-inverse .nav > li.nav-haslevel-2 > a::after {
    right: -1px;
  }
  .nav-section {
    margin: 0px 195px 0px 205px;
  }
  .page-space {
    padding: 0px 25px;
  }
  .footer-space {
    padding: 0px 25px;
  }
  .large-page-space {
    padding: 0px 100px;
  }
  .tef-content {
    margin-right: 30px;
  }
  .tef-carousels {
    margin-left: 30px;
  }
  .vert-holder-one, .vert-holder-two {
    width: 135px;
  }
  .carousel-flex {
    left: 25px;
    right: 25px;
  }
  .carousel-inner, .carousel-inner .item, .carousel-inner .carousel-main-image img {
    min-height: 480px;
    object-fit: cover;
  }
  .cf-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .tufc-space {
    padding: 20px 50px 20px 30px;
  }
  .hfr-title {
    padding-left: 20px;
  }
  .hfr-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .feature-carousel-prev {
    top: -124px;
    right: 80px;
  }
  .feature-carousel-next {
    top: -124px;
    right: 20px;
  }
  .fci-space {
    padding: 15px;
  }
  .feature-carousel-item {
    width: 300px;
    margin: 0px 15px;
  }
  .tuf-content h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .two-uneven-flex.flip-flex.full-colour {
    padding-right: 20px;
  }
  .dgb-main {
    font-size: 30px;
    line-height: 40px;
  }
  .dark-green-block {
    padding: 60px 30px;
  }
  .video-block {
    height: 390px;
  }
  .video-block .vb-flex {
    left: 20px;
    right: 20px;
  }
  .vbf-left-col h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .testimonial-carousel {
    height: 350px;
  }
  .testimonial-carousel-item {
    width: 300px;
    margin: 0px 15px;
  }
  .tci-space {
    padding: 15px;
  }
  .breadcrumbs-holder {
    left: 10px;
  }
  body h1 {
    font-size: 34px;
    line-height: 44px;
  }
  .ig-col-hover .wysiwyg-editable {
    font-size: 13px;
    line-height: 22px;
  }
  body h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: initial;
  }
  .other-feature-carousel-pagination {
    left: 20px;
  }
  .other-feature-carousel-prev {
    right: 80px;
  }
  .other-feature-carousel-next {
    right: 20px;
  }
  .other-feature-carousel-item {
    width: 300px;
    margin: 0px 15px;
  }
  .inner-page-wrapper h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .flip-flex.large-gap .itef-content {
    margin-left: 40px;
  }
  .flip-flex.large-gap .itef-pic {
    margin-right: 40px;
  }
  .bic-flex {
    flex-direction: column-reverse;
  }
  .bicf-sidebar {
    width: 100%;
    margin: 0px 0px 10px 0px;
  }
  .bicf-main {
    width: 100%;
    margin: 0px;
  }
  .breadcrumbs-holder .breadcrumbs a {
    font-size: 16px;
  }
  .tuf-pic img {
    height: auto;
  }
  .tufc-grid {
    margin-top: 40px;
  }
  .tufcg-col {
    min-height: 110px;
  }
  .tufcg-col div[id*="block"] {
    margin-bottom: 15px;
  }
  .tufcg-col:nth-of-type(3), .tufcg-col:nth-of-type(4) {
    padding-top: 15px;
  }
  .ffi-contact {
    font-size: 14px;
  }
  .success-logo-carousel {
    height: 155px;
  }
  .success-carousel-item {
    width: 400px;
    padding: 20px;
    margin: 0px 20px;
    height: 310px;
  }
  .success-logo-item {
    width: 190px;
    height: 155px;
  }
  .tism-item {
    width: 100%;
  }
  .tism-item .tism-back {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transform: initial;
    transform-origin: 0px;
    width: auto;
    padding: 20px;
  }
  .team-info-switch p {
    padding: 14px 10px;
  }
  .tism-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
  .tism-item:nth-of-type(1) {
    margin-right: 0px;
  }
  .tism-item:nth-of-type(2) {
    margin-left: 0px;
  }
  .tism-item:nth-of-type(3) {
    margin-left: 0px;
    margin-right: 0px;
  }
  .tism-item:nth-of-type(4) {
    margin-left: 0px;
    margin-right: 0px;
  }
  .success-carousel-title {
    margin-bottom: 50px;
  }
  .support-carousel {
    width: 940px;
    height: 515px;
  }
  .inner-main h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .support-carousel-item {
    width: 270px;
    height: 515px;
  }
  .page-url-news .img-polaroid {
    height: 195px;
    max-height: 195px;
  }
  .page-url-news .media-body {
    padding: 20px 15px;
  }
  .colour-block .tuc-blue {
    padding: 40px 20px;
  }
  .colour-block .tuc-green {
    padding: 40px 15px;
  }
  .tism-item:hover .tism-front {
    transform: perspective(1000px) rotateX(0deg);
  }
  .body-contentpage .carousel-flex {
    top: auto;
    bottom: 20px;
  }
  .feature-carousel-prev {
    right: 95px;
  }
  .feature-carousel-next {
    right: 25px;
  }
  .testimonial-carousel-prev {
    right: 95px;
  }
  .testimonial-carousel-next {
    right: 25px;
  }
  .other-feature-carousel-pagination {
    left: 25px;
  }
  .other-feature-carousel-prev {
    right: 95px;
  }
  .other-feature-carousel-next {
    right: 25px;
  }
  .success-carousel-prev {
    right: 95px;
  }
  .success-carousel-next {
    right: 25px;
  }
  .support-carousel-prev {
    right: 95px;
  }
  .support-carousel-next {
    right: 25px;
  }
  .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(1) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(2) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(3) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(4) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(5) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(6) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(1) li:nth-of-type(7) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(1) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(2) > a::before, .header-wrapper .nav-section .triple-menu ul > li:nth-of-type(2) li:nth-of-type(3) > a::before {
    font-size: 11px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 100px;
  }
  .body-class-members .navbar-inverse .nav > li > a {
    font-size: 12px;
    padding: 10px 11px;
  }
  .body-class-members .header-space {
    width: 940px;
  }
  .body-class-members .content-wrapper {
    width: 940px;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 12px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-knockout #globalwrap {
    overflow-x: scroll;
  }
  .body-class-members.php-login .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 12px;
  }
  .body-class-members .header-wrapper .navbar-inverse .nav > li > a {
    font-size: 14px;
    padding: 10px 12px;
  }
  .table td, .table th, table td, table th {
    padding: 6px;
    font-size: 14px;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 8px 12px;
  }
}

/* portrait tablet */

@media (min-width: 768px) and (max-width: 979px) {
  .header-wrapper {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }
  .header-logo {
    left: 20px;
  }
  .header-button a {
    text-transform: initial;
  }
  .page-space {
    padding: 0px 20px;
  }
  .footer-space {
    padding: 0px 20px;
  }
  .large-page-space {
    padding: 0px 50px;
  }
  .tef-content {
    margin-right: 20px;
  }
  .tef-carousels {
    margin-left: 20px;
  }
  .vert-holder-one, .vert-holder-two {
    width: 110px;
  }
  .tefcf-two {
    margin: 0px 15px;
  }
  .tufc-space {
    padding: 15px;
  }
  .tuf-pic img {
    height: auto;
  }
  .tufc-space h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .tufc-grid {
    margin-top: 20px;
  }
  .tufcg-col div[id*="block"] {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 10px;
  }
  .tufcg-col {
    min-height: 90px;
  }
  .tufcg-col:nth-child(2n) {
    padding-left: 30px;
  }
  .tufcg-col:nth-of-type(3), .tufcg-col:nth-of-type(4) {
    padding-top: 20px;
  }
  .carousel-inner, .carousel-inner .item, .carousel-inner .carousel-main-image img {
    min-height: 380px;
  }
  .two-uneven-flex.flip-flex.full-colour {
    padding: 30px;
  }
  .tuf-content {
    margin-left: 40px;
  }
  .tuf-content h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .video-block {
    height: 350px;
  }
  .video-block .vb-flex {
    left: 20px;
    right: 20px;
  }
  .vbf-left-col h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .hfr-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .grid-block h3 {
    font-size: 24px;
    line-height: 34px;
  }
  .cf-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .cf-content h1 {
    margin: 0px 0px 10px;
  }
  .cf-content h5 a {
    margin: 0px;
  }
  .breadcrumbs-holder {
    left: 10px;
  }
  .carousel-flex {
    left: 20px;
    right: 20px;
  }
  body h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .inner-page-wrapper .cf-content h1 {
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 33px;
  }
  .inner-page-wrapper .cf-content p {
    font-size: 14px;
    line-height: 22px;
  }
  .breadcrumbs-holder {
    top: 32%;
  }
  .breadcrumbs-holder .breadcrumbs a {
    font-size: 16px;
  }
  .body-contentpage .carousel-flex {
    top: auto;
    bottom: 0px;
  }
  .inner-grid-7 {
    grid-template-columns: 1fr 1fr;
  }
  .inner-grid-7 .ig-col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-7 .ig-col:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-7 .ig-col:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-7 .ig-col:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-7 .ig-col:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .inner-grid-7 .ig-col:nth-child(6) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .inner-grid-7 .ig-col:nth-child(7) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .abb-space {
    padding: 40px 20px;
  }
  .inner-page-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .other-feature-carousel-item {
    width: 335px;
  }
  .other-feature-carousel-pagination {
    left: 20px;
  }
  .other-feature-carousel-next {
    right: 20px;
  }
  .other-feature-carousel-prev {
    right: 80px;
  }
  .dark-green-block {
    padding: 40px 20px;
  }
  .dgb-main {
    margin-right: 20px;
    font-size: 24px;
    line-height: 34px;
    width: 65%;
  }
  .dgb-sidebar {
    width: 35%;
    margin-left: 20px;
  }
  body h5 a, .gallery-image .ss-controls a, .gallery-image .nav-controls a {
    text-transform: initial;
  }
  .footer-flex {
    flex-direction: column;
  }
  .ff-info {
    width: 100%;
    margin-bottom: 15px;
  }
  .ff-links {
    margin: 15px 0px;
  }
  .ff-links.ff-links-one {
    width: 100%;
  }
  .ff-links.ff-links-two {
    width: 100%;
  }
  .ff-links.ff-links-three {
    width: 100%;
  }
  .ff-newsletter {
    width: 100%;
  }
  .inner-two-equal-flex.flip-flex.large-gap {
    flex-direction: column;
  }
  .inner-two-equal-flex.flip-flex.large-gap .itef-content {
    margin-left: 0px;
    width: 100%;
  }
  .inner-two-equal-flex.flip-flex.large-gap .itef-pic {
    margin: 20px 0px 0px;
    width: 100%;
  }
  .inner-two-equal-flex.flip-flex.large-gap .itef-pic img {
    max-width: 450px;
    width: 100%;
    margin: 0px auto;
    display: block;
  }
  .page-url-intelligentgolf .two-uneven-col {
    flex-direction: column;
  }
  .page-url-intelligentgolf .tuc-small-title {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .bic-flex {
    flex-direction: column-reverse;
  }
  .bicf-sidebar {
    width: 100%;
    margin: 0px 0px 10px 0px;
  }
  .bicf-main {
    width: 100%;
    margin: 0px;
  }
  .page-url-intelligentgolf .tuc-main-info {
    width: 100%;
    margin: 0px;
  }
  .hfr-title {
    padding-left: 20px;
  }
  .feature-carousel-prev {
    right: 80px;
  }
  .feature-carousel-next {
    right: 20px;
  }
  .feature-carousel-item {
    width: 350px;
    margin: 0px 15px;
  }
  .fci-space {
    padding: 15px;
  }
  .testimonial-carousel-next {
    right: 20px;
  }
  .testimonial-carousel-prev {
    right: 80px;
  }
  .testimonial-carousel-item {
    width: 350px;
    margin: 0px 15px;
  }
  .success-carousel-prev {
    right: 80px;
  }
  .success-carousel-next {
    right: 20px;
  }
  .success-carousel-item {
    padding: 25px;
    width: 300px;
    margin: 0px 20px;
    height: 400px;
  }
  .success-carousel {
    height: 470px;
  }
  .success-logo-item {
    width: 140px;
    height: 115px;
  }
  .success-logo-carousel {
    height: 115px;
  }
  .team-info-switch p {
    width: 110px;
    font-size: 13px;
    text-transform: initial;
    padding: 14px 10px;
  }
  .tism-item .tism-back {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transform: initial;
    transform-origin: 0px;
    width: auto;
    padding: 20px;
  }
  .tism-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .tism-item {
    width: 100%;
  }
  .tism-item:nth-of-type(1) {
    margin-right: 0px;
  }
  .tism-item:nth-of-type(2) {
    margin-left: 0px;
    margin-right: 0px;
  }
  .tism-item:nth-of-type(3) {
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .tism-item:nth-of-type(4) {
    margin-top: 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .tism-item:hover .tism-front {
    transform: perspective(1000px) rotateX(0deg);
  }
  .support-carousel-prev {
    right: 80px;
  }
  .support-carousel-next {
    right: 20px;
  }
  .support-carousel-item {
    width: 340px;
    height: 550px;
  }
  .support-carousel {
    height: 550px;
  }
  .page-url-news .img-polaroid {
    max-height: 165px;
    height: 165px;
    width: 100%;
  }
  .page-url-news .news-item:nth-of-type(1), .page-url-news .news-item:nth-of-type(4), .page-url-news .news-item:nth-of-type(7), .page-url-news .news-item:nth-of-type(10) {
    margin-right: 15px;
  }
  .page-url-news .news-item:nth-of-type(2), .page-url-news .news-item:nth-of-type(5), .page-url-news .news-item:nth-of-type(8), .page-url-news .news-item:nth-of-type(11) {
    margin: 0px 5px;
  }
  .page-url-news .news-item:nth-of-type(3), .page-url-news .news-item:nth-of-type(6), .page-url-news .news-item:nth-of-type(9), .page-url-news .news-item:nth-of-type(12) {
    margin-left: 15px;
  }
  .page-url-news .media-body {
    padding: 30px 15px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 50px;
  }
  .two-uneven-col {
    flex-direction: column;
  }
  .colour-block .tuc-blue {
    width: calc(100% - 70px);
    margin: 0px 0px 30px;
  }
  .colour-block .tuc-green {
    width: calc(100% - 120px);
    margin: 0px;
  }
  .body-class-members .header-space {
    width: 724px;
  }
  .body-class-members .content-wrapper {
    width: 724px;
  }
  .table td, .table th {
    font-size: 14px;
    padding: 4px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  .php-hcaplist .btn-group + .btn-group {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
  }
  .php-roundmgmt .dateperiods {
    width: 56%;
  }
  .php-directory .table td {
    padding: 2px;
    font-size: 12px;
  }
  .php-directory .table td > a[href*="mailto"] {
    word-break: break-all;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px 8px;
    letter-spacing: 0px;
    font-weight: 400;
  }
  .php-roundmgmt table td, .php-roundmgmt table th {
    padding: 2px;
    font-size: 11px;
  }
  #global.teebooking .tabs li a {
    font-size: 100%;
    padding: 10px;
  }
  #memteetimes {
    font-size: 14px;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  input[type*="submit"], a.btn, button.btn {
    text-transform: capitalize;
  }
  .body-class-members .nav-section {
    width: auto;
  }
}

/* portrait tablet and mobile */

@media (min-width: 0px) and (max-width: 979px) {
  .nav-section {
    margin: 0px;
  }
  .header-wrapper {
    left: 0px;
    right: 0px;
    width: 100%;
  }
  .nav-section .navbar .nav {
    text-align: left;
    margin: 0px;
    padding: 10px 0px 20px;
  }
  .nav-section .navbar .nav > li {
    display: block;
  }
  .nav-section .triple-menu .dropdown-menu > li.nav-level-2 {
    width: 100%;
  }
  .header-button {
    right: 80px;
  }
  .header-wrapper .triple-menu .dropdown-menu {
    position: relative;
    width: 100%;
    height: auto;
    left: 0px;
  }
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu {
    position: relative;
    top: 0px;
    height: auto;
    left: 0px;
    width: 100%;
  }
  .header-wrapper ul.nav > li.nav-haslevel-2.triple-menu > ul.dropdown-menu::before {
    display: none;
  }
  .nav-section .navbar-inverse .btn-navbar, .nav-section .navbar-inverse .btn-navbar:hover, .nav-section .navbar-inverse .btn-navbar:focus {
    width: 60px;
    padding: 10px;
    margin-top: 0px;
    top: 17px;
    position: absolute;
    z-index: 50;
    right: 0px;
    font-size: 16px;
    background: transparent;
    color: #fff;
    margin-right: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    height: 51px;
    transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
  }
  .fix .nav-section .navbar-inverse .btn-navbar, .fix .nav-section .navbar-inverse .btn-navbar:hover, .fix .nav-section .navbar-inverse .btn-navbar:focus {
    top: -5px;
  }
  .nav-section .navbar .btn-navbar .icon-bar {
    transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    box-shadow: none;
    width: 40px;
    height: 3px;
    box-shadow: none;
    background: var(--headingcolor2);
  }
  .nav-section .navbar .btn-navbar:hover .icon-bar, .nav-section .navbar .btn-navbar.active .icon-bar {
    background: var(--buttonbghover);
  }
  .nav-section .btn-navbar .icon-bar + .icon-bar {
    margin-top: 0px;
  }
  .nav-section .btn-navbar.active .icon-bar + .icon-bar {
    margin-top: 1px;
  }
  .nav-section {
    padding: 5px 0px;
    margin: 0px 10px;
    top: 0px;
  }
  .nav-section .navbar-inverse .navbar-inner {
    margin-top: 70px;
  }
  .body-public.body-class-home .nav-section .navbar-inverse .navbar-inner, .body-public.body-contentpage .nav-section .navbar-inverse .navbar-inner {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .top-bar {
    position: absolute;
    top: 14px;
  }
  .middle-bar {
    opacity: 1;
    top: 25px;
    position: absolute;
  }
  .bottom-bar {
    position: absolute;
    top: 36px;
  }
  .active .middle-bar {
    opacity: 0;
  }
  .active .top-bar {
    transform: rotate(45deg);
    top: 25px;
  }
  .active .bottom-bar {
    transform: rotate(-45deg);
    top: 25px;
  }
  .nav-section .navbar-inverse .nav-collapse .nav > li > a, .nav-section .navbar-inverse .nav-collapse .dropdown-menu a {
    font-weight: 400;
    color: var(--navlink);
  }
  .nav-section .navbar-inverse .nav-collapse .nav > li > a:hover, .nav-section .navbar-inverse .nav-collapse .nav > li > a:focus, .nav-section .navbar-inverse .nav-collapse .nav > li.current > a, .nav-section .navbar-inverse .nav-collapse .nav > li.active > a {
    background: transparent;
    color: var(--navactivelink);
  }
  .nav-section .navbar-inverse .nav-collapse .dropdown-menu a:hover, .nav-section .navbar-inverse .nav-collapse .dropdown-menu a:focus, .nav-section .navbar-inverse .nav-collapse .dropdown-menu > li.current > a {
    background: transparent;
    color: var(--navactivelink);
  }
  .nav-section .navbar-inverse .btn-navbar.active {
    background: transparent;
  }
}

/* mobile */

@media (min-width: 0px) and (max-width: 767px) {
  html body {
    padding: 0px;
  }
  .header-wrapper {
    top: 0px;
  }
  .page-space {
    padding: 0px 20px;
  }
  .footer-space {
    padding: 0px 20px;
  }
  .large-page-space {
    padding: 0px 30px;
  }
  .header-button {
    display: none;
  }
  .two-equal-flex {
    flex-direction: column;
  }
  .tef-content {
    width: 100%;
    margin: 0px;
  }
  .tef-carousels {
    width: 100%;
    margin: 30px auto 0px;
    max-width: 300px;
  }
  .home-page-wrapper, .inner-page-wrapper {
    margin-top: 81px;
  }
  .carousel-inner, .carousel-inner .item, .carousel-inner .carousel-main-image img {
    min-height: 310px;
    object-fit: cover;
  }
  .carousel-flex {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 0px;
  }
  .body-class-home .carousel-flex {
    top: 10%;
  }
  .header-logo {
    left: 10px;
  }
  .cf-content {
    width: 100%;
    margin: 0px;
  }
  .cf-pic {
    display: none;
  }
  .cf-content p {
    font-size: 16px;
    line-height: 26px;
  }
  body .cf-content h5 a {
    padding: 4px 25px;
  }
  .tufc-space h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .vert-holder-one, .vert-holder-two {
    width: 80px;
  }
  .two-uneven-flex {
    flex-direction: column;
  }
  .tuf-col-with-grid {
    width: 100%;
  }
  .tufcg-col div[id*="block"] {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .tufcg-col:nth-child(2n) {
    padding-left: 20px;
  }
  .tufcg-col {
    min-height: 80px;
  }
  .tufcg-col:nth-of-type(3), .tufcg-col:nth-of-type(4) {
    padding-top: 20px;
  }
  .tuf-pic {
    width: 100%;
    margin-top: 20px;
  }
  .tuf-pic img {
    border-radius: 10px;
    height: auto;
  }
  .tufc-space {
    padding: 20px;
  }
  .hfr-title {
    padding: 0px 20px;
  }
  .hfr-title h2, .full-width-block h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .feature-carousel {
    margin-top: 70px;
    height: 400px;
  }
  .feature-carousel-prev {
    top: -50px;
    right: auto;
    left: 40%;
    transform: translateX(-50%);
  }
  .feature-carousel-next {
    top: -50px;
    right: auto;
    left: 60%;
    transform: translateX(-50%);
  }
  .feature-carousel-item {
    width: 320px;
    margin: 0px 20px;
    height: 400px;
  }
  .two-uneven-flex.flip-flex.full-colour {
    flex-direction: column;
    padding: 20px;
    background-size: 100%;
    background-position: 0px;
  }
  .tuf-content {
    width: 100%;
    margin: 0px 0px 30px;
  }
  .tuf-content h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .tuf-pic {
    width: 100%;
    margin: 0px;
  }
  .dark-green-block {
    padding: 30px 15px;
  }
  .dgb-uneven-flex {
    flex-direction: column;
  }
  .dgb-main {
    width: 100%;
    margin: 0px;
    font-size: 20px;
    line-height: 30px;
  }
  .dgb-sidebar {
    width: 100%;
    margin: 30px 0px 0px;
  }
  .video-block .vb-flex {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .vbf-left-col h2 {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }
  .testimonial-carousel-prev {
    top: -50px;
    right: auto;
    left: 40%;
    transform: translateX(-50%);
  }
  .testimonial-carousel-next {
    top: -50px;
    right: auto;
    left: 60%;
    transform: translateX(-50%);
  }
  .testimonial-carousel {
    margin-top: 75px;
  }
  .testimonial-carousel-item {
    width: 320px;
    margin: 0px 20px;
  }
  .grid-block {
    grid-template-columns: 1fr;
  }
  .gb-one {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .gb-two {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .gb-three {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .gb-four {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .gb-five {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 5;
    grid-row-end: 5;
  }
  .gb-six {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 6;
    grid-row-end: 6;
  }
  .grid-block h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .gb-content {
    padding: 40px 20px;
  }
  .grid-block > div:nth-child(2n) .gb-content {
    padding: 40px 20px;
  }
  .footer-flex {
    flex-direction: column;
  }
  .ff-info {
    width: 100%;
    margin-bottom: 15px;
  }
  .ff-links {
    margin: 15px 0px;
  }
  .ff-links.ff-links-one {
    width: 100%;
  }
  .ff-links.ff-links-two {
    width: 100%;
  }
  .ff-links.ff-links-three {
    width: 100%;
  }
  .ff-newsletter {
    width: 100%;
  }
  .fb-vert-line {
    display: block;
    opacity: 0;
    height: 10px;
  }
  body h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .breadcrumbs-holder {
    top: 10px;
    left: 10px;
  }
  .breadcrumbs-holder .breadcrumbs a {
    font-size: 16px;
  }
  .inner-two-equal-flex.flip-flex, .inner-two-equal-flex {
    flex-direction: column;
  }
  .itef-content {
    width: 100%;
    margin: 0px;
  }
  .flip-flex .itef-content {
    margin: 0px;
  }
  .itef-pic {
    width: 100%;
    margin: 30px 0px 0px;
  }
  .flip-flex .itef-pic {
    margin: 20px 0px 0px;
  }
  .inner-grid-7 {
    grid-template-columns: 1fr;
  }
  .inner-grid-7 .ig-col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-7 .ig-col:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-7 .ig-col:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .inner-grid-7 .ig-col:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .inner-grid-7 .ig-col:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 5;
    grid-row-end: 5;
  }
  .inner-grid-7 .ig-col:nth-child(6) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 6;
    grid-row-end: 6;
  }
  .inner-grid-7 .ig-col:nth-child(7) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 7;
    grid-row-end: 7;
  }
  .abb-space {
    padding: 40px 15px;
  }
  .inner-page-wrapper h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .other-feature-carousel-item {
    width: 320px;
    margin: 0px 20px;
  }
  .other-feature-carousel-pagination {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    bottom: 0px;
  }
  .other-feature-carousel-next {
    right: auto;
    left: 60%;
    transform: translateX(-50%);
  }
  .other-feature-carousel-prev {
    right: auto;
    left: 40%;
    transform: translateX(-50%);
  }
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu > li {
    width: 90%;
  }
  .pale-green-bg {
    padding: 60px 0px 40px;
  }
  .flip-flex.large-gap .itef-content {
    margin-left: 0px;
  }
  .flip-flex.large-gap .itef-pic {
    margin-right: 0px;
  }
  .two-uneven-col {
    flex-direction: column;
  }
  .tuc-small-title {
    width: 100%;
    margin: 0px;
  }
  .tuc-main-info {
    width: 100%;
    margin: 30px 0px 0px;
  }
  .tuc-main-info .three-equal-col {
    flex-direction: column;
  }
  .border-ie-col:nth-of-type(1) {
    margin: 0px 0px 15px;
  }
  .border-ie-col:nth-of-type(2), .border-ie-col:nth-of-type(3) {
    margin: 15px 0px;
  }
  .border-ie-col:nth-of-type(4) {
    margin: 15px 0px 0px;
  }
  .bicf-main h4 {
    margin-top: 0px;
  }
  .eb-flex {
    flex-direction: column;
  }
  .ebf-main {
    width: 100%;
    margin: 0px;
  }
  .ebf-sidebar {
    width: 100%;
    margin: 20px 0px 0px;
    text-align: left;
  }
  .four-equal-added {
    flex-direction: column;
  }
  .video-block {
    height: 270px;
  }
  .other-feature-carousel-next {
    right: auto;
    left: 60%;
    transform: translateX(-50%);
  }
  .other-feature-carousel-prev {
    right: auto;
    left: 40%;
    transform: translateX(-50%);
  }
  .success-carousel {
    height: 410px;
  }
  .success-carousel-next {
    right: auto;
    left: 60%;
    transform: translateX(-50%);
    top: 50px;
  }
  .success-carousel-prev {
    right: auto;
    left: 40%;
    transform: translateX(-50%);
    top: 50px;
  }
  .success-carousel-item {
    width: 305px;
    margin: 0px 20px;
    height: 370px;
    padding: 15px;
  }
  .success-logo-item {
    width: 150px;
    height: 123px;
  }
  .success-logo-carousel {
    height: 123px;
  }
  .border-four-equal-added {
    flex-direction: column;
    padding: 20px 0px;
  }
  .bfea-col {
    border-right: none;
    border-bottom: 1px solid var(--lightgrey);
    padding: 10px 0px;
    margin: 10px 0px;
  }
  .bfea-col:last-of-type {
    border-bottom: none;
  }
  .four-equal-added .ie-col {
    margin: 15px 0px;
  }
  .two-col-uneven-with-grid {
    flex-direction: column;
  }
  .tcu-small {
    width: 100%;
    margin: 0px;
  }
  .tcu-large {
    width: 100%;
    margin: 20px 0px 0px;
  }
  .tcu-grid {
    grid-template-columns: 1fr;
  }
  .inner-main > div {
    margin: 50px 0px;
  }
  .team-info-switch {
    flex-direction: column;
  }
  .team-info-switch > div {
    margin: 5px 0px;
  }
  .team-info-switch p {
    padding: 5px 25px;
  }
  .tism-row {
    flex-direction: column;
  }
  .tism-item {
    width: 100%;
  }
  .tism-item:nth-of-type(1) {
    margin: 0px 0px 15px;
  }
  .tism-item:nth-of-type(2), .tism-item:nth-of-type(3) {
    margin: 15px 0px;
  }
  .tism-item:nth-of-type(4) {
    margin: 15px 0px 0px;
  }
  .tism-item .tism-back {
    position: relative;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transform: initial;
    transform-origin: 0px;
    width: auto;
    padding: 20px;
  }
  .tism-item:hover .tism-front {
    transform: perspective(1000px) rotateX(0deg);
  }
  .careers-positions-block {
    padding: 50px 0px;
  }
  .cpb-row {
    flex-direction: column;
  }
  .cpb-row .ie-col:nth-of-type(2) {
    margin: 20px 0px;
  }
  .support-carousel-next {
    right: auto;
    left: 60%;
    transform: translateX(-50%);
    top: 50px;
  }
  .support-carousel-prev {
    right: auto;
    left: 40%;
    transform: translateX(-50%);
    top: 50px;
  }
  .support-carousel-item {
    width: 320px;
    height: 550px;
  }
  .page-url-news .news-wrapper {
    grid-template-columns: 1fr;
  }
  .page-url-news .img-polaroid {
    max-height: 200px;
    height: 200px;
  }
  .page-url-news .news-wrapper .news-item {
    max-width: 400px;
    width: 100%;
    margin: 15px auto;
  }
  .page-url-news .news-item:nth-of-type(1), .page-url-news .news-item:nth-of-type(4), .page-url-news .news-item:nth-of-type(7), .page-url-news .news-item:nth-of-type(10) {
    margin-right: auto;
  }
  .page-url-news .news-item:nth-of-type(2), .page-url-news .news-item:nth-of-type(5), .page-url-news .news-item:nth-of-type(8), .page-url-news .news-item:nth-of-type(11) {
    margin-left: auto;
    margin-right: auto;
  }
  .page-url-news .news-item:nth-of-type(3), .page-url-news .news-item:nth-of-type(6), .page-url-news .news-item:nth-of-type(9), .page-url-news .news-item:nth-of-type(12) {
    margin-left: auto;
  }
  .colour-block .tuc-blue {
    width: calc(100% - 40px);
    padding: 40px 20px;
    margin: 0px 0px 20px;
  }
  .colour-block .tuc-green {
    width: calc(100% - 40px);
    padding: 40px 20px;
    margin: 0px;
  }
  .tuc-green form input[type*="submit"] {
    bottom: -50px;
  }
  .tuc-green .contact-submit::after {
    bottom: -20px;
  }
  .home-main > div {
    margin: 50px 0px;
  }
  .body-class-members .content-wrapper {
    width: auto;
    margin: 0px 10px;
  }
  .body-class-members .header-space {
    width: auto;
    margin: 0px 10px;
  }
  .php-weatherfg div.phone-weather .weatherImage {
    background: transparent;
  }
  .content-wrapper div.phone-weather .wind_direction .wind_speed1 {
    top: 7px;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper a {
    word-break: break-all;
  }
  [class*="body-class-setcoursestatus"] .content-wrapper textarea {
    width: 260px !important;
  }
  .nav-wrapper {
    width: auto;
  }
  input[type*="submit"], a.btn, button.btn {
    padding: 6px;
    font-size: 14px;
  }
  .table td, .table th {
    font-size: 12px;
    padding: 2px;
  }
  .php-competition td a.btn {
    font-size: 12px;
    border-radius: 0px;
  }
  .php-hcaplist .btn-group {
    display: block;
    width: 200px;
  }
  .php-hcaplist .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .php-hcaplist .btn-group + .btn-group {
    margin-left: 0px;
  }
  .php-roundmgmt .dateperiods {
    width: 100%;
    float: none;
    text-align: left;
  }
  .php-analysis .pull-left {
    float: none;
  }
  .php-analysis .pull-right {
    float: none;
  }
  .php-analysis .btn-group {
    width: 200px;
    display: block;
  }
  .php-analysis .btn-group .btn {
    margin: 6px 0px;
    display: block;
  }
  .body-class-members .nav-section {
    width: 100%;
  }
  #globalwrap .btn-group .btn:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
  #globalwrap .btn-group .btn:last-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .hcaplist > p:last-child a.btn {
    margin: 6px 0px;
  }
  .php-directory table a[href*="mailto"] {
    word-break: break-all;
  }
  .php-ongoing .global p:nth-of-type(1) {
    width: 250px;
  }
  .php-ongoing a.btn {
    width: 55px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  .php-ongoing p:nth-of-type(1) a.btn:first-child {
    margin-top: 0px;
  }
  #memteetimes td {
    font-size: 12px;
  }
  input[type*="submit"], a.btn, button.btn {
    letter-spacing: 0px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .body-class-members #globalwrap {
    overflow-x: scroll;
  }
  .body-public #globalwrap {
    overflow-x: auto;
  }
  .body-class-members .nav-section {
    width: auto;
  }
  .body-contentpage .accordion-title h4 {
    font-size: 16px;
    line-height: 26px;
  }
  body[class*="php-"] .content-wrapper, .body-class-visitorbooking .content-wrapper, .body-class-getawayletter .content-wrapper, [class*="body-class-setcoursestatus"] .content-wrapper, .body-class-opens .content-wrapper, .body-loginpage .content-wrapper, body[class*="match"] .content-wrapper, .invalid-page .content-wrapper {
    padding: 0px 30px;
  }
}

/* small mobile */

@media (min-width: 0px) and (max-width: 480px) {
   #login fieldset {
    transform: translateX(0px);
  }
  .nav-tabs > li > a {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 12px;
  }
  .video-block {
    height: 200px;
  }
  .video-block video {
    height: 200px;
    object-fit: cover;
  }
  .vbf-right-col {
    display: none;
  }
}

/* editor */

.php-ckeditor .feature-carousel {
  height: auto;
}

.php-ckeditor .feature-carousel-wrapper {
  width: 100%;
  position: relative;
}

.php-ckeditor .feature-carousel-item {
  width: 330px;
  margin: 15px;
}

.php-ckeditor .other-feature-carousel {
  height: auto;
}

.php-ckeditor .other-feature-carousel-wrapper {
  width: 100%;
  position: relative;
  flex-wrap: wrap;
}

.php-ckeditor .other-feature-carousel-item {
  width: 330px;
  margin: 15px;
}

.php-ckeditor .ig-col-hover {
  position: relative;
  opacity: 1;
  visibility: visible;
  height: auto;
}

.php-ckeditor .page-space {
  padding: 0px 10px;
}

/* additional grids */

.inner-grid-6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.inner-grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.inner-grid-5 .ig-col:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-5 .ig-col:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-5 .ig-col:nth-child(3) {
  grid-column-start: 5;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 1;
}

.inner-grid-5 .ig-col:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 2;
  grid-row-end: 2;
}

.inner-grid-5 .ig-col:nth-child(5) {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 2;
  grid-row-end: 2;
}

@media (min-width: 768px) and (max-width: 979px) {
  .inner-grid-6 {
    grid-template-columns: 1fr 1fr;
  }
  .inner-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
  .inner-grid-5 .ig-col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-5 .ig-col:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-5 .ig-col:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-5 .ig-col:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-5 .ig-col:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .inner-grid-6, .inner-grid-5 {
    grid-template-columns: 1fr;
  }
  .inner-grid-5 .ig-col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
  }
  .inner-grid-5 .ig-col:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
  }
  .inner-grid-5 .ig-col:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
  }
  .inner-grid-5 .ig-col:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 4;
    grid-row-end: 4;
  }
  .inner-grid-5 .ig-col:nth-child(5) {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 5;
    grid-row-end: 5;
  }
}

.php-ckeditor .footer-space {
  padding: 0px 10px;
}

.php-ckeditor .tism-item .tism-back {
  position: relative;
  bottom: 0px;
  left: 0px;
  right: 0px;
  transform: initial;
  transform-origin: 0px;
  width: auto;
  padding: 20px;
}

.php-ckeditor .tism-item:hover .tism-front {
  transform: perspective(1000px) rotateX(0deg);
}

.php-ckeditor .success-carousel {
  height: auto;
}

.php-ckeditor .success-carousel-wrapper {
  position: relative;
  height: auto;
  display: block;
}

.php-ckeditor .success-carousel-item {
  display: block;
  margin: 15px 0px;
}

.php-ckeditor .success-carousel::before, .php-ckeditor .success-carousel::after {
  display: none;
}

.php-ckeditor .large-page-space {
  padding: 0px 50px;
}

.tuc-blue a {
  display: inline-block;
  margin: 10px 0px;
}

.tuc-blue #map_container a {
  margin: 0px;
}

.php-ckeditor .feature-carousel-wrapper {
  display: block;
}

.tism-front p {
  margin: 0px;
}

.tismf-border {
  background: #fff;
  padding: 15px;
  border: 1px solid #cad0c3;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.tismf-border h5 {
  margin-top: 0px;
}

.home-block-eight .full-width-block p {
  max-width: 600px;
  margin: 0px auto;
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .header-wrapper .nav-section .third-level-menu > .dropdown-menu > li {
    width: 45%;
  }
}

.body-loginpage #login {
  text-align: left;
  background: var(--darkgreenbg);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
  max-width: 600px;
}

.body-loginpage #login h3 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}

.page-url-intelligentgolf .feature-carousel-item {
  height: 300px;
}

.page-url-intelligentgolf .feature-carousel {
  height: 300px;
}

.page-url-intelligentgolf .inner-block-five .hfr-main::before {
  background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
}

.page-url-intelligentgolf .inner-block-five .hfr-main::after {
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
}

.itef-content li {
  line-height: 26px;
}

.igc-space p {
  font-weight: 600;
}

.page-url-news .news-wrapper .news-item {
  height: 100%;
}

.page-url-news .news-wrapper .media {
  border: 2px solid #cad0c3;
  border-radius: 10px;
  height: 100%;
}

/* carousel alts */

@media (min-width: 1600px) and (max-width: 1799px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 250px;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 200px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 150px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 30px;
  }
  .success-carousel::before {
    width: 35px;
  }
  .success-carousel::after {
    width: 90px;
  }
  .tufcg-col div[id*="block"] {
    font-size: 54px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 30px;
  }
  .success-carousel::before, .success-carousel::after {
    width: 35px;
  }
}

@media (min-width: 0px) and (max-width: 767px) {
  .hfr-main::after, .hfr-main::before, .ofb-carousel::before, .ofb-carousel::after {
    width: 20px;
  }
  .success-carousel-next, .success-carousel-prev {
    top: 85px;
  }
  .success-carousel-title {
    min-height: 68px;
  }
  .success-carousel::before, .success-carousel::after {
    width: 50px;
  }
}

.tuc-blue a {
  color: #fff;
}

.tuc-blue a:hover, .tuc-blue a:focus {
  color: var(--linkcolor); 
}

/* additional pages */

.no-slideshow-page {
  margin: 160px 0px 70px;
}

.customer-quote-wrapper {
  margin-bottom: 40px;
}

.page-url-customer_login .alert-error {
  padding: 10px;
}

.body-public #concept-carousel {
  text-align: center;
  height: 429px;
}

.body-public #concept-carousel .concept-image {
  min-width: 500px;
  width: 250px !important;
  height: 408px;
  margin: 0px 20px; 
}

.body-public #concept-carousel .concept-image.active {
  width: 500px !important;
  height: 408px; 
}

.body-public #concept-carousel .concept-image.prev {
  text-align: right; 
}

.body-public #concept-carousel .concept-image img {
  width: 240px;
  transition: all 1000ms ease-in-out;
  -moz-transition: all 1000ms ease-in-out;
  -webkit-transition: all 1000ms ease-in-out;
  padding-top: 25%;
}

.body-public #concept-carousel .concept-image.active img {
  width: 500px;
  padding-top: 0px; 
}

.body-public .film_roll_prev, .body-public .film_roll_next {
  opacity: 1;
  font-weight: 400;
  margin: 0px;
  width: 35px;
  height: 35px;
  font-size: 50px;
  line-height: 26px; 
}

.body-public .film_roll_prev {
  left: 0px;
  color: #9fc300; 
}

.body-public .film_roll_next {
  right: 0px;
  color: #9fc300; 
}

@media (min-width: 980px) and (max-width: 1199px) {
  .body-public #concept-carousel {
    height: 360px;
    overflow: hidden;
  }
  .body-public #concept-carousel .concept-image {
    min-width: 400px;
    margin: 0px 15px;
    height: 340px; 
  }
  .body-public #concept-carousel .concept-image.active {
    width: 400px !important; 
  }
  .body-public #concept-carousel .concept-image img {
    width: 200px; 
  }
  .body-public #concept-carousel .concept-image.active img {
    width: 400px; 
  } 
}

@media (min-width: 768px) and (max-width: 979px) {
  .body-public #concept-carousel {
    height: 320px;
    overflow: hidden; 
  }
  .body-public #concept-carousel .concept-image {
    min-width: 300px;
    margin: 0px 10px;
    height: 340px; 
  }
  .body-public #concept-carousel .concept-image.active {
    width: 300px !important; 
  }
  .body-public #concept-carousel .concept-image img {
    width: 140px; 
  }
  .body-public #concept-carousel .concept-image.active img {
    width: 300px; 
  } 
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-public #concept-carousel {
    height: 255px;
    overflow: hidden; 
  }
  .body-public #concept-carousel .concept-image {
    min-width: 195px;
    margin: 0px 22px;
    height: 200px;
    width: 195px !important; 
  }
  .body-public #concept-carousel .concept-image.active {
    width: 195px !important; 
  }
  .body-public #concept-carousel .concept-image img {
    width: 120px;
    padding-top: 5%; 
  }
  .body-public #concept-carousel .concept-image.active img {
    width: 195px; 
  } 
}

.fancy-form {
  font-weight: 400;
  font-size: 16px;
  text-align: center; 
}

.fancy-form form .customFormLine {
  display: block;
  margin-bottom: 25px; 
}

.fancy-form form input {
  background: #eee;
  border-radius: 0px;
  border: 1px solid var(--buttonbg);
  text-align: center;
  height: 30px;
  width: 70%; 
}

.fancy-form form .customFormMultiCheckBoxWrapper input {
  width: auto;
  margin-right: 4px;
  margin-top: -2px;
}

.fancy-form form textarea {
  background: #eee;
  border-radius: 0px;
  border: 1px solid var(--buttonbg);
  text-align: center;
  width: 70%; 
  height: 90px;
}

.fancy-form form select {
  background: #eee;
  border-radius: 0px;
  border: 1px solid var(--buttonbg);
  text-align: center;
  height: 40px;
  width: 70%; 
}

.fancy-form label {
  font-size: 16px;
  font-weight: 400;
}

@media (min-width: 0px) and (max-width: 767px) {
  .fancy-form form input {
    width: 80%; 
  }
  .fancy-form form textarea {
    width: 80%; 
  }
  .fancy-form form select {
    width: 80%; 
  } 
}

.fancy-form form img.ui-datepicker-trigger {
  display: none; 
}

.fancy-form form .customFormRadioItem {
  display: inline-block;
  margin-right: 15px; 
}

.fancy-form form .customFormRadioItem input {
  width: auto;
  margin-top: 0px; 
}

.fancy-form form .customFormLine > br {
  display: none;
}

.fancy-form form input[type*="submit"] {
  background: linear-gradient(to left, var(--buttonbg) 50%, var(--buttonbghover) 50%) right;
  background-size: 200% 100%;
  border-radius: 50px;
  padding: 14px 25px;
  position: relative;
  right: 0px;
  bottom: 0px;
  width: auto;
  height: auto;
  text-transform: uppercase;
  color: var(--headingcolor);
  z-index: 4;
  border: none;
  transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
}

.fancy-form form input[type*="submit"]:hover {
  background-position: left;
}

.php-igadmin #container h4 {
  font-size: 18px;
  line-height: 26px;
  color: var(--buttonbg);
}

.body-class-members .header-button {
  display: none;
}

@media (min-width: 0px) and (max-width: 767px) {
  .ofb-carousel {
    margin-bottom: 100px;
  }
  .success-carousel-item {
    font-size: 13px;
    line-height: 22px;
  }
  .team-info-main > div {
    display: none;
  }
  .team-info-main > .selected-team {
    display: block;
  }
  body[class*="php-"], .body-class-members, .body-class-visitorbooking, .body-class-getawayletter, [class*="body-class-setcoursestatus"], .body-class-opens, .body-loginpage, body[class*="match"], .invalid-page {
    margin-bottom: 175px;
  }
  .mf-flex {
    flex-direction: column;
  }
  .mff-copy {
    width: 100%;
    text-align: center;
  }
  .mff-ig {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: landscape) {
  .tuf-pic {
    text-align: center;
  }
  .tuf-pic img {
    max-width: 450px;
    width: 100%;
    margin: 0px auto;
  }
  .grid-block > div {
    max-width: 450px;
    width: 100%;
    margin: 0px auto;
  }
  .itef-pic {
    text-align: center;
  }
  .itef-pic img {
    max-width: 450px;
    width: 100%;
  }
}

.body-class-members thead {
  background: #aaa;
  color: #000;
}

.php-messages .members-footer {
  display: none;
}

/* editor */

.php-ckeditor .carousel-flex {
  left: 20px;
  right: 20px;
  top: 50px;
}

.php-ckeditor .vert-holder-one, .php-ckeditor .vert-holder-two {
  width: 100%;
  height: auto;
}

.php-ckeditor .vert-carousel-wrapper {
  position: relative;
  height: auto;
}

.php-ckeditor .vert-carousel-item {
  width: 170px;
  margin: 10px;
  display: inline-block;
}

.php-ckeditor .testimonial-carousel {
  height: auto;
}

.php-ckeditor .testimonial-carousel-wrapper {
  position: relative;
  width: 100%;
}

.php-ckeditor .testimonial-carousel-item {
  margin: 15px 25px;
}

.php-ckeditor .content-wrapper .wysiwyg-editable {
  border: 2px dashed #000;
}

.php-ckeditor .success-logo-carousel {
  height: auto;
}

.php-ckeditor .success-logo-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.php-ckeditor .support-carousel {
  height: auto;
}

.php-ckeditor .support-carousel-wrapper {
  position: relative;
  width: 100%;
}

.php-ckeditor .breadcrumbs-holder {
  display: none;
}

.career-comments-carousel {
  height: 320px;
}

.career-comments-carousel .success-carousel-item {
  height: 210px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .career-comments-carousel {
    height: 240px;
  }
}

.testimonial-carousel-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.php-ckeditor .testimonial-carousel-wrapper {
  display: block;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .testimonial-carousel-item h6 {
    font-size: 14px;
    line-height: 22px;
  }
  .testimonial-carousel-item {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (min-width: 0px) and (max-width: 979px) {
  .tci-space {
    padding: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1799px) {
  .page-url-claritee .success-carousel-item {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .career-comments-carousel .success-carousel-item {
    height: 260px;
  }
}

@media (min-width: 980px) and (max-width: 1399px) {
  .ig-col-hover .wysiwyg-editable {
    padding: 10px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .footer-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.carousel-main-image img {
  object-fit: cover;
}

@media (min-width: 0px) and (max-width: 767px) {
  .vbf-left-col {
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .footer-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .vbf-right-col {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .vbf-left-col img {
    width: 150px;
  }
}

@media (min-width: 768px) {
  .fancy-form .customFormMultiCheckBoxWrapper {
    display: inline-block;
  }
  .fancy-form .customFormMultiCheckBoxWrapper .customFormCheckboxItem {
    display: inline-block;
    margin-right: 10px;
  }
}

.page-url-gcma_conference_2025 .header-wrapper, .page-url-gcma_conference_2025 .footer-wrapper {
  display: none;
}

.itef-pic {
  position: relative;
}

.itef-pic::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0px;
  width: 100%;
  height: 65%;
  background: var(--palegreenbg);
  border-radius: 8px;
  z-index: -1;
}

.body-public .carousel-inner .carousel-main-image::after, .body-class-home .home-page-wrapper .carousel-inner .carousel-main-image::before {
  content: '';
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.ffi-clear {
  margin-top: 30px;
}

.ffi-clear img {
  width: 185px;
}

.vbf-right-col p:nth-of-type(2) {
  font-size: 12px;
  line-height: 18px;
}

.page-url-intelligentgolfpay .inner-block-four .itef-content p:last-of-type {
  font-size: 12px;
  line-height: 18px;
}

.inner-full.small-text {
  font-size: 14px;
  line-height: 20px;
}

.itefc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (min-width: 0px) and (max-width: 480px) {
  .itefc-grid {
    grid-template-columns: 1fr;
  }
}

.page-url-part_of_clearcourse .inner-block-two .itef-content p:last-of-type {
  font-size: 12px;
  line-height: 18px;
}

.page-url-part_of_clearcourse .inner-block-one .itef-pic::after {
  background: transparent;
}

@media (min-width: 0px) and (max-width: 767px) {
  .body-contentpage .accordion-title h4::before {
    top: 11px;
    width: 24px;
  }
  .body-contentpage .accordion-title h4::after {
    right: 11px;
    height: 24px;
  }
  .inner-page-wrapper .cf-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .page-url-intelligentgolfpay h1, .page-url-claritee h1, .page-url-intelligentgolf h1 {
    font-size: 22px;
    line-height: 32px;
  }
  .ig-col-hover .wysiwyg-editable {
    padding: 15px 10px;
  }
}

@media (min-width: 0px) and (max-width: 767px) and (orientation: portrait) {
  .tuc-green form span:nth-of-type(1), .tuc-green form span:nth-of-type(3) {
    width: 99%;
    margin: 0px;
  }
  .tuc-green form span:nth-of-type(2), .tuc-green form span:nth-of-type(4) {
    width: 99%;
    margin: 0px;
  }
  .page-url-part_of_clearcourse h5 a {
    text-transform: initial;
    font-size: 14px;
  }
}

.deko-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.dg-col {
  text-align: center;
  border-radius: 8px;
  background: var(--palegreenbg);
  padding: 40px 50px;
}

.section-fancy-bg {
  background: var(--palegreenbg);
  border-radius: 10px;
  padding: 40px 100px;
  background-image: url('/images/resources/newmarketing/intro-dark-pattern-faded.png');
  background-size: 48% 100%;
  background-position: -100px;
  background-repeat: no-repeat;
}

.sfb-two-equal.flip-flex {
  display: flex;
  flex-direction: row-reverse;
}

.sfbe-words {
  width: 50%;
  margin-left: 20px;
}

.sfbew-row {
  background: #fff;
  padding: 35px 50px;
  display: flex;
  margin-bottom: 30px;
}

.sfbew-icon {
  width: 90px;
  margin-right: 20px;
}

.sfbew-content {
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 600;
}

.sfbe-pic {
  width: 50%;
  margin-right: 20px;
}

.page-url-deko .itef-pic::after {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .sfbew-content {
    text-transform: initial;
    font-size: 20px;
    line-height: 30px;
  }
  .sfbew-row {
    padding: 25px 40px;
  }
  .section-fancy-bg {
    padding: 40px 50px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .dg-col {
    padding: 30px 25px;
  }
  .sfbew-content {
    text-transform: initial;
    font-size: 18px;
    line-height: 28px;
  }
  .sfbew-row {
    padding: 20px 30px;
  }
  .sfbew-icon {
    width: 50px;
  }
  .section-fancy-bg {
    padding: 40px 25px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .dg-col {
    padding: 20px;
  }
  .sfbew-content {
    text-transform: initial;
    font-size: 16px;
    line-height: 26px;
  }
  .sfbew-row {
    padding: 10px 20px;
  }
  .sfbew-icon {
    width: 20px;
  }
  .section-fancy-bg {
    padding: 20px;
  }
}

.tism-four .tism-row:last-of-type .tism-item {
  margin: 0px;
}

@media (min-width: 0px) and (max-width: 767px) {
  .section-fancy-bg {
    padding: 20px;
    background-image: none;
  }
  .sfb-two-equal.flip-flex {
    flex-direction: column;
  }
  .sfbe-words {
    width: 100%;
    margin: 0px;
  }
  .sfbe-pic {
    width: 100%;
    margin: 30px 0px 0px;
    text-align: center;
  }
  .sfbew-row {
    padding: 10px;
  }
  .sfbe-pic img {
    max-width: 450px;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .deko-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dg-col {
    padding: 20px;
  }
}

@media (min-width: 0px) and (max-width: 480px) {
  .deko-grid {
    grid-template-columns: 1fr;
  }
  .dg-col {
    padding: 20px;
  }
  .sfbew-content {
    font-size: 16px;
    line-height: 26px;
  }
}

.home-page-wrapper .cf-pic {
  display: none;
}

@media (min-width: 980px) and (max-width: 1199px) {
  .breadcrumbs-holder {
    top: 30%;
  }
  .cf-content h1 {
    margin-bottom: 15px;
  }
  .cf-content h5 {
    margin: 0px;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .tism-front {
    position: relative;
    z-index: 20;
  }
  .tism-back {
    margin-top: -70px;
  }
}

.tuc-green form input[type*="submit"] {
  position: relative;
}

/* end anton styles */