/*Theme Name: Innervision*/

/*Reset*/
* {
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}

/*Flexslider*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexslider {
  position: relative;
  zoom: 1;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 34px;
  height: 34px;
  margin: -17px 0 0;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  z-index: 10;
  overflow: hidden;
  line-height: 34px;
  text-align: center;
  opacity: 0;
  cursor: pointer;
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  display: inline-block;
}
.flex-direction-nav .flex-prev {
  left: 30px;
}
.flex-direction-nav .flex-next {
  right: 30px;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-control-nav {
  width: auto;
  position: absolute;
  bottom: 30px;
  right: 25px;
  z-index: 2;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 7px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  display: block;
  width: 42px;
  height: 42px;
  font-family: "acumin-pro", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 36px;
  background: transparent;
  cursor: pointer;
  border:1px solid #fff;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}


.flex-control-paging li a:hover {
  border-color: #fff !important;
  background-color: #fff !important;
  color: #000 !important;
}
.flex-control-paging li.flex-active a {
  border-color: #fff !important;
  background-color: #fff !important;
  color: #000 !important;
  cursor: default;
}

/*Flexbox*/
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.col {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-auto {
  margin-top: auto;
}
.ml-auto {
  margin-left: auto;
}
.text-center {
  text-align: center;
}

/*General Styles*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}

/*Main*/
body {
  font-family: "articulat-cf", sans-serif;
  font-weight: 400;
  line-height: 1.52;
  background-color: #fff;
  color: #262626;
  overscroll-behavior: none;
}
html,
body {
  height: 100%;
  font-size: 21px;
}

/* Layout */
.container {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
header {
    padding: 56px 0 30px;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
    margin-bottom: 40px;
}

.logo img {
    width: auto;
    vertical-align: bottom;
}

/* Menu */
header nav {
    display: flex;
}

.main-menu {
  display: flex;
}

.main-menu > li {
  position: relative;
  margin-right: 96px;
}

.main-menu > li:last-child {
    margin-right: 0;
}

.main-menu > li > a {
  position: relative;
  display: block;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
}

.main-menu > li > a span {
    display: block;
    padding: 8px 0 6px;
    border-bottom: 2px solid transparent;
    line-height: 1;
}

.main-menu > li.current-menu-item > a, .main-menu > li.current-page-ancestor > a, .main-menu > li > a:hover, .main-menu > li.menu-item-has-children:hover > a {
  text-shadow: 0px 0px 1px #262626;
}

.main-menu > li.current-menu-item > a span, .main-menu > li.current-page-ancestor > a span, .main-menu > li > a:hover span, .main-menu > li.menu-item-has-children:hover > a span {
    border-bottom-color: #d94032;
}

/* .main-menu > li.menu-item-has-children > a span{
  padding-right: 20px;
} */

.main-menu > li.menu-item-has-children > a span i {
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -6px;
  font-size: 12px;
}

/*Menu - Sub Menu*/
.main-menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.9em;
  line-height: 1.32;
  z-index: 3;
  background: #fff;
  width: 300px;
  padding: 12px 0 0;
  text-align: center;
}

.main-menu li:hover .sub-menu {
  display: block;
}

.main-menu li .sub-menu li {
  position: relative;
  margin-right: 0;
}

.main-menu li .sub-menu li:after {
  content: '';
  display: block;
  width: 136px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d1d7b3;
}

.main-menu li .sub-menu li:hover:after, .main-menu li .sub-menu li:last-child:after {
  display: none;
}

.main-menu li .sub-menu li a{
  display:block;
  padding: 18px 18px 13px;
  color: inherit;
}

.main-menu li .sub-menu li a:hover {
  background-color: #000;
  color: #fff;
  text-shadow: 0px 0px 1px #fff;
  text-decoration: none;
}

.search-button {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    background: #125cfd;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}

.search-button:hover {
    background-color: #1456e5;
}

.search-button i {
    margin-right: 6px;
}

/*Responsive Nav*/
.responsive-nav-container {
  display: none;
  padding-bottom: 20px !important;
}

.responsive-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  background: #000;
  color: #fff;
  cursor: pointer;
}
.responsive-nav-toggle strong {
  font-weight: 700;
  font-family: arial;
}
.responsive-nav-toggle i {
  float: right;
}
#responsive-nav {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  background: #000;
  text-align: left;
}
.responsive-nav-inner {
  color: #fff;
}
#responsive-nav .responsive-nav-menu {
  display: none;
}
#responsive-nav .responsive-nav-menu li {
  display: block;
}
#responsive-nav .responsive-nav-menu li a {
  display: block;
  padding: 8px 16px;
  line-height: 1;
  color: #fff;
}
#responsive-nav .responsive-nav-menu li a:hover {
  background-color: #fff;
  color: #000;
}

