/*
Theme Name: A Sleeky Theme
Author: Sleeky
Author URI: https://sleeky.co.uk
Description: Just another Sleeky theme.
Version: 1.0
License: (c) Copyright of Sleeky. All Rights Reserved.
Text Domain: sleeky
*/
/*login buttons - header*/
.btsInjectedContent .table-borderless {
	margin-right: 5% !important;
	width: auto !important;
    height: 40px !important;
}
.btsInjectedContent .table-borderless button {
	    height: 30px;
        border-radius: 15px !important;
   		border: none;
	    padding: 0px 8px !important;
	   font-size: 16px;
	z-index: 999999;
}
.btsInjectedContent .table-borderless a {
	z-index: 999999;
}
.btsInjectedContent .table-borderless td {
padding: 5px 0px !important;
	position: relative;
	z-index: 999;
}
.btsInjectedContent .table-borderless td:nth-child(1) button {
	background-color: transparent !important;
	border: 1px solid white;
}
.btsInjectedContent .table-borderless td:nth-child(2) button {
	padding: 0px 8px 0px 8px !important;
	background-color: transparent;
	margin-left: 10px;
	border: 1px solid white;
}
.btsInjectedContent .table-borderless td:nth-child(1) button:hover {
	background-color: #cff0ff !important;
	color: #1D3557 !important;
}
.btsInjectedContent .table-borderless td:nth-child(2) button:hover {
	background-color: #cff0ff !important;
	color: #1D3557 !important;
}
.btsInjectedContent .table-borderless button:hover {
	    background-color: transparent !important;
		color: #e8e8e8 !important;
}
/*login buttons END*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
font-family: itc-officina-sans-pro, sans-serif;
font-weight: 400;
font-style: normal;
}

/* FLEXI CONTAINERS */
.flexi-container-t-b-l-r {
  padding: 80px 15% !important;
}
.blue-flexi-container {
padding: 120px 15%;
}
.flexi-container-l-r {
  padding: 0px 15%;
}
.flexi-container-t-b {
  padding: 80px 0%;
}
@media screen and (max-width: 1700px) {
.flexi-container-t-b-l-r {
  padding: 80px 5% !important;
}
.blue-flexi-container {
padding: 100px 5%;
}
.flexi-container-l-r {
  padding: 0px 5%;
}
}
@media screen and (max-width: 1200px) {
.flexi-container-t-b-l-r {
  padding: 40px 5% !important;
}
.blue-flexi-container {
padding: 60px 5%;
}
.flexi-container-t-b {
  padding: 40px 0%;
}
}
/* UNIVERSAL */
h1 {
  font-family: itc-officina-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
}
h2, h3, h4, h5, h6 {
  font-family: itc-officina-sans-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #1D3557;
}
h5 {
font-size: 20px;
    padding-top: 10px;
}
p {
  font-family: itc-officina-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  color: #1D3557;
}
.hero-text {
  color: #ffffff !important;
}
.bold {
  font-weight: 700 !important;
}
.blue {
  color: #1C9EDA !important;
  font-weight: 400 !important;
}

.dark-blue {
  background-color: #1C9EDA;
}
.light-blue {
	background-color: #cff0ff;
}
.white {
	background-color: #fff;
}
.flip {
	justify-content: end;
}
h1 {
  font-size: 70px;
}
h2 {
  font-size: 39px;
    line-height: 40px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 22px;
}
a {
  text-decoration: none;
  font-weight: 700 !important;
  font-family: itc-officina-sans-pro, sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
}
nav ul {
  list-style-type: none;
}
footer ul {
  list-style-type: none;
}
ul {
	list-style-type: disc;
}
ul li {
	font-size: 20px;
    line-height: 32px;
color: #1D3557;
}
.button {
  padding: 20px 40px;
  position: relative;
  overflow: hidden;
  display: block;
  width:  240px;
}
.button-white {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 20px;
  text-align: center;
}
.button-white:hover {
  border: 2px solid #1C9EDA;
  color: #1C9EDA;
  border-radius: 20px;
}
.button-blue {
  border: 2px solid #1C9EDA;
  color: #1D3557;
  border-radius: 20px;
  text-align: center;
}
.button-blue:hover {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 20px;
}
.button-container {
  margin-top: 20px;
}
/*button wave effect*/
a span {
  position: relative;
  transition: color 1s ease;
  z-index: 1;
}

.button-blue a:hover span, {
  color: #ffffff;
}
.button-white a:hover span {
  color: #1C9EDA;
}
a .wave.white:before {
  animation: animate 0.5s linear infinite;
  background: url('images/wave-white.png');
  background-size: contain;
  content: '';
  height: 22px;
  left: 0;
  position: absolute;
  top: -22px;
  width: 100%;
}
a .wave.blue:before {
  animation: animate 0.5s linear infinite;
  background: url('images/wave-blue.png');
  background-size: contain;
  content: '';
  height: 22px;
  left: 0;
  position: absolute;
  top: -22px;
  width: 100%;
}
@keyframes animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 118px;
  }
}
.button-blue .wave {
  background-color: #1C9EDA;
  height: 100%;
  left: 0;
  position: absolute;
  top: calc(100% + 22px);
  transition: top 1s ease;
  width: 100%;
}
.button-white .wave {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  position: absolute;
  top: calc(100% + 22px);
  transition: top 1s ease;
  width: 100%;
}
a:hover .wave,
a:focus .wave,
a:active .wave {
  top: 0;
}
/*custom scrollbar*/
/* width */
.twitter ::-webkit-scrollbar {
  width: 10px;

}

/* Track */
.twitter ::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.twitter ::-webkit-scrollbar-thumb {
  background: #1C9EDA; 
}

/* Handle on hover */
.twitter ::-webkit-scrollbar-thumb:hover {
  background: #1893cc; 
}
/*------------------------ NAVIGATION -----------------------------*/
header {
  width: 100%;
  height: 0;
	position: relative;
}
.logo img {
	width: 180px;
    height: auto;
}
.top-nav1 {
    display: flex;
    justify-content: space-between;
        padding: 0px 60px 20px 60px !important;
    z-index: 999;
    position: relative;
    top: 30px !important;
}
.btsInjectedContent .table-borderless {
    margin-right: 60px !important;
}
.search-bar-container.main-search {
	position: absolute;
    top: 3px;
    right: 230px;
	display: none;
}
@media screen and (max-width: 1100px) {
	.top-nav1 {
        padding: 0px 45px 20px 45px !important;
}
	.btsInjectedContent .table-borderless {
    margin-right: 45px !important;
}
	.search-bar-container.main-search {
    right: 215px;
}
}
@media screen and (max-width: 800px) {
	.top-nav1 {
        padding: 0px 30px 20px 30px !important;
}
	.btsInjectedContent .table-borderless {
    margin-right: 30px !important;
}
	.search-bar-container.main-search {
    right: 200px;
}
}
.right-nav {
  display: flex;
	align-items: center;
}
.socials {
  padding-right: 20px;
}

.socials a {
  color: #ffffff;
  padding: 35px 5px;
  font-size: 24px;
}
header ul li a {
  color: #ffffff;
  padding: 0px 5px;
}
header ul li {
    padding: 0px 22px;
}
header ul {
  display: flex;
  padding: 30px 0px;
}
.menu-icon img {
  padding-top: 10px;
}
.top-nav1 .current_page_item a {
border: solid;
    border-image-source: url("images/menu-wave.png");
    border-image-slice: 18;
    border-image-width: 4;
    border-image-outset: 1;
    border-image-repeat: round;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-bottom: 10px;
}
.top-nav1 nav a:hover {
border: solid;
    border-image-source: url("images/menu-wave.png");
    border-image-slice: 18;
    border-image-width: 4;
    border-image-outset: 1;
    border-image-repeat: round;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-bottom: 10px;
	 color: #e8e8e8;
}
.socials a:hover {
  color: #e8e8e8;
}
nav a:hover {
  color: #e8e8e8;
} 
/* NAVIGATION MEDIA QUERIES */
@media screen and (max-width: 1500px) {
  .top-nav1 nav ul li a {
    font-size: 18px !important;
  }
	.top-nav1 ul li {
    padding: 0px 15px !important;
}
}
@media screen and (max-width: 1380px) {
  .top-nav1 .right-nav .socials {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .top-nav1 nav {
    display: none;
  }
  .top-nav1 .right-nav .socials {
    display: none;
  }
}

/* MOBILE NAVIGATION */
#mobileSidenav ul {
	padding: 0px;
}
.sidenav {
  height: 100%; 
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; 
  z-index: 9999 !important; 
  top: 0; 
  left: 0;
  background-color: #0099CE; 
  overflow-x: hidden;
  padding-top: 140px; 
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
.sidenav .closebtn {
  position: absolute;
 top: 30px;
    right: 30px;
    font-size: 30px;
    text-align: center;
    color: #fff;
}
.sidenav ul {
  flex-direction: column;
  text-align: center;
}
.sidenav .socials i {
  padding: 0px 5px !important;
}
.sidenav ul li {
      padding: 15px 0px;
}
.sidenav ul li a {
  font-size: 24px;
  padding: 0px 12px;
}
.sidenav .active {
  border: none;
}
.sidenav .sub-menu li {
	padding: 0px;
}
.sidenav .sub-menu li a {
	font-size: 18px;
}
/* sticky header */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
z-index: 9999;
}
.sticky-colour {
  background-color: #1C9EDA !important;
height: 137px;
}
/*------------------------ HOMEPAGE - HERO ------------------------*/
.hero {
   background-image: url("images/hero-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.hero p {
 color: #ffffff !important;
}
.hero-text-wrap {
  padding: 14% 10%;
text-align: center;
}
.hero-text-wrap .button-container a {
 margin: auto;
}
.hero-subtext {
  padding-top: 50px !important;
  padding-bottom: 30px !important;
	font-size: 24px !important;
    line-height: 42px !important;
}
.hero p.bold {
	font-size: 24px;
    line-height: 50px;
}
.hero-link {
	color: white;
	font-size: 20px !important;
    line-height: 42px !important;
}
@media screen and (max-width: 1100px) {
  .hero-text-wrap {
    padding: 180px 5%;
}
}
@media screen and (max-width: 900px) {
  .hero-text-wrap h1 {
    font-size: 50px;
}
}
@media screen and (max-width: 640px) {
  .hero-text-wrap {
    text-align: center;
}
.hero .button-container {
    margin: auto;
    display: inline-block;
}
.button-container {
	margin-top: 20px !important;
    display: block !important;
}
}

/*------------------------ TEXT RIGHT ------------------------*/
.wrap {
  display: flex;
}
.three-buttons {
	    display: flex;
    flex-wrap: wrap;
}
.three-buttons .button {
	margin-bottom: 20px;
	margin-right: 10px;
	padding: 20px 20px;
}
.image-container {
	max-height: 600px;
}
.image-container img {
    max-width: 900px;
    height: auto;
width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.img-left .text {
  padding: 0px 35px;
}
.text p {
  width: 415px;
  padding-bottom: 20px;
}
.text h2 {
  padding-top:  0px;
  padding-bottom: 25px;
}

.text-img-new .text-block {
	max-width: 55%;
    padding: 0px 15% 0px 4%;
}
.txt-img .image-container img {
	max-height: 450px;
}
.text-img-new .image-container {
	min-width: 55%;
    max-height: 450px;
}
.text-img-new .image-container img {
	max-width: 1000px;
}
.text-side-reverse {
	justify-content: space-between;
}
.text-side-reverse .text-block {
	max-width: 55%;
    padding: 0px 4% 0px 15%;
}
@media screen and (max-width: 1700px) {
.image-container {
	width: 55%;
}
.text-img-new .text-block {
	max-width: 45%;
    padding: 0px 4% 0px 4%;
	}
	.text-side-reverse .text-block {
	max-width: 45%;
    padding: 0px 4% 0px 4%;
}
}
@media screen and (max-width: 1400px) {
  .wrap {
    display: ;
  }
  .image-container img {
  max-width: 700px; 
}
}
@media screen and (max-width: 1200px) {
  .wrap {
    display: block ;
  }
	.text-img-new {
		display: flex;
    flex-direction: column-reverse;
	}
.text-img-new .image-container img {
	max-width: 100%;
	max-height: 450px;
padding: 30px 5%;
}
	.text-img-new .text-block {
	max-width: 100%;
    padding: 0px 5% 0px 5%;
}
.text-side-reverse .text-block {
	max-width: 100%;
    padding: 0px 5% 0px 5%;
}
.image-container {
	width: 100%;
}
  .image-container img {
    display: block;
    width: 100%;
    margin: auto;
    max-width: none;
    padding: 0px 5%;
  }
  .img-left .text {
    padding: 0px 5%;
  }
  .text p {
    width: 100%;
  }
}

/* ----------------------- three column wave------------- */
.video .text h2 {
	padding-top: 0px;
}
#video-cols .play-icon {
    left: calc(50% - 50px);
    top: calc(50% - 50px);
}
.list {
  list-style-type: disc;
  color: #1D3557;
  padding-left: 20px;
padding-top: 10px;
}
.list li::marker {
  color: #0099CE;
  font-size: 26px;
}
.list li {
  padding: 5px 0px;
  font-family: itc-officina-sans-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 30px;
}
.video .col2 {
max-width: 350px;
margin-top: 41px;
}
.video .col2 img {
	width: 324px;
    height: 229px;
	margin: auto;
}
.video .col h4 {
  text-align: center;
    padding-bottom: 10px;
}
.video .wrap {
   display: grid;
    grid-template-columns: auto auto auto auto;
   /* align-items: center;*/
    grid-column-gap: 25px;
    grid-row-gap: 40px;
}
.video .flexi-container-t-b-l-r {
    padding: 80px 5% !important;
}
.video .col:nth-child(4) {
	margin-left: 15px;
}
/*hompage amends*/
.video .col2 img {
	padding-top: 0px;
}
.video .col h4 {
	padding-top: 0px;
}
.video .col h5 {
	padding-top: 0px;
}
@media screen and (max-width: 1200px) {
	.video .col2 img {
	padding-top: 0px;
}
.video .col h4 {
	padding-top: 0px;
}
.video .col h5 {
	padding-top: 0px;
}
}
/*video*/
.video-container { 
   width: 324px;
    height: 229px;
background: url('images/thumbnail.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
	margin: auto;
}
.video-overlay {
	box-shadow:inset 0 0 0 2000px rgba(24,25,26, 0.65);
    width: 100%;
    height: 100%;
    position: absolute;
}
.play-icon {
width: 80px;
    height: 80px;
    position: absolute;
    z-index: 5;
    left: calc(50% - 30px);
    top: calc(50% - 40px);
    cursor: pointer;
}
.play-icon #mylightbox {
    opacity: 0;
	top: -220px;
    left: -200px;
    position: relative;
}
.featherlight-content #mylightbox {
	opacity: 1;
}
.featherlight-iframe .featherlight-content {
	width: 80%;
	height: 80%;
}

