/*
Author: Ansonika

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Home
- 2.2 Members list pages
- 2.3 Map listing
- 2.4 Search page
- 2.5 About
- 2.6 Member requirements
- 2.7 Committee
- 2.8 Faq
- 2.9 Profile_page
- 2.10 Retreat
- 2.11 Reources Section
- 2.12 Terms
- 2.13 Contact

3. COMMON
- 3.1 Tooltips
- 3.2 Forms
- 3.3 List
- 3.4 Misc
- 3.5 Spacing
- 3.6 Scroll top button
- 3.7 Sing In Modal
- 3.8 Datatables styles

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- Preloader --------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 999999;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite .95s linear;
  -moz-animation: circle infinite .95s linear;
  -o-animation: circle infinite .95s linear;
  animation: circle infinite .95s linear;
  border: 2px solid #043b5a;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*-------- 1.1 Typography --------*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Poppins", Helvetica, sans-serif;
  color: #4e4e4e;
}

main {
  background: #f5f8fa;
  position: relative;
  z-index: 1;
}
main.no_background {
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
}

label {
  font-weight: 500;
}

hr {
  margin: 15px 0 30px 0;
  border-color: #ededed;
}

hr.double {
  margin: 15px 0 30px 0;
  border-color: #ededed;
  border-width: 2px;
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

p {
  margin-bottom: 20px;
}

p.lead {
  font-weight: 300;
}
@media (max-width: 575px) {
  p.lead {
    /* For less than 575px */
    line-height: 1.4;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

p.lead_2 {
  font-weight: 600;
  color: #043b5a;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 575px) {
  p.lead_2 {
    /* For less than 575px */
    line-height: 1.4;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

strong {
  font-weight: 500;
}

p > strong {
  color: #353535;
}

@media (max-width: 767px) {
  h2.title {
    /* For less than 767px */
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 575px) {
  h2.title {
    /* For less than 575px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.main_title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main_title {
    /* For less than 767px */
    margin-bottom: 15px;
  }
}
.main_title h2 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .main_title h2 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .main_title h2 {
    /* For less than 575px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .main_title h1 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
.main_title p {
  padding: 0 9%;
}
@media (max-width: 767px) {
  .main_title p {
    /* For less than 767px */
    padding: 0;
  }
}
@media (max-width: 575px) {
  .main_title p {
    /* For less than 575px */
  }
}

.main_title_2 {
  text-align: center;
  margin-bottom: 30px;
}
.main_title_2 h3 {
  font-weight: 300;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 0;
  text-transform: uppercase;
}
.main_title_2 p {
  font-weight: 300;
  font-size: 20px;
  font-size: 1.25rem;
  color: #777;
}

.main_title_4 {
  background-color: #043b5a;
  background-color: #043b5a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .main_title_4 {
    /* For less than 991px */
    margin-bottom: 30px;
  }
}
.main_title_4 h3 {
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.main_title_4 h3 i {
  position: relative;
  top: 1px;
  margin-right: 5px;
}

.main_title_5 h2 {
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  color: #002944;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .main_title_5 h2 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .main_title_5 h2 {
    /* For less than 575px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/*-------- 1.2 Buttons --------*/
/*General links color*/
a {
  color: #66097b;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #e74e84;
  text-decoration: none;
  outline: none;
}

a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #66097b;
  cursor: pointer;
  padding: 7px 20px;
  display: inline-block;
  outline: none;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
}
a.btn_1.medium,
.btn_1.medium {
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1rem;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  text-align: center;
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
}
a.btn_1:hover,
.btn_1:hover {
  background: #e74e84;
}
a.btn_1:focus,
.btn_1:focus {
  color: #fff;
}
a.btn_1.outline,
.btn_1.outline {
  background: transparent;
  border: 2px solid #ffbd00;
  color: #ffbd00;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: #ffbd00;
  color: #fff;
}

/*-------- 1.3 Structure --------*/
/* Header */
header {
  background: #02192c url(../img/header_bg.jpg) repeat-x left top;
  padding: 20px 0 0 0;
}
header.resolute {
  background-color: #02192c;
  background-image: none;
  padding: 0px;
}
@media (max-width: 767px) {
  header {
    /* For less than 767px */
    background: #02192c url(../img/header_bg_mobile.jpg) repeat-x center top;
  }
}
header.header_sticky {
  width: 100%;
  z-index: 999;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header.header_sticky.sticky {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
}
@media (max-width: 991px) {
  header.header_sticky.sticky {
    /* For less than 991px */
    position: static;
  }
}
header.header_map {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
}
header.static {
  position: static;
  border-bottom: 1px solid #ededed;
  z-index: 999;
  position: relative;
}
@keyframes smoothScroll {
  0% {
    transform: translateY(-160px);
  }
  100% {
    transform: translateY(0px);
  }
}
ul#top_access {
  float: right;
  position: relative;
  top: 3px;
  margin: -1px 0 0 0;
}
@media (max-width: 991px) {
  ul#top_access {
    /* For less than 991px */
    right: 0;
    top: 2px;
  }
}
ul#top_access li {
  display: inline-block;
  position: relative;
  padding: 0;
  margin-left: 15px;
}
ul#top_access li i {
  font-size: 34px;
  font-size: 2.125rem;
}
ul#top_access li a {
  color: #043b5a;
}
ul#top_access li a:hover {
  color: #333;
}
ul#top_access li#user {
  position: relative;
  padding: 10px 0 0 60px;
  font-weight: 500;
}
ul#top_access li#user figure {
  position: absolute;
  left: 15px;
  top: 0;
  width: 35px;
  height: 35px;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
ul#top_access li#user figure img {
  width: auto;
  height: 35px;
}
@media (max-width: 991px) {
  ul#top_access li#user figure {
    /* For less than 991px */
    text-indent: 0;
  }
}
@media (max-width: 991px) {
  ul#top_access li#user {
    /* For less than 991px */
    text-indent: -9999px;
    padding: 0;
    margin: 2px 10px 0 0;
  }
}

/*Top Search*/
.sb-search {
  position: relative;
  margin-top: 17px;
  right: 0;
  width: 0%;
  min-width: 36px;
  height: 36px;
  float: right;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .sb-search {
    /* For less than 767px */
    display: none;
  }
}
.sticky .sb-search {
  margin-top: 0;
}
.sb-search-input {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background: none;
  border: 1px solid #043b5a;
  background-color: #011a2e;
  width: 100%;
  height: 36px;
  margin: 0;
  z-index: 10;
  font-family: inherit;
  color: #ccc;
}

.sb-search-input::-webkit-input-placeholder {
  color: #ccc;
}

.sb-search-input:-moz-placeholder {
  color: #ccc;
}

.sb-search-input::-moz-placeholder {
  color: #ccc;
}

.sb-search-input:-ms-input-placeholder {
  color: #ccc;
}

.sb-icon-search,
.sb-search-submit {
  width: 36px;
  height: 36px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

.sb-search-submit {
  background: #fff;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1;
}

.sb-icon-search {
  color: #fff;
  background-color: #011a2e;
  z-index: 90;
  font-size: 20px;
  font-family: 'fontello';
  border: 1px solid #043b5a;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  line-height: 34px;
}

.sb-icon-search:before {
  content: "\e806";
}

.sb-search.sb-search-open,
.no-js .sb-search {
  width: 100%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  background: #043b5a;
  border-left: 1px solid transparent;
  color: #fff;
  z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  z-index: 90;
}

/* logo home with h1 */
#logo_home {
  margin-bottom: 15px;
}
#logo_home h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}
#logo_home h1 a {
  width: 385px;
  height: 75px;
  display: block;
  background: url(../img/logo.png) no-repeat 0 0;
  background-size: 385px 75px;
  text-indent: -9999px;
}
@media (max-width: 767px) {
  #logo_home h1 a {
    /* For less than 767px */
    margin: auto;
    background: url(../img/logo_2x.png) no-repeat 0 0;
    background-size: 385px 75px;
  }
}
@media (max-width: 575px) {
  #logo_home h1 a {
    /* For less than 575px */
    width: 250px;
    height: 49px;
    background-size: 250px 49px;
  }
}
.sticky #logo_home {
  margin-bottom: 7px;
}
@media (max-width: 991px) {
  .sticky #logo_home {
    /* For less than 991px */
    margin-bottom: 15px;
  }
}
.sticky #logo_home h1 a {
  width: 560px;
  height: 45px;
  display: block;
  background: url(../img/logo_sticky.png) no-repeat 0 0;
  background-size: 560px 45px;
}
@media (max-width: 991px) {
  .sticky #logo_home h1 a {
    /* For less than 991px */
    width: 385px;
    height: 75px;
    display: block;
    background: url(../img/logo.png) no-repeat 0 0;
    background-size: 385px 75px;
  }
}
@media (max-width: 767px) {
  .sticky #logo_home h1 a {
    /* For less than 767px */
    width: 385px;
    height: 75px;
    margin: auto;
    background: url(../img/logo_2x.png) no-repeat 0 0;
    background-size: 385px 75px;
  }
}
@media (max-width: 575px) {
  .sticky #logo_home h1 a {
    /* For less than 575px */
    width: 250px;
    height: 49px;
    background-size: 250px 49px;
  }
}

