@font-face {
  font-family: "Avenir 35 Light";
  src: url("../fonts/avenir/Avenir35Light.eot");
  src: url("../fonts/avenir/Avenir35Light.eot") format("embedded-opentype"),
    url("../fonts/avenir/Avenir35Light.woff2") format("woff2"),
    url("../fonts/avenir/Avenir35Light.woff") format("woff"),
    url("../fonts/avenir/Avenir35Light.ttf") format("truetype"),
    url("../fonts/avenir/Avenir35Light.svg#Avenir35Light") format("svg");
}
@font-face {
  font-family: "Avenir 35 Heavy";
  src: url("../fonts/avenir/avenir/AvenirLTStd85Heavy_5177.eot");
  src: url("../fonts/avenir/AvenirLTStd85Heavy_5177.eot")
      format("embedded-opentype"),
    url("../fonts/avenir/AvenirLTStd85Heavy_5177.woff2") format("woff2"),
    url("../fonts/avenir/AvenirLTStd85Heavy_5177.woff") format("woff"),
    url("../fonts/avenir/AvenirLTStd85Heavy_5177.ttf") format("truetype"),
    url("../fonts/avenir/AvenirLTStd85Heavy_5177.svg#AvenirLTStd85Heavy_5177")
      format("svg");
}
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

body {
  font-size: 18px;
  font-family: "Merriweather", serif;
  color: rgba(0, 0, 0, 0.75);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Avenir 35 Heavy";
  letter-spacing: -0.02em;
  line-height: inherit;
}

h2 {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 34px;
}

p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.75);
}

a {
  color: #007bff;
  text-decoration: none;
}

.black {
  color: #000000;
}

.text-justify {
  text-align: justify;
}

.light-weight {
  font-family: "Avenir 35 Light";
  font-weight: 300 !important;
}

.block {
  display: block;
}

.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

section.about .container,
section.stats .container,
section.my_social_media .container,
footer .container,
section.about_page .container,
section.blog .container,
section.instagram-feed .container,
footer .container {
  max-width: 1100px;
}

section.maps .container {
  max-width: 810px;
}

header {
  margin: 0;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  font-family: "Avenir 35 Heavy";
  transition: 0.6s all;
  z-index: 999;
  width: 100%;
}

header .header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 95%;
}

header .header_content .hamburger-btn {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}

header .header_content .hamburger-btn .hamburger-icon {
  display: flex;
  flex-direction: column;
}