.featherlight .featherlight-inner {
	width: 100%;
	height: 100%;
}
/*end video*/
@media screen and (max-width: 1600px) {
 .video .col2 {
    padding: 0px;
	display: none;
  }
  .video .col2 img {
    padding: 0px;
	display: none;
  }
	.video .wrap {
    grid-template-columns: auto auto auto;
	}
}

@media screen and (max-width: 1241px) {
.video .wrap {
    grid-template-columns: auto auto;
	}
.video .text p {
    width: 100%;
}
	  .video .col h4 {
    text-align: left;
  }
  .video .col h2 {
    padding-top: 0px;
  }
  .video .text p {
    width: 100%;
  }
.video .col2 img {
     display: block;
}
.video .col2 {
     display: block;
}
.list {
		padding-top: 20px;
	}
	.video .col2 img {
	display: block;
}
	.video-container {
    margin: 0;
	}
.video .col2 {
     display: block;
max-width: none;
    margin-top: 0px !important;
}
}
@media screen and (max-width: 870px) {
.video .wrap {
    grid-template-columns: auto;
	}
	.video .col2 img {
    margin: 0;
	}
}
@media screen and (max-width: 380px) {
.video-container {
      width: 100%;
}
	.video .col2 img {
    width: 100%;
    height: auto;
}
}
/*------------------------ TEXT LEFT WITH LOGOS ------------------------*/
.text-left-with-logos .wrap {
      justify-content: flex-end;
      padding-left: 5%;
}
.text-left-with-logos .button-container {
    margin-top: 0px;
	margin-bottom: 20px;
}
.text-left-with-logos .text p {
    padding-bottom: 0px !important;
    width: 450px;
}
.text-left-with-logos .text {
      width: 55%;
}
.text-left-with-logos .text .text-wrap {
      margin-left: 20%;
}
.btn-logo {
  display: block;
}
.logos img {
    margin: 40px 15px;
    width: 130px;
    max-width: 130px;
}
.logos {
  padding: 0px 0px;
display: flex;
}
.under {
  padding-bottom: 10px !important;
  padding-top: 10px;
  width: 291px !important;
}
.subtext {
  padding-top: 25px;
}
.list-wrap {
	display: block;
   /* display: grid;
    grid-template-columns: auto auto auto; */
padding: 20px 5% 0px 15%;
}
.list-wrap div {
padding-right: 8%;
}
@media screen and (max-width: 1400px) {
	.list-wrap {
	padding: 20px 5% 0px 5%;
}
}
@media screen and (max-width: 1850px) {
.btn-logo {
  display: block;
}
.logos {
  padding-left: 0px;
}
}
@media screen and (max-width: 1530px) {
	.img-container-logos img {
	    max-width: 700px;
}
}
@media screen and (max-width: 1280px) {
.logos img
{
  padding: 25px 0px;
  display: block;
  }
.list-wrap {
padding: 0px 5% 0px 5%;
}
}
@media screen and (max-width: 1400px) {
.logos img
{
	margin: 40px 15px;
	padding: 0px;
  display: inline-block;
  }
  .text-left-with-logos .image-container img {
    padding-left: 0px;
    padding-right: 5%;
    padding-top: 40px;
  }
.img-container-logos img {
    max-width: 100%;
}
.text-left-with-logos .text .text-wrap {
    margin-left: 0%;
}
  .text-left-with-logos .text {
    padding-right: 5%;
	width: 100%;
  }
}
@media screen and (max-width: 1200px) {
	.text-left-with-logos .text p {
	width: 100% !important;
	}
}
@media screen and (max-width: 1300px) {
.list-wrap {
    display: grid;
    grid-template-columns: auto auto;
}
.list-wrap div {
    padding-top: 40px;
}
.subtext {
    padding-top: 0px;
}
}
@media screen and (max-width: 700px) {
.list-wrap {
    display: grid;
    grid-template-columns: auto;
}
.list-wrap div {
    padding-top: 40px;
}
}
@media screen and (max-width: 900px) {
	.logos {
		padding: 0px 0px;
	}
}
@media screen and (max-width: 510px) {
	.logos {
		padding: 35px 0px 35px 0px;
    display: block;
	}
	.logos img {
    display: block;
    margin: 10px 0px;
	width: 250px;
    max-width: 250px;
	}
.text-left-with-logos .text p {
    width: 100%;
}
}