#logo_in {
  margin-bottom: 15px;
}
#logo_in .logo_sticky {
  display: none;
}

@media (max-width: 767px) {
  #logo_in {
    /* For less than 767px */
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  #logo_in {
    /* For less than 575px */
    width: 250px;
    height: 44px;
  }
}

/* Footer */
img.footer-logo {
  opacity: 0.45;
}
@media (max-width: 767px) {
  img.footer-logo {
    /* For less than 767px */
    width: 120px;
    height: auto;
    margin: auto;
    display: block;
  }
}

footer {
  padding: 30px 0 15px 0;
  background: #02192c url(../img/footer_bg.jpg) center top;
  color: #fff;
  border-top: 3px solid #4683b5;
}
@media (max-width: 767px) {
  footer {
    /* For less than 767px */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}
footer hr {
  opacity: 0.4;
  margin: 5px 0 20px 0;
}
footer h5 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  footer h5 {
    /* For less than 767px */
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  footer ul {
    /* For less than 767px */
    margin-bottom: 35px;
  }
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #4e4e4e;
}
footer ul li a:hover {
  color: #ffbd00;
}
footer ul li a i {
  margin-right: 10px;
  color: #fff;
}
footer ul.links li a:hover {
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
footer ul.links li a:hover:after {
  opacity: 1;
}
footer ul.links li a:after {
  font-family: 'ElegantIcons';
  content: "\24";
  position: absolute;
  margin-left: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
footer ul.contacts li a i {
  margin-right: 10px;
  color: #ffbd00;
}
footer #copy {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
}
@media (max-width: 767px) {
  footer #copy {
    /* For less than 767px */
    text-align: center;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  footer #copy span {
    /* For less than 767px */
    display: block;
  }
}

.contacts_footer ul {
  margin: 10px 0 25px 0;
}
.contacts_footer ul li {
  margin: 0;
}
.contacts_footer ul li strong {
  font-size: 16px;
  font-size: 1rem;
}
.contacts_footer ul li a {
  color: #fff;
}

.follow_us {
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .follow_us {
    /* For less than 767px */
    padding-top: 0;
  }
}
.follow_us h5 {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: none;
  margin-bottom: 10px;
}
.follow_us ul {
  margin: 0 0 0 0;
  text-align: center;
}
.follow_us ul li {
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  font-size: 26px;
  font-size: 1.625rem;
}
.follow_us ul li a i {
  color: #d5d5d5;
  margin: 0;
}
.follow_us ul li a i:hover {
  color: #fff;
}

/* Addtional links / Footer */
ul#additional_links {
  margin: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #999;
}
@media (max-width: 767px) {
  ul#additional_links {
    /* For less than 767px */
    text-align: center;
  }
}
ul#additional_links li {
  display: inline-block;
  margin-right: 15px;
}
ul#additional_links li:first-child {
  margin-right: 20px;
}
ul#additional_links li:last-child:after {
  content: "";
}
ul#additional_links li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
ul#additional_links li a:hover {
  color: #ffc00a;
}
ul#additional_links li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 10px;
}

/* Wow on scroll event */
.wow {
  visibility: hidden;
}

/* Sub header */
.sub_header {
  width: 100%;
  border-top: 1px solid #fff;
  background: #225e7f;
  overflow: hidden;
}
.sub_header.general .wrapper {
  height: 180px;
  position: relative;
}
.sub_header.general .wrapper img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 575px) {
  .sub_header.general .wrapper img {
    /* For less than 575px */
    right: -45%;
    bottom: -20px;
    padding: 100px 0 20px 0;
  }
}
.sub_header.general .wrapper h1 {
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 0.1rem;
  position: absolute;
  left: 0;
  bottom: 25px;
  z-index: 2;
}
@media (max-width: 767px) {
  .sub_header.general .wrapper h1 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .sub_header.general .wrapper h1 {
    /* For less than 575px */
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.sub_header.blog {
  background: #043b5a url(../img/blog_header_bg.jpg) no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .sub_header.blog {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
.sub_header.blog .wrapper {
  height: 300px;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
.sub_header.blog .wrapper h1 {
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .sub_header.blog .wrapper h1 {
    /* For less than 767px */
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .sub_header.blog .wrapper h1 {
    /* For less than 575px */
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.sub_header.blog .wrapper > div {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
}

.sub_header h1.animated {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
.sub_header img.animated {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
  -moz-animation-delay: 1.4s;
}

.sub_header.blog h1.animated {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
}
.sub_header.blog p.animated {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
}

/* Animations */
@keyframes pop-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home--------*/
#intro p {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 300;
}
@media (max-width: 575px) {
  #intro p {
    /* For less than 575px */
    line-height: 1.4;
  }
}

#intro_txt {
  background: #043b5a url(../img/bg-calendar-alt.jpg) no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
}
@media (max-width: 991px) {
  #intro_txt {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
#intro_txt .overlay {
  background-color: rgba(15, 38, 58, 0.9);
}
#intro_txt .carousel-item {
  padding: 90px 0;
}
@media (max-width: 767px) {
  #intro_txt .carousel-item {
    /* For less than 767px */
    padding: 30px 0;
  }
}
#intro_txt p {
  margin-bottom: 0;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: 'Schneidler Md BT';
  line-height: 1.3;
}
@media (max-width: 991px) {
  #intro_txt p {
    /* For less than 991px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}
#intro_txt p strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 20px;
}
@media (max-width: 767px) {
  #intro_txt p strong {
    /* For less than 767px */
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#counter {
  background: #043b5a url(../img/bg_counter.jpg) no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  #counter {
    /* For less than 991px */
    background-attachment: scroll;
    background-position: center center;
  }
}
#counter .overlay {
  background-color: rgba(15, 35, 52, 0.75);
  padding: 60px 0;
}
@media (max-width: 767px) {
  #counter .overlay {
    /* For less than 767px */
    padding: 30px 0 0 0;
  }
}
#counter .count {
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  #counter .count {
    /* For less than 767px */
    margin-bottom: 30px;
  }
}
#counter .count img {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  #counter .count img {
    /* For less than 991px */
    height: 60px;
    width: auto;
  }
}
#counter .count span {
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
}
#counter .counter {
  color: #fff;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  #counter .counter {
    /* For less than 1119px */
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media (max-width: 991px) {
  #counter .counter {
    /* For less than 991px */
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.map_list_home ul {
  padding: 60px 0 0 0;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .map_list_home ul {
    /* For less than 991px */
    padding: 0;
  }
}
.map_list_home ul li {
  white-space: nowrap;
  margin-bottom: 8px;
}
.map_list_home ul li a {
  color: #4e4e4e;
  display: inline-block;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.map_list_home ul li a:hover {
  color: #e74e84;
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}

/*Carousel home page*/
#reccomended {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #reccomended {
    /* For less than 767px */
    margin: 0 0 15px 0;
  }
}
#reccomended .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}
#reccomended .item .title h4 {
  background-color: #043b5a;
  background-color: #043b5a;
  display: inline-block;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  padding: 10px 15px;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  opacity: 0;
}
#reccomended .item .title h4 em {
  display: block;
  font-size: 13px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  margin-top: 3px;
  font-style: normal;
}
#reccomended .item a {
  position: relative;
  display: block;
}
#reccomended .item a .views {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #043b5a;
  background-color: #043b5a;
  color: #fff;
  box-sizing: border-box;
  padding: 3px 6px 4px 5px;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0;
}
#reccomended .item a .views i {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

#reccomended .owl-item {
  opacity: 0.5;
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  transition: all 0.3s ease-in-out 0s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

#reccomended .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

#reccomended .owl-item.active.center .item .title h4,
#reccomended .owl-item.active.center .item .views {
  opacity: 1;
}

.owl-theme .owl-dots {
  margin-top: 25px !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #66097b !important;
}

/*-------- 2.2 Members list pages --------*/
/* Filters */
.filters_listing {
  border-bottom: 1px solid #e1e8ed;
  padding: 15px 0;
}
.filters_listing.map_listing {
  border-bottom: none;
}
.filters_listing ul {
  margin: 0;
}
.filters_listing ul li {
  margin-right: 10px;
}
.filters_listing ul li h6 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .filters_listing ul li h6 {
    /* For less than 767px */
    display: none;
  }
}
.filters_listing ul li:first-child {
  float: left;
}
.filters_listing ul li:nth-child(2) {
  float: right;
  margin-right: 0;
}
@media (max-width: 767px) {
  .filters_listing ul li:nth-child(2) {
    /* For less than 767px */
    float: left;
  }
}
.filters_listing ul li:nth-child(3) {
  float: right;
}
@media (max-width: 767px) {
  .filters_listing ul li:nth-child(3) {
    /* For less than 767px */
    float: left;
    clear: both;
  }
}