header .header_content .hamburger-btn .hamburger-icon span {
  display: inline-block;
  margin-bottom: 5px;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header .header_content .navigation ul {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  padding: 0px 5px 0px;
  margin: 0;
  display: block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

header .header_content .navigation ul li {
  display: inline-block;
  margin-right: 27px;
}

header .header_content .navigation ul li.current_page_item a {
  color: #38b6ff !important;
}

header .header_content .navigation ul li a {
  color: #fff;
  text-decoration: none;
}

header .header_content .navigation ul li a:hover {
  color: #38b6ff;
}

header .header_content .social_media ul {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
}

header .header_content .social_media ul li {
  display: inline-block;
  margin-right: 22px;
}

header .header_content .social_media ul li:last-child {
  margin-right: 12px;
}

header .header_content .social_media ul li a {
  font-size: 36px;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  line-height: 40px;
}

header .header_content .social_media ul li a:hover {
  color: #38b6ff;
}

header.scrolled {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header.scrolled .header_content .hamburger-btn .hamburger-icon span {
  display: inline-block;
  margin-bottom: 5px;
  width: 24px;
  height: 3px;
  background-color: #000000;
  border-radius: 5px;
  transition: all 0.3s ease;
}

header.scrolled .header_content .navigation ul li a {
  color: #000;
}

nav.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9999;
  padding-top: 100px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #dddddd;
  display: flex;
  align-items: center;
  flex-direction: column;
}

nav.mobile-menu.open {
  left: 0;
  opacity: 1;
}

nav.mobile-menu .close-menu-btn {
  border: none;
  box-shadow: none;
  outline: none;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 15px;
  border-radius: 50%;
  font-family: "Avenir 35 Heavy";
  width: 24px;
  height: 24px;
  text-align: center;
  background-color: #dddddd;
  transition: all 0.3s ease;
  cursor: pointer;
}

nav.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

nav.mobile-menu ul li {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

nav.mobile-menu ul li:first-child {
  border-top: 1px solid #eee;
}

nav.mobile-menu ul li a {
  color: #38b6ff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 30px;
  position: relative;
}

nav.mobile-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: inherit;
}

section.hero {
  background: url(../img/hero_image.jpg);
  background-size: cover !important;
  background-position: top !important;
  position: relative;
  min-height: 100vh;
}

section.hero .improv_logo {
  padding-left: 115px;
  position: absolute;
  bottom: 38px;
}

section.hero .improv_logo img {
  width: 350px;
  height: auto !important;
}

section.sub_page {
  position: relative;
  min-height: 80vh;
}

section.sub_page .improv_logo img {
  width: 100%;
  max-width: 250px;
  height: auto !important;
}

section.sub_page .improv_logo {
  bottom: 35px;
}

section.about {
  padding: 95px 0 98px;
}

section.about .about_thumb {
  display: block;
  border-radius: 10px;
  transform: rotate(352.0596944042411deg);
  margin-left: 40px;
  margin-top: 70px;
}

section.about .about_thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

section.about .about_thumb img:nth-child(2) {
  position: absolute;
  left: 27px;
  z-index: -1;
  top: 38px;
  transform: rotate(353deg);
  width: 96%;
}

section.about .about_content {
  text-align: center;
}

section.about .about_content h2 {
  font-size: 60px;
  text-transform: uppercase;
  line-height: 60px;
  text-decoration: none;
  color: #38b6ff;
}

section.about .about_content a {
  font-size: 16px;
  font-family: "Avenir 35 Heavy";
  text-transform: uppercase;
  color: #38b6ff;
}

section.about .about_content a:hover {
  color: #000000;
}

section.about .about_content h2 span {
  color: #000000;
  display: block;
}

section.about .about_content p {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 45px;
}

section.stats {
  padding: 0px 0 70px;
}

section.stats .stats_item {
  text-align: center;
}

section.stats .stats_item h5 {
  font-size: 18px;
  color: #38b6ff;
  min-height: 70px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 21px;
  margin: 0px;
}

section.stats .stats_item span {
  color: #212529;
  font-family: "Marck Script", cursive;
  font-size: 80px;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 60px;
}

section.stats .stats_item span span {
  font-size: 30px;
  font-family: "Avenir 35 Heavy";
  line-height: 30px;
}

section.stats .stats_item span small {
  font-size: 20px;
  font-family: "Avenir 35 Heavy";
  padding-left: 4px;
}

section.stats .stats_item img {
  width: 100%;
  object-fit: contain;
  height: 70px;
}

section.my_social_media {
  padding-bottom: 85px;
}

section.my_social_media .msm_item {
  position: relative;
  width: 100%;
  border-radius: 15px;
  transition: 0.4s all;
  max-width: 296px;
  margin: auto;
}

section.my_social_media .msm_item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  content: "";
  transition: 0.4s all;
  border-radius: 15px;
}

section.my_social_media .msm_item:hover:after {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.4s all;
}

section.my_social_media .msm_item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 15px;
}

section.my_social_media .msm_item .msm_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 1;
}

section.my_social_media .msm_item .msm_content img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 0 !important;
  object-fit: contain;
}

section.my_social_media .msm_item .msm_content h2 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  padding: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

section.maps {
  padding: 0px 0px 30px 0px;
}

section.maps a {
  font-size: 14px;
  font-family: "Avenir 35 Heavy";
  color: #38b6ff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

section.maps a:hover {
  color: #000000;
}

section.maps a span {
  display: block;
  object-fit: cover;
  margin: 0 auto 10px auto;
  text-align: center;
}

section.maps a span img {
  width: auto;
  height: 100px;
}

section.maps .container .row div {
  padding: 0px;
}

section.world-map {
  padding: 0px 0px 45px 0px;
}

section.world-map .container {
  max-width: 1120px;
}

section.instagram-feed {
  padding: 10px 0px 60px 0px;
}

footer {
  padding: 15px 0;
  margin: 0;
  background: #f4f4f4;
  box-shadow: none;
}

footer .footer_widget .join_mail {
  max-width: 395px;
}

footer .footer_widget .join_mail h4 {
  font-size: 20px;
  color: #000;
  margin: 0;
  letter-spacing: 0.5px;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}

footer .footer_widget .join_mail .es_caption {
  font-size: 15px;
  color: #000;
  margin: 4px 0;
  letter-spacing: 0.5px;
  padding: 0;
  font-family: "Avenir 35 Heavy";
  text-align: center;
}

footer .footer_widget .join_mail .es-field-wrap {
  margin-bottom: 10px !important;
}

footer .footer_widget .join_mail label {
  width: 100% !important;
  display: block !important;
  margin-bottom: 0 !important;
}

footer .footer_widget .join_mail .es_txt_email {
  width: 100%;
  height: auto;
  padding: 7px 14px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: none;
  border: 1px solid #ccc;
  display: block;
  font-family: "Avenir 35 Light";
}

footer .footer_widget .join_mail input.es_subscription_form_submit {
  width: 150px;
  background: #38b6ff;
  padding: 12px 0 8px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: table;
  border-radius: 30px;
  margin: 0 auto;
  font-family: "Avenir 35 Heavy";
  box-shadow: 2px 2px 0px 1px #008dde;
  text-transform: uppercase;
  transition: 0.4s all;
  border: 0px;
}

footer .footer_widget .join_mail input.es_subscription_form_submit:hover {
  background: #66c6fd !important;
  transition: 0.4s all !important;
}

footer .footer_widget .join_mail .es_spinner_image {
  display: none;
  float: right;
}

footer .footer_widget .join_mail .es_subscription_message {
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin: 5px 0px 0px 0px;
  color: red;
}
footer .footer_widget .join_mail .es_subscription_message.success {
  color: #59b259 !important;
}
/* .es_subscription_message.success {
  color: #008000 !important;
} */
footer .footer_widget .social_media ul {
  margin: 45px 0 0 0;
  list-style-type: none;
  padding: 0px;
}

footer .footer_widget .social_media ul li {
  display: inline-block;
  margin-right: 15px;
}

footer .footer_widget .social_media ul li a {
  font-size: 36px;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 5px;
  margin: 0;
  display: block;
  line-height: 40px;
}

footer .footer_widget .copyright {
  padding-top: 30px;
}

footer .footer_widget .copyright p {
  color: #000;
  font-size: 14px;
  text-align: right;
  margin: 0;
  letter-spacing: 0.5px;
  padding: 0 5px 0 0;
  font-family: "Avenir 35 Light";
}

footer .copyright_mobile {
  display: none;
}

section.about_page {
  padding: 50px 0px;
}

section.about_page .container .row {
  align-items: center;
}

section.about_page .content h2 {
  text-align: center;
}

section.about_page .content h3 {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

section.about_page .content p {
  font-size: 19px;
  text-align: justify;
  line-height: 30px;
}

section.about_page .thumbnails {
  transform: rotate(-352.0596944042411deg);
}

section.about_page .rtl_rotate {
  transform: rotate(352.0596944042411deg) !important;
}

section.about_page .thumbnails .thumb_item {
  margin: auto;
  padding: 0px 10px;
  max-width: 400px;
}

section.about_page .thumbnails .thumb_item img {
  width: 100%;
}

section.about_page .thumbnails .thumb_item span {
  font-size: 14px;
  font-weight: 600;
  color: #000000bf;
  line-height: 38px;
  text-align: center;
  display: block;
}

section.about_page .content ul {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
}

section.about_page .content ul li {
  display: flex;
  align-items: center;
  font-family: "Roboto", Sans-serif;
  font-size: 19px;
  font-weight: 400;
  margin: 0px 0 10px 25px;
  position: relative;
  line-height: 28px;
}

section.about_page .content ul li::before {
  content: "";
  background: url(../img/icon-list.svg);
  background-position: center;
  background-size: 100%;
  left: -25px;
  position: absolute;
  height: 12px;
  width: 12px;
}

section.about_page .content ul li span {
  width: 95%;
  font-family: "Roboto", sans-serif;
}

section.about_page .sub_heading {
  font-family: "Avenir 35 Heavy";
  margin: -5px 0 20px 0;
}

section.workshop .row div:last-child {
  max-width: 510px;
  margin: 0 0 0 auto;
}

section.my_gear {
  padding-top: 35px;
}

section.my_gear h2 {
  margin-bottom: 25px;
}

section.contact_us {
  padding: 54px 0px 45px 0;
}

section.contact_us .container {
  max-width: 650px !important;
}

section.contact_us .content p.p {
  font-size: 20px;
  margin: 1rem auto 46px auto;
  max-width: 575px;
  text-align: center;
  color: #373b4d;
}

section.contact_us .content .input-field {
  margin-bottom: 37px;
}

section.contact_us .content label {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  padding: 0;
  font-family: "Avenir 35 Heavy";
  text-align: left;
  display: block;
  letter-spacing: 0.5px;
}

section.contact_us .content label span {
  color: #ff0000;
  display: inline-block;
}

section.contact_us .content input {
  width: 100%;
  height: 55px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  box-shadow: none;
  border: 1px solid #d6d6d6;
  letter-spacing: 0.5px;
  padding: 10px 15px;
  margin-bottom: 0px;
}

section.contact_us .content textarea.form-control {
  padding: 0px;
  height: 148px;
}

section.contact_us .content input[type="submit"] {
  background: #38b6ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 150px;
  border-radius: 30px;
  border: 1px solid #38b6ff;
  display: block;
  font-family: "Avenir 35 Heavy";
  text-align: center;
  text-transform: uppercase;
  padding: 21px 0;
  letter-spacing: 1px;
  margin: 0;
  box-shadow: 2px 2px 0px 1px #008dde;
  transition: 0.4s all;
  line-height: 0px;
  height: 44px;
}

section.workshop .thumbnails .thumb_item {
  max-width: 450px;
}

section.workshop .content .my_workshops_graphical {
  display: flex;
  column-gap: 30px;
}

section.workshop .content .my_workshops_graphical img {
}

section.workshop .content h2 {
  margin-top: 30px;
  margin-bottom: 5px;
}

section.workshop .content h3 {
  margin: 0px;
}

section.workshop .content span.sub_heading {
  color: #000;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  margin: -5px 0 20px 0;
}

section.workshop .content p {
  color: #000000bf;
  font-family: "Merriweather", Sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  text-align: justify;
  line-height: 30px;
}

section.blog {
  padding: 80px 0px 50px 0px;
}

section.blog .blog_post {
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: 0.4s all;
}

section.blog .blog_post a {
  display: block;
}

section.blog .blog_post a .thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

section.blog .blog_post .blog_meta {
  width: 100%;
  padding: 20px 30px;
  min-height: 250px;
}

section.blog .blog_post .blog_meta .author {
  margin-bottom: 15px;
}

section.blog .blog_post .blog_meta .author a:last-child span.arrow {
  display: none;
}

section.blog .blog_post .blog_meta .tag_name {
  margin: 0px;
  font-size: 14px;
  font-family: "Avenir 35 Heavy";
  color: #38b6ff;
  display: block;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section.blog .blog_post .blog_meta a {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.5px;
  margin-bottom: 0;
  padding: 0;
  font-family: "Avenir 35 Light";
}

section.blog .blog_post .blog_meta a.tag_slugg {
  display: inline-block;
  padding-right: 10px;
}

section.blog .blog_post .blog_meta a h5 {
  font-size: 18px;
  font-family: "Avenir 35 Heavy";
  color: #000;
  letter-spacing: 0.5px;
  line-height: 26px;
  margin-bottom: 10px;
  padding: 0;
}

section.links {
  padding: 60px 0px 25px 0px;
}

section.links h2 {
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 845px;
  margin-bottom: 50px !important;
  text-align: center;
  margin: auto;
}

section.links .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  background: #f4f4f4;
  width: 100%;
  max-width: 375px;
  height: 375px;
  border-radius: 100%;
  border: 6px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 0px 45px;
  text-align: center;
}

section.links .item img {
  height: 80px !important;
}

section.links .item h3 {
  color: #000;
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
  padding: 0;
  letter-spacing: 1px;
  display: block;
}

section.links .item p {
  color: rgba(0, 0, 0, 0.75);
  font-size: 18px;
  text-align: center;
  line-height: 26px;
  margin-bottom: 0px;
  letter-spacing: 1px;
  display: block;
  font-family: "Avenir 35 Light";
  padding: 0;
}

.page-10 .improv_logo img,
.page-2138 .improv_logo img {
  max-width: 550px !important;
}

.page-208 .improv_logo img {
  max-width: 270px !important;
}

.page-442 .improv_logo img {
  max-width: 280px !important;
}

section.post .author .tag_name {
  font-size: 14px;
  text-transform: uppercase;
}

section.post .author a:last-child span.arrow {
  display: none;
}

.single_map {
  padding-bottom: 70px;
}

.blog h3.map_title {
  font-size: 32px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}