#responsive-nav .responsive-nav-menu > li:last-child{
  padding-bottom: 10px;
}

#responsive-nav .responsive-nav-menu .sub-menu li a{
  padding-left: 32px;
}

body.admin-bar .search-popup {
  top: 32px;
}

/*Slider*/
.page-slider-container {
  position: relative;
  margin-bottom: 80px;
}

.page-slider,
.page-slider .slides,
.page-slider .slides li {
height: 800px;
}
.page-slider .slides li video {
object-fit: cover;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}

.slide-content{
  position: absolute;
  top: 31.25%;
  left: 8.4375%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-content div {
    display: inline-block;
    padding: 0.25em 0.366666667em 0.05em;
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    background-color: #2a3659;
    color: #fff;
}

.mac-os .slide-content div {
  padding-bottom: 0.25em;
}

.slide-heading{

}

.slide-heading2 {
    margin-left: 1em;
}

.slide-heading2.slide-heading-left{
  margin-left: 0;
}

.slide-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.custom-slider-direction-nav{
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}

.custom-slider-direction-nav a{
  position: absolute;
  bottom: 34px;
  display:flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 32px;
  background-color: #cf5f45;
  color:#fff;
}

.custom-slider-direction-nav a.flex-prev {
  left: 40px;
}

.custom-slider-direction-nav a.flex-next {
  right: 40px;
}

.custom-slider-direction-nav a:not(.flex-disabled):hover{
  background-color: #2a3659;
}

.custom-slider-direction-nav a.flex-disabled{
  display: none;
}

/* Content */
.page-content {
  margin-top: 80px;
  width: 940px;
  max-width: 100%;
  margin: 80px auto 0;
}

.page-content.post-page-content {
  width: 724px;
}

.page-content.service-page-content {
  width: 1028px;
}

.page-content:last-child {
  margin-bottom: 100px;
}

.page-content-columns {
  display: flex;
  margin: 80px -25px 0;
}

.page-content-column {
  flex: 1;
  padding: 0 25px;
}

.page-content-column *:last-child{
  margin-bottom: 0;
}

article {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.52;
  color: #262626;
}

article.post-article {
  font-size: 0.905em;
}

article.main-article {
  text-align: center;
}

article .intro-text {
  font-size: 1.25em;
  font-weight: 600;
  color: #8c2d18;
}

article > *:last-child {
  margin-bottom: 0;
}

article .alignleft {
  float: left;
  margin: 0 1.52em 0 0;
}
article .alignright {
  float: right;
  margin: 0 0 0 1.52em;
}
article .aligncenter {
  display: block;
  margin: 0 auto;
}
article .alignone {
  float: none;
  clear: both;
}

article div {
  max-width: 100%;
}

article p img{
    margin-bottom: 0;
}

article p img.alignright, article p img.alignleft{
    margin-bottom: 1.52rem;
}

.page-heading {
  margin-top: 0;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.11;
  text-align: center;
  margin-bottom: 0.9em;
  color: #87997e;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
  font-size: 1.07em;
  font-weight: 400;
  line-height: 1.32;
  margin-top: 1.1rem;
  margin-bottom: 0.25rem;
}

article h1{
  font-size: 2rem;
  margin-bottom: 1rem;
}

article.home-article h1 {
  font-size: 1.35rem;
}

article h2{
  font-size: 1.46rem;
  margin-bottom: 1rem;
}

article h1:first-child,
article h2:first-child,
article h3:first-child,
article h4:first-child,
article h5:first-child,
article h6:first-child{
  margin-top: 0;
}

article p {
  margin-bottom: 1.52rem;
}
article ul,
article ol {
  margin-bottom: 1.52rem;
}

article.text-center ul,
article.text-center ol {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

article ul {
  list-style: none;
  padding: 0;
}

article ul li {
  position: relative;
  padding-left: 24px;
}

article ul li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
}

article ol {
  margin-left: 21px;
  list-style-type: decimal;
}

article ol li ol {
  margin-left: 20px;
  margin-bottom: 0;
}

article a {
  font-weight: 400;
  text-decoration: none;
  color: #cf5f45;
}
article a:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #2a3659;
}

article img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
  transition: opacity 0.3s ease;
}

article a img:hover {
  opacity: 0.85;
}

article strong,
article b {
  font-weight: 700;
}

article em {
  font-style: italic;
}

article iframe {
    vertical-align: bottom;
    margin-bottom: 2rem;
}

article p iframe{
    margin-bottom: 0;
}

article hr {
  display: block;
  clear: both;
  margin: 2.5rem 0;
  height: 2px;
  border: 0;
  background: #589ea6;
}

article blockquote {
  padding: 1.35em 4.31em;
  margin: 1.609em -278px;
  font-size: 2.421em;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  background-color: #8c2d18;
  color: #fff;
}

article blockquote p {
  margin-bottom: 1rem;
}

article blockquote *:first-child {
  margin-top: 0;
}

article blockquote *:last-child {
  margin-bottom: 0;
}

article .gallery {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px !important;
  margin-right: -5px !important;
  margin-bottom: 2rem !important;
}

article .gallery-item {
  float: none !important;
  width: 33.33%;
  margin: 0 !important;
  padding: 5px;
  box-sizing: border-box;
}

article .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
  border: 0 !important;
}

article .gallery-item:hover img {
  opacity: 0.85;
}

article .gallery-caption {
  text-align: center;
  font-style: italic;
  margin-top: 5px;
}

article .gallery-item a {
  display: block;
}
article .gallery-columns-1 .gallery-item {
  max-width: 100%;
}
article .gallery-columns-2 .gallery-item {
  max-width: 50%;
}
article .gallery-columns-3 .gallery-item {
  max-width: 33%;
}
article .gallery-columns-4 .gallery-item {
  max-width: 25%;
}
article .gallery-columns-5 .gallery-item {
  max-width: 20%;
}
article .gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
article .gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
article .gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
article .gallery-columns-9 .gallery-item {
  max-width: 9%;
}

.button, .frm_button_submit {
  display: flex;
  width: 100%;
  border: 0;
  justify-content: center;
  align-items: center;
  height: 46px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  background-color: #595959;
  color: #fff;
  cursor: pointer;
}

.button:hover, .frm_button_submit:hover {
  background-color: #000;
}

article .button {
  margin-bottom: 2rem;
}

article p .button{
  margin: 0;
}

article .wp-caption .wp-caption-text {
  padding-top: 2.11em;
  font-weight: 700; 
}

.wp-video {
  margin: 0 auto;
}

/*PageNavi*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 32px 0 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
}

.wp-pagenavi a, .wp-pagenavi span {
  padding: 10px 15px;
  color: inherit;
  transition: background-color 0.5s, color 0.5s;
  border-color: #000;
  margin: 4px;
  min-width: 40px;
  line-height: 1;
  text-align: center;
}

.wp-pagenavi span.current{
  font-weight: 600;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current{
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/*Forms*/
.frm_forms {
  
}
.frm_error_style {
  margin-bottom: 1.52em;
  color: red;
}
.frm_error {
  margin-top: 0.25em;
  color: red;
}
.form-field {
  margin-bottom: 1.52em;
}
.form-field label {
  display: block;
  margin-bottom: 0.25em;
  font-size: inherit;
  font-weight: 600;
  color: inherit;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  display: block;
  width: 100%;
  background: none;
  padding: 0.5em;
  border: 0;
  border: 1px solid #000;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  outline: none !important;
}

.form-field textarea {
}

.frm_submit{
  margin-top: 1.52em;
  margin-bottom: 1.52em;
}

/* Footer */
footer {
    color: #2a3659;
}

footer a {
  color: inherit;
}

footer a:hover {
  text-decoration: underline;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  padding: 40px 0 20px;
  border-top: 1px solid #a5b35c;
}

.footer-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.footer-menu li {
    padding: 0 18px;
    border-right: 2px solid #2a3659;
}

.footer-menu li:first-child{
    border-left: 0;
}

.footer-menu li:last-child{
    border-right: 0;
}

.footer-menu li a {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
}

/* Services Section */
.services-section {
  text-align: center;
  margin-top: 94px;
}

.services-section-title {
  font-size: 2.19em;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.52em;
  color: #2a3659;
}

.services-section-items {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services-section-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 20px;
  margin-bottom: 70px;
}

.services-section-item-image {
  width: 306px;
  height: 306px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: #87997e;
}

.services-section-item-image:hover {
  background-color: #8c2d18;
}

.services-section-item-image:hover img {
  filter: invert(1);
}

.services-section-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
  transition: transform 0.5s, opacity 0.5s;
}

.services-section-item:hover img {
  opacity: 0.85;
}

.services-section-item-title {
  margin-top: 0.82em;
  margin-bottom: 0;
  font-size: 1.34em;
  font-weight: 400;
  line-height: 1.28;
  color: #0d0d0d;
}

.services-section-item-title a {
  color: inherit;
}

.services-section-item-title a:hover {
  text-shadow: 0px 0px 1px #8c2d18;
  color: #8c2d18;
}

/* Events Section */
.speaking-events-banner {
  padding: 42px 50px 48px;
  margin: 60px 0 60px;
  text-align: center;
  background-color: #2a3659;
  color: #fff;
}

.speaking-events-banner-content {
  width: 740px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.speaking-events-banner-heading {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.47em;
}

.speaking-events-banner-text {
  font-size: 19px;
  line-height: 1.68;
  margin-bottom: 1.8em;
}

.speaking-events-banner-button {
  display: inline-flex;
  font-size: 26px;
  line-height: 1;
  padding: 24px 28px 23px;
  border:1px solid #9a9463;
  border-radius: 50px;
  color: #fff;
}

.speaking-events-banner-button:hover {
  background-color: #fff;
  color: #000;
}

.events-section {
  width: 1130px;
  padding: 36px 0 60px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.event-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.event-item {
  width: 28.14%;
  margin-right: 7.79%;
  margin-bottom: 36px;
}

.event-item:nth-child(3n) {
  margin-right: 0;
}

.event-item-image {
  position: relative;
  margin-bottom: 24px;
}

.event-item img {
  width: 100%;
  height: auto;
  transition: none !important;
  transform: none !important;
  vertical-align: bottom;
}

.event-item:hover img {
  transform: none;
}

.event-item-image a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 8px solid #8c2d18;
}

.event-item-image:hover a {
  border-color: #000;
}

.event-item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  text-align:center;
}

.event-item-title a {
  display: block;
  color: #000;
}

.event-item-title a:hover {
  color: #8c2d18;
}

/* What Our Client's Say Section */
.clients-section {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 450px;
  padding: 55px 40px 45px;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  background-color: #ffcc32;
  color: #2a3659;
}

.clients-section.clients-section-orange {
  background-color: #8c2d18;
  color: #fff;
}

.clients-section::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  right: -32%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #a7bfb1;
}

.clients-section.clients-section-orange::after {
  top: auto;
  right: auto;
  left: 0%;
  bottom: -85%;
  transform: translate(-50%, 0);
  background-color: #ffcc32;
}

.clients-section-content {
  position: relative;
  z-index: 1;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}

.clients-section-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.69em;
}

.clients-section-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.54;
  margin-bottom: 0;
}

.clients-section-author{
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.92em;
  margin-bottom: 0;
}

/* Associates Section */
.associates-section {
  width: 1020px;
  max-width: 100%;
  margin: 66px auto 100px;
}

.associates-section-items {

}

.associates-section-item {
  display: flex;
  margin-bottom: 42px;
}

.associates-section-item-image {
  width: 270px;
  height: auto;
  margin-right: 45px;
}

.associates-section-item-image img {
  vertical-align: bottom;
}

.associates-section-item-content {
  flex-grow: 1;
  padding-bottom: 34px;
  border-bottom: 1px solid #589ea6;
}

.associates-section-item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 0.72em;
  color: #2a3659;
}

.associates-section-item:last-child {
  margin-bottom: 0;
}

.associates-section-item:last-child .associates-section-item-content {
  padding-bottom: 0;
  border-bottom: 0;
}

/* Post */
.post-header-block {
  display: flex;
  min-height: 800px;
  background-color: #8c2d18;
  color: #fff;
}

.post-header-block-image {
  width: 50%;
  height: 100%;
}

.post-header-block-image img {
  vertical-align: bottom;
}

.post-header-block-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.post-header-block-title {
  font-size: 5.04em;
  font-weight: 700;
  line-height: 1.25em;
}

/* Service */
.post-items-section {
  width: 1028px;
  margin: 120px auto 100px;
}

.post-items {
  margin-bottom: 70px;
}

.post-item {
  display: flex;
  margin-bottom: 36px;
}

.post-item:last-child {
  margin-bottom: 0;
}

.post-item-image {
  position: relative;
  width: 492px;
  max-width: 100%;
  height: 333px;
  margin-left: 40px;
}

.post-item-image img {
  vertical-align: bottom;
  transition: opacity 0.3s ease;
}

.post-item-image:hover img {
  opacity: 0.85;
}

.post-item-image a {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border: 8px solid transparent;
}

.post-item-image a:hover {
  border-color: #589ea6;
}

.post-item-image-title{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 2.09em;
  background-color: #cf5f45;
  color: #fff;
}

.post-item-content {
  flex-grow: 1;
  padding: 36px 0;
  border-top: 1px solid #589ea6;
}

.post-item-title {
  font-size: 2.09em;
  font-weight: 600;
  line-height: 1.27;
}

.post-item-title a {
  color: inherit;
}

.post-item-title a:hover {
  text-shadow: 0px 0px 1px #589ea6;
  color: #589ea6;
}

.post-items-load-more{
  display: flex;
  justify-content: center;
}

.post-items-load-more a {
  display: inline-flex;
  padding: 0.75em 1em 0.5em;
  font-size: 0.96em;
  font-weight: 600;
  line-height: 1;
  background-color: #595959;
  color: #fff;
  cursor: pointer;
}

.post-items-load-more a:hover {
  background-color: #000;
}

@media only screen and (max-width: 1340px) {
    /* Tablet (Portrait and Landscape) */
    html{
      margin-top: 0 !important;
    }

    html #wpadminbar{
      display:none !important;
    }

    body {
      font-size: 20px;
    }

    /*Header*/
    header {
      padding: 30px 0;
    }

    .logo {
      margin-bottom: 0;
    }

    .logo img {
      display: block;
      height: auto;
      max-width: 100%;
      max-height: 26px;
    }

    /*Responsive Nav*/
    .responsive-nav-container{
        display: block
    }

    .main-menu {
        display: none;
    }

    .page-slider-container {
      margin-bottom: 50px;
    }

    .page-slider,
    .page-slider .slides,
    .page-slider .slides li {
      height: auto;
    }

    .slide-content div {
      font-size: 50px;
    }

    .custom-slider-direction-nav a {
      bottom: 20px;
    }

    .custom-slider-direction-nav a.flex-prev{
      left: 20px;
    }

    .custom-slider-direction-nav a.flex-next{
      right: 20px;
    }

    .page-content, .services-section, .clients-section, .page-content-columns {
      margin-top: 50px;
    }

    .page-content:last-child {
      margin-bottom: 50px;
    }

    .post-items-section {
      max-width: 100%;
      margin: 50px auto 50px;
    }

    .post-item-image {
      width: 50%;
      height: auto;
      min-height: 220px;
      margin-left: 24px;
    }

    .post-item-image img {
      max-width: 100%;
    }

    .post-item-image-title {
      font-size: 1.2em;
    }

    .post-item-title {
      font-size: 1.2em;
    }

    .page-heading {
      font-size: 2.5em;
      margin-bottom: 0.5em;
    }

    .page-content-columns {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-content-column {
      padding: 0;
    }

    article blockquote {
      padding: 1em;
      margin: 1em 0;
      font-size: 1.5em;
    }

    article .wp-caption .wp-caption-text {
      padding-top: 1em;
    }

    .post-header-block {
      min-height: 0;
    }

    .post-header-block-image img {
      max-width: 100%;
    }

    .post-header-block-title {
      font-size: 4em;
    }

    /*Events*/
    .speaking-events-banner-heading {
      font-size: 50px;
    }
    
    .event-item {
      width: 32%;
      margin-right: 2%;
      margin-bottom: 36px;
    }

    .event-item-title {
      font-size: 20px;
    }

    /*Associates*/
    .associates-section-item-image {
      width: 240px;
      margin-right: 25px;
    }
  
    .associates-section-item-image img {
      max-width: 100%;
    }

    .clients-section-title {
      font-size: 28px;
    }
    
    .clients-section-text {
      font-size: 26px;
    }
    
    .clients-section-author{
      font-size: 20px;
    }

}

@media only screen and (max-width: 1000px) {
  /* Tablet (Portrait ) */
  body {
    font-size: 18px;
  }

  .services-section-item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 50px;
}

}

@media only screen and (max-width: 800px) {
  /* Smartphone (Portrait and Landscape) */

  html{
    margin-top: 0 !important;
  }

  html #wpadminbar{
    display:none !important;
  }

  body {
    font-size: 16px;
  }

  .page-slider-container {
    margin-bottom: 40px;
  }

  .slide-content div {
    font-size: 30px;
  }

  .custom-slider-direction-nav a {
    width: 40px;
    height: 40px;
    font-size: 24px;
    bottom: 16px;
  }
  
  .custom-slider-direction-nav a.flex-prev{
    left: 16px;
  }

  .custom-slider-direction-nav a.flex-next{
    right: 16px;
  }

  .page-content, .services-section, .clients-section, .page-content-columns {
    margin-top: 30px;
  }

  .post-header-block-title {
    font-size: 2em;
  }

  .post-item-image {
    min-height: 150px;
  }

  .page-heading {
    font-size: 2em;
  }

  .services-section-title {
    font-size: 2em;
  }

  .services-section-items {
    display: block;
  }

  .services-section-item {
    width: auto;
    max-width: 100%;
    margin-bottom: 36px;
  }

  .clients-section {
    min-height: 0;
  }

  .clients-section-title {
    font-size: 24px;
  }

  .clients-section-text {
    font-size: 22px;
    line-height: 1.5;
  }

  .clients-section-author {
    font-size: 20px;
    line-height: 1.5;
  }

  .clients-section::after {
    display: none;
  }

    /*Events*/

    .speaking-events-banner {
      padding: 32px 20px 36px;
      margin: 30px 0 30px;
    }
    
    .speaking-events-banner-heading {
      font-size: 32px;
    }
    
    .speaking-events-banner-text {
      font-size: 16px;
    }
    
    .speaking-events-banner-button {
      font-size: 20px;
      padding: 14px 20px 13px;
    }



    .event-item {
      width: 48%;
      margin-right: 2%;
    }

    .event-item:nth-child(3n) {
      margin-right: 2%;
    }

    .event-item:nth-child(2n) {
      margin-right: 0 !important;
    }

    .footer-menu {
      margin-bottom: 30px;
    }

    .footer-copyright {
      display: block;
      text-align:center;
    }

    /*Associates*/
    .associates-section-item {
      flex-direction: column;
    }

    .associates-section-item-image {
      width: auto;
      margin-right: 0;
      margin-bottom: 30px;
      text-align:center;
    }

    .associates-section-item-title {
      font-size: 24px;
    }
}

@media only screen and (max-width: 640px) {
  /* Smartphone (Portrait) */
  .slide-heading {
    font-size: 20px;
  }

  .slide-content div {
    font-size: 25px;
  }

  .post-header-block-title {
    font-size: 1.5em;
  }

    /*Events*/
    .event-item-title {
      font-size: 16px;
    }

    /*Associates*/
    .associates-section-item-image img {
      max-width: 230px;
    }

}