/*----------------------------------------------------
  [Typography]

  body:        14px / apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  heading:    'Montserrat', sans-serif.

  Note:        Most of font sizes are relative to the base font size (rem)
------------------------------------------------------*/
/*----------------------------------------------------
  [Colors]

  Main 1:      #21283A
  Main 2:      #1E85D9
  Main 3:      #FFFFFF

  Gray 1:      #FFFFFF
  Gray 2:      #7E7D7D
  Gray 3:      #AEAEAE
------------------------------------------------------*/
/*----------------------------------------------------
  [Table of contents]

  1. Base
  2. Typography
  3. Indents
    -indent
    -indent2
    -indent3
    -indent4
  4. Link
  5. Navigation
  6. Header
  7. Button(bootstrap)
  8. Gallery
    -3 columns
    -2 columns
  9. Numbers
  10. Reviews(slider slick)
  11. Latest News(slider slick)
  12. Hover Effect
  13. Slick
  14. Instagram
  15. Footer
  16. Blog
     -3 columns
     -2 columns
     -Classic
  17. Blog Single
  18. Pagination
  19. Contacts
------------------------------------------------------*/
/*----------------------------------------------------
  [Features]

  "imd-indent":         120px
  "imd-indent2":        60px
  "imd-indent3":        30px
  "imd-indent4":        20px

  "imd-box":            backspacing 120px
  "imd-bg-gray"         gray background

  "imd-gallery-3-col",
  "imd-blog-3-col":     You can change to 2 columns
                        (example: "imd-gallery-2-col" and "imd-blog-2-col")

  "imd-effect-next"     hover

  images:               Grayscale on hover
------------------------------------------------------*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 0.8em;
}
::-moz-placeholder { /* Firefox 19+ */
  font-size: 0.8em;
}
:-ms-input-placeholder { /* IE 10+ */
  font-size: 0.8em;
}
:-moz-placeholder { /* Firefox 18- */
  font-size: 0.8em;
}


@font-face {
    font-family: futuraLight;
    src: url('fonts/Futura (Light).ttf');
}