@media screen and (min-width: 991px) and (max-width: 1395px) {
  .filters_listing.map_listing ul li:nth-child(2) {
    float: right;
    margin-right: 0;
  }
  .filters_listing.map_listing ul li:nth-child(3) {
    float: left;
  }
}
@media screen and (min-width: 991px) and (max-width: 1296px) {
  .filters_listing.map_listing ul li:nth-child(3) {
    margin-top: 5px;
  }
}
@media screen and (max-width: 400px) {
  .filters_listing.map_listing ul li:nth-child(3) {
    margin-left: 5px;
    float: left;
    clear: inherit;
  }
}
.switch-field {
  overflow: hidden;
  margin-bottom: 4px;
}
.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.switch-field input:checked + label {
  background-color: #043b5a;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #fff;
}
.switch-field label {
  float: left;
  display: inline-block;
  min-width: 70px;
  background-color: #fff;
  color: #043b5a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  text-shadow: none;
  padding: 10px 15px 8px 15px;
  line-height: 1;
  border: 1px solid #e1e8ed;
  border-right: 0;
  margin: 0;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.switch-field label:first-of-type {
  border-radius: 3px 0 0 3px;
}
.switch-field label:last-of-type {
  border-radius: 0 3px 3px 0;
  border: 1px solid #e1e8ed;
}
.switch-field label:hover {
  cursor: pointer;
  color: #e74e84;
}

.sbHolder {
  background-color: #fff;
  border: 1px solid #e1e8ed;
  height: 32px;
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  min-width: 120px;
}

.sbSelector {
  display: block;
  height: 32px;
  left: 0;
  line-height: 32px;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 10px;
  top: 0;
  width: 100%;
}

.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
  color: #555;
  outline: none;
  text-decoration: none;
  color: #043b5a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
}

.sbToggle {
  position: absolute;
  display: block;
  height: 32px;
  outline: none;
  right: 0;
  top: 0;
  width: 35px;
  text-align: center;
  line-height: 32px;
}
.sbToggle:after {
  font-family: 'ElegantIcons';
  font-size: 14px;
  content: "\43";
  color: #043b5a;
  text-align: center;
}

.sbHolderDisabled {
  background-color: #ededed;
  border: solid 1px #ededed;
}

.sbOptions {
  background-color: #fff;
  border: solid 1px #ededed;
  list-style: none;
  left: -1px;
  right: -1px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px;
  z-index: 10;
  font-size: 12px;
  font-size: 0.75rem;
}

.sbOptions li {
  padding: 0 7px;
  float: none !important;
  border-bottom: solid 1px #ededed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.sbOptions li:last-child {
  border-bottom: none;
  float: none !important;
  margin: 0;
  padding-left: 10px;
}

.sbOptions li:hover {
  color: #e74e84;
}

.sbOptions a {
  display: block;
  outline: none;
  padding: 7px 0 7px 3px;
  text-transform: capitalize;
}

.sbOptions a:link,
.sbOptions a:visited {
  color: #555;
  text-decoration: none;
}

.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
  color: #e74e84;
}

.sbOptions li.last a {
  border-bottom: none;
}