/*------------------------ COUNTER ------------------------*/
.counter h3 {
  font-size: 75px;
  line-height: 54px;
}
.counter .cols-grid {
  padding: 100px 0px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
	grid-row-gap: 30px;
      text-align: center;
	align-items: center;
}
.counter p {
  color: #1C9EDA;
  padding-top: 20px;
}
@media screen and (max-width: 1200px) {
  .counter .cols-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 100px 0px;
}
}
@media screen and (max-width: 800px) {
  .counter .cols-grid {
  grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 500px) {
  .counter .cols-grid {
  grid-template-columns: repeat(1, 1fr);
  padding: 0px;
}
}


/*------------------------ TWITTER FEED SECTION ------------------------*/
.twitter-feed .wrap {
  justify-content: space-between;
}
.images-small {
  justify-content: space-between;
    display: flex;
    padding-bottom: 15px;
}
.twitter {
 	    padding-left: 65px;
    padding-top: 20px;
}
.twitter .heading-img {
  display: block;
	padding-bottom: 20px;
}
.contact h2 {
  font-weight: 700 !important;
  padding-top: 60px;
  padding-bottom: 30px;
}
.contact p {
  padding: 5px 0px;
}
.left-grid {
  padding-right: 20px;
}
.twitter-feed h2 {
    padding-bottom: 25px;
}
.right2 .slider-container {
    max-width: 740px;
    margin: auto;
}
/*SLIDER*/
.slider {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	max-width: 600px;
	max-height: 137px;
}
.slick-arrow.slick-hidden {
    display: inline-block !important;
}
.slider-container {
	display: flex;
justify-content: space-between;
	padding-bottom: 40px;
}
.prev {
	padding-right: 10px;
	padding-top: 55px;
}
.next {
	padding-left: 10px;
	padding-top: 55px;
}
.slider img {
	padding: 30px 15px;
position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
	left: 0;
    right: 0;
    max-width: 170px;
}
.slider-logo-container {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	background-color: white;
	margin: 0px 5px;
	position: relative;
	width: 183px;
	height: 137px;
}
/*end slider*/

@media screen and (max-width: 1550px) {
  .twitter-feed .wrap {
    display: block;
}
.left-grid {
  padding-right: 0px;
}
.twitter-feed .right {
  display: flex;
  padding-top: 40px;
	justify-content: space-between;
}
.img-padding {
  padding-right: 15px;
}
.images-small {
  justify-content: center;
}
.img-bottom {
  margin: auto;
    display: block;
}
	 .twitter-img-bottom {
	  margin: auto;
    display: block;
	}
	.twitter {
		padding-left: 40px;
	}
}
@media screen and (max-width: 1450px) {
	.twitter-feed .right {
  display: block;
}
	.twitter {
		padding-left: 0px;
	}
}
@media screen and (max-width: 800px) {
  .twitter-feed .left-grid img {
    width: 100%;
    height: auto;
  }
  .images-small {
    display: none;
  }
  .twitter-img-bottom {
    width: 100%;
    height: auto;
  }
	.slider {
	max-width: 200px;
}
	.slider-container {
		justify-content: center;
	}
.twitter-feed h2 {
    padding-bottom: 30px;
}
}
/*------------------------ FOOTER ------------------------*/
footer {
   background-image: url("images/footer.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(6, auto) !important;
grid-gap: 0px 3%;
}
footer p {
  color: #ffffff;
  font-size: 16px;
	padding: 0px 3px !important;
}
footer a {
  color: #ffffff;
  font-size: 16px;
	line-height: 28px;
  font-weight: 400 !important;
  padding: 2px 4px !important;
}
.footer-cols a {
  display: block;
}
.footer-top {
  padding-top: 120px;
}
.footer-socials {
  display: flex;
}
.footer-bottom a {
  font-weight: 700 !important;
}
.footer-bottom {
  display: flex;
    justify-content: space-between;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 60px;
}
footer a:hover {
  color: #e8e8e8;
}
.footer-socials a {
	    padding: 8px 5px !important;
}
@media screen and (max-width: 1700px) {
.footer-bottom {
	padding-left: 5%;
	padding-right: 5%;
	}
}
@media screen and (max-width: 1100px) {
  .footer-bottom {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 900px) {
  .footer-cols {
    display: grid;
    grid-template-columns: repeat(3, auto) !important;
  } 
  .col-bottom {
    padding-bottom: 40px;
  }
  .footer-bottom {
    display: block;
  }
footer {
   background-image: url("images/footer-2.png") !important;
	background-color: #1C9EDA !important;
}
	.footer-top {
		padding-top: 60px;
	}
}
@media screen and (max-width: 550px) {
  .footer-cols {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  } 
footer {
   background-color: #1C9EDA !important;
	background-image: none !important;
}
}
/*------------------------TEXT BLOCK WAVE BG--------------------------*/
.text-block-wave-bg {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
}
.text-block-wave-bg h2 {
padding-bottom: 20px;
}
.text-block-wave-bg ul {
padding: 0px 0px 20px 0px;
}
.text-block-wave-bg .button {
	margin: auto;
}
.text-block-wave-bg .wave-bg-text {
	    width: 70%;
    display: block;
    margin: auto;
   padding: 0px;
}
@media screen and (max-width: 1000px) {
	.text-block-wave-bg .wave-bg-text {
	    width: 100%;
}
	.text-block-wave-bg {
	background-size: cover;
}
}
@media screen and (max-width: 640px) {
	.text-block-wave-bg .button-container{
	    display: block !important;
		margin-top: 20px !important;
}
}

/*------------------------TEXT LEFT--------------------------*/
.text-left .text p {
	width: 480px !important;
}
@media screen and (max-width: 1500px) {
.text-left .image-container img {
    max-width: 700px;
}
}
@media screen and (max-width: 1300px) {
.text-left .image-container img {
    max-width: 650px;
}
}
@media screen and (max-width: 1200px) {
	.text-left .button-container{
	    display: block !important;
		margin-bottom: 20px !important;
}
	.text-left .text p {
	width: 100% !important;
}
	.text-left .image-container img {
    max-width: 100%;
}
}
/*------------------------MEMBERS SLIDER --------------------------*/
.member-heading {
	padding-left: 15%;
    padding-bottom: 80px;
}
.member img {
	    width: 100%;
    height: 100%;
    object-fit: cover;
	min-height: 400px;
}
.members-slider {display: flex;
	justify-content: space-between; }
.members-slider-2 {display: flex;
	justify-content: space-between; }
.member {
	position: relative;
	/*padding: 0px 5px;*/
}
.members-slider .member a {
	color: white;
font-size: 16px !important;
    line-height: 24px;
}
.members-slider .slick-slide {
      margin: 0 5px;
  }
.members-slider .slick-list {
    margin: 0 -5px;
}
.members-slider-2 .member a {
	color: white;
font-size: 16px !important;
    line-height: 24px;
}
.members-slider-2 .slick-slide {
      margin: 0 15px;
  }
.members-slider-2 .slick-list {
    margin: 0 -15px;
}
.overlay {
   transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
	    padding: 10%;
}
.member-img {
	background-color: #008CBA;	
max-height: 400px;
	min-height: 400px;
    max-width: 400px;
}
.members-slider-2 .member-img {
	background-color: #008CBA;	
max-height: 500px;
	min-height: 400px;
    max-width: none;
}
.members-slider-2 .member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    max-height: 500px;
}
.name {
	color: white;
  font-size: 39px;
line-height: 43px;
font-weight: bold;
	padding-bottom: 20px;
}
.description p {
	font-size: 16px !important;
	line-height: 24px;
color: #fff !important;
}
.member:hover img {
  opacity: 0.6;
}
.member:hover .overlay {
  opacity: 1;
}

.members .prev-member {
	    padding-top: 180px !important;
    position: absolute;
    z-index: 999;
    left: 20px;
}
.members .next-member {
	    padding-top: 180px !important;
    position: absolute;
    z-index: 999;
    right: 20px;
}
.members .prev-member img {
	width: 80%;
}
.members .next-member img {
	width: 80%;
}
.members-slider-conatiner .prev-member img {
	width: 25px;
}
.members-slider-conatiner .next-member img {
	width: 25px;
}
@media screen and (max-width: 1550px) {
.members-slider-2 .member-img {
	background-color: #008CBA;	
max-height: 400px;
	min-height: 400px;
    max-width: none;
}
.members-slider-2 .member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    max-height: 400px;
}
}
@media screen and (max-width: 1200px) {
	.member-heading {
	padding-left: 5%;
}
}
@media screen and (max-width: 1340px) {
.member-name {
	color: white;
  font-size: 30px;
line-height: 43px;
font-weight: bold;
	padding-bottom: 20px;
}
}
@media screen and (max-width: 900px) {
.members .prev-member {
	    padding-top: 120px !important;
}
.members .next-member {
	    padding-top: 120px !important;
}
}
/*---------------Publications page-----------------*/
.page-id-280 .img-left .text h2 {
padding-top: 20px !important;
padding-bottom: 25px !important;
}
.page-id-280 .img-left .text .padding {
padding-bottom: 20px !important;
    padding-top: 15px !important;
}
/*--------------COLUMNS SECTION-------------------*/
.columns {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.column-heading {
	    text-align: left;
    padding-bottom: 20px;
}
.columns .cols-grid {
  padding: 50px 7% 150px 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
      text-align: center;
}
.columns .cols-title {
	    padding-top: 180px;
    padding-left: 5%;
}
.columns .col {
	padding: 0px 40px;
}
.columns .col p {
	text-align: left;
}
@media screen and (max-width: 1300px) {
  .columns .cols-grid {
  grid-template-columns: repeat(2, 1fr);
}
	.columns .cols-title {
    padding-left: 0%;
}
	.columns .cols-grid {
  padding: 50px 2% 150px 2%;
}
.columns .cols-grid .col {
  padding-top: 30px;
}
}
@media screen and (max-width: 790px) {
  .columns .cols-grid {
  grid-template-columns: repeat(1, 1fr);
      padding: 50px 0% 30px 0%;
}
	.columns .col {
	padding: 0px;
}
	.column-heading {
		font-size: 28px;
	}
	.columns .cols-title {
		padding-top: 20px;
	}
}
/*--------------MAGAZINE SLIDER SECTION-------------------*/
.magazine-slider-section .wrap {
display: flex;
justify-content: flex-end;
}
.magazine-slider-section .text {
	padding-right: 2%;
	padding-left: 2%;
}
.magazine-slider-section .text p {
	width: 480px;
}
@media screen and (max-width: 1660px) {
.magazine-slider-section .text p {
	width: 400px;
}
}
@media screen and (max-width: 1200px) {
	.page-id-280 .magazine-slider-section .flexi-container-t-b-l-r {
padding: 0px 1% 80px 1%;
	}
.magazine-slider-section .text {
    padding-right: 2%;
    padding-left: 3%;
}
}
.magazine-slider-section .flexi-container-t-b-l-r {
padding: 80px 1% 80px 1%;
}

.magazine-slider {
   width: 1020px;
}
.magazine-slider-section .flex-list {
    display: flex;
    justify-content: flex-start;
}
.magazine-slider-section .flex-list .list {
    padding-right: 20px;
}

.magazine-slider .slider-img {
	max-width: 330px;
	max-height: 407px;
} 
.magazine-slider .slider-img img {
	width: 100%;
    height: 100%;
} 
.magazine-slider-container {
	display: flex;
max-width: 1020px;
	max-height: 410px;
margin-top: 115px;
}
.magazine-slider .text {
padding-right: 20px;
}
.magazine-sider-button {
max-width: 55px;
position: relative;
    left: -4.5em;
    top: 12em;
}
/* .magazine-slider .slider-img.slick-active {    
margin-right: 25px;
} */
 .magazine-slider  .slick-slide {
      margin: 0 15px;
  }
.magazine-slider  .slick-list {
      margin: 0 -15px;
  }
@media screen and (max-width: 1500px) {
	.magazine-slider {
   width: 690px;
}
.magazine-slider-container {
max-width: 690px;
}
}
@media screen and (max-width: 1200px) {
	.magazine-slider-section .wrap {
display: block;
}
.magazine-slider-section .flexi-container-t-b-l-r {
padding: 80px 8% 80px 8%;
}
.magazine-slider-section .text p {
	width: 100%;
}
.magazine-slider-container {
    margin-top: 40px;
}
	.magazine-slider {
   width: 1020px;
}
.magazine-slider-container {
max-width: 1020px;
}
}
@media screen and (max-width: 1100px) {
	.magazine-slider {
   width: 690px;
}
.magazine-slider-container {
max-width: 690px;
}
}
@media screen and (max-width: 800px) {
	.magazine-slider {
   width: 330px;
		margin: auto;
}
.magazine-slider-container {
max-width: 330px;
}
.magazine-slider .slider-img {
	width: 100%;
	height: auto;
} 
.magazine-slider .slider-img.slick-active {
    margin-right: 0px;
}
}
@media screen and (max-width: 400px) {
	.magazine-slider {
   width: 100%;
}
.magazine-slider-container {
max-width: 100%;
}
.magazine-slider .slick-slide {
     margin: 0 0px; 
}
.magazine-slider .slick-list {
     margin: 0 0px; 
}
}
/*-----------------------TEXT BLOCK -------------------------------*/
.text_block .button-blue {
margin: auto;
}
.text_block p, .text_block ul, .text_block il, .text_block h2,  .text_block h3 {
	max-width: 60%;
    display: block;
    margin: auto;
}
@media screen and (max-width: 1000px) {
	.text_block p, .text_block ul, .text_block il, .text_block h2,  .text_block h3 {
	max-width: 100%;
    display: block;
    margin: auto;
}
}

a {
color: #1D3557;
font-weight: bold;
}
.page-id-204 .no-padding {
    padding-top: 0px;
}
.text_block_wide .button-container a {
	margin: auto;
}
.text_block_wide ul {
	margin-left: 20px;
}
/*-------------------.----SUBPAGE HERO-----------------------------------*/

.subpage-hero .gradient {
    background-position: center;
	background-size: cover;
position: relative;
    z-index: 2;
}
.subpage-hero {
background-position: center bottom !important;
position: relative;
}
.subpage-hero .hero-text-wrap {
text-align: center;
}
.subpage-hero .button-container a {
margin: auto;
}
.subpage-hero .hero-wave-bottom {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -2px;
    display: flex;
	justify-content: center;
min-height: 140px;
	overflow: hidden;
}
.subpage-hero .hero-wave-bottom img {
	width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    min-width: 1200px;
}
@media screen and (max-width: 1200px) {
.subpage-hero .hero-wave-bottom img {
	width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    min-width: 0px;
}
}
.subpage-hero h1 {
	padding-bottom: 20px;
}
.subpage-hero .button-container {
margin-top: 40px !important;
}
.subpage-hero p {
	max-width: 800px;
    margin: auto;
    display: block;
}
@media screen and (max-width: 1200px) {
	.subpage-hero p {
	max-width: 800px;
    margin: auto;
    display: block;
}
}

/*PUBLICATIONS PAGE*/
@media screen and (max-width: 1200px) {
.page-id-280 .img-left .flexi-container-t-b {
    padding: 80px 0% 0px 0px;
	} 
}
.page-id-280 .hero-text-wrap {
    padding: 150px 10% 15% 10%;
}
@media screen and (max-width: 710px) {
.page-id-280 .hero-text-wrap {
    padding: 150px 10% 37% 10%;
}
}
.page-id-280 .hero-text-wrap h1 {
    padding-bottom: 40px;
}
.page-id-280 .hero-text-wrap p {
    width: 75%;
	margin: auto;
}
.page-id-280 .img-left:nth-child(1) .image-container img {
	position: relative;
    top: 90px;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1200px) {
.page-id-280 .img-left:nth-child(1) .image-container img {
	position: inherit;
    top: 0px;
}
}
.page-id-208 main {
overflow-y: hidden;
}
.publications-txt {
padding-bottom: 20px;
    width: 75%;
    margin: auto;
    font-family: itc-officina-sans-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 32px;
    color: #fff;
}
.h2-pad {
padding-top: 60px;
}
@media screen and (max-width: 800px) {
	.publications-txt {
    width: 100%;
}
.page-id-280 .hero-text-wrap p {
    width: 100%;
}
}
@media screen and (max-width: 420px) {
.subpage-hero .hero-text-wrap h1 {
    font-size: 40px;
}
}
@media screen and (max-width: 350px) {
.page-id-280 .subpage-hero {
    min-height: 1000px;
}
}
/*contact form section*/
.contact_form {
	width: 100%;
	max-width: 800px;
	margin: auto;
    padding-top: 40px;
}
.contact_form .form-half {
	width: 48%;
	display: inline-block;
	margin-right: 10px;
}
.contact_form .form-full {
	width: 100%;
	padding-right: 15px;
}
.contact_form input {
	border: 1px solid #cff0ff;
	padding: 10px 20px;
	font-family: itc-officina-sans-pro, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: grey;
	margin-bottom: 15px;
	width: 100%;
}
.contact_form input::placeholder {
	font-family: itc-officina-sans-pro, sans-serif;
	font-weight: 400;
	font-size: 14px !important;
	color: grey !important;
}
.contact_form input:focus {
	outline: none;
}
.contact_form textarea {
	border: 1px solid #cff0ff;
	padding: 10px 20px;
	font-family: itc-officina-sans-pro, sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: grey;
	margin-bottom: 15px;
	resize: none;
	width: 100%;
	height: 150px;
}
.contact_form textarea:focus {
	outline: none;
}
.contact_form input.button-blue {
    border: 2px solid #1C9EDA !important;
    color: #1D3557  !important;	
	font-weight: bold;
	width: auto;
    margin: auto;
    display: block;
	background-color: white;
	cursor: pointer;
	padding: 20px 40px;
    width: 180px;
    font-size: 16px;
	transition: 0.3s;
}
.contact_form input.button-blue:hover {
    border: 2px solid #1C9EDA !important;
    color: #fff  !important;	
	background-color: #1C9EDA;
	transition: 0.3s;
}
@media screen and (max-width: 660px) {
	.contact_form .form-half {
	width: 100%;
	display: block;
	margin-right: 0px;
}
	.contact_form .form-full {
	padding-right: 0px;
}
}
/*logo slider*/ 
.logo-slider-container {
	padding-top: 40px;
	    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-slider-container .prev-logo {
	margin-right: 20px;
}
.logo-slider-container .next-logo {
	margin-left: 20px;
}
.logo-slider {
max-width: 1400px;
    width: 100%;
    height: 300px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	display: flex;
    align-items: center;
	justify-content: center;
}
.logo-slider .slick-list {
	max-width: 100%; 
    width: 100%;
	max-height: 150px;
}
.logo-slider img {
max-height: 130px;
	width: 100%;
height: auto;
}

.logo-slider .slick-slide {
      margin: 0 25px;
  }
.logo-slider .slick-list {
    margin: 0 -25px;
}
.logo-slider .slick-track {
align-items: center;
    display: flex;
}
.single-slide-logo {
	max-width: 300px;
    max-height: 130px;
        display: flex !important;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 1250px) {
.logo-slider {
    max-width: 1000px;
    width: 90%;
	}
}
@media screen and (max-width: 900px) {
.logo-slider {
    height: 200px;
	}
}
@media screen and (max-width: 700px) {
.logo-slider-container .prev-logo {
	margin-right: 10px;
	margin-left: 10px;
}
.logo-slider-container .next-logo {
	margin-right: 10px;
	margin-left: 10px;
}
}
@media screen and (max-width: 500px) {
.logo-slider {
    width: 80%;
	}
}
/*text img*/
.txt-img .flip .text-block {
	width: 40%;
	margin-left: 14%;
	padding-right: 30px;
}
.txt-img .flip .image-container {
	width: 60%;
	text-align: end;
}
.txt-img  .flip .image-container img {
	width: 100%;
	height: auto;
	max-height: 450px;
}
.txt-img .button-container {
	    margin-bottom: 20px;
}
.txt-img h2 {
	padding-bottom: 30px;
}
.txt-img .margin {
margin-left: 14%;
}
@media screen and (max-width: 1450px) {
.txt-img .flip .text-block {
	padding-left: 5%;
		margin-left: 0;
}
.txt-img .margin {
margin-left: 5%;
}
}
@media screen and (max-width: 1200px) {
.txt-img .flip .text-block {
	width: 100%;
		padding-left: 5%;
	padding-right: 5%;
}
.txt-img .flip .image-container {
	width: 100%;
	padding-top: 10px;
}
}
/*feaure slider*/
#features_slider h2 {
	padding-bottom: 40px;
}
.feature-slider-container {
    max-width: 1000px;
    margin: auto;
}
.feature-slider img {
	width: 100%;
	height: auto;
	max-height: 315px;
	max-width: 330px;
}
.feature-slider .slick-slide {
      margin: 0 25px;
  }
.feature-slider .slick-list {
    margin: 0 -25px;
}
.single-feature {
display: flex;
    flex-direction: column;
    align-items: center;
	max-width: 330px;
}
@media screen and (max-width: 1700px) {
.single-feature h2 {
font-size: 28px;
}
}
#features_slider {
	position: relative;
}
.next-feature {
	position: absolute;
    right: 5%;
        top: 58%;
}
.prev-feature {
    position: absolute;
    left: 5%;
        top: 58%;
}
@media screen and (max-width: 1700px) {
.feature-slider-container {
	padding: 0px 5%;
}
}
@media screen and (max-width: 1300px) {
.feature-slider-container {
	padding: 0px 0%;
}
	.next-feature {
	position: absolute;
    right: 15px;
        top: 58%;
}
.prev-feature {
    position: absolute;
    left: 15px;
        top: 58%;
}
}
@media screen and (max-width: 1300px) {
	.next-feature {
	position: absolute;
    left: 55% !important;
        top: 92%;
}
.prev-feature {
    position: absolute;
    left: 45%;
        top: 92%;
}
}
@media screen and (max-width: 1080px) {
	.single-feature h2 {
	font-size: 30px;
	}
}
@media screen and (max-width: 500px) {
	.single-feature h2 {
	text-align: center;
	}
	.single-feature img {
	margin: auto;
	}
		.next-feature {
	position: absolute;
    left: 60% !important;
        top: 92%;
}
.prev-feature {
    position: absolute;
    left: 30%;
        top: 92%;
}
}
/*three img slider*/
#three_img_slider .text-block {
	padding: 0px 5% 80px 5%;
}
#three_img_slider .text-block h2 {
	padding-bottom: 20px;
}
#three_img_slider .text-block p {
	max-width: 800px;
	display: block;
	margin: auto;
}
.team-slider .slick-slide {
      margin: 0 25px;
  }