body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Poiret One', cursive;
  line-height: 1.7em;
  color: black;
}
body h1, h2, h3{
  margin: 0;
  color: #21283A;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
body p{
  margin: 0;
}
html, body{
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.imd-box {
  padding: 120px 0;
}

.imd-bg-gray {
  background-color: #F8F8F8;
}

ul {
  margin: 10px 0;
}

h2 {
  font-size: 28px;
}
h3 {
  font-size: 18px;
}

/* -------------START: Indent------------- */
.imd-indent {
  height: 120px;
}
.imd-indent2 {
  height: 60px;
}
.imd-indent3 {
  height: 30px;
}
.imd-indent4 {
  height: 20px;
}
/* -------------END: Indent------------- */

/* -------------START: Link------------- */
a {
  color: #21283A;
  text-decoration: none;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
a:hover {
  color: #1E85D9;
  text-decoration: none;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
a:focus {
  color: #1E85D9;
  text-decoration: none;
}

.speciality-set{
}

.speciality-set p{
  font-size: 0.8rem;
}

/* -------------END: Link------------- */

/* -------------START: Navigation------------- */
@media (max-width: 575px) {
  .navbar > .container {
    width: 100%;
  }
}
.imd-menu {
  position: fixed;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  z-index: 200;
  line-height: 1;
  background: #fff;
  width: 100%;
  padding: 0;
}
@media (max-width: 990px) {
  .imd-menu {
    /* padding: 10px; */
  }
}
.imd-menu .navbar-brand img{
  width: 80px;
}

.imd-menu .navbar-nav {
  margin: 0;
}
@media (max-width: 990px) {
  .imd-menu .navbar-nav {
    margin-top: 15px;
  }
}
.imd-menu .nav-item .nav-link{
  color: #21283a;
  font-family: 'Poiret One', cursive;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 18px 19px 20px 19px;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.imd-menu .nav-item .active {
  color: #1E85D9;
}
@media (max-width: 990px) {
  .imd-menu .nav-item .nav-link {
    padding: 8px;
  }
}
.imd-menu .nav-item:hover .nav-link{
  color: #1E85D9;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.imd-menu .dropdown-menu{
  margin: 0;
  padding: 10px 20px;
  font-size: 13px;
  border: 0;
  border-radius: 0;
  background-color: #21283A;
}
@media (max-width: 990px) {
  .imd-menu .dropdown-menu {
    background-color: transparent;
    margin-top: -12px;
    padding-bottom: 3px;
    padding-top: 14px;
    padding-left: 24px;
  }
}
.imd-menu .dropdown:hover .dropdown-menu {
  display: block;
}
.imd-menu .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 8px 0;
  background-color: transparent;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
@media (max-width: 990px) {
  .imd-menu .dropdown-menu .dropdown-item {
    color: #21283A;
    padding: 6px 4px;
  }
}
.imd-menu .dropdown-menu .active {
  color: #1E85D9;
}
.imd-menu .dropdown-menu .dropdown-item:hover {
  color: #1E85D9;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.imd-menu .bar-inner {
  color: #21283A;
  float: right;
  z-index: -1;
  opacity: 1;
  text-align: center;
  font-size: 25px;
  padding: 10px;
  vertical-align: middle;
}
.imd-menu .bar:hover {
  color: #1E85D9;
}
@media screen and (max-width: 990px) {
  .imd-menu .bar {
    z-index: auto;
    opacity: 1;
  }
  .logo-banner{
    display:none;;
  }
}
/* -------------END: Navigation------------- */

/* -------------START: Header------------- */
@media (max-width: 575px) {
  .imd-header > .container {
    width: 100%;
    text-align: left;
  }
}
.imd-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          -webkit-box-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          -webkit-box-pack: center;
          justify-content: center;

  background: no-repeat center center;
  background-size: cover;

  position: relative;
  overflow: hidden;

  width: 100%;
  height: 100%;
}
.imd-header h1{
  line-height: 1;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 80px;
  color: #21283A;
}
@media screen and (max-width: 1024px) {
  .imd-header h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 600px) {
  .imd-header h1 {
    font-size: 60px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 300px) {
  .imd-header h1 {
    font-size: 50px;
    letter-spacing: 0;
  }
}
.imd-author img{
  border-radius: 100%;
  width: 200px;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    -webkit-transition: 0.35s;
    transition: 0.35s;
}
.imd-author a:hover img{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.imd-author h2, .imd-author p{
  margin-bottom: -7px;
  margin-top: -3px;
}

/* -------------END: Header------------- */

/* -------------START: Button(Bootstrap)------------- */
.btn {
  margin: 0;
  display: inline-block;
  position: relative;
  padding: 12px 25px;
  border: 0;
  border-radius: 0;
  background-color: #7a7a7a;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-family: 'Poiret One', cursive;
}
@media screen and (max-width: 480px) {
  .btn {
    display: block;
  }
}
.btn + .btn {
  margin-left: 17px;
}
@media screen and (max-width: 480px) {
  .btn + .btn {
    margin-top: 20px;
    margin-left: 0;
  }
}
.btn:hover {
  color: #fff;
  background-color: #2d2d2d;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  cursor: pointer;
}
.btn:focus {
  box-shadow: none;
  color: #fff;
}
/* -------------END: Button------------- */

/* -------------START: Gallery------------- */
  /* 3 columns */
.imd-gallery-3-col{
  text-align: center;
}
.imd-gallery-3-col div{
  padding: 10px;
  display: inline-block;
  width: 33.33%;
}
@media screen and (max-width: 768px) {
  .imd-gallery-3-col div {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .imd-gallery-3-col div {
    width: 100%;
  }
}
.imd-gallery-3-col img{
  width: 100%;
}

  /* 2 columns */
.imd-gallery-2-col{
  text-align: center;
}
.imd-gallery-2-col div{
  padding: 10px;
  display: inline-block;
  width: 50%;
}
@media screen and (max-width: 480px) {
  .imd-gallery-2-col div {
    width: 100%;
  }
}
.imd-gallery-2-col img{
  width: 100%;
}

.imd-gallery-item img {
  transition: -webkit-filter 0.35s;
  -webkit-transition: -webkit-filter 0.35s;
  transition: filter 0.35s;
  transition: filter 0.35s, -webkit-filter 0.35s;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.imd-gallery-item a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.imd-gallery-item i{
  opacity: 0;
  z-index: 2;
  color: #fff;

  display:inline-block;
  position:absolute;
  top:30px;
  left:30px;
  font-size: 30px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.imd-gallery-item a:hover i{
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.imd-gallery-item a:after {
  content: '';
  z-index: 0;
  position: absolute;
  opacity: 0;
  background: #000;

  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.imd-gallery-item a:hover:after {
  opacity: 0.4;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
/* -------------END: Gallery------------- */

/* -------------START: Numbers------------- */
.imd-number h2{
  margin-bottom: -15px;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  .imd-number {
    margin-bottom: 31px;
  }
}
@media screen and (max-width: 768px) {
  .imd-last-number {
    margin-bottom: 0;
  }
}
/* -------------END: Numbers------------- */

/* -------------START: Reviews------------- */
.imd-reviews{
  padding: 0 40px;

  line-height: 1.5;
}
.imd-reviews img{
  display: inline-block;
  border-radius: 100%;
  width: 90px;
  margin-bottom: 5px;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    transition: -webkit-filter 0.35s;
    -webkit-transition: -webkit-filter 0.35s;
    transition: filter 0.35s;
    transition: filter 0.35s, -webkit-filter 0.35s;
}
.imd-reviews a:hover img{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.imd-reviews h3{
  margin-top: 5px;
}
/* -------------END: Reviews------------- */

/* -------------START: Latest News------------- */
.imd-latest-news {
  text-align: left;
  font-size: 12px;
  padding: 0 20px;
  line-height: 1.7em;
}
@media screen and (max-width: 990px) {
  .imd-latest-news {
    padding: 0 10px;
  }
}
.imd-latest-news img{
  width: 100%;
}
.imd-latest-news h3{
  letter-spacing: normal;
  margin-bottom: 1px;
  margin-top: 8px;
}
.imd-latest-news .imd-date {
  margin-top: -1px;
  float: left;
  color: #AEAEAE;
  font-size: 12px;
}
.imd-latest-news .imd-likeandcomments {
  margin-top: -1px;
  float: right;
  font-size: 12px;
}
.imd-latest-news .imd-likeandcomments a{
  color: #AEAEAE;
  padding: 0 4px;
}
.imd-latest-news .imd-likeandcomments a:hover{
  color: #1E85D9;
}
/* -------------END: Latest News------------- */

/* -------------START: Hover Effect------------- */
.imd-effect-next{
  overflow: hidden;
  position: relative;
  display: block;
}
.imd-effect-next img{
  transition: -webkit-filter 0.35s;
  -webkit-transition: -webkit-filter 0.35s;
  transition: filter 0.35s;
  transition: filter 0.35s, -webkit-filter 0.35s;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.imd-effect-next:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.imd-effect-next i{
  opacity: 0;
  z-index: 2;
  color: #fff;

  display:inline-block;
  position:absolute;
  top:20px;
  left:20px;
  font-size: 25px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.imd-effect-next:hover i{
  opacity: 1;
}
.imd-effect-next a:after {
  content: '';
  z-index: 0;
  position: absolute;
  opacity: 0;
  background: #000;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.imd-effect-next:hover a:after {
  opacity: 0.4;
}
/* -------------END: Hover Effect------------- */

/* -------------START: Slick------------- */
.slick-dots {
  position: relative;
  bottom: -23px;
}
.slick-dots li {
  margin: 0 1px;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  height: 12px;
  transition: -webkit-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.slick-dots li.slick-active{
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.slick-dots li.slick-active button:before {
  color: #1E85D9;
  font-size: 13px;
}
.slick-dots li button::before {
  color: #bfbfbf;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
.slick-dots li:hover button::before {
  color: #1E85D9;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
/* -------------END: Slick------------- */

/* -------------START: Instagram------------- */
.imd-instagram-item {
  width: 12.5%;
  float: left;
  padding: 5px;
}
.imd-instagram-item img{
  width: 100%;
  transition: -webkit-filter 0.6s;
  -webkit-transition: -webkit-filter 0.6s;
  transition: filter 0.6s;
  transition: filter 0.6s, -webkit-filter 0.6s;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  border-radius: 10px;
}
.imd-instagram-item:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media screen and (max-width: 768px) {
      .imd-instagram-item {
        width: 25%;
      }
}
/* -------------END: Instagram------------- */


.logo-banner, .bar.collapsed .logo-banner-mobile{
	width: 32px;
	height: 32px;
	background-image: url(../BrigitteBallet_Logo_Blue_Transparent-2_HeaderLogo.png);
	background-size: cover;
	margin: 10px;
	float: left;
}

.bar.collapsed .logo-banner-mobile{
  transform: scale(0.95);
  vertical-align: middle;
  margin-top: 8px;
}

/* -------------START: Footer------------- */
.imd-footer {
  background-color: #21283A;
  display: inline-block;
  padding: 25px 0;
  line-height: 1.5;
  width: 100%;
  color: #fff;
}
.imd-icons{
  font-size: 18px;
}
.imd-icons {
  text-align: right;
}
@media screen and (max-width: 768px) {
      .imd-icons, .imd-copyright {
        text-align: center;
      }
}
@media screen and (max-width: 768px) {
      .imd-icons {
        padding-top: 20px;
      }
}
.imd-icons a{
  display: inline-block;
  text-align: center;
  background-color: white;
  border-radius: 100%;
  font-size: 14px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  color: #21283a;
  -webkit-transition: color 0.35s, background-color 0.35s;
  transition: color 0.35s, background-color 0.35s;
}
.imd-icons a + a{
  margin-left: 5px;
}
.imd-icons a:hover{
  background-color: #1E85D9;
}
/* -------------END: Footers------------- */

/* -------------START: Blog------------- */
  /* 3 columns */
.imd-blog-3-col .imd-blog-item{
  width: 33.33%;
}
@media screen and (max-width: 768px) {
  .imd-blog-3-col .imd-blog-item {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .imd-blog-3-col .imd-blog-item {
    width: 100%;
  }
}
.imd-blog-3-col img, .imd-blog-2-col{
  width: 100%;
}
  /* ------------- */
  /* 2 columns */
.imd-blog-2-col .imd-blog-item{
  width: 50%;
}
@media screen and (max-width: 480px) {
  .imd-blog-2-col .imd-blog-item {
    width: 100%;
  }
}
  /* ------------- */
  /* Classic */
.imd-blog-classic .imd-blog-item {
  padding: 0;
}
.imd-blog-classic .imd-blog-item .imd-date{
  float: none;
  display: inline-block;
  text-transform: none;
  margin: 0;
  width: auto;
  line-height: 1;
  font-size: 12px;
  color: #AEAEAE;
}
.imd-blog-classic .imd-blog-item .imd-likeandcomments {
  display: inline-block;
  font-size: 12px;
  width: auto;
  margin: 0;
}
.imd-blog-classic .imd-blog-item h3 {
  font-size: 28px;
  margin-top: -4px;
  margin-bottom: -9px;
}
.imd-blog-classic .imd-blog-item p{
  font-size: 14px;
  margin-top: -7px;
  margin-bottom: -7px;
}
.imd-blog-classic .imd-blog-item .imd-read {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
  /* ------------- */

.imd-blog-item {
  text-align: left;
  line-height: 1.7em;
  padding: 20px;
}
.imd-blog-item img{
  width: 100%;
  border-radius:10px;
}
.imd-blog-item h3{
  margin-bottom: -10px;
}
.imd-blog-item .imd-date {
  margin-top: -8px;
  float: left;
  width: 112px;
  font-size: 12px;
}
.imd-blog-item .imd-likeandcomments {
  margin-top: -8px;
  float: right;
  width: 67px;
  font-size: 12px;
}
.imd-blog-item .imd-date{
  padding: 0;
  color: #AEAEAE;
}
.imd-blog-item .imd-likeandcomments a{
  color: #AEAEAE;
  padding: 0 4px;
}
.imd-blog-item .imd-likeandcomments a:hover{
  color: #1E85D9;
}
/* -------------END: Blog------------- */

/* -------------START: Blog Single------------- */
  /* Category */
.imd-category {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: -2px;
  font-weight: bold;
  font-size: 13px;
}
.imd-category a + a{
  padding-left: 4px;
}

.imd-main-image img{
  width: 100%;
}

  /* Date */
.imd-date-post {
  line-height: 1;
  font-size: 12px;
  margin-top: -9px;
  margin-bottom: 9px;
  color: #AEAEAE;
}

  /* Tags */
.imd-tags {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-weight: bold;
  font-size: 13px;
}
.imd-tags i{
  color: #21283A;
  font-size: 14px;
}
.imd-tags a + a{
  padding-left: 4px;
}

  /* Comments */
.imd-comment {
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.imd-comment ul{
  padding-left: 40px;
}
@media screen and (max-width: 480px) {
  .imd-comment ul {
    padding-left: 20px;
  }
}
.imd-comment li{
  list-style-type: none;
}
.imd-comment .imd-comment-author img{
  width: 60px;
  border-radius: 100%;
  margin-right: 20px;
  float: left;
  margin-top: -8px;
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    transition: -webkit-filter 0.35s;
    -webkit-transition: -webkit-filter 0.35s;
    transition: filter 0.35s;
    transition: filter 0.35s, -webkit-filter 0.35s;
}
.imd-comment .imd-comment-author img:hover{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.imd-comment .imd-comment-author h3{
  letter-spacing: normal;
}
.imd-comment .imd-comment-date {
  font-size: 12px;
  margin: 6px;
  color: #AEAEAE;
}
.imd-comment .imd-comment-content{
  padding-top: 9px;
  padding-bottom: 8px;
}
.imd-comment .imd-reply{
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
}

  /* Your Comment */
.imd-YourComment label{
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 0;
  color: #21283A;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.form-control {
  border-radius: 0;
  border-color: #E8E8E8;
  border-width: 2px;
  color: #7e7d7d;
  margin-bottom: 10px;
}
.form-control:focus {
  border-color: #1E85D9;
  color: #7e7d7d;
}
.form-group {
  margin-bottom: 0;
}
/* -------------END: Blog Single------------- */

/* -------------START: Pagination------------- */
.pagination {
  margin-top: -7px;
}
.pagination .page-link{
  border: 2px solid #e5e5e5;
  background: none;
  color: #21283A;
  font-weight: bold;
  font-size: 12px;
  padding: 12px 16px;
  margin-right: 10px;
  margin-left: 10px;

  -webkit-transition: border-color 0.35s;
  transition: border-color 0.35s;
}
.pagination .page-link:hover {
  border-color: #1E85D9;
}
@media screen and (max-width: 990px) {
  .pagination .page-link {
    padding: 10px 14px;
    margin-right: 8px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 480px) {
  .pagination .page-link {
    padding: 8px 12px;
    margin-right: 6px;
    margin-left: 6px;
  }
}
.page-item .active {
  color: #fff;
  background: #1E85D9;
  border-color: #1E85D9;
}
.page-item:first-child .page-link,  .page-item:last-child .page-link{
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 15px 9px;
  line-height: 12px;
  font-size: 12px;
  color: #e5e5e5;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
.page-item:first-child .page-link:hover,  .page-item:last-child .page-link:hover{
  color: #1E85D9;
}
/* -------------END: Pagination------------- */


/* -------------START: Contacts------------- */
#map {
  margin-top: -27px;
  width: 100%;
  height: 500px;
}
.imd-feedback {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .imd-feedback {
    text-align: center;
  }
}
.imd-feedback h3{
  margin-bottom: -11px;
}
#siteNotice {
  padding: 6px;
}
#siteNotice h3{
  margin-bottom: 2px;
  margin-top: 2px;
}
#siteNotice p{
}
/* -------------END: Contacts------------- */

.imd-menu .nav-item .nav-link{
	cursor:pointer;
}

.header-container{
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    line-height: normal;
    word-wrap: break-word;
    right: 0;
    left: 0;
    top: 55%;
}

@media screen and (min-width: 1440px) {
  .header-desc{
      font-size: 38px;
      letter-spacing: 0.19em;
      font-family: 'futuraLight' !important;
  }

  .header-name{
      font-size: 50px;
      font-family: 'Cinzel' !important;
      line-height: normal;
      letter-spacing: normal;
      word-wrap: break-word;
      padding-bottom: 15px;
  }
}

@media screen and (max-width: 1440px) {
  .header-desc{
      font-size: 30px;
      letter-spacing: 0.19em;
      font-family: 'futuraLight' !important;
  }

  .header-name{
      font-size: 50px;
      font-family: 'Cinzel' !important;
      line-height: normal;
      letter-spacing: normal;
      word-wrap: break-word;
      padding-bottom: 15px;
  }
}

.skills{
	padding-bottom:5px;
}

.speciality-container .sub-title{
	font-size: 0.8rem;
	padding: 5px;
	font-weight: bold;
}

.speciality-container .speciality-skills{
	margin-top: 20px;
	width: 175px;
	height: 210px;
	border-radius: 5px;
}

.speciality-container .speciality-skills-landscape{
	margin-top: 20px;
    width: 100%;	
}
.section-title{
	text-transform: uppercase;	
	text-align: center;
}

.intro-text{
	color: black;
}

.row-about{
	width:100%;
}

.parallax{
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
	background-position-x: left;
	background-position-y: 0;		
}

.parallax-header{
	background-image: url('http://i.imgur.com/gIAd8id.jpg');
}

.parallax-header.local{
	background-image: url(../img/background.jpg);
}

.parallax-intro{
	background-image: url('http://i.imgur.com/0HPbQOW.jpg');
}

.parallax-intro.local{
	background-image: url(../img/background1.jpg);
}

.parallax-about-ballet-dancer{
	background-image: url('http://i.imgur.com/WWFWYbI.jpg');
	height:800px;
}

.parallax-about-ballet-dancer.local{
	background-image: url('../img/parallax/21.jpg');
}

.parallax-about-teaching-ballet{
	background-image: url('http://i.imgur.com/OJ7wTEN.jpg');
	height:800px;
}

.parallax-about-teaching-ballet.local{
	background-image: url('../img/parallax/20.jpg');
}

.parallax-about-presenter{
	background-image: url('http://i.imgur.com/X1tCg1d.jpg');
	height:800px;
}

.parallax-about-presenter.local{
	background-image: url('../img/parallax/22.jpg');
}

.parallax-about-model{
	background-image: url('http://i.imgur.com/zrQAADS.jpg');
	height:800px;
}

.parallax-about-model.local{
	background-image: url('../img/parallax/23.jpg');
}

.parallax-about-adventures{
	background-image: url('http://i.imgur.com/VZpHXCE.jpg');
	height:800px;
}

.parallax-about-adventures.local{
	background-image: url('../img/parallax/studio60_StyleShoot2015-000_full2.jpg');
}

.parallax-about-interests{
	background-image: url('http://i.imgur.com/Ji0DIUt.jpg');
	height:800px;
}

.parallax-about-interests.local{
	background-image: url('../img/parallax/8.jpg');
}

@media (max-width: 800px){
  .parallax-intro{
		background-image: url('http://i.imgur.com/Mn0rBkS.jpg');
  }  
  .parallax-intro.local{
		background-image: url(../img/background1_medium.jpg);
  }    
  .parallax-about-ballet-dancer{
	background-image: url('http://i.imgur.com/KFY5Du7.jpg');
  }
  .parallax-about-ballet-dancer.local{
	background-image: url('../img/parallax/21_medium.jpg');
  } 
  .parallax-about-teaching-ballet{
	background-image: url('http://i.imgur.com/iNLlGIH.jpg');
  }
  .parallax-about-teaching-ballet.local{
	background-image: url('../img/parallax/20_medium.jpg');
  }
  .parallax-about-presenter{
	background-image: url('http://i.imgur.com/xNqI4bU.jpg');
  }
  .parallax-about-presenter.local{
	background-image: url('../img/parallax/22_medium.jpg');
  }
  .parallax-about-model{
	background-image: url('http://i.imgur.com/nl6femh.jpg');
  }
  .parallax-about-model.local{
	background-image: url('../img/parallax/23_medium.jpg');
  } 

  .parallax-about-adventures{
	background-image: url('http://i.imgur.com/q4IExd2.jpg');
  }

  .parallax-about-adventures.local{
	background-image: url('../img/parallax/studio60_StyleShoot2015-000_medium.jpg');
  }

  .parallax-about-interests{
	background-image: url('http://i.imgur.com/HRCZvkA.jpg');
  }

  .parallax-about-interests.local{
	background-image: url('../img/parallax/8_medium.jpg');
  }
  
}

@media (max-width: 625px){
  .parallax-header{
	background-image: url('http://i.imgur.com/0L92i3H.jpg');	
  }	
  .parallax-header.local{
	background-image: url(../img/background_small.jpg);	
  }	 
  .parallax-intro{
	background-image: url('http://i.imgur.com/QEsM7AL.jpg');
  }    
  .parallax-intro.local{
	background-image: url(../img/background1_small.jpg);
  }  
  .parallax-about-ballet-dancer{
	background-image: url('http://i.imgur.com/o9KirTl.jpg');
  }
  .parallax-about-ballet-dancer.local{
	background-image: url('../img/parallax/21_small.jpg');
  }
  .parallax-about-teaching-ballet{
	background-image: url('http://i.imgur.com/sKPElYu.jpg');
  }
  .parallax-about-teaching-ballet.local{
	background-image: url('../img/parallax/20_small.jpg');
  }
  .parallax-about-presenter{
	background-image: url('http://i.imgur.com/RliznQx.jpg');
  }
  .parallax-about-presenter.local{
	background-image: url('../img/parallax/22_small.jpg');
  } 
  .parallax-about-model{
	background-image: url('http://i.imgur.com/kUnt0tf.jpg');
  }
  .parallax-about-model.local{
	background-image: url('../img/parallax/23_small.jpg');
  } 
  .parallax-about-adventures{
	background-image: url('http://i.imgur.com/PMjthDv.jpg');
  }
  .parallax-about-adventures.local{
	background-image: url('../img/parallax/studio60_StyleShoot2015-000_small.jpg');
  }
  .parallax-about-interests{
	background-image: url('http://i.imgur.com/IAsE4Mk.jpg');
  }
  .parallax-about-interests.local{
	background-image: url('../img/parallax/8_small.jpg');
  }  
}  

.parallax-contact{
	background-image: url('http://i.imgur.com/lMdzQW9.jpg');
}

.parallax-contact.local{
	background-image: url(../img/background2.jpg);
}

.parallax-about-adventures .page-title, .parallax-about-adventures .page-subtitle{
	color:#ffffff;
}

.parallax-contact .container{
	background: white;
	padding:25px;
	border-radius: 5px;
}

.imd-box.no-padding{
	padding:0px;
}

.imd-blog-1-col .imd-blog-item{
	width: 100%;
}

.imd-blog-1-col .imd-blog-item.split{
	width: 50%;
}

.imd-blog-1-col .imd-blog-item.text{
	width: 100%;
}

.about-content{
	margin-top: -100px;
    background: white;
    padding-left: 35px;
    padding-right: 35px;
}

.page-title-container{
    top: 40%;
    text-align: center;
}
.page-title{
  text-transform: uppercase;
  text-align: center;
  letter-spacing: normal;
  color: #ffffff;
}
.page-subtitle{
  color: #ffffff;
  margin-top: 10px;
}

.imd-copyright{
  font-size: 14px;
}

.contact-name{

}

.contact-address{

}

.is-hidden{
	display:none;
}

.imd-gallery-item img{
  border-radius:5px;
}

.video-container{
    overflow: hidden;
    display: block !important;
    padding: 0px !important;
}

.video-gallery{
	margin-left: -220px;
    margin-top: -50px;
}

.contact-email{
	padding-top:10px;
}

@media (min-width: 300px) {
  .text-logo{
		color: #21283A;
		letter-spacing: 0.1em;
		margin: 0;
		padding: 15px 19px 39px 19px;
		font-size: 13px;
		text-transform: uppercase;
		-webkit-transition: all 0.35s;
		transition: all 0.35s;
		font-weight: bold;
  } 
  
}

@media (min-width: 700px){
  .header-container{
    right:20%;
    left:auto;
  }
}

@media (min-width: 990px){
  .text-logo{
		padding: 37px 19px 39px 19px;
  } 
  .header-container{
	}
}

@media (max-width: 1400px) {
  .header-container{
	}

.header-desc{
	font-size: 19px;
}

.header-name{
	font-size: 35px;
	padding-bottom: 15px;	
}


}


@media (max-width: 1280px) {
  .header-container{
	}
  .imd-header{ 
  }

.header-desc{
	font-size: 18px;
}

.header-name{
	font-size: 35px;
	padding-bottom: 15px;	
}
}

@media (max-width: 1190px) {

  .text-logo{
		padding: 37px 19px 39px 0px;
		} 

  .header-container{
  }
  .imd-header{	  
  }

.header-desc{
	font-size: 18px;
}

.header-name{
	font-size: 30px;
	padding-bottom: 15px;	
}
}

@media (min-width: 991px){
  #navButton{
    display:none;
  }
  .nav-bar-container{
    width: 89%;
  }
}

@media (max-width: 992px) {
  .text-logo{
		padding: 14px 19px 39px 0px;
		} 
}

@media (max-width: 910px) and (orientation: landscape){
  
}

@media (max-width: 910px) {

  .text-logo{
		padding: 14px 19px 39px 0px;
		} 

  .header-container{
	}
  .imd-header{
	}

.header-desc{
	font-size: 16px;
}

.header-name{
	font-size: 30px;
	padding-bottom: 15px;
}
}

@media (max-width: 575px) {

  .text-logo{
		padding: 14px 19px 39px 0px;
		} 

.header-desc{
	font-size: 15px;
}

.header-name{
	font-size: 22px;
}
  .imd-header{
	}
  .header-container{
	}
 
}


@media screen and (max-width: 990px) {
  .speciality-container .row .col-md-3 {
    width: 50%;
    /* -webkit-box-flex: 0; */
    /* -webkit-flex: 0 0 0; */
    -ms-flex: 0 0 25%;
    max-width: inherit;
    flex: 0 0 50% !important;
  }
  .speciality-container .speciality-set {
    margin-bottom:20px;
  }  
}


@media screen and (max-width: 768px) {
  .speciality-container .row .col-md-3 {
    width: 50%;
    /* -webkit-box-flex: 0; */
    /* -webkit-flex: 0 0 0; */
    -ms-flex: 0 0 25%;
    flex: 1 !important;
    max-width: inherit;
  }
}

@media screen and (max-width: 480px) {
  .speciality-container .row .col-md-3 {
    width: 100%;
    flex: none !important;
  }
}
.imd-gallery-3-col img{
  width: 100%;
}

.contactsubmitbutton{
	z-Index: 100;
}

.message-sending, .message-sent-success{
    text-align: left !important;
    padding-top: 10px;
    font-weight: bold;	
}

.message-sent-success{
	color: green;
}

.contactsubmitbutton:hover{
	cursor:pointer;
}

.imd-icons .twitter:hover{
  background-color:#54abf4;
  color:white;
}

.imd-icons .facebook:hover{
  background-color:#3B5998;
  color:white;  
}

.imd-icons .instagram:hover{
  background-color:#2C6A93;	
  color:white;	
}

.imd-icons .youtube:hover{
  background-color:#C31A1E;
  color:white;	
}

.imd-icons .linkedin:hover{
  background-color:#04669A;
  color:white;	
}
.social-media-container{
	display:none;
}
.instagram-profile-container{
	float: left;
    position: relative;
    margin-bottom: 15px;	
}

.instagram-profile{
	float: left;
	position: relative;
	display: block;
	width: 100%;
	line-height: 50px;
}

.instagram-image-container{
    display: inline-block;
    float: left;
}

.instagram-profile-image{
    float: left;
    position: relative;
    width: 50px;
    overflow: hidden;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;	
}

.instagram-text-container{
	float: left;
	display: inline-block;
}

.instagram-text{
    margin: 0 0 0 20px;
    font-size: 18px;
    color: #21283A;
    font-weight: bold;
}

.instagram-logo-container{
	float: right;
}

.instagram-logo-image{
    width: 172px;
    border-radius: auto;	
}

.instagram-follow-button{
	margin-top: 20px;	
}

.btn.instagram{
	background-color: #2C6A93;
    line-height: 20px;	
}

.btn.instagram:hover{
	opacity: .85;
}

.instagram-follow-icon{
    font-size: 20px !important;
    margin-right: 10px;
    vertical-align: bottom;	
}

/* Preloader */

.loader-text-container{
    z-index: 10000;
    color: black;
    position: fixed;
    display: block;
    left: 50%;
    top: 50%;
    font-family: 'Poiret One', cursive;
    font-size: 24px;
    font-weight: bold;	
}	

.loaded .loader-text-container{
  display:none;
}	

.loader-text{
	position: relative;
    left: -48px;
    top: 110px;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #ffffff;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #222222;
    }

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }  
	