.sbOptions .sbDisabled {
  border-bottom: dotted 1px #fff;
  color: #999;
  display: block;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbGroup {
  border-bottom: dotted 1px #fff;
  color: #555;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}

.sbOptions .sbSub {
  padding-left: 17px;
}

.layout_view {
  background-color: #fff;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 4px 8px 3px 8px;
  margin-bottom: 5px;
}
.layout_view a {
  color: #043b5a;
}
.layout_view a.active {
  color: #e74e84;
  cursor: default;
}
.layout_view a:hover {
  color: #e74e84;
}

.main_title_with_btn {
  margin-bottom: 15px;
}
.main_title_with_btn h2 {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  display: inline-block;
}
@media (max-width: 767px) {
  .main_title_with_btn h2 {
    /* For less than 767px */
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.main_title_with_btn.version_2 h2 {
  text-transform: none;
}
.main_title_with_btn a {
  float: right;
  margin-top: -5px;
}
@media (max-width: 767px) {
  .main_title_with_btn a {
    /* For less than 767px */
    float: none;
    margin: 10px 0;
  }
}

table.table-list {
  margin-bottom: 0;
}
table.table-list tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
@media (max-width: 575px) {
  table.table-list thead th:nth-child(1) {
    /* For less than 575px */
    display: none !important;
  }
}
@media (max-width: 575px) {
  table.table-list tbody tr td:nth-child(1) {
    /* For less than 575px */
    display: none !important;
  }
}
@media (max-width: 767px) {
  table.table-list thead th:nth-child(5) {
    /* For less than 767px */
    display: none !important;
  }
}
@media (max-width: 767px) {
  table.table-list tbody tr td:nth-child(5) {
    /* For less than 767px */
    display: none !important;
  }
}
table.table-list tbody tr {
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
table.table-list tbody tr:hover {
  background-color: #d5e6f5;
  cursor: pointer;
}
table.table-list thead th {
  border: none;
  padding-top: 0;
  font-weight: 600;
}
table.table-list tbody td {
  vertical-align: middle;
  padding: .55rem;
  border: none;
  line-height: 1.3;
}
table.table-list figure {
  width: 45px;
  height: 45px;
  overflow: hidden;
  margin: 0;
  position: relative;
}
table.table-list figure img {
  width: 45px;
  height: auto;
}

a.box_face {
  background-color: #fff;
  padding: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  position: relative;
  display: inline-block;
}
a.box_face:hover {
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
}
a.box_face figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
a.box_face figure img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a.box_face figure:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
a.box_face .user_info {
  position: absolute;
  bottom: 5px;
  text-align: center;
  z-index: 2;
  background-color: #043653;
  background-color: rgba(4, 59, 90, 0.7);
  width: calc(100% - 10px);
  padding: 5px 0;
}
a.box_face .user_info h3 {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  margin: 0;
}
a.box_face .user_info span {
  display: block;
}

.isotope-wrapper {
  margin: 30px -10px 15px -10px;
}
@media (max-width: 767px) {
  .isotope-wrapper {
    /* For less than 767px */
    margin: 30px -10px 5px -10px;
  }
}

.view_by_name > ul {
  margin: 45px 0 25px 0;
  padding: 0;
}
.view_by_name > ul li {
  display: inline-block;
  margin: 0 0 5px 0;
}
.view_by_name > ul li a {
  background-color: #7798ba;
  padding: 5px 10px;
  display: block;
  text-align: center;
  color: #fff;
}
.view_by_name > ul li a:hover {
  -webkit-transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
  transform: translate(0, -5px);
  background-color: #e74e84;
  color: #fff;
}

/*-------- 2.3 Map listing --------*/
.infoBox {
  padding-right: 50px !important;
}
.infoBox > img {
  position: absolute !important;
  right: 60px !important;
  top: 10px !important;
  z-index: 9999999;
}

.marker_info {
  width: 200px;
  padding: 20px 15px 15px 15px;
  height: 250px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  background-color: #fefefe;
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 99999;
  font-family: "Poppins", Helvetica, sans-serif;
}
.marker_info figure {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin: auto;
  margin-bottom: 10px;
  position: relative;
}
.marker_info figure img {
  width: auto;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.marker_info h3 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 5px 0;
}
.marker_info h3 a {
  color: #66097b;
}
.marker_info h3 a:hover {
  color: #e74e84;
}
.marker_info small {
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.marker_info span {
  display: block;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.marker_info:after {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-right-color: rgba(255, 255, 255, 0.9);
  border-width: 10px;
  margin-top: -10px;
}

.btn_infobox_get_directions:before,
.btn_infobox_phone:before {
  font-family: 'ElegantIcons';
  font-size: 14px;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  left: 0;
  top: 2px;
  color: #999;
  margin-right: 8px;
}

.btn_infobox_get_directions {
  border: none;
  display: block;
  font-weight: 500;
  color: #555;
  background: none;
  cursor: pointer;
  outline: none;
  font-size: 12px;
  font-size: 0.75rem;
}
.btn_infobox_get_directions:before {
  content: "\e081";
}
.btn_infobox_get_directions:hover {
  color: #e74e84;
}

.btn_infobox_phone {
  border: none;
  display: block;
  font-weight: 500;
  color: #555;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-size: 0.75rem;
  outline: none;
}
.btn_infobox_phone:before {
  content: "\e090";
}

.full-height {
  height: 100%;
}
@media (max-width: 991px) {
  .full-height {
    /* For less than 991px */
    height: auto;
  }
}

.row-height {
  height: 100%;
  min-height: 100%;
}
@media (max-width: 991px) {
  .row-height {
    /* For less than 991px */
    height: auto;
  }
}

.map-right {
  height: 100%;
  min-height: 100%;
  padding: 0px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .map-right {
    /* For less than 991px */
    height: 400px;
    position: static;
    min-height: inherit;
  }
}

#map_listing {
  height: 100%;
  width: 100%;
}
#map_listing.normal_list {
  height: 495px;
  width: auto;
  border: 3px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.content-left {
  height: 100%;
  min-height: 100%;
  overflow-y: scroll;
  padding-top: 158px;
  background-color: #f5f8fa;
}
@media (max-width: 767px) {
  .content-left {
    /* For less than 767px */
    padding-top: 110px;
  }
}
@media (max-width: 575px) {
  .content-left {
    /* For less than 575px */
    padding-top: 85px;
  }
}

.search_bar {
  margin-bottom: 15px;
  position: relative;
}
.search_bar input[type='submit'] {
  position: absolute;
  right: 8px;
  top: 2px;
  text-indent: -9999px;
  border: 0;
  width: 35px;
  height: 35px;
  background: url(../img/search.svg) no-repeat center right;
  cursor: pointer;
}

.search_bar_wrapper {
  background-color: #012943;
  padding: 15px;
  margin: 0 -15px 0 -15px;
}

.search_bar_list {
  position: relative;
}
.search_bar_list input[type='text'] {
  border: 0;
  height: 40px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-left: 15px;
}
.search_bar_list input[type='submit'] {
  position: absolute;
  right: -1px;
  color: #fff;
  font-weight: 600;
  top: 0;
  border: 0;
  padding: 0 15px;
  height: 40px;
  cursor: pointer;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #66097b;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search_bar_list input[type='submit']:hover {
  background-color: #e74e84;
}

.strip_list {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 20px 15px 15px 115px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.strip_list a.wish_bt {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #555;
}
.strip_list a.wish_bt:hover:after {
  color: #ffbd00;
}
.strip_list .calendar_info {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.075);
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px 4px 10px;
}
@media (max-width: 575px) {
  .strip_list .calendar_info {
    /* For less than 575px */
    position: static;
  }
}
@media (max-width: 767px) {
  .strip_list {
    /* For less than 767px */
    padding: 20px 15px 15px 90px;
  }
}
.strip_list figure {
  width: 80px;
  height: 80px;
  position: absolute;
  overflow: hidden;
  left: 15px;
  top: 15px;
}
.strip_list figure img {
  width: auto;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767px) {
  .strip_list figure img {
    /* For less than 767px */
    height: 60px;
  }
}
@media (max-width: 767px) {
  .strip_list figure {
    /* For less than 767px */
    width: 60px;
    height: 60px;
  }
}
.strip_list h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 0;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .strip_list h3 {
    /* For less than 767px */
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.strip_list p {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .strip_list p {
    /* For less than 767px */
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.strip_list small {
  color: #999;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.strip_list ul {
  border-top: 1px solid #ededed;
  margin: 15px -15px -15px -115px;
  padding: 20px 15px;
}
@media (max-width: 767px) {
  .strip_list ul {
    /* For less than 767px */
    margin: 15px -15px -15px -90px;
  }
}
.strip_list ul li {
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
}
.strip_list ul li a {
  color: #999;
  cursor: pointer;
}
.strip_list ul li a:hover {
  color: #e74e84;
}
.strip_list ul li:first-child:after {
  content: '|';
  font-weight: 400;
  margin-left: 8px;
  color: #ccc;
}
.strip_list ul li:last-child {
  float: right;
  margin-right: 0;
}
.strip_list ul li:last-child a {
  border: 2px solid #66097b;
  color: #66097b;
  cursor: pointer;
  padding: 5px 20px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.strip_list ul li:last-child a:hover {
  background-color: #e74e84;
  color: #fff !important;
  border: 2px solid #e74e84;
}
@media (max-width: 991px) {
  .strip_list ul li:first-child {
    /* For less than 991px */
    display: none;
  }
}

/*-------- 2.4 Search page --------*/
#search_box h2 {
  background: #226184;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin: -30px -30px 30px -30px;
  padding: 20px 30px 16px 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  line-height: 1;
}
@media (max-width: 767px) {
  #search_box h2 {
    /* For less than 767px */
    margin: -30px -15px 15px -15px;
    font-size: 21px;
    font-size: 1.3125rem;
    padding: 15px 15px 11px 15px;
  }
}
#search_box label {
  margin-top: 3px;
}
#search_box .label_right {
  text-align: right;
}
@media (max-width: 991px) {
  #search_box .label_right {
    /* For less than 991px */
    text-align: left;
  }
}

/*-------- 2.5 About--------*/
#video {
  margin-bottom: -120px;
}
@media (max-width: 991px) {
  #video {
    /* For less than 991px */
    margin-bottom: 25px;
  }
}

/*-------- 2.6 Member requirements --------*/
.requirements_list ul {
  margin-top: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
.requirements_list ul li {
  margin-bottom: 20px;
  border: 1px solid #e1e8ed;
  padding: 25px 25px 25px 55px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.requirements_list ul li:before {
  content: "\5a";
  position: absolute;
  top: 13px;
  left: 20px;
  font-family: 'ElegantIcons';
  font-size: 28px;
  font-size: 1.75rem;
  color: #043b5a;
}
.requirements_list ul li:last-child {
  margin-bottom: 0;
}
.requirements_list ul li strong {
  color: #043b5a;
}

.msg_highlight {
  background-color: #032c43;
  background-color: rgba(4, 59, 90, 0.05);
  padding: 25px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 25px;
}

.msg_highlight_2 {
  background-color: #032c43;
  background-color: rgba(4, 59, 90, 0.05);
  padding: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 25px;
}

/*-------- 2.7 Committee--------*/
a.box_pic {
  display: block;
  transform: translate3d(0, 0, 0);
  position: relative;
  background-color: #000;
  margin-bottom: 30px;
}
a.box_pic figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
a.box_pic figure img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
a.box_pic:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 1;
  -webkit-filter: grayscale(0);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}
a.box_pic h3 {
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, black);
  background: linear-gradient(to bottom, transparent, black);
  font-size: 20px;
  font-size: 1.25rem;
  position: absolute;
  margin: 0;
  bottom: 0;
  text-align: center;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding: 90px 5px 15px 5px;
}
@media (max-width: 767px) {
  a.box_pic h3 {
    /* For less than 767px */
    font-size: 18px;
    font-size: 1.125rem;
    padding: 45px 5px 15px 5px;
  }
}
@media (max-width: 575px) {
  a.box_pic h3 {
    /* For less than 575px */
    font-size: 16px;
    font-size: 1rem;
  }
}
a.box_pic h3 span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 575px) {
  a.box_pic h3 span {
    /* For less than 575px */
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*-------- 2.8 Faq --------*/
.box_style_cat {
  background: #fff;
  text-align: center;
  border: 1px solid #e1e8ed;
  margin-bottom: 25px;
  padding: 30px 35px 15px 35px;
  box-sizing: border-box;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .box_style_cat {
    /* For less than 575px */
    padding: 25px 15px 0 15px;
  }
}
.box_style_cat img {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .box_style_cat a {
    /* For less than 575px */
    display: block;
  }
}

#faq .card {
  border: 0;
  margin-bottom: 10px;
}
#faq .card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #e1e8ed;
  padding: 0;
}
#faq .card .card-header a {
  padding: 20px;
}
#faq .card .card-header a:hover i.indicator {
  color: #e74e84;
}

#faq .card-body {
  padding-bottom: 0;
}

#faq .card-header h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}
#faq .card-header h5 a {
  border: 0;
  display: block;
  color: #222;
  position: relative;
  display: block;
  padding-right: 45px !important;
}
#faq .card-header h5 a i.indicator {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 22px;
  color: #66097b;
  margin-top: -3px;
}
#faq .card-header h5 a i.indicator:hover {
  color: #e74e84;
}

.profile_accordion .card {
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.profile_accordion .card .card-header {
  background-color: #fff;
  border-bottom: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
}
.profile_accordion .card .card-header a {
  padding: 15px 30px 12px 30px;
}
@media (max-width: 767px) {
  .profile_accordion .card .card-header a {
    /* For less than 767px */
    padding: 15px 15px 12px 15px;
  }
}
.profile_accordion .card .card-header a:hover i.indicator {
  color: #e74e84;
}

.profile_accordion .card-body {
  padding: 20px 30px 0 30px;
}

.profile_accordion .card-header h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
}
.profile_accordion .card-header h3 a {
  border: 0;
  display: block;
  color: #222;
  position: relative;
  display: block;
  padding-right: 45px !important;
}
.profile_accordion .card-header h3 a i.indicator {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  position: absolute;
  right: 30px;
  top: 17px;
  color: #66097b;
  margin-top: -3px;
}
@media (max-width: 767px) {
  .profile_accordion .card-header h3 a i.indicator {
    /* For less than 767px */
    right: 15px;
  }
}
.profile_accordion .card-header h3 a i.indicator:hover {
  color: #e74e84;
}

@media (max-width: 767px) {
  .profile_accordion .card-body ul {
    /* For less than 767px */
    text-align: center;
  }
}

.chart_box {
  text-align: center;
  width: 280px;
  border: 1px solid #ededed;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .chart_box {
    /* For less than 767px */
    margin: auto;
    margin-bottom: 30px;
  }
}
/*-------- Profile charts--------*/
.tab_practice_head ul {
  padding: 0 3px 0 9px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .tab_practice_head ul {
    /* For less than 991px */
    padding: 0;
  }
}
@media (max-width: 767px) {
  .tab_practice_head ul {
    /* For less than 767px */
    width: 280px;
    margin: auto;
    margin-bottom: 15px;
  }
}
.tab_practice_head ul li {
  background-color: #e0e9f2;
  text-align: center;
  width: 33%;
  border: 1px solid #fff;
  float: left;
  color: #222;
  line-height: 2;
}
@media (max-width: 767px) {
  .tab_practice_head ul li {
    /* For less than 767px */
    width: 100%;
    margin-bottom: 10px;
  }
}
.tab_practice_head ul li strong {
  border-bottom: 2px solid #fff;
  display: block;
}

@media (max-width: 991px) {
  .chart_box {
    /* For less than 991px */
    width: 260px !important;
  }
}
@media (max-width: 767px) {
  .chart_box {
    /* For less than 767px */
    width: 280px !important;
  }
}
/*-------- 2.9 Profile_page --------*/
.box_general_3.profile_box .title_box {
  background-color: #012943;
  margin: -30px -30px 30px -30px;
  padding: 20px 20px 12px 20px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
@media (max-width: 767px) {
  .box_general_3.profile_box .title_box {
    /* For less than 767px */
    margin: -30px -15px 15px -15px;
  }
}
@media (max-width: 575px) {
  .box_general_3.profile_box .title_box {
    /* For less than 575px */
    padding: 15px 15px 12px 15px;
  }
}
.box_general_3.profile_box .title_box h3 {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}
.box_general_3.profile_box .title_box h3 span {
  font-size: smaller;
  font-weight: lighter;
}
.box_general_3.profile_box .title_box a {
  float: right;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-weight: 500;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .box_general_3.profile_box .title_box a {
    /* For less than 575px */
    float: none;
    display: block;
  }
}
.box_general_3.profile_box .title_box a:before {
  font-family: 'ElegantIcons';
  font-size: 16px;
  font-size: 1rem;
  content: "\e01f";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 600;
  line-height: 1;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box_general_3.profile_box .title_box a:hover, .box_general_3.profile_box .title_box a:hover:before {
  color: #ffbd00;
}
.profile section {
  line-height: 1.3;
}
.box_general_3.profile_box .profile {
  position: relative;
  line-height: 1.3;
}
.box_general_3.profile_box .profile a.download {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 65px;
  display: block;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
}
.box_general_3.profile_box .profile a.download.pdf {
  background: url(../img/pdf_download.svg) no-repeat left top;
}
.box_general_3.profile_box .profile a.download.pdf:before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url(../img/arrow_pdf.svg) no-repeat left top;
  width: 15px;
  height: 16px;
  position: absolute;
  top: -5px;
  right: 0;
  content: "";
}
.box_general_3.profile_box .profile a.download.pdf:hover:before {
  top: 0;
}
.box_general_3.profile_box .profile figure {
  height: 250px;
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .box_general_3.profile_box .profile figure {
    /* For less than 767px */
    margin-bottom: 10px;
    height: 180px;
  }
}
.box_general_3.profile_box .profile figure img {
  width: 190px;
  height: auto;
}
@media (max-width: 767px) {
  .box_general_3.profile_box .profile figure img {
    /* For less than 767px */
    width: auto;
    height: 200px;
  }
}
.box_general_3.profile_box .profile h1 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 5px;
}
.box_general_3.profile_box .profile small {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.box_general_3.profile_box .profile small#regular_member {
  color: #999;
}
.box_general_3.profile_box .profile small#diplomate_member {
  color: #1e7ed7;
}
.box_general_3.profile_box .profile small .badge_list_1 {
  position: relative;
  top: -2px;
  margin-left: 8px;
}
.box_general_3.profile_box .profile #profile_address,
.box_general_3.profile_box .profile #profile_contacts {
  margin-bottom: 10px;
}
.box_general_3.profile_box .profile a#send_message {
  background-color: #66097b;
  padding: 9px 10px 6px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-top: 5px;
  color: #fff;
  line-height: 1;
  display: inline-block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}
.box_general_3.profile_box .profile a#send_message:before {
  font-family: 'ElegantIcons';
  content: "\e010";
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  left: 8px;
  top: 3px;
}
.box_general_3.profile_box .profile a#send_message:hover {
  background-color: #e74e84;
}

#bio p {
  line-height: 1.3;
}

.box_general_3.booking_box {
  padding: 20px 15px 12px 15px;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box {
    /* For less than 1119px */
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box {
    /* For less than 767px */
    padding: 15px;
  }
}
.box_general_3.booking_box .title_box {
  background-color: #012943;
  margin: -20px -15px 20px -15px;
  padding: 20px 15px 12px 15px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .title_box {
    /* For less than 1119px */
    margin: -30px -30px 25px -30px;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box .title_box {
    /* For less than 767px */
    margin: -15px -15px 15px -15px;
  }
}
@media (max-width: 575px) {
  .box_general_3.booking_box .title_box {
    /* For less than 575px */
    padding: 15px 15px 5px 15px;
  }
}
.box_general_3.booking_box .title_box h3 {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  line-height: 1.4;
}
.box_general_3.booking_box .title_box h3 span {
  display: block;
}
.box_general_3.booking_box .welcome {
  text-align: center;
  line-height: 1.3;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .welcome {
    /* For less than 1119px */
    text-align: left;
    width: 50%;
    float: left;
    padding-top: 50px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
@media (max-width: 991px) {
  .box_general_3.booking_box .welcome {
    /* For less than 991px */
    width: 45%;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box .welcome {
    /* For less than 767px */
    width: 100%;
    float: none;
    text-align: center;
    padding-top: 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.box_general_3.booking_box .welcome h4 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .welcome h4 {
    /* For less than 1119px */
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box .welcome h4 {
    /* For less than 767px */
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .welcome span {
    /* For less than 1119px */
    display: block;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box .welcome span {
    /* For less than 767px */
    display: inline-block;
  }
}
.box_general_3.booking_box .welcome.offline {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .welcome.offline {
    /* For less than 1119px */
    text-align: center;
    width: 100%;
    float: none;
    padding-top: 10px;
  }
}
@media (max-width: 1199px) {
  .box_general_3.booking_box .welcome.offline span {
    /* For less than 1119px */
    display: inline-block;
  }
}
.box_general_3.booking_box .welcome.offline p strong {
  display: block;
}
@media (max-width: 1199px) {
  .box_general_3.booking_box #calendar_wrapper {
    /* For less than 1119px */
    width: 310px;
    float: right;
  }
}
@media (max-width: 767px) {
  .box_general_3.booking_box #calendar_wrapper {
    /* For less than 767px */
    float: none;
    margin: auto;
  }
}

/*-------- Calendar --------*/
#form_mail {
  padding: 30px 30px 15px 30px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  #form_mail {
    /* For less than 767px */
    padding: 15px;
  }
}
.window_booking_wrapper #form_mail {
  position: relative;
  margin: auto;
  max-width: 720px;
  min-height: 150px;
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

#form_mail .title {
  background-color: #f6f6f6;
  padding: 20px 30px 15px 30px;
  margin: -30px -30px 15px -30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
#form_mail .title h3 {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  color: #222;
  margin: 0;
  padding: 0;
}
#form_mail .title strong {
  float: right;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #af1308;
  line-height: 1.1;
  margin-right: 25px;
  padding-top: 5px;
}
@media (max-width: 991px) {
  #form_mail .title strong {
    /* For less than 991px */
    float: none;
    display: block;
    padding-top: 0;
  }
}
#form_mail .form-control {
  height: 36px;
  line-height: 34px;
}
#form_mail .container_check {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 3px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 10px;
}
#form_mail .container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#form_mail .container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #d9e1e6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#form_mail .container_check:hover input ~ .checkmark {
  background-color: #ccc;
  border: 1px solid transparent;
}
#form_mail .container_check input:checked ~ .checkmark {
  background-color: #0072bc;
  border: 1px solid transparent;
}
#form_mail .container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#form_mail .container_check input:checked ~ .checkmark:after {
  display: block;
}
#form_mail .container_check .checkmark:after {
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#form_mail a.submit_email,
#form_mail .submit_email {
  border: none;
  color: #fff;
  background: #66097b;
  cursor: pointer;
  padding: 7px 20px;
  display: inline-block;
  outline: none;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
  float: right;
  max-width: 140px;
  margin-top: 0;
}
@media (max-width: 575px) {
  #form_mail a.submit_email,
  #form_mail .submit_email {
    /* For less than 575px */
    float: none;
    margin-top: 5px;
  }
}
#form_mail a.submit_email:hover,
#form_mail .submit_email:hover {
  background: #e74e84;
}
#form_mail a.submit_email:focus,
#form_mail .submit_email:focus {
  color: #fff;
}
#form_mail .verify label {
  float: left;
  padding-top: 7px;
}
#form_mail .verify input {
  float: left;
  width: 60px;
  margin-left: 10px;
}
#form_mail textarea {
  line-height: 1.25 !important;
  height: 150px !important;
}

#additional_info {
  padding-top: 15px;
  max-width: 490px;
}
@media (max-width: 991px) {
  #additional_info {
    /* For less than 991px */
    max-width: 455px;
  }
}
@media (max-width: 767px) {
  #additional_info {
    /* For less than 767px */
    max-width: none;
  }
}
#additional_info span {
  display: block;
  font-weight: 300;
}

.indent_title_in {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .indent_title_in {
    /* For less than 767px */
    padding-left: 0;
  }
}
.indent_title_in i {
  font-size: 40px;
  position: absolute;
  left: 0;
  color: #043b5a;
  top: 0;
}
@media (max-width: 767px) {
  .indent_title_in i {
    /* For less than 767px */
    position: static;
  }
}
.indent_title_in h3 {
  margin-bottom: 0;
  font-size: 21px;
}
.indent_title_in p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.wrapper_indent {
  /*padding-left: 60px;*/
}
@media (max-width: 767px) {
  .wrapper_indent {
    /* For less than 767px */
    padding-left: 0;
  }
}

#educations ul {
  margin-bottom: 0;
}
#educations ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.2;
}
#educations ul li:before {
  position: absolute;
  left: 0;
  top: -1px;
  font-family: fontello;
  content: "\ea3e";
  color: #ccc;
}
#educations ul li strong {
  font-weight: 500;
}

#affiliations ul {
  margin-bottom: 0;
}
#affiliations ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
  line-height: 1.2;
}
#affiliations ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: fontello;
  content: "\e942";
  color: #ccc;
}
#affiliations ul li strong {
  font-weight: 500;
}

.three_col_list ul {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-break-inside: avoid;
  column-break-inside: avoid;
  break-inside: avoid;
  -webkit-column-gap: 5px;
  /* Chrome, Safari, Opera */
  -moz-column-gap: 5px;
  /* Firefox */
  column-gap: 5px;
}
@media (max-width: 767px) {
  .three_col_list ul {
    /* For less than 767px */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .three_col_list ul {
    /* For less than 575px */
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.three_col_list ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 2px;
  display: inline-block !important;
  width: 100%;
  line-height: 1.2 !important;
  list-style-type: none !important;
  list-style-position: inside !important;
  background: url(../img/bullet.png) top left no-repeat;
}

.two_col_list ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}
@media (max-width: 767px) {
  .two_col_list ul {
    /* For less than 767px */
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 575px) {
  .two_col_list ul {
    /* For less than 575px */
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.two_col_list ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 2px;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
  list-style-type: none !important;
}
/*
.two_col_list ul li:before {
  font-style: normal;
  font-weight: normal;
  font-family: 'ElegantIcons';
  font-size: 14px;
  content: "\5c";
  color: #ccc;
  position: absolute !important;
  left: 0;
  top: -1px;
}
*/
#rates p {
  line-height: 1.3;
}

/*-------- 2.10 Retreat --------*/
.nav_retreat {
  padding: 60px 0 30px 0;
}
@media (max-width: 767px) {
  .nav_retreat {
    /* For less than 767px */
    padding: 30px 0 15px 0;
  }
}
.nav_retreat ul {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0 150px;
  list-style: none;
}
.nav_retreat ul li {
  margin: 0 5px 10px 0;
  display: inline-block;
  text-align: center;
}
.nav_retreat ul li a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 15px 8px 15px;
  min-width: 140px;
  display: inline-block;
  background-color: #66097b;
  color: #fff;
  font-weight: 500;
}
.nav_retreat ul li a:hover, .nav_retreat ul li a.active {
  background-color: #e74e84;
}

.tabcontent {
  animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.retreat_main_banner {
  min-height: 400px;
  padding: 10% 0;
  text-align: center;
  position: relative;
  width: 100%;
  text-align: center;
}
.retreat_main_banner .title {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-align: center;
  padding: 0 30px;
  width: 100%;
}
.retreat_main_banner .title h2 {
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .retreat_main_banner .title h2 {
    /* For less than 767px */
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.retreat_main_banner.toronto_2017 {
  background: #ccc url(../img/retreat_toronto_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.toronto_2017 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
.retreat_main_banner.denver_2015 {
  background: #ccc url(../img/retreat_denver_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.denver_2015 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
.retreat_main_banner.boston_2013 {
  background: #ccc url(../img/retreat_boston_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.boston_2013 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
.retreat_main_banner.amelia_2011 {
  background: #ccc url(../img/retreat_amelia_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.amelia_2011 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}
.retreat_main_banner.orlando_2010 {
  background: #ccc url(../img/retreat_orlando_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.orlando_2010 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}

.retreat_main_banner.seattle_2019 {
  background: #ccc url(../img/retreat_seattle_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.seattle_2019 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}

.retreat_main_banner.atlanta_2022 {
  background: #ccc url(../img/retreat_atlanta_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.atlanta_2022 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}

.retreat_main_banner.montreal_2024 {
  background: #ccc url(../img/retreat_montreal_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.montreal_2024 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}

.retreat_main_banner.nashville_2026 {
  background: #ccc url(../img/retreat_nashville_bg.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media (max-width: 991px) {
  .retreat_main_banner.nashville_2026 {
    /* For less than 991px */
    background-attachment: scroll;
  }
}

.pdf_container {
  width: 220px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
}

.img_wrapper {
  margin-bottom: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  position: relative;
}

.img_container a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.img_container img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: 0.4s;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
  width: 100%;
  height: auto;
}

.img_container {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  z-index: 0;
}

.gallery h2 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 25px 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0 0 25px 0;
}
.testimonials .review-box {
  position: relative;
  margin-bottom: 25px;
  padding-left: 100px;
  min-height: 100px;
}
@media (max-width: 767px) {
  .testimonials .review-box {
    /* For less than 767px */
    padding-left: 0;
  }
}
.testimonials figure {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.testimonials figure img {
  width: 80px;
  height: auto;
}
@media (max-width: 767px) {
  .testimonials figure {
    /* For less than 767px */
    position: static;
    margin-bottom: 10px;
  }
}
.testimonials .rev-content {
  position: relative;
  padding: 25px 25px 0 25px;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
}
.testimonials .rev-content p {
  margin-bottom: 15px;
}

/*-------- 2.11 Reources Section --------*/
.feed_strip {
  margin-bottom: 25px;
  border-bottom: 1px solid #e1e8ed;
  position: relative;
  padding-left: 45px;
}
.feed_strip h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
.feed_strip small {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  color: #999;
}
.feed_strip:before {
  font-style: normal;
  font-weight: normal;
  font-family: 'ElegantIcons';
  font-size: 32px;
  font-size: 2rem;
  content: "\69";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

.select_state {
  background-color: #043b5a;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin: auto;
  padding: 10px 30px;
  max-width: 400px;
  box-sizing: content-box;
  margin: auto;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .select_state {
    /* For less than 575px */
    padding: 10px;
  }
}
.select_state .styled-select {
  display: inline-block;
  max-width: 200px;
  margin-bottom: 0;
  float: right;
}
.select_state .styled-select select {
  width: 130%;
}
.select_state label {
  float: left;
  padding-top: 10px;
}

@media (max-width: 575px) {
  table.table-list-2 {
    /* For less than 575px */
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
table.table-list-2 tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
table.table-list-2 tbody tr {
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
table.table-list-2 tbody tr:hover {
  background-color: #d5e6f5;
  cursor: pointer;
}
table.table-list-2 thead th {
  border: none;
  padding-top: 0;
  font-weight: 600;
  white-space: nowrap;
}
table.table-list-2 tbody td {
  vertical-align: middle;
  padding: .55rem;
  border: none;
  line-height: 1.3;
  white-space: nowrap;
}

.main_partners .main_title h2 {
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .main_partners .main_title h2 {
    /* For less than 575px */
    font-size: 21px;
    font-size: 1.3125rem;
    margin-bottom: 30px;
  }
}
.main_partners h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}

.other_partners h2 {
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 45px;
  text-align: center;
}
@media (max-width: 575px) {
  .other_partners h2 {
    /* For less than 575px */
    font-size: 21px;
    font-size: 1.3125rem;
    margin-bottom: 30px;
  }
}
.other_partners h3 {
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 991px) {
  .other_partners .add_bottom_45 {
    /* For less than 991px */
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .other_partners .margin_mobile {
    /* For less than 991px */
    margin-bottom: 25px;
  }
}

.adr_intro .main_title h2 {
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .adr_intro .main_title h2 {
    /* For less than 575px */
    font-size: 21px;
    font-size: 1.3125rem;
    margin-bottom: 30px;
  }
}
.adr_intro .box_adr_intro h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}

#adr_intro_faq .card {
  border: 0;
  margin-bottom: 10px;
}
#adr_intro_faq .card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #e1e8ed;
  padding: 0;
}
#adr_intro_faq .card .card-header a {
  padding: 20px;
}
#adr_intro_faq .card .card-header a:hover i.indicator {
  color: #e74e84;
}

#adr_intro_faq .card-body {
  padding-bottom: 0;
}

#adr_intro_faq .card-header h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}
#adr_intro_faq .card-header h5 a {
  border: 0;
  display: block;
  color: #222;
  position: relative;
  display: block;
  padding-right: 45px !important;
}
#adr_intro_faq .card-header h5 a i.indicator {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  position: absolute;
  right: 15px;
  top: 22px;
  color: #66097b;
  margin-top: -3px;
}
#adr_intro_faq .card-header h5 a i.indicator:hover {
  color: #e74e84;
}

/*-------- Partner new styles --------*/
.usa_section {
  background-color: #0d244d;
  text-align: center;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .usa_section img {
    /* For less than 767px */
    width: 350px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .margin_mobile_2 {
    /* For less than 991px */
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  img.logo_size_mobile_1 {
    /* For less than 767px */
    width: 200px;
    height: auto;
  }
}

@media (max-width: 767px) {
  img.logo_size_mobile_2 {
    /* For less than 767px */
    width: 300px;
    height: auto;
  }
}

/*-------- 2.12 Terms --------*/
#terms_conditions h2 {
  background: #226184;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin: -30px -30px 30px -30px;
  padding: 20px 30px 16px 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  line-height: 1;
}
@media (max-width: 767px) {
  #terms_conditions h2 {
    /* For less than 767px */
    margin: -30px -15px 15px -15px;
    font-size: 21px;
    font-size: 1.3125rem;
    padding: 15px 15px 11px 15px;
  }
}
#terms_conditions ul {
  margin-bottom: 0;
}
#terms_conditions ul li h3 {
  font-size: 16px;
  font-size: 1rem;
  color: #043b5a;
}

/*-------- 2.13 Contact --------*/
.contact_info {
  text-align: center;
  border: 1px solid #e1e8ed;
  padding: 15px 15px 0 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.contact_info h3 {
  color: #043b5a;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Tooltips --------*/
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #111;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 12px !important;
  line-height: 1.4;
  padding: 8px;
  text-align: left !important;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #111;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #111;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #111;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #111;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.tooltip_container {
  display: none;
}

.tooltipster-sidetip .tooltipster-content strong {
  display: inline-block;
  margin-bottom: 3px;
  font-weight: bold;
}

/*-------- 3.2 Forms --------*/
.styled-select select {
  background: transparent;
  width: 115%;
  padding-left: 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 41px;
  color: #868e95;
  margin: 0;
  font-weight: 400;
  -moz-appearance: window;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

.styled-select {
  width: 100%;
  overflow: hidden;
  height: 41px;
  background: #fff url(../img/arrow_down.svg) no-repeat right center;
  border: 1px solid #e1e8ed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.styled-select select::-ms-expand {
  display: none;
}

.styled-select select:focus {
  outline: none;
  box-shadow: none;
}

/*-------- 3.3 List --------*/
ul.bullets {
  line-height: 1.8;
}
ul.bullets li {
  position: relative;
  padding-left: 20px;
}
ul.bullets li:before {
  font-style: normal;
  font-weight: normal;
  font-family: 'ElegantIcons';
  font-size: 14px;
  content: "\5c";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------- 3.4 Misc --------*/
.bg_color_1 {
  background-color: #fff;
}

.bg_color_1.arrowdown:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 40px;
  border-color: #f5f8fa transparent transparent transparent;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: auto;
}
@media (max-width: 767px) {
  .bg_color_1.arrowdown:before {
    /* For less than 767px */
    border-width: 20px 20px 0 20px;
    margin-left: -20px;
  }
}

.form-control {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0.56rem 0.75rem;
  border-color: #e1e8ed;
}

.form-control:focus {
  box-shadow: none;
}
.form-control.is-invalid {
  border-color: #dc3545 !important;
}
.invalid-feedback {
  background-color: yellow;
  font-weight: bold;
}

#booking .loader {
  position: absolute;
  right: 15px;
  top: 13px;
  color: #fff;
}

.box_form {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
  color: #4e4e4e;
}
.box_form label {
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 3px;
}
.box_form .form-group {
  margin-bottom: 25px;
}

.box_general {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  color: #4e4e4e;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.box_general hr {
  margin-left: -30px;
  margin-right: -30px;
}

.box_general_2 {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 25px;
  border: 1px solid #e1e8ed;
}
.box_general_2 hr {
  margin-left: -30px;
  margin-right: -30px;
}

.box_general_3 {
  background-color: #fff;
  padding: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: 1px solid #e1e8ed;
}
@media (max-width: 767px) {
  .box_general_3 {
    /* For less than 767px */
    padding: 15px;
  }
}
.box_general_3 hr {
  margin: 30px -30px 30px -30px;
}
@media (max-width: 767px) {
  .box_general_3 hr {
    /* For less than 767px */
    margin: 30px -15px 20px -15px;
  }
}

@media (max-width: 991px) {
  .hidden-md {
    /* For less than 991px */
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-sm {
    /* For less than 767px */
    display: none !important;
  }
}

@media (max-width: 575px) {
  .hidden-xs {
    /* For less than 575px */
    display: none !important;
  }
}

/*-------- 3.5 Spacing --------*/
.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .add_bottom_45 {
    /* For less than 767px */
    margin-bottom: 30px;
  }
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .margin_60 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .margin_60_35 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .margin_120 {
    /* For less than 991px */
    padding-top: 60px;
    padding-bottom: 35px;
  }
}

.margin_120_95 {
  padding-top: 120px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .margin_120_95 {
    /* For less than 991px */
    padding-top: 60px;
    padding-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .margin_120_95 {
    /* For less than 767px */
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.padding_top_120 {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .padding_top_120 {
    /* For less than 991px */
    padding-top: 0;
  }
}

/*-------- 3.6 Scroll top button --------*/
#toTop {
  width: 40px;
  height: 40px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 10px;
  line-height: 20px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  display: none;
  color: #fff;
  font-size: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  z-index: 99;
}
#toTop:before {
  font-family: "fontello";
  content: "\e899";
}

/*-------- 3.7 Sing In Modal --------*/
@media (max-width: 767px) {
  #mm-sign_in {
    /* For less than 767px */
    display: none;
  }
}

a.sing_in_mobile {
  display: none;
  position: absolute;
  top: 18px;
  right: 30px;
  width: 28px;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  z-index: 9;
  text-align: right;
}
@media (max-width: 767px) {
  a.sing_in_mobile {
    /* For less than 767px */
    display: block;
  }
}
@media (max-width: 575px) {
  a.sing_in_mobile {
    /* For less than 575px */
    right: 20px;
  }
}

.zoom-anim-dialog {
  background: #fff;
  padding: 40px;
  padding-top: 0;
  text-align: left;
  max-width: 610px;
  margin: 40px auto;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .zoom-anim-dialog {
    /* For less than 575px */
    padding: 0 20px 20px 20px;
  }
}

.zoom-anim-dialog {
  max-width: 500px;
}

.mfp-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Popup close button*/
.zoom-anim-dialog .mfp-close,
#small-dialog .mfp-close {
  color: #666;
  background-color: #e4e4e4;
  border-radius: 50%;
  top: 28px;
  right: 40px;
  width: 40px;
  height: 40px;
}
@media (max-width: 575px) {
  .zoom-anim-dialog .mfp-close,
  #small-dialog .mfp-close {
    /* For less than 575px */
    right: 20px;
    top: 12px;
  }
}

.zoom-anim-dialog .mfp-close:hover,
#small-dialog .mfp-close:hover {
  color: #fff;
  background-color: #66676b;
}

.zoom-anim-dialog .mfp-close:before {
  top: 2px;
  left: 0;
  font-size: 26px;
  font-size: 1.625rem;
  font-family: 'ElegantIcons';
  content: "\4d";
}

.small-dialog-header {
  font-size: 22px;
  width: calc(100% + 80px);
  position: relative;
  left: -40px;
  top: 0;
  border-radius: 4px 4px 0 0;
  display: inline-block;
  background-color: #f6f6f6;
  padding: 35px 40px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .small-dialog-header {
    /* For less than 575px */
    padding: 20px;
    left: -20px;
    width: calc(100% + 40px);
    margin-bottom: 20px;
  }
}
.small-dialog-header h3 {
  padding: 0;
  margin: 3px 0 0 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 575px) {
  .small-dialog-header h3 {
    /* For less than 575px */
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.zoom-anim-dialog .mfp-close:hover,
#small-dialog .mfp-close:hover {
  color: #fff;
  background-color: #66676b;
}

.zoom-anim-dialog .form-group {
  position: relative;
}
.zoom-anim-dialog .form-group input.form-control {
  padding-left: 40px;
}
.zoom-anim-dialog .form-group i {
  font-size: 21px;
  font-size: 1.3125rem;
  position: absolute;
  left: 12px;
  top: 38px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}
.zoom-anim-dialog .form-group i.icon_lock_alt {
  top: 39px;
}

.checkboxes {
  position: relative;
}
.checkboxes input[type=checkbox] {
  display: none;
}
.checkboxes label:before {
  content: "\56";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  position: relative;
  top: 6px;
  right: 3px;
  transition: all 0.25s;
  font-family: 'ElegantIcons';
  font-size: 26px;
  font-size: 1.625rem;
  color: #ccc;
  text-align: center;
  line-height: 15px;
  text-shadow: none;
  font-weight: 400 !important;
}

.checkboxes input[type=checkbox]:checked + label:before {
  content: "\5a";
  color: #555;
}

.my-toggle {
  background: transparent;
  border: 0;
  border-radius: 0.25em;
  color: #888;
  cursor: pointer;
  font-size: 0.75em;
  font-weight: bold;
  margin-right: 0.5em;
  padding: 0.5em 0.5em 0.3em 0.5em;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  top: 8px !important;
  background-color: #fff;
}

.my-toggle:hover,
.my-toggle:focus {
  background-color: #eee;
  color: #555;
  outline: transparent;
}

#forgot_pw {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  min-height: 300px;
  display: none;
}

.sign-in-wrapper {
  position: relative;
  height: 100%;
}

/*-------- 3.8 Datatables styles --------*/
.dataTables_filter input[type=search]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bcbcbc;
}

.dataTables_filter input[type=search]::-moz-placeholder {
  /* Firefox 19+ */
  color: #bcbcbc;
}

.dataTables_filter input[type=search]:-ms-input-placeholder {
  /* IE 10+ */
  color: #bcbcbc;
}

.dataTables_filter input[type=search]:-moz-placeholder {
  /* Firefox 18- */
  color: #bcbcbc;
}

div.dataTables_wrapper div.dataTables_length select {
  width: 75px;
  display: inline-block;
  padding: 0 !important;
}

@media (max-width: 767px) {
  .dataTables_paginate ul.pagination {
    /* For less than 767px */
    justify-content: flex-start !important;
    margin: 25px 0 !important;
  }
}
.dataTables_paginate .page-item.active .page-link {
  background-color: #043b5a !important;
  border-color: #043b5a !important;
}

@media (max-width: 767px) {
  .dataTables_info {
    /* For less than 767px */
    text-align: left !important;
  }
}

.page-item.active .page-link {
  background-color: #043b5a !important;
  border-color: #043b5a !important;
}
.modalSpinner {
  position: absolute !important;
  display: none;
  min-height: 80px;
}
.modalInfoText {
  margin: 0 auto;
  line-height: 80px;
  text-align: center;
  vertical-align: middle;
  color: red;
  font-size: 18px;
}

/*
For some reason, if we log in and display a datatable, it was not responsive to the browser width changes.
With this, we force a 100% width:
 */
table.dataTable{
  width:100%!important;
}
button.my-toggle {
  margin-top: 0px !important;
}
a.btn_submit,
.btn_submit {
  border: none;
  color: #fff;
  background: #66097b;
  cursor: pointer;
  padding: 12px 20px 10px 20px;
  display: inline-block;
  outline: none;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 10px;
}
a.btn_submit:hover,
.btn_submit:hover {
  background: #e74e84;
  color: white;
}
a.btn_submit:focus,
.btn_submit:focus {
  color: #fff;
}
.geo_1 {
  display: inline-block;
  float: left;
}
.geo_1 .styled-select {
  width: 50px;
  display: inline-block;
  margin-bottom: 10px;
}
.geo_1 .styled-select select {
  width: 130%;
}
.geo_1 label {
  padding-top: 10px;
  float: left;
  margin-right: 5px;
  color: #999;
  font-size: 13px;
  font-size: 0.8125rem;
}
.padding_fix {
  padding-right: 0px;
  padding-left: 5px;
}
.geo_2 {
  display: inline-block;
  float: left;
}
.geo_2 input {
  width: 95px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .geo_2 input {
    /* For less than 1119px */
    width: 75px;
  }
}
@media (max-width: 991px) {
  .geo_2 input {
    /* For less than 991px */
    width: 95px;
  }
}
.geo_2 label {
  padding-top: 10px;
  float: left;
  margin: 0 5px 0 10px;
  color: #999;
  font-size: 13px;
  font-size: 0.8125rem;
}
#contactForm #country {
  display: none;
}
/*# about */
.info_graph {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 35px;
}
.info_graph ul {
  text-align: left;
}

.animation_panel {
  position: relative;
  margin-top: 25px;
}

.step_1 {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
}

.step_1_b {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  animation-delay: 2s;
}

.step_2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  animation-delay: 4s;
}

.step_3 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  animation-delay: 5s;
}

.step_4 {
  animation-delay: 6s;
}

.step_5 {
  animation-delay: 7s;
}

.step_6 {
  animation-delay: 8.5s;
}

.step_7 {
  animation-delay: 10s;
}

.step_8 {
  animation-delay: 11.5s;
}

/* Video conferencing button: */
a.video_conf_bt {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 170px;
  height: 120px;
  display: block;
  text-transform: uppercase;
  color: #af1e5e;
  font-weight: 600;
  text-align: center;
  cursor: text;
}
@media (max-width: 767px) {
  a.video_conf_bt {
    /* For less than 767px */
    top: -8px;
    right: 45px;
    font-size: 11px;
    font-size: 0.6875rem;
    width: 130px;
    height: 110px;
  }
}

.pulse_bt {
  margin: 15px auto 8px;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(40, 123, 252, 0.4);
  animation: pulseanime 2.5s infinite;
  -webkit-animation: pulseanime 2.5s infinite;
  cursor: text;
}
@media (max-width: 991px) {
  .pulse_bt {
    /* For less than 991px */
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 991px) {
  .pulse_bt img {
    /* For less than 991px */
    width: 55px;
    height: auto;
  }
}

.pulse_bt:hover {
  animation: none;
}
.pulse_bt.small_inner {
  margin: 0 auto;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .pulse_bt.small_inner img {
    /* For less than 991px */
    height: 30px;
    width: 30px;
  }
}
@-webkit-keyframes pulseanime {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(40, 123, 252, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(40, 123, 252, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(40, 123, 252, 0);
  }
}
@keyframes pulseanime {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(40, 123, 252, 0.4);
    box-shadow: 0 0 0 0 rgba(40, 123, 252, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(40, 123, 252, 0);
    box-shadow: 0 0 0 10px rgba(40, 123, 252, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(240, 123, 252, 0);
    box-shadow: 0 0 0 0 rgba(40, 123, 252, 0);
  }
}

/* Fixing some margin issue: */
@media (max-width: 767px) {
  .box_general_3.profile_box .title_box.fix_margin_mobile {
    margin: -30px -30px 15px -30px!important;
  }
}

.chapter_press {
  text-align: center;
}
.chapter_press h3 {
  font-size: 25px;
  font-size: 1.575rem;
  text-align: center;
  font-weight: 600;
  margin: 7px 0 0 0;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .chapter_press h3 {
    /* For less than 767px */
    font-size: 16px;
    font-size: 1rem;
  }
}
.chapter_press h4 {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  color: #1b6ab4;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .chapter_press h4 {
    /* For less than 767px */
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.chapter_press .pdf_container {
  width: auto !important;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
}
.chapter_press .press_item {
  margin-bottom: 30px;
}
.chapter_press .press_item h5 {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
}
.chapter_press .press_item p {
  margin-bottom: 0;
}
.chapter_press hr {
  border-color: #ddd !important;
  margin-left: -30px !important;
  margin-right: -30px !important;
}
#bio ul li {
  list-style-type: circle;
  list-style-position: inside;
}
.styled-select.is-invalid {
  border-color: #dc3545 !important;
}

.styled-select.is-invalid:focus {
  border-color: #dc3545  !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25)  !important;
}
/* btn play video */
.play_video_button{
  background-color: #3886c4;
  padding: 9px 10px 6px 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-top: 5px;
  color: #fff;
  line-height: 1;
  display: inline-block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}
a.play_video_button:before {
  font-family: 'ElegantIcons';
  content: "\e04e";
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  left: 8px;
  top: 5px;
}
.play_video_button:hover{
  background-color: #e74e84;
  color: #fff;
}
.play_video_button:focus {
  background-color: #3886c4;
  color: #fff;
}
#youtube_interview_content div {
  padding: 60px 0px 20px 20px;
  box-sizing: border-box;
}
.modal_foryoutube {
  max-width: 1160px !important;
}
.HP {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  translate: 0 -100%;
}