

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-BoldItalic.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swa<strong></strong>p;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-Italic.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-LightItalic.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-MediumItalic.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2') format('woff2'),
        url('../assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}




html {

  scroll-behavior: smooth;

}

:root {

  --textcolour: #35484e;

  --blue: #165db3;
  --lightblue: #dce7f4;

  --green: #84cdbf;

  --white: #fff;


  --banner: #d9d9d9;
  --boxshadow: 0 0 21px 3px rgba(0, 0, 0, 0.08);

}

body {

  font-family: "Montserrat";

  font-weight: 400;

  font-size: 18px;

}

/* General Styles */

.container {

  width: 100%;

  max-width: 1440px;

  padding: 0 80px;

  margin: 0 auto;

}

.featuredImgContainer {

  max-width: 560px;

  position: relative;

  margin: 0 0 60px 60px;

}

.alignright {

  float: right;

}

.button, #searchsubmit, .footerContact .gform-footer input[type="submit"]#gform_submit_button_1.gform_button {
	background-color: var(--blue);
	padding: 15px 30px;
	color: var(--white);
	font-weight: 600;
	display: inline-block;
	font-family: "Montserrat";
	border-radius: 5px;
	cursor: pointer;
	line-height: 1em;
	text-align: center;
	position: relative;
	border: none;
	transition: background .5s ease-in-out;
	text-transform: uppercase;
}
.button:hover, #searchsubmit:hover, .footerContact .gform-footer input[type="submit"]#gform_submit_button_1.gform_button:hover {
	background-color: var(--green);
	color: var(--textcolour);
}

/*
.button::before, #searchsubmit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: #1f387a;
            transition: left 0.5s ease;
            z-index: -1;
        }


.button:hover::before, #searchsubmit:hover::before  {
	left: 0;
}

.button:hover, #searchsubmit:hover {

  background-color: var(--green) !important;

  color: var(--white);
	
	
 transform: translateY(-0px);
     
}




.button:active, #searchsubmit:active  {
	 transform: translateY(0);
}
*/

.button-green {
	background-color: var(--green);
	color: var(--textcolour);
}
.button-green:hover {
	background-color: var(--blue)!important;
	color: #fff;
}
.button-white {
	background-color: #fff;
	color: var(--blue);
}
.button-white:hover {
	background-color: var(--green)!important;
	color: var(--textcolour);
}
/*
.button-green::before{
            content: '';
          
            background-color: var(--blue);
      
        }
*/




.button-transparent-green {

  background-color: transparent;

  outline: 1px solid var(--green);

  color: var(--white);

  transition: background-color 0.3s ease;

}

.button-transparent-white {

  background-color: transparent;

  outline: 1px solid var(--white);

  color: var(--white);

  transition: background-color 0.3s ease;

}

.button-black-text {

  color: #000;

}

.contentWrapper {

  max-width: 1380px;

  margin: auto;

}
.contentWrapperPadding{
	padding: 0 30px;
}
/* End General Styles */

/* Font Style */

h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: "Montserrat";

  color: var(--blue);

  margin-bottom: 20px;

  font-weight: 600;

}

h1 {
	font-size: 48px;
	color: var(--textcolour);
}

h2 {

  font-size: 40px;

}

h3 {

  font-size: 28px;

}

h4 {

  font-size: 26px;

}

h5 {

  font-size: 24px;

}

h6 {

  font-size: 22px;

}

.focusedText {

  color: var(--green);



}

p,

li,

a,

td,

th,

#s {

font-size: 17px;
    line-height: 22px;

  color: var(--textcolour);

}

h1 a,

h2 a,

h3 a,

h4 a,

h5 a,

h6 a {

  font-size: inherit;

  line-height: inherit;

  font-weight: inherit;

}

img {

  max-width: 100%;

  height: auto;

}

p,

ul,

ol,

table {

  margin-bottom: 20px;

}

p:last-child {

  margin-bottom: 0;

}

blockquote {

  margin-bottom: 20px;

}

blockquote p {

  font-weight: 600;

  font-size: 120%;

  line-height: 1.4em;

}

ul,

ol {

  padding-left: 20px;

  margin-top: -10px;

}

ul {

  list-style-type: disc;

  color: var(--white);

  padding-left: 30px;

}

ol {

  list-style-type: decimal;

}

ul ul,

ol ol,

ul ol,

ol ul {

  margin-bottom: 0;

  margin-top: 0;

}

table {

  width: 100%;

}

table th {

  background-color: #999999;

  color: #000;

  font-weight: 600;

  text-align: left;

}

table th,

table td {

  padding: 5px;

  border: 1px solid #999;

}

table tr:nth-child(2n) {

  background-color: #eee;

}

a,

i,

#searchsubmit {

  transition: all 0.5s ease-in-out;

}

a {

  color: var(--blue);

  text-decoration: none;

}

a:hover {

  color: var(--green);

}

.white-text {

  color: var(--white);

}
.green-text {
	color:  var(--green);
}
.blue-text {
	color:  var(--blue);
}

.social-icon {

  background-color: var(--blue);

  border-radius: 50%;

  color: var(--white);

  padding: 5px;

  width: 40px;

  height: 40px;

  display: flex !important;

  justify-content: center;

  align-items: center;

}

.social-icon:hover {

  background-color: var(--green);

}

.social-icon::before {

  font-size: 22px;

}

/* End Font Style */



/* Search */

#searchform {

  margin-bottom: 20px;

}

#searchform #s {

  border: 1px solid #333;

}

#searchsubmit {

  border: 0;

  font-size: 16px;

  line-height: 1.6em;

  cursor: pointer;

  padding: 3px 22px;

}

/* End of Search */

/* Menu */

nav {

  background-color: #55acee;

  padding: 10px 0;

}

.menu,

.menu ul {

  padding: 0;

  list-style-type: none;

  margin: 0;

}

.menu {

  display: flex;

  gap: 5px;

}

.menu li {

  position: relative;

}

.sub-menu {

  display: none;

  position: absolute;

  background-color: #55acee;

  min-width: 190px;

  z-index: 8;

}

.sub-menu .sub-menu {

  right: -100%;

  top: 0;

}

.menu li a {

  color: var(--white);

  width: 100%;

  display: block;

}

.sub-menu li a {

  padding: 5px 15px;

}

.menu li a:hover {

  color: #000;

}

/* End Menu */

#ContentWrap {

  padding: 50px 0;

}

/* Archive */

.navigation.pagination {

  background-color: unset;

  text-align: center;

  margin-top: 70px;


}

.page-numbers {
	background-color: var(--green);
	padding: 4px 10px;
	color: var(--textcolour);
	border-radius: 5px;
}

a.page-numbers:hover,

.page-numbers.current {

  background-color: var(--blue);

  color: var(--white);

}


.postTitle {
	margin-bottom: 40px;
}



.postTitle h1 {

  font-size: 50px;

}
.single-post .postTitle h1 {
font-size: 36px;
    margin: 5px 0 10px 0;
    line-height: 41px;
}


.postTitle .blogDate {

 font-size: 20px;
    color: var(--blue);
    font-style: normal;

}



.archiveImage {

  max-width: 400px;

  float: right;

  margin: 0 0 20px 20px;

  border-radius: 25px;

}



.singleWrap b {

  font-weight: 700;

}



.archiveLoop {
display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;


}


.page-template-page-team .archiveLoop {

  grid-template-columns: repeat(4, 1fr);
  gap: 50px;


}






.archiveItem.teamProfile {
  display: flex;
  flex-direction: column;

}

.archiveItem:last-child {


}



.archiveItem {



}



.archiveItem > .imgContainer {

  width: 100%;

  margin-bottom: 30px;

}

/* End of Archive */



/* Webinar Archive */



.webinarLoop {

  margin-bottom: 20px;
    grid-template-columns: repeat(3, 1fr);
}



.webinarHeading {

  flex: 1 1 100%;

}



.webinarItem {

  border-radius: 25px;

  padding: 30px;

  min-height: unset;

  background-color: var(--lightblue);

  gap: 10px;



}










.webinarDateTime {

  margin-bottom: 30px;

  display: flex;

  flex-direction: column;

  gap: 10px;

}



.webinarDate,

.webinarTime {

font-weight: 400;
    font-size: 18px;
    display: flex;
    gap: 8px;

}
.webinarDate i,

.webinarTime i {
    color: var(--blue);
	
}


.webinarItem h3,

.webinarItem p {

 

}
.webinarItem .button {
	    padding: 15px 30px;
	    font-size: 16px;
    font-weight: 500;
}


.archiveLoop.webinarLoop {
	margin-top: 30px;
}




.pastWebinar {

  display: flex;

  gap: 30px;

}



.pastWebinar img {

  max-height: 310px;

  border-radius: 25px;

}



/* End of Webinar Archive */



.altBackground {

  background-color: rgba(0,0,0,.1);

}
.altBackground-light {

  background-color: var(--lightblue);

}


/* Animation */
@keyframes shadow-pop-br {
    0% {
        -webkit-box-shadow: 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7;
        box-shadow: 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7, 0 0 #d5f3d7;
        -webkit-transform: translateX(0) translateY(0);
        transform: translateX(0) translateY(0);
    }
    100% {
        -webkit-box-shadow: 1px 1px #d5f3d7, 2px 2px #d5f3d7, 3px 3px #d5f3d7, 4px 4px #d5f3d7, 5px 5px #d5f3d7, 6px 6px #d5f3d7, 7px 7px #d5f3d7, 8px 8px #d5f3d7;
        box-shadow: 1px 1px #d5f3d7, 2px 2px #d5f3d7, 3px 3px #d5f3d7, 4px 4px #d5f3d7, 5px 5px #d5f3d7, 6px 6px #d5f3d7, 7px 7px #d5f3d7, 8px 8px #d5f3d7;
        -webkit-transform: translateX(-8px) translateY(-8px);
        transform: translateX(-8px) translateY(-8px);
    }
}

/* End of animation */

/* Related Posts */



.related-posts {

  background-color: var(--lightblue);

  padding: 50px 0;

}



.related-posts h3 {

  color: var(--white);

  margin-bottom: 35px;

}



.related-posts ul {

  list-style-type: none;

  padding-left: 0px;

  display: flex;

  width: 100%;

  justify-content: space-around;

  flex-wrap: wrap;

  gap: 20px;

}



.related-posts li {

  flex-basis: calc(33% - 10px);

  background-color: var(--blue);

  padding: 5px 15px;

  margin-right: auto;

  border-radius: 15px;

  display: flex;

  align-items: center;

  transition: background-color 0.3s ease;

}



.related-posts li:hover {

  background-color: var(--green);

}



.related-posts a {

  color: var(--white);

  width: 100%;

  display: block;

}



.related-posts li:hover a {

  font-weight: 700;

}



/* Inner Pages */

.visually-hidden {

  position: absolute;

  width: 1px;

  height: 1px;

  margin: -1px;

  padding: 0;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  border: 0;

}



.innerContentWrapper {



}



.bodyWrapper {

  flex: 0 0 65%;

}



.contactForm {

  flex: 0 0 30%;

  height: fit-content;

  background-color: var(--background);

  padding: 30px;

  border-radius: 15px;

  min-width: 400px;

}



.contactForm h3 {

  text-align: center;

}



.contactForm p {

  color: var(--white);

}



.contactForm input,

.contactForm textarea {

  width: 100%;

  border: none;

  background-color: var(--lightblue);

  border-radius: 15px;

  margin-bottom: 20px;

  padding: 20px;

  color: var(--white);

  resize: none;

}



.contactForm input[type="submit"] {

  background-color: var(--blue);

}



/* Team member styles */
.teamMemberBanner {
	margin-bottom: 10px;
}



.teamMemberBanner .container {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  position: relative;

}






.memberEmail {

  color: var(--black);

}
.memberPhoto {
	width: 380px;
	height: 265px;
	text-align: right;
}
.memberPhoto img {
	height: 100%;
}


.memberContactInfo {

  display: flex;

  flex-direction: column;

  gap: 10px;
margin-top: 25px;
}



.memberContact {

  display: flex;

  gap: 10px;

  align-items: center;
color: #333;
}



.teamMemberBio {

  padding: 50px 0;

}



.backToTeamPage {

  display: flex;

  flex-direction: row;

  gap: 10px;

  align-items: center;

  margin-bottom: 30px;

}



.backToTeamPage:hover {

  font-weight: bold;

}



.socialMedia {

  display: flex;

  gap: 10px;

  align-items: center;



  margin-bottom: 30px;

}



.socialMediaIcon {

  display: flex;

  justify-content: center;

  align-items: center;

}



.socialMediaIcon i::before {

  font-size: 30px;

}



/* Team Profile Stylings */

.teamProfile {



}



.teamProfileBackground {



  border-radius: 25px;

}



.teamProfileBackground img {

  background-image: url(/wp-content/uploads/2025/10/team-bg.png);

  background-position: center;

  background-size: contain;

  background-repeat: no-repeat;

  border-radius: 25px;

  min-width: 100%;

}
.teamProfile a img {
  transform: rotateY(0deg);
  transition: transform 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955);
  transform-style: preserve-3d;
}

.teamProfile a:hover img {
  transform: rotateY(180deg);
}

.teamProfileName {

  margin-bottom: 0px;

  margin-top: 10px;

  font-size: 28px;

  font-weight: bold;

}


.teamProfileTitle {

color: var(--blue);
    font-style: italic;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
}
.bookingbtn {
	padding: 15px 40px;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: #555;
}

@media only screen and (max-width: 1458px) {

  .archiveLoop {

    justify-content: center;

  }

}



@media only screen and (max-width: 1400px) {

  .bodyWrapper,

  .contactForm {

    min-width: 100%;

  }



  .innerContentWrapper {

    gap: 50px;

  }

}
@media (max-width: 1200px) {
  .archiveLoop {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media only screen and (max-width: 1060px) {

  .webinarItem,

  .webinarItem:last-child {

    flex: 1 1 50%;

    max-width: calc(50% - 25px);

  }



  .pastWebinar {

    flex-direction: column;

  }



  .pastWebinar img {

    margin: auto;

  }

}



@media only screen and (max-width: 767px) {

  .related-posts li {

    flex-basis: 100%;

  }

.archiveLoop {
    grid-template-columns: repeat(2, 1fr);
  }

  .teamMemberBanner .container {

    flex-direction: column;

    align-items: center;

    gap: 20px;

  }







  .teamProfile {

 

  }



  .webinarItem,

  .webinarItem:last-child,

  .webinarItem:nth-child(2),

  .webinarItem:nth-child(3) {

    flex: 1 1 100%;

    max-width: 100%;

  }

}
@media (max-width: 480px) {
  .archiveLoop {
    grid-template-columns: 1fr;
  }
}