.team-slider .slick-list {
    margin: 0 -25px;
}
.img-slider .slick-slide {
      margin: 0 25px;
  }
.img-slider .slick-list {
    margin: 0 -25px;
}
#three_img_slider .slick-list {
	z-index: 2;
}
#three_img_slider .slick-dots li button:before {
	font-size: 14px !important;
}
#three_img_slider .slick-dots {
	top: -60px;
	z-index: 1;
}
#three_img_slider .slider-img-slide { 
	height: 372px;
}
#three_img_slider .slider-img-slide img {
	max-width: 600px;
	max-height: 400px;
	width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
#three_img_slider .team-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: 600px;
    max-height: 400px !important;
    min-height: 0;
}
#three_img_slider .team-slide p {
	padding-bottom: 0px;
	font-size: 16px;
    line-height: 22px;
}
.team-slide {
	max-height: 640px;
}
.team-slider .slick-track
{
    display: flex !important;
	height: 400px;
}
.team-slider .slide-overlay {
	height: 100%;
}
.team-slider .slick-slide {
    height: 100% !important;
	min-height: 0;
}
.team-slide {
	position: relative;
	background-color: #008CBA;
	min-height: 450px;
}
.team-slide a {
	color: white;
	padding-top: 5px;
	transition: 0.3s;
}
.team-slide a:hover {
	color: #f1f1f1;
	transition: 0.3s;
	text-decoration: underline;
}
.team-slide:hover img {
  opacity: 0.6 !important;
}

.team-slide .slide-text {
	opacity: 0;
	position: absolute;
    bottom: 0px;
    padding: 20px;
	height: 100%;
}
.team-slide .slide-text .name {
	font-size: 24px !important;
	line-height: 22px;
}
.slide-text p {
	color: white;
	padding-bottom: 10px;
}
.team-slide:hover .slide-text {
	opacity: 1 !important;
}
.slide-overlay {
	background-color: #008CBA;	
}
.page-id-532 #three_img_slider .flexi-container-t-b {
    padding: 40px 0% 40px 0px;
}
@media screen and (max-width: 1600px) {
#three_img_slider .slider-img-slide { 
	height: 320px;
}
}
@media screen and (max-width: 1100px) {
	.team-slider .slick-slide {
      margin: 0 15px;
  }
.team-slider .slick-list {
    margin: 0 -15px;
}
.img-slider .slick-slide {
      margin: 0 15px;
  }
.img-slider .slick-list {
    margin: 0 -15px;
}
.team-slide .slide-text .name {
	font-size: 20px !important;
}
	.slide-text p {
	color: white;
	padding-bottom: 10px;
font-size: 16px;
}
}
/*video section - no border*/
#video_no_border .video-container { 
	width: 100%;
		min-width: 800px;
    height: 430px;
}
#video_no_border .text h2 {
	padding-top: 0;
}
#video_no_border .image-container {
	position: relative;
}
@media screen and (max-width: 1500px) {
	#video_no_border .video-container { 
	width: 100%;
		min-width: 0px;
}
}
@media screen and (max-width: 1250px) {
	#video_no_border .video-container { 
	width: 100%;
		min-width: 0px;
		height: 460px;
}
}
@media screen and (max-width: 1200px) {
	#video_no_border .video-container { 
	width: 100%;
    height: 400px;
}
	#video_no_border .image-container {
	position: relative;
    top: 0px;
}
	#video_no_border .text h2 {
	padding-top: 40px;
}
	#video_no_border .video-container {
    width: auto;
    height: 400px;
    margin: 0px 5%;
}
.play-icon {
    width: 90px;
    left: calc(50% - 40px);
	}
}
/*video section - with border*/
#video_with_border .video-container { 
	width: 750px;
    height: 350px;
}
#video_with_border .image-container {
	display: flex;
	align-content: center;
	align-items: center;
}
@media screen and (max-width: 1500px) {
	#video_with_border .video-container { 
	width: 600px;
    height: 350px;
}
}
@media screen and (max-width: 1200px) {
	#video_with_border .video-container { 
	width: 100%;
    height: 350px;
}

}
/*wave bg two images*/
#two_circles {
	position: relative;
}
#two_circles img {
	border-radius: 50%;
    width: 390px;
    height: 390px;
    object-fit: cover;
	position: absolute;
}
#two_circles p {
	max-width: 650px;
	margin: auto;
}
#two_circles .flexi-container-t-b-l-r {
    padding: 180px 15%;
}
@media screen and (max-width: 1700px) {
#two_circles .flexi-container-t-b-l-r {
    padding: 180px 5%;
}
}
.circle-1 {
top: 50px;
    right: 30px;
	max-width: 393px;
	max-height: 393px;
}
.circle-2 {
	right: 420px;
    top: 300px;
	max-width: 207px;
	max-height: 207px;
}
#two_circles h2 {
	padding-bottom: 20px;
}
@media screen and (max-width: 1600px) {
.circle-1 {
   max-width: 300px;
    max-height: 300px;
	top: 100px;
}
.circle-2 {
	top: 300px;
	right: 320px;
}
}

@media screen and (max-width: 1340px) {
.circle-1 {
	display: none;
}
.circle-2 {
	display: none;
}
}
@media screen and (max-width: 880px) {
.circle-1 {
	top: 60%
}
}
@media screen and (max-width: 770px) {
.circle-1 {
	top: 65%
}
}
@media screen and (max-width: 640px) {
#two_circles img {
	position: relative;
}
	.circle-1 {
		max-width: 207px;
    max-height: 207px;
		top: 20px;
		left: 0;
		right: 0;
    display: block !important;
    margin: auto;
	}
	.circle-2 {
	display: none;
}
}
.page-id-118 .txt-img h2 {
    margin-left: 0%;
}
/*three circles*/
#three_circles .images {
	position: relative;
	width: 50%;
	min-height: 500px;
}
#three_circles .wave-text {
  padding-left: 15%;
	padding-top: 5%;
	max-width: 50%;
}
#three_circles .images img {
	border-radius: 50%;
	object-fit: cover;
	width: 100%;
    height: 100%;
}
.circles-1 {
position: absolute;
	  bottom: -10%;
    right: 30px;
	max-width: 255px;
	max-height: 255px;
}
.circles-2 {
position: absolute;
  right: 265px;
	max-width: 483px;
	max-height: 483px;
}
.circles-3 {
position: absolute;
	bottom: -15%;
    right: 730px;
	max-width: 255px;
	max-height: 255px;
}
@media screen and (max-width: 1700px) {
#three_circles .wave-text {
  padding-left: 5%;
}
}
@media screen and (max-width: 1570px) {
.circles-1 {
display: none;
}
.circles-2 {
right: 100px;
}
.circles-3 {
    right: 550px;
	display: none;
}
}
@media screen and (max-width: 1200px) {
#three_circles .wave-text {
    padding-right: 5%;
	max-width: 100%;
}
	.circles-2 {
		position: relative;
    display: block;
    margin: auto;
    right: 0;
		    width: 400px !important;
    height: 400px !important;
	}
	.circles-3 {
    display: none;
}
	#three_circles .images {
    width: 100%;
		padding: 0px 5%;
		margin-top: 50px;
	}
}
@media screen and (max-width: 470px) {
	.circles-2 {
		    width: 300px !important;
    height: 300px !important;
	}
}
@media screen and (max-width: 360px) {
	.circles-2 {
		    width: 250px !important;
    height: 250px !important;
	}
}
@media screen and (max-width: 1200px) {
	.circles-2 {
		width: 100%;
		height: auto;
	}
}

.pad-lr {
  padding: 0px 15%;
}
.three-columns {
	padding: 80px 15%;
	    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 25px;
}
.three-col {
	color: #1C9EDA;
	max-width: 425px;
}
.three-col h2 {
	color: #1C9EDA;
}

.three-col p {
	color: #1D3557;
}
@media screen and (max-width: 1700px) {
.pad-lr {
  padding: 0px 5%;
}
	.three-columns {
	padding: 60px 5%;
	}
}
@media screen and (max-width: 900px) {
.three-columns { 
grid-template-columns: 1fr;
	}
	.three-col {
    max-width: none;
    padding-bottom: 30px;
	}
}
#two-img-text img {
	width: 500px;
	height: 380px;
}
#two-img-text .wrap {
	justify-content: end;
}
.first-img {
	padding-right: 20px;
}
@media screen and (max-width: 1575px) {
.first-img {
	display: none;
}
}
@media screen and (max-width: 1200px) {
.first-img {
	display: inline-block;
	padding-right: 0;
}
	#two-img-text .img-container {
		display: flex;
    justify-content: space-evenly;
	}
}
@media screen and (max-width: 950px) {
.first-img {
	display: none;
}

#two-img-text .img-container {
	    padding: 0px 5%;
}
}
/*two img slider*/
#two-img-slider {
	position: relative;
}
#two-img-slider .wrap {
	justify-content: space-between;
	align-items: center;
}
.next-img {
	position: absolute;
    right: 5%;
}
.two-slide-container {
	height: 320px;
    width: 900px;
	position: relative;
    top: -20px;
}
.two-img-slide {
	width: 427px;
    height: 320px;
}
.two-img-slide img {
	width: 100%;
    height: auto;
}
.two-slide-container .slick-slide {
      margin: 0 20px;
  }
.two-slide-container .slick-list {
    margin: 0 -20px;
}
@media screen and (max-width: 1550px) {
	.two-slide-container {
    width: 470px;
}
	#two-img-slider .wrap {
		justify-content: space-evenly;
	}
}
@media screen and (max-width: 1320px) {
.next-img {
	right: 3%;
}
}
@media screen and (max-width: 1200px) {
#two-img-slider.img-left .text {
		padding: 0px 0%;
}
	.two-slide-container {
    padding-top: 30px;
}
	.next-img {
    right: 10px;
		top: 72%;
}
	#two-img-text img {
	width: 100%;
	height: auto;
	}
	.two-slide-container {
    width: 100%;
}
	.two-slide-container {
    top: 0px;
}
}
@media screen and (max-width: 850px) {
	.next-img {
		top: 69%;
}
}
@media screen and (max-width: 700px) {
	.next-img {
		top: 74%;
    right: 25px;
}
	.two-slide-container {
    width: 90%;
}
}
@media screen and (max-width: 480px) {
		.next-img {
    right: 10px;
}
}
@media screen and (max-width: 400px) {
		.two-slide-container {
    width: 80%;
}
	.next-img {
		top: 71%;
	}
}
/*grid*/
.service-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.grid-single:nth-child(even) {
	background-color: #1C9EDA;
}
/* .grid-single:nth-child(1) .grid-text {
position: relative;
	top: -70px;
} */
.grid-single:nth-child(even) a {
	color: white;
}
.grid-single:nth-child(odd) a {
	color: #1D3557;
}
.grid-single:nth-child(1){
	animation-delay: 0.2s;
}
.grid-single:nth-child(2){
	animation-delay: 0.4s;
}
.grid-single:nth-child(3){
	animation-delay: 0.6s;
}
.grid-single:nth-child(4){
	animation-delay: 0.8s;
}
.grid-single:nth-child(5){
	animation-delay: 1s;
}
.grid-single:nth-child(6){
	animation-delay: 1.2s;
}
@media screen and (max-width: 600px) {
	main {
		animation-delay: 0.2s !important;
	}
}
.white-txt {
	color: white !important;
}
.grid-single {
	padding: 95px 65px;
	position: relative;
}
.grid-link-box {
	padding-top: 20px;
	    position: absolute;
    bottom: 60px;
}
.grid-icon {
	max-height: 80px;
	max-width: 80px;
	padding-bottom: 20px;
}
.grid-single:nth-child(even) h2, .grid-single:nth-child(even) ul li {
	color: white !important;
}
.grid-single:nth-child(even) p {
	color: white !important;
}
.grid-single:nth-child(even) .grid-link-box a::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/after-white.png);
    content: "";
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 13px;
    position: absolute;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.grid-single:nth-child(odd) .grid-link-box a::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/after-black.png);
    content: "";
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 13px;
    position: absolute;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.grid-single .grid-link-box a:hover::after {
  --webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}
@media screen and (max-width: 1440px) {
.grid-single {
	padding: 60px 30px;
}
	.grid-link-box {
    bottom: 30px;
}
}
@media screen and (max-width: 1100px) {
.service-grid {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
}
	.grid-single:nth-child(3) {
	background-color: #1C9EDA;
}
	.grid-single:nth-child(3) h2 {
color: white !important;
}
.grid-single:nth-child(3) a {
color: white !important;
}
	.grid-single:nth-child(4) {
	background-color: #fff !important;
		color: #1D3557 !important;
}
	.grid-single:nth-child(4) h2 {
		color: #1D3557 !important;
}
	.grid-single:nth-child(4) a {
		color: #1D3557 !important;
}
	.grid-single:nth-child(even) p {
    color: #1D3557 !important;
}
}
@media screen and (max-width: 700px) {
.service-grid {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}
	.grid-single:nth-child(even) p {
    color: #fff !important;
}
	.grid-single:nth-child(3) {
	background-color: #fff;
}
	.grid-single:nth-child(3) h2 {
color: inherit !important;
}
.grid-single:nth-child(3) a {
color: #1D3557 !important;
}
	.grid-single:nth-child(4) {
	background-color: #1C9EDA !important;
		color: #fff !important;
}
	.grid-single:nth-child(4) h2 {
		color: #fff !important;
}
	.grid-single:nth-child(4) a {
		color: #fff !important;
}
}
/*faq*/
#faq ul {
	padding-left: 20px;
}
.questions {
	width: 60%;
	display: block;
	margin: auto;
	padding-top: 30px;
}
.question {
    width: 100%;
    text-align: left;
    padding: 20px;
	background-color: #fff;
	border: 1px solid #DDF1FA;
	position: relative;
}
.question.active {
	background-color: #DDF1FA;
}
.answer {
	display: none;
	background-color: #DDF1FA;
	padding: 0px 20px 20px 20px;
}
.answer.hide {
display: none;
}
.answer.show {
display: block !important;
	background-color: #DDF1FA;
}
.question:after {
  content: '\002B';
	/*background-image: url('images/x.png'); */
  color: #444;
	font-size: 20px;
    top: 20px;
    position: absolute;
	right: 30px;

}

.question.active:after {
  content: "\00D7";
	color: #444;
/*	background-image: url('images/plus.png');*/
}
.questions .button-container {
text-align: right;
}

.questions .button-container a {
	font-size: 16px;
    margin-right: 22px;
	color: #1D3557;
}
.questions .button-container a::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/after-black.png);
    content: "";
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 13px;
    position: absolute;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}
.questions .button-container a:hover::after {
  --webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}
@media screen and (max-width: 1150px) {
	.questions {
	width: 100%;
}
}
@media screen and (max-width: 650px) {
	.questions .button-container {
    text-align: right !important;
    display: block !important;
    margin-top: 20px !important;
}
}
@media screen and (max-width: 400px) {
	.questions .faq p {
	font-size: 16px;
}
	.question:after {
    right: 10px;
	}
}
/*BLOG*/
.page-id-356 .hero p {
    color: #ffffff !important;
    margin: auto;
    max-width: 900px;
}
#blog .tab-content-blog {
	box-shadow: none;
	padding: 0 !important;
}
#blog .blog-container {
	    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.blog-post {
	box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
	padding: 25px;
	display: flex;
}
.blog_info {
	padding-left: 20px;
    width: 50%;
}
.blog_img {
    display: flex;
    align-items: end;
    align-content: center;
    justify-content: end;
	    width: 50%;
}
.blog_img img {
width: 100%;
    margin: auto;
	max-height: 250px;
}
.excerpt {
	padding: 10px 0px;
}
.date {
	color: #1C9EDA;
}
.blog_info a {
	font-weight: bold !important;
}
.blog-nav {
	background-color: #1C9EDA;
color: white;
	padding: 20px 30px;
	    display: flex;
    justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.blog-nav p {
	color: white;
font-size: 24px;
}
.blog-nav ul li {
	font-size: 24px;
	cursor: pointer;
}
.tab-link-blog p {
	position: relative;
    top: 3px;
}
.blog-nav .fliter-buttons-blog {
	    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid white;
	width: 440px;
}
 .tab-link-blog.active p {
  border-bottom: 6px solid #fff;
  padding-bottom: 3px;
  width: fit-content;
  margin: auto;
}
.tab-content-blog {
  display: none;
}
.tab-content-blog.current{
  display: block;
}
@media screen and (max-width: 1035px) {
#blog .blog-container {
    grid-template-columns: 1fr;
}
#blog	.alm-reveal {
	    display: grid;
    grid-template-columns: 1fr !important;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
	.blog-post {
    align-items: center;
	}
	.blog_img {
    width: auto;
    height: auto;
	}
	.blog_img img {
		width: 100%;
		height: auto;
    max-height: 400px;
		max-width: 400px;
}
}
@media screen and (max-width: 1022px) {
	.blog-nav {
	flex-direction: column;
}
	.blog-nav ul {
		    margin-top: 30px !important;
	}
}
@media screen and (max-width: 630px) {
	.blog-post {
    flex-direction: column;
	}
	.blog_info {
	padding-left: 0px;
    width: 100%;
}
.blog_img {
	    width: 100%;
	margin-bottom: 20px;
	max-height: none;
}
	.blog_img img {
    width: 100%;
    margin: auto;
    height: auto;
}
	.blog-nav ul {
		width: 100% !important;
	}
}
@media screen and (max-width: 555px) {
	.blog-nav ul {
flex-direction: column;
    border-bottom: none !important;
}
		.blog-nav ul li p {
		text-align: center;
    padding-top: 10px;
			width: fit-content;
    margin: auto;
}
	.blog-nav ul {
		    margin-top: 10px !important;
	}
	 .tab-link-blog p {
  border-bottom: 1px solid #fff;
}
}

.alm-btn-wrap {
	margin-top: 20px;
    text-align: end;
}
.blog-btn {
	    border: none;
    background-color: transparent;
    color: #1C9EDA;
    font-weight: 700 !important;
  font-family: itc-officina-sans-pro, sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
}
.alm-reveal {
	    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
	margin-top: 20px;
}
/*blog post*/
.single-post .hero h1 {
	display: block;
    max-width: 800px;
    margin: auto;
}
.single-post #article-content a {
	font-weight: 400 !important;
	color: #1C9EDA !important;
}
#article-content ol {
	padding-left: 20px;
}
#article-content ol li {
	font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 32px;
    color: #1D3557;
}
.single-post .text_block p {
    max-width: 80%;
    display: block;
    margin: auto;
	color: #1D3557;
	font-size: 20px !important;
}
.single-post .subpage-hero p {
    font-size: 22px;
}
.single-post .text_block .blue-flexi-container {
    padding: 0px 15% 30px 15%;
}
@media screen and (max-width: 1200px) {
	.single-post .text_block .blue-flexi-container {
    padding: 0px 5% 30px 5%;
}
	.single-post .text_block p {
    max-width: 100%;
}
}

#article-content p {
	padding: 15px 0px;
	margin-bottom: 0 !important;
}
#article-content .flexi-container-t-b-l-r {
    padding: 30px 15% 30px 15%;
}
@media screen and (max-width: 1200px) {
#article-content .flexi-container-t-b-l-r {
    padding: 0px 10% 30px 10%;
}
}
@media screen and (max-width: 700px) {
#article-content .flexi-container-t-b-l-r {
    padding: 0px 5% 30px 5%;
}
}
.blog-comments {
	background-repeat: no-repeat;
	background-size: cover;
}
.blog-author {
	padding-bottom: 30px;
    border-bottom: 1px solid #1C9EDA;
}
.comments-form {
	padding-top: 30px;
}
.left-side img {
	height: 168px;
    width: 168px;
	border-radius: 100%;
}
.blog-author {
	display: flex;
}
.blog-author .button-blue {
	max-width: 168px !important;
}
.left-side {
	    display: flex;
    flex-direction: column;
	margin-right: 30px;
	min-width: 168px;
}
.author-socials-container {
	display: flex;
	justify-content: space-between;
}
.right-side-bottom {
	padding-top: 20px;
}
.right-side-top {
	padding-top: 40px;
}
.author-socials {
	padding-left: 20px;
	height: 30px;
	text-decoration: none;
}
.author-socials img {
	height: 25px;
}
.blog-link {
	padding: 15px 40px!important;
    width: 168px !important;
	text-decoration: none;
}
.left-side .btn-container {
	margin-top: 20px;
}
.blog-comments .flexi-container-t-b-l-r {
    padding: 80px 15%;
}
@media screen and (max-width: 1200px) {
.blog-comments .flexi-container-t-b-l-r {
    padding: 80px 10%;
}
}
@media screen and (max-width: 700px) {
.blog-comments .flexi-container-t-b-l-r {
    padding: 40px 5%;
}
}
@media screen and (max-width: 770px) {
	.blog-author {
	flex-direction: column;
}
	.left-side {
    flex-direction: row;
    justify-content: space-between;
		align-items: center;
	}
}
@media screen and (max-width: 470px) {
.author-socials-container {
    flex-direction: column;
}
	.authors-socials {
		padding-top: 15px;
	}
	.authors-socials a {
		padding-right: 10px;
		padding-left: 0;
	}
}
@media screen and (max-width: 440px) {
.left-side {
    flex-direction: column;
	}
}
.comment-reply-title {
	font-size: 18px;
    font-weight: bold;
}
.logged-in-as {
	padding-bottom: 10px;
	font-size: 18px;
}
.comments-form .form-submit input {
	border: 2px solid #1C9EDA;
    color: #1D3557;
    border-radius: 20px;
    text-align: center;
	background-color: transparent;
	padding: 20px 40px;
    position: relative;
    overflow: hidden;
    display: block;
font-weight: 700;
    cursor: pointer;
	transition: 0.3s;
}
.comments-form .form-submit input:hover {
	border: 2px solid #fff;
    color: #fff;
	background-color: #1C9EDA;
transition: 0.3s;
}
.comments-form .comment-form-comment {
	display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.comments-form .comment-form-author {
	display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.comments-form .comment-form-email {
	display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}
.comments-form .comment-form-url {
	display: none;
}
.comments-form .comment-form-email input {
	border: none;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    padding: 10px;
    font-size: 16px;
	font-family: itc-officina-sans-pro, sans-serif;
font-weight: 400;
font-style: normal;
}
.comments-form .comment-form-author input {
	border: none;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    padding: 10px;
    font-size: 16px;
	font-family: itc-officina-sans-pro, sans-serif;
font-weight: 400;
font-style: normal;
}
.comments-form textarea {
	border: none;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    padding: 20px;
    font-size: 16px;
    height: 150px;
	font-family: itc-officina-sans-pro, sans-serif;
font-weight: 400;
font-style: normal;
}
.comments-form textarea:focus {
	border: 1px solid #1C9EDA;
    outline: none;
}
.comments-form input:focus {
	border: 1px solid #1C9EDA;
    outline: none;
}
.comments-form .comment-form-cookies-consent {
	padding-bottom: 20px;
}
.logged-in-as a {
	font-size: 18px;
}
.comment-form-right {
	margin-top: 30px;
}
@media screen and (max-width: 1589px) {
	.comment-form-right {
	margin-top: 65px;
}
}
@media screen and (max-width: 800px) {
.comment-form-right {
	display: block !important;
    min-width: 200px !important;
    width: 100% !important;
	margin-top: 0px !important;
	}
.comment-form-left {
	display: block !important;
    min-width: 200px !important;
    width: 100% !important;
	float: none !important;
    margin-right: 0 !important;
	}
}
/*events*/
.event-load-btn {
	width: 100%;
	display: flex;
	justify-content: end;
	padding-top: 15px;
}
.event-load-btn a {
	font-weight: 700 !important;
}
.page-template-archive-events .blog-nav .fliter-buttons-blog {
    border-bottom: none !important;
    width: 340px;
	margin-right: 15px;
	position: relative;
}
.page-template-archive-events .blog-nav ul li p {
    font-size: 18px !important;
}
.page-template-archive-events .blog-nav ul .event-list p::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/arrow-down.png);
    content: "";
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    margin-top: 15px !important;
    position: absolute;
}
.post-type-archive-events .subpage-hero p {
	font-size: 22px;
}
.post-type-archive-events .blog-nav .fliter-buttons-blog {
    border-bottom: none;
}
.post-type-archive-events .blog-nav .fliter-buttons-blog li p::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/arrow-down.png);
    content: "";
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 15px;
    position: absolute;
}
.search-container {
	    display: inline-flex;
}
.page-template-archive-events .search {
	    margin-right: 10px;
}
.clear {
	height: 20px;
	width: 20px;
}
.page-template-archive-events .search input {
	    padding: 5px;
    border: none;
	color: #1D3557;
}
.page-template-archive-events .search input::placeholder {
	color: #4e5f78;
	font-weight: 300;
}
.page-template-archive-events .search input:focus {
	 outline: none;
}
.page-template-archive-events .search img {
	position: relative;
    top: 5px;
}
.event-list {
	padding: 0px 25px 0px 10px;
	    display: inline-block;
}
.event-dropdown1 {
	display: none;
	position: absolute;
}
.event-dropdown2 {
	display: none;
	position: absolute;
}
.event-dropdown3 {
	display: none;
	position: absolute;
}
.event-dropdown a {
font-size: 18px;
    color: white;
    font-weight: 400 !important;
    display: block;
    padding: 0px 10px;
}
.event-dropdown {
	    width: 131px;
    background-color: #1C9EDA;
	    z-index: 10;
}
.wrap-list:hover .event-dropdown1 {
	display: block;
}

.wrap-list2:hover .event-dropdown2 {
	display: block;
}
.wrap-list3:hover .event-dropdown3 {
	display: block;
}
.page-template-archive-events .blog-nav .fliter-buttons-blog {
    display: inline-block;
}
.wrap-list {
	position: relative;
	width: fit-content;
    display: inline-block;
}
.wrap-list2 {
	position: relative;
	width: fit-content;
    display: inline-block;
}
.wrap-list3 {
	position: relative;
	width: fit-content;
    display: inline-block;
}
.event-cat-title {
	font-weight: bold;
}
@media screen and (max-width: 1022px) {
.page-template-archive-events .blog-nav {
	flex-direction: column;
	}
	.search-container {
    display: inline-flex;
    width: 100%;
		padding-top: 10px;
    justify-content: space-between;
	}
	.blog-nav .search-container ul {
    margin: auto !important;
}
}

@media screen and (max-width: 1022px) {
.search-container {
    flex-direction: column;
	}
	.page-template-archive-events .blog-nav .fliter-buttons-blog {
    width: 100%;
    justify-content: space-evenly;
    margin-right: 0px;
		display: flex;
		    align-items: center;
}
.page-template-archive-events .search {
    margin-right: 0px;
    text-align: center;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 555px) {
.wrap-list {
	margin: auto;
}
	.wrap-list2 {
	margin: auto;
}
	.wrap-list3 {
	margin: auto;
}
}

/*EVENTS SINGLE*/
.single-events .subpage-hero p {
	font-size: 22px;
}
@media screen and (max-width: 1100px){
.single-events .hero-text-wrap {
    padding: 200px 5%;
}
.single-events 	.subpage-hero .button-container {
  margin-bottom: 30px;
}
}
.single-events .txt-img .text-block {
	width: 50%;
    padding-left: 10%;
    padding-right: 30px;
}
@media screen and (max-width: 440px){
.single-events .text-block-wave-bg {
background-color: #cff0ff;
background-image: none !important;
}
	.text-block-wave-bg .wave-bg-text {
    padding: 0px;
}
}
.single-events .heading-set {
    padding-left: 10%;
}
.single-events .map-container {
	width: 50%;
}
.single-events .map-container iframe {
	width: 100%;
	height: 100%;
}
.single-events .text_block .blue-flexi-container {
	padding: 120px 15% 50px 15%;
}
@media screen and (max-width: 1700px) {
.single-events .text_block .blue-flexi-container {
	padding: 60px 5% 50px 5%;
}
	.exhibitors .flexi-container-t-b-l-r {
	padding: 0px 5% 80px 5% !important;
}
}
.exhibitors .flexi-container-t-b-l-r {
	padding: 0px 15% 80px 15%;
}
.scroll-link {
	padding-left: 10%;
	padding-top: 30px;
}
.scroll-link::after {
  display: inline-block;
    margin-left: 8px;
    background-image: url(images/arrow-down-black.png);
    content: "";
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin-top: 15px;
    position: absolute;
}
@media screen and (max-width: 1200px) {
	.single-events .heading-set {
    padding-left: 5%;
}
	.scroll-link {
	padding-left: 5%;
	padding-top: 30px;
}
	.single-events .txt-img .text-block {
	width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}
.single-events .map-container iframe {
	width: 100%;
	height: 400px;
}
.single-events .map-container {
	width: 90%;
    margin: 0px 5%;
    padding-top: 30px;
}
}

.list li a {
	font-size: 16px;
}
.supporting_docs {
	background-color: #cff0ff;
	display: flex;
	justify-content: space-between;
	padding: 20px;
	margin-top: 30px;
	    flex-wrap: wrap;
}
.table-grid {
	    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
	padding: 10px;
}
.table-grid p {
	 max-width: 100% !important;
	padding-left: 10px;
}
.table-grid-row {
border: 1px solid #cff0ff;
}

@media screen and (max-width: 800px) {
.table-grid-row {
grid-template-columns: 1fr;
}
	.table-grid-top {
		grid-template-columns: auto 1fr 1fr;
	}
} 
.logo-slider-2 {
	max-width: 1400px;
    width: 100%;
    height: 300px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-slider-container .prev-logo-2 {
    margin-right: 20px;
}
.logo-slider-container .nexy-logo-2 {
    margin-left: 20px;
}
.logo-slider-2 .slick-list {
    max-width: 100%;
    width: 100%;
    max-height: 250px;
	margin: 0 -25px;
}
.logo-slider-2 .slick-slide {
    margin: 0 25px;
}
.logo-slider-container .next-logo-2 {
    margin-left: 20px;
}
.logo-slider-2 .slick-track {
    align-items: center;
    display: flex;
}
.logo-slider-2 .single-slide-logo {
    max-width: 100%;
    max-height: 100%;
	height: 280px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.logo-slider-2 .single-slide-logo img {
max-height: 250px;
    width: auto;
    height: auto;
}
@media screen and (max-width: 800px) {
.logo-slider-2 .single-slide-logo img {
    width: 90%;
   height: auto;
}
}
@media screen and (max-width: 700px) {
.logo-slider-container .prev-logo-2 {
	margin-right: 10px;
	margin-left: 10px;
}
.logo-slider-container .next-logo-2 {
	margin-right: 10px;
	margin-left: 10px;
}
}
@media screen and (max-width: 1250px) {
.logo-slider-2 {
    max-width: 1000px;
    width: 90%;
	}
}
@media screen and (max-width: 900px) {
.logo-slider-2 {
    height: 250px;
	}
}
@media screen and (max-width: 500px) {
.logo-slider-2 {
    width: 80%;
	}
}
.small-blog .blog-post:nth-child(2) {
	background-color: #1C9EDA;
}
.small-blog .blog-post:nth-child(3) {
	background-color: #1C9EDA;
}
.small-blog .blog-post:nth-child(2) .date {
	color: white;
}
.small-blog .blog-post:nth-child(3) .date {
	color: white;
}
.small-blog .blog-post:nth-child(2) .date {
	color: white;
}
.small-blog .blog-post:nth-child(3) .date {
	color: white;
}
.small-blog .blog-post:nth-child(2) a {
	color: white !important;
}
.small-blog .blog-post:nth-child(3) a {
	color: white !important;
}
@media screen and (max-width: 1050px) {
.page-id-116 #three_columns h2 {
	padding-bottom: 25px;
}
}
@media screen and (max-width: 650px) {
.page-id-116 #three_columns	.flexi-container-t-b {
    padding: 80px 0% 0px 0%;
}
}
.page-id-118 .txt-img h2 {
	padding-bottom: 10px !important;
}
/*Events booking*/
#event-details .button {
    width: 280px;
}
#event-details .wave-bg-text {
	padding-bottom: 0 !important;
}
.wrap-text-new {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.wrap-text-new div {
	padding: 20px 40px 20px 0px;
}
#price-table.text_block p {
   max-width: 100% !important;
}
#price-table.text_block h2 {
   padding-bottom: 20px;
}
#price-table .price-table input {
    padding: 5px;
    width: 100px;
	float: right;
}
.table-container {
	padding-top: 25px;
}
.table-btns {
	height: 45px;
    margin-top: 20px;
    text-align: end;
}
#price-table .price-table {
	width: 100%;
    border: 1px solid #cff0ff;
}
#price-table .price-table td {
    padding: 10px 10px;
    border: 1px solid #cff0ff;
	width: 21%;
	min-width: 130px;
}
.table-top {
	background-color: #cff0ff;
}
#price-table textarea {
	width: 100%;
    height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;
	border: 2px solid #cff0ff;
}
#payment-form textarea:focus {
	border: 2px solid #1C9EDA;
	outline: none;
}
#price-table .supporting_docs {
	margin-bottom: 20px;
}
#payment-form form {
	padding-top: 20px;
}
#payment-form label {
	display: block;
	padding-bottom: 5px;
	font-size: 18px;
}
#payment-form select {
	 width: 400px;
    padding: 10px;
	font-size: 16px;
    border: 2px solid #cff0ff;
	color: #000;
}
#payment-form select:focus {
	border: 2px solid #1C9EDA;
	outline: none;
}
#payment-form input {
	 width: 400px;
    padding: 10px;
	font-size: 16px;
    border: 2px solid #cff0ff;
	margin: 10px 0px;
	color: #000;
	display: block;
}
#payment-form input::placeholder {
	color: #000 !important;
	    font-weight: 300;
		font-size: 16px;
}
#payment-form input:focus {
	border: 2px solid #1C9EDA;
	outline: none;
}
.details2 {
	padding-top: 20px;
	font-size: 18px;
}
#payment-form .supporting_docs {
	margin-top: 10px;
}
#payment-form .btn-blue {
	border: 1px solid #1C9EDA;
	width: 150px;
    color: white;
}
@media screen and (max-width: 750px) {

}
@media screen and (max-width: 600px) {
	#payment-form input {
	 width: 100%;
}
	#payment-form select {
	 width: 100%;
}
}
/*maps*/
.acf-map {
    width: 100%;
    height: 100%;
	filter: grayscale(1);
}
@media screen and (max-width: 1200px) {
	.acf-map {
    height: 450px;
}
}
// Fixes potential theme css conflict.
.acf-map img {
   max-width: inherit !important;
}

/*my cpd*/
.page-id-451 .dash-top .navbar-nav {
	width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0 !important;
}
.page-id-451 .dash-top .navbar-nav li {
	display: inline-block;
    padding: 0px 10px 10px 10px;
}
.page-id-451 .dash-top .navbar-nav li.active a {
	border-bottom: 3px solid #1C9EDA;
}
.page-id-451 .dash-top .navbar-nav li.active a:hover {
	border-bottom: 3px solid #1C9EDA !important;
	color: #1C9EDA;
}
.page-id-451 .dash-top .navbar-nav li a:hover {
	border-bottom: none !important;
	color: #1C9EDA;
}
.resp-table {
	overflow-x: auto;
}
@media screen and (max-width: 505px) {
	.page-id-451 .dash-top .navbar-nav {
	flex-direction: column;
}
}
@media screen and (max-width: 415px) {
	.page-id-451 .tab-content.current button.btn {
	margin-bottom: 10px;
}
}
.page-id-451 .hero {
max-height: 450px;
}
.page-id-451 .hero .hero-text-wrap {
    padding: 11% 10% 8% 10%;
}
@media screen and (max-width: 1700px) {
.page-id-451 .img-left .flexi-container-t-b {
    padding: 0px 0%;
}
}
.page-id-883 #EVENT_SEARCH_TYPE {
	color: white;
    font-size: 24px;
    background-color: #1C9EDA;
    border: none;
    width: 150px;
}
.page-id-883 #EVENT_SEARCH_REGION {
	color: white;
    font-size: 24px;
    background-color: #1C9EDA;
    border: none;
    width: 120px;
}
.page-id-883 .search-container {
    align-items: center;
}
.page-id-883 .btsInjectedContent .fliter-buttons-blog {
    justify-content: space-around;
}
.page-id-462 .btsInjectedContent .flexi-container-t-b-l-r {
    padding-top: 20px !important;
padding-bottom: 20px !important;
}
.page-id-462 .flexi-container-t-b {
    padding: 0px 0%;
}

.page-id-451 .table-bordered {
    border: 5px solid #DDF1FA !important;
    width: 100%;
}
.white-txt li {
	color: white !important;
}
.publications-txt a {
	color: white !important;
}
.logo-slider-3 .single-full-slide-container {
	margin-top: 40px;
}
.logo-slider-3 .single-full-slide {
	display: flex;
	    align-items: center;
}
.logo-slider-3 .single-full-slide .text {
	width: 60%;
}
.logo-slider-3 .single-full-slide .text p {
	width: 100%;
}
.logo-slider-3 .single-full-slide .slider-logo {
	width: 40%;
    object-fit: contain;
}
.logo-slider-3 .single-full-slide .slider-logo img {
	width: 95%;
	max-height: 300px;
}
.logo-slider-3 .single-full-slide .text-under {
	width: 100%;
}

.logo-slider-3 .slick-dots li button:before {
    font-size: 10px;
    top: 15px;
}

.logo-slider-3 .slick-dots {
    position: absolute;
    top: 0;
}
.logo-slider-3 .slick-track {
margin-top: 30px;
}
@media screen and (max-width: 750px) {
.logo-slider-3 .single-full-slide {
    flex-direction: column;
}
	.logo-slider-3 .single-full-slide .text {
    width: 100%;
}
}
@media screen and (max-width: 500px) {
.logo-slider-3 .single-full-slide .slider-logo {
    width: 100%;
    margin: auto;
}
}
/*REPEATER*/
.logo-repeater .single-full-slide-container {
	margin-top: 40px;
}
.logo-repeater .single-full-slide {
	display: flex;
}
.logo-repeater .single-full-slide .text {
	width: 60%;
}
.logo-repeater .single-full-slide .text p {
	width: 100%;
}
.logo-repeater .single-full-slide .slider-logo {
	width: 40%;
    object-fit: contain;
	display: flex;
    align-items: center;
    justify-content: left;
}
.logo-repeater .single-full-slide .slider-logo img {
	width: 95%;
	max-height: 300px;
	max-width: 500px;
}
.logo-repeater .single-full-slide .text-under {
	width: 100%;
}
.logo-repeater .single-full-slide-container {
    margin-top: 40px;
	padding-bottom: 40px;
    border-bottom: 3px solid #cff0ff;
}
.logo-repeater p {
	font-size: 17px;
}
.logo-repeater ul li {
	font-size: 17px !important;
}

@media screen and (max-width: 750px) {
.logo-repeater .single-full-slide {
    flex-direction: column;
}
	.logo-repeater .single-full-slide .text {
    width: 100%;
}
}
@media screen and (max-width: 500px) {
.logo-repeater .single-full-slide .slider-logo {
    width: 100%;
    margin: auto;
}
}
.blog-nav ul {
	list-style-type: none;
}

/*committee map*/
#mycontent .inner_wide {
    position: relative;
}
#map #placeholder .northern_ireland_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 240px;
    left: 120px;
    width: 151px;
    height: 44px;
	background-image: url("images/northern_ireland_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .scotland_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 120px;
    left: 195px;
    width: 105px;
    height: 44px;
	background-image: url("images/scotland_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .northern_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 270px;
    left: 270px;
    width: 108px;
    height: 44px;
	background-image: url("images/northern_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .wales_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 390px;
    left: 220px;
    width: 89px;
    height: 44px;
	background-image: url("images/wales_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .midlands_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 350px;
    left: 280px;
    width: 108px;
    height: 44px;
	background-image: url("images/midlands_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .south_east_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 385px;
    left: 345px;
    width: 100px;
    height: 44px;
	background-image: url("images/south_east_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .south_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 430px;
    left: 310px;
    width: 116px;
    height: 44px;
	background-image: url("images/south_area.png");
	background-repeat: no-repeat;
}
#map #placeholder .south_west_tip {
    z-index: 20001;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 470px;
    left: 200px;
    width: 120px;
    height: 44px;
	background-image: url("images/south_west_area.png");
	background-repeat: no-repeat;
}
/*locations*/
#map #placeholder .northern_ireland {
    position: absolute;
    z-index: -1;
    bottom: 249px;
    right: 271px;
    width: 94px;
    height: 75px;
	background-image: url("images/northern_ireland.png");
	background-repeat: no-repeat;
}
#map #placeholder .scotland {
    position: absolute;
    z-index: -1;
    bottom: 283px;
    right: 154px;
    width: 207px;
    height: 263px;
	background-image: url("images/scotland.png");
	background-repeat: no-repeat;
}
#map #placeholder .northern {
    position: absolute;
    z-index: -1;
    bottom: 187px;
    right: 87px;
    width: 213px;
    height: 174px;
	  background-image: url("images/northern.png");
	background-repeat: no-repeat;
}
#map #placeholder .wales {
    position: absolute;
    z-index: -1;
    bottom: 97px;
    right: 175px;
    width: 104px;
    height: 129px;
	   background-image: url("images/wales.png");
	background-repeat: no-repeat;
}
#map #placeholder .midlands {
    position: absolute;
    z-index: -1;
    bottom: 113px;
    right: 75px;
    width: 145px;
    height: 123px;
	   background-image: url("images/midlands.png");
	background-repeat: no-repeat;
}
#map #placeholder .south {
    position: absolute;
    z-index: -1;
    bottom: 49px;
    right: 41px;
    width: 122px;
    height: 104px;
	   background-image: url("images/south.png");
	background-repeat: no-repeat;
}
#map #placeholder .south_east {
    position: absolute;
    z-index: -1;
    bottom: 101px;
    right: 30px;
    width: 102px;
    height: 133px;
	background-image: url("images/south_east.png");
	background-repeat: no-repeat;
}
#map #placeholder .south_west {
    position: absolute;
    z-index: -1;
    bottom: -32px;
    right: 147px;
    width: 145px;
    height: 151px;
   background-image: url("images/south_west.png");
	background-repeat: no-repeat;
}

#map #placeholder #mapping {
    position: absolute;
    z-index: 500;
    width: 445px;
    height: 550px;
    right: 0px;
    bottom: 0px;
}
#map #placeholder {
        float: right;
    position: relative;
    width: 445px;
    height: 570px;
}
#map #placeholder_info {
    float: left;
    position: relative;
    width: 535px;
    height: 100%;
}
#map {
    min-height: 600px;
    background: #f5f5f5;
    height: 100%!important;
}
#mycontent {
	    display: flex;
    justify-content: center;
	margin-bottom: 40px;
}
.newtip {
    background-color: white;
    margin-top: 50px;
    padding: 10px !important;
    width: 250px;
    border: solid 1px gray;
    font-size: 12px!important;
	border-radius: 20px;
}
@media screen and (max-width: 500px) {
	#mycontent {
		overflow-x: scroll;
	}
	/* width */
#mycontent::-webkit-scrollbar {
  width: 10px;

}

/* Track */
#mycontent::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
#mycontent::-webkit-scrollbar-thumb {
  background: #1C9EDA; 
}

/* Handle on hover */
#mycontent::-webkit-scrollbar-thumb:hover {
  background: #1893cc; 
}
}

.page-id-280 .image-container img {
    height: auto;
	max-height: 500px;
}

/*board of directors*/
.page-id-1026 .logo-repeater .single-full-slide .text {
    width: 100%;
}
.page-id-17814 .logo-repeater .single-full-slide-container, .page-id-17820 .logo-repeater .single-full-slide-container, .page-id-17824 .logo-repeater .single-full-slide-container, .page-id-17828 .logo-repeater .single-full-slide-container, .page-id-17833 .logo-repeater .single-full-slide-container, .page-id-17837 .logo-repeater .single-full-slide-container, .page-id-17840 .logo-repeater .single-full-slide-container, .page-id-17843 .logo-repeater .single-full-slide-container, .page-id-17846 .logo-repeater .single-full-slide-container, .page-id-17849 .logo-repeater .single-full-slide-container, .page-id-17853 .logo-repeater .single-full-slide-container, .page-id-17856 .logo-repeater .single-full-slide-container, .page-id-17859 .logo-repeater .single-full-slide-container,  .page-id-17862 .logo-repeater .single-full-slide-container  {
    border: none;
}
/*head office team*/
.page-id-532 .logo-repeater .single-full-slide .text {
    width: 100%;
}
.container-new {
	text-align: center;
	padding-bottom: 40px;
}
.container-new .button-container .button {
	margin: auto;
}
.container-new .button-container {
	margin-top: 25px !important;
}
/*twitter text*/
.new-feed .left-grid {
	width: 40%;
}
.new-feed .right {
	width: 60%;
}
@media screen and (max-width: 1550px) {
.new-feed .wrap {
    display: flex !important;
}
}
@media screen and (max-width: 1320px) {
.new-feed .wrap {
    display: block !important;
}
	.new-feed .left-grid {
	width: 100%;
}
.new-feed .right {
	width: 100%;
}
}
.page-id-18012 .text_block_wide ul li {
	margin: auto;
	width: fit-content;
}
.page-id-18012 .logo-repeater .single-full-slide-container, .page-id-18104 .logo-repeater .single-full-slide-container, .page-id-18190 .logo-repeater .single-full-slide-container {
    border-bottom: none;
}
.page-id-18222 .repeater .flexi-container-t-b-l-r {
    padding: 80px 5% 0px 5% !important;
}
.page-id-18435 .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.page-id-18435 .grid-single:nth-child(3) {
	background-color: #1C9EDA;
}
.page-id-18435 .grid-single:nth-child(3) p, .page-id-18435 .grid-single:nth-child(3) h2, .page-id-18435 .grid-single:nth-child(3) a {
	color: #fff !important;
}
.page-id-18435 .grid-single:nth-child(4) {
	background-color: #fff;
}
.page-id-18435 .grid-single:nth-child(4) p, .page-id-18435 .grid-single:nth-child(4) h2, .page-id-18435 .grid-single:nth-child(4) a {
	color: #1D3557 !important;
}
@media screen and (max-width: 1100px) {

.page-id-18435 .grid-single:nth-child(4) {
	background-color: #1C9EDA;
}
.page-id-18435 .grid-single:nth-child(3) p, .page-id-18435 .grid-single:nth-child(3) h2, .page-id-18435 .grid-single:nth-child(3) a {
	color: #1D3557 !important;
}
.page-id-18435 .grid-single:nth-child(4) p, .page-id-18435 .grid-single:nth-child(4) h2, .page-id-18435 .grid-single:nth-child(4) a {
	color: #1D3557 !important;
}
}
@media screen and (max-width: 700px) {
.page-id-18435 .service-grid {
    display: grid;
    grid-template-columns: 1fr;
}
	.page-id-18435 .grid-single:nth-child(3) {
	background-color: #fff;
}
	.page-id-18435 .grid-single:nth-child(3) p, .page-id-18435 .grid-single:nth-child(3) h2, .page-id-18435 .grid-single:nth-child(3) a {
	color: #1D3557 !important;
}
	.page-id-18435 .grid-single:nth-child(4) {
	background-color: #1C9EDA;
}
	.page-id-18435 .grid-single:nth-child(4) p, .page-id-18435 .grid-single:nth-child(4) h2, .page-id-18435 .grid-single:nth-child(4) a {
	color: #fff !important;
}
}
.txt-img p a:hover {
	color: #1C9EDA;
}
.txt-img li a:hover {
	color: #1C9EDA;
}
.text_block p a:hover {
	color: #1C9EDA;
}
.text_block_wide p a:hover {
	color: #1C9EDA;
}
/*SEARCH FUNCTION*/
.search-bar-container {
    height: 33px;
    z-index: 99;
    display: flex;
    align-items: center;	
}
.search-bar-container.active {
   -webkit-transition: all 0.5s ease-out 0s;
        -o-transition: all 0.5s ease-out 0s;
        transition: all 0.5s ease-out 0s;
}
.search-bar-container input {
  display: inline-block;
   height: 33px;
    width: 230px;
    background: #fff;
    border: none;
    font-family: itc-officina-sans-pro, sans-serif;
  font-size: 16px;
    padding-left: 20px;
	border-radius: 20px;
}
header.sticky .search-bar-container input {
    left: -0px;
}
.search-mobile {
	display: flex;
    justify-content: center;
}
.search-mobile input {
	border: none;
	margin-left: 10px;
	padding-left: 10px;
}
.search-mobile img {
	height: 28px;
    padding-top: 2px;
}
.search-bar-container input:focus {
  outline: none;
}
.search-bar-container input::placeholder {
  font-family: itc-officina-sans-pro, sans-serif;
  font-size: 16px;
}
.search-icon:hover {
  cursor: pointer;
}
.search-page-link {
	color: #1C9EDA;
}
body.search h2 {
	padding-bottom: 25px;
}
body.search .page-results {
	padding: 20px 20px;
    background-color: #cff0ff;
    margin-bottom: 20px;
}
.search-bar-container img {
  width: 18px;
    height: 20px;
    margin-top: 0px;
    margin-right: 10px;
    z-index: 2;
}
@media screen and (max-width: 850px) {
	.search-bar-container {
display: none;
}
	#mobileSidenav .search-bar-container {
		display: flex;
		justify-content: center;
		align-content: center;
		position: relative;
		right: 0;
    top: 0;
	}
}
/*------------------------------------------------------------------------------------*/
.text-block .button {
    width: fit-content;
}
#btscontent_event_info .text_block p, #btscontent_event_info .text_block ul,  #btscontent_event_info .text_block il, #btscontent_event_info .text_block h2, #btscontent_event_info .text_block h3 {
	margin: 0 !important;
}
.page-id-7 #two-img-slider .wrap {
    justify-content: flex-start;
}
.page-id-7 #two-img-slider.img-left .text {
    padding: 0px 10% 0px 0px !important;
}
.page-id-7 #two-img-slider .flexi-container-t-b-l-r {
	padding: 80px 5% !important;
}
@media screen and (max-width: 1620px) {
	.page-id-7 #two-img-slider.img-left .text {
    padding: 0px 5% 0px 0px !important;
}
}

@media screen and (max-width: 1550px) {
	.page-id-7 .two-slide-container {
    width: 700px;
}
	.two-img-slide img {
    object-fit: cover;
		object-position: center;
	}
}
@media screen and (max-width: 1375px) {
	.page-id-7 .two-slide-container {
    width: 600px;
}
}
@media screen and (max-width: 1200px) {
	.page-id-7 .two-slide-container {
    width: 100%;
}
.page-id-7 	.next-img {
    top: 77%;
}
}
.btsInjectedContent .search-bar-container img {
	display: none;
}
/*.btsInjectedContent .search-bar-container {
	display: none;
}*/
#mobileSidenav .search-bar-container {
    justify-content: center;
}
.page-id-1119 .text_block .blue-flexi-container {
	padding-bottom: 0;
	    padding-top: 40px;
}
.page-id-18435 .grid-single:nth-child(4) .grid-link-box a::after {
	background-image: url(images/after-black.png);
}
.page-id-18435 .grid-single:nth-child(3) .grid-link-box a::after {
	background-image: url(images/after-white.png);
}
@media screen and (max-width: 700px) {
	.page-id-18435 .grid-single:nth-child(3) .grid-link-box a::after {
	background-image: url(images/after-black.png);
}
.page-id-18435 .grid-single:nth-child(4) .grid-link-box a::after {
	background-image: url(images/after-white.png);
}
}

.page-id-123 .text-left .text h2 {
    width: 560px !important;
}
.page-id-123 .prev-member, .page-id-123 .next-member {
	display: none !important;
}
@media screen and (max-width: 1200px) {
	.page-id-123 .text-left .text h2 {
    width: 100% !important;
}
}
@media screen and (max-width: 800px) {
	.page-id-123 .prev-member, .page-id-123 .next-member {
	display: block !important;
}
}

.text-under-new {
    padding: 30px 15% 0px 4%;
}
.text-under-new-reverse  {
    padding: 30px 4% 0px 15%;
}
@media screen and (max-width: 1700px) {
	.text-under-new {
    padding: 30px 4% 0px 4%;
}
.text-under-new-reverse  {
    padding: 30px 4% 0px 4%;
}
}
@media screen and (max-width: 1200px) {
	.text-under-new {
    padding: 0px 4% 0px 4%;
}
.text-under-new-reverse  {
    padding: 0px 4% 0px 4%;
}
}

.page-id-18222 .logo-repeater .single-full-slide .slider-logo img {
	width: 95%;
    max-height: 330px;
    height: 100%;
    max-width: 500px;
    object-fit: cover;
    object-position: left;
}
@media screen and (max-width: 1200px) {
.logo-repeater .single-full-slide .slider-logo {
    width: 100%;
	margin-bottom: 20px;
}
}

#article-content .flexi-container-t-b-l-r {
	padding-top: 0px !important;
}

.page-id-116 #three_img_slider .flexi-container-t-b {
	padding-top: 0 !important;
}

@media screen and (max-width: 1200px) {
	.btsInjectedContent .txt-img .text-block {
    width: 100% !important;
}
}