/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  background: rgb(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 120px;
  width:100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  position: sticky;
  z-index: 998;
  border-radius: 0 0 1rem 1rem;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.navbar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 50px;
}

.navbar__logo {

  min-width: 400px;
  width:25vw;
  height:75px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 100px;
  padding-top: 10px;
  cursor: pointer;
}



.navbar__logo img {
  -o-object-fit: fill;
     object-fit: fill;
  overflow: hidden;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #103783;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navbar__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
  width: 100%;
  
}

.button {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  background: #c00;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}


 .button:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }



.navbar__btn ::after{
  content: '(913)-649-9200';
  font-family: 'Roboto', sans-serif;
  display: block;
  background: #c00;
  font-size: 1rem;
  font-weight: 700;
}

.navbar__links:hover {
  color: #c00;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and(max-width: 400px) {
  .navbar__menu.active {
    background: #fff;;
    top: 0;
    right:0;
    opacity: 1;
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 98;
    height: 80vh;
    font-size: 1.6rem;
  }
    
  
}

@media screen and (max-width: 1035px) {
  .navbar__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0;
  }

  .navbar__menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    margin: 0;
    position: absolute;
    top: -1000px;
    right:0;
    opacity: 1;
    -webkit-transform: all 0.5s ease;
        -ms-transform: all 0.5s ease;
            transform: all 0.5s ease;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #fff;;
    top: 0;
    right:0;
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 98;
    height: 80vh;
    font-size: 1.6rem;
  }

  .navbar__logo  {
    padding-left: 10vw;
    width: 2vw;
    height: 20px;
    min-width: 200px;
    min-height: 30px;

  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: black;
    z-index:99;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .navbar_btn {
    padding-bottom: 2rem;
  }

  .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    height: 80%;
    margin: 0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    z-index: 99;
    -webkit-transform: translate(5%, 20%);
        -ms-transform: translate(5%, 20%);
            transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.highlight {
  border-bottom: 4px solid rgb(132, 0, 255);
}

.main__content {
  position: absolute;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

}

/* showcase section */

.showcase {
  position: relative;
  right: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.showcase video {
  width: 100%;
  height: 100%;
}

.video__container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*fix this overlay */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  background: black;
  width: 100%;
  opacity: 1;
  z-index: 9999;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.textbox {
  position: absolute;
  display: -ms-grid;
  display: grid;
  grid-column: 1fr 1fr;
  -webkit-box-shadow: 20px;
          box-shadow: 20px;
  width: 60%;
  height: 50%;
  margin: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 1rem;
  z-index: 1;
  -webkit-box-shadow: 20px 20px 50px black;
          box-shadow: 20px 20px 50px black;
  background: rgba(255, 255, 255, 0.2);
}


.textbox h1 {
  font-family: "Questrial", sans-serif;
  color: white;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 6vw;
}
.textbox h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Questrial", sans-serif;
  color: white;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
}

#hellobar-bar {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  margin: 0;
  height: 30px;
  top: 0;
  display: table;
  font-size: 17px;
  font-weight: 400;
  padding: 0.33em 0.5em;
  -webkit-font-smoothing: antialiased;
  color: #5c5e60;
  position: fixed;
  background-color: lightblue;
  position: absolute;
  z-index: 999;
  top: 0;
  -webkit-box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.15);
  top: -500px;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
#hellobar-bar.regular {
  height: 30px;
  font-size: 14px;
  padding: 0.2em 0.5em;
}
.hb-content-wrapper {
  text-align: center;
  text-align: center;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
.hb-content-wrapper p {
  margin-top: 0;
  margin-bottom: 0;
}
.hb-text-wrapper {
  margin-right: 0.67em;
  display: inline-block;
  line-height: 1.3;
}
.hb-text-wrapper .hb-headline-text {
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
}
#hellobar-bar .hb-cta {
  display: inline-block;
  vertical-align: middle;
  margin: 5px 0;
  color: #ffffff;
  background-color: #22af73;
  border-color: #22af73;
}
.hb-cta-button {
  opacity: 1;
  color: #fff;
  display: block;
  cursor: pointer;
  line-height: 1.5;
  max-width: 22.5em;
  text-align: center;
  position: relative;
  border-radius: 3px;
  white-space: nowrap;
  margin: 1.75em auto 0;
  text-decoration: none;
  padding: 0;
  overflow: hidden;
}
.hb-cta-button .hb-text-holder {
  border-radius: inherit;
  padding: 5px 15px;
}
.hb-close-wrapper {
  display: table-cell;
  width: 1.6em;
}
.hb-close-wrapper .icon-close {
  font-size: 14px;
  top: 10px;
  right: 25px;
  width: 15px;
  height: 15px;
  opacity: 0.3;
  color: #000;
  cursor: pointer;
  position: absolute;
  text-align: center;
  line-height: 15px;
  z-index: 1000;
  text-decoration: none;
}

.testimonials__section {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-image: -o-linear-gradient( 340.4deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  background-image: linear-gradient( 109.6deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  overflow:hidden;
}

.testimonials__section h1{
  margin-top: 50px;
  font-family: 'Mukta', sans-serif;
  font-size: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-Width: 440px){
  .testimonials__section h1{
    margin-top: 50px;
    font-family: 'Mukta', sans-serif;
    font-size: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: black;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}


.swiper-container {
  width: 100%;
  height: 100%;
  overflow:hidden;
}

.swiper-slide {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#00d2ff), to(#103783));
  background: -o-linear-gradient(top, #00d2ff 0%, #103783 100%);
  background: linear-gradient(180deg, #00d2ff 0%, #103783 100%);
  border-radius: 10px;
  -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
          box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.testimonialBox {
  position: relative;
  width: 100%;
  padding: 40px;
  padding-top: 90px;
  color:black;
  font-weight: 500;
  text-align: center;
  
}

.testimonialBoxAdditional {
  position: relative;
  width: 100%;
  padding: 20px;
  color:black;
  font-weight: 500;
  text-align: center;
  
}

.testimonialBox .quote {
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: .3;
  width: 70px;
  height: 50px;
}

.content .details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content .details .imgBx {
  position: relative;
  width: 70px;
  height: 80px;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}

.content .details .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .details h3 {
  position: relative;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
}
.content .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}




.contentHickey .details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;

  margin-top: 20px;
}

.contentHickey .details .imgBx {
  position: relative;
  width: 70px;
  height: 80px;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}

.contentHickey .details .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contentHickey .details h3 {
  position: relative;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
}
.contentHickey .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.contentHickey p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 120%;
}


.contentDavis .details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.contentDavis .details .imgBx {
  position: relative;
  width: 90px;
  height: 80px;
  border-radius:10%;
  margin-right: 10px;
  overflow: hidden;
}

.contentDavis .details .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contentDavis .details h3 {
  position: relative;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
}
.contentDavis .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.contentDavis p {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}




.contentClark .details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.contentClark .details h3 {
  position: relative;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
}
.contentClark .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.contentClark p {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}



.contentMoore .details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.contentMoore .details h3 {
  position: relative;

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
}
.contentMoore .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.contentMoore p {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.contentAdditional{
  width:100%;
}

.contentAdditional .details {
  width:100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contentAdditional .details h3 {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  line-height: 1.1em;
  padding-bottom: 10px;
}

.contentAdditional .details h2 {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: black;
  line-height: 1.1em;
  padding-bottom: 20px;
}
.contentAdditional .details h3 span {
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.contentAdditional p {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}


.swiper-wrapper{
  position: relative;
  width: 10%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/*
.swiper-container {
  position: relative;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;

  padding-top: 50px;
}*/


.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 350px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.about__section{
  position: relative;
  -ms-flex-wrap:wrap;
      flex-wrap:wrap;
  background: #ECE9E6;  /* fallback for old browsers */  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#ECE9E6));
  background: -o-linear-gradient(top, #FFFFFF, #ECE9E6);
  background: linear-gradient(to bottom, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-image: -o-linear-gradient( 340.4deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  background-image: linear-gradient( 109.6deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );

  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}

@media(max-width:1420px){
  .about__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  #introVideo{
    display:none;
  }

  .videoContainer{
    width:100% !important;
    height:100% !important;
  }

  #introVideoHoriontal{
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width:100%;
    height:100%;
  }


}


.about__container{
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color:black;
 
  width: 100%;
  text-align: center;
  border-radius: 5px;
}

.text__container{
  padding: 0px 50px 0px 50px;
  background: #ECE9E6;  /* fallback for old browsers */  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#ECE9E6));
  background: -o-linear-gradient(top, #FFFFFF, #ECE9E6);
  background: linear-gradient(to bottom, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  -ms-flex-negative: 2;
      flex-shrink: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  -webkit-box-shadow: -10px 0px 10px 1px #aaaaaa;
          box-shadow: -10px 0px 10px 1px #aaaaaa;
  z-index: 1;
}

.picture__container{
  -ms-flex-negative: 1;
      flex-shrink: 1;
  background-color: #131313;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  float:right;
  height:auto;
  width:800px;
  z-index: 2;
  border-radius: 10px;
}



.picture__container img{
  border-radius: 10px;
}

.videoContainer{
  width:40%;
  height:auto;
}

#introVideoHoriontal{
  display:none ;
  
}

#introVideo{
  width:100% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;

}

.about__container h1{
  font-size: 5rem;
  font-family: 'Mukta', sans-serif;
  text-align: left;
  color: black;
}

.text__container h1{
  font-size: 5rem;
}

.text__container h2
{
  font-weight: 100px;
  font-family: 'Playfair Display', serif;

  text-align: left;
  color: black;
  font-size: 1.6rem;
}

.text__container p{
  text-align: left;
  font-family: 'Playfair Display', serif;
  line-height: 30px;
  font-size: 1.5rem;
}


@media screen and (max-Width: 640px){
  .text__container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    width: 100%;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

        -ms-flex-direction: column;

            flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .text__container h1{
    font-size: 10vw;
  }
  .text__container h2{
    font-size: 3vw;
    text-align: center;
  }

  .text__container p{
    font-size: 3vw;
    line-height: 15px;
    padding-bottom: 10px;
  }
}

.img-headshot{
  padding-left: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  justify-items:center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.content-container{
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width:-webkit-max-content;
  width:-moz-max-content;
  width:max-content;  
  position: relative;
}

.cover{
  position: absolute;
  right:160px;
  bottom: 20px;
  width:300px;
  height:100px;
  background-color:#fff;
  -webkit-animation: animate 2s;
          animation: animate 2s;
}

.googlemaps{
  position: absolute;
  top:300px;
  left:50px;
  width: 700px;
  height:500px;
}


/*
.content-container .textprompt h1:after{
  
  position: relative;
  content: "";
  position: absolute;
  top: 0;
  right:0;
  width:100%;
  height:100%;
  color: black;
  border-right: 5px solid black;;
  border-radius: 5px;
  overflow:hidden;
  animation:animate 2s linear ;

}
*/

@-webkit-keyframes animate{

  0%{
    right:20px;
  }
  100%{
    right:160px;
  }
  
}

@keyframes animate{

  0%{
    right:20px;
  }
  100%{
    right:160px;
  }
  
}





.music-container{
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 20px 20px 0 rgba(252, 169, 169, 0.6);
          box-shadow: 0 20px 20px 0 rgba(252, 169, 169, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
  position: relative;
  margin:30px 0;
  z-index: 10;
}

.img-container{
  position: relative;
  width:110px;
}

.img-container img{
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 110px;
  width: inherit;
  position:absolute;
  bottom: 0;
  left: 0;
  -webkit-animation: rotate 3s linear infinite;
          animation: rotate 3s linear infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.music-container.play .img-container img{
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.textprompt h1{
  font-size: calc(16px + 6 * ((100vw - 320px) / 680));
}



.navigation{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  position: relative;
  z-index: 1;
}

.action-btn-play{
  background-color: #fff;
  border: 0;
  color: #dfdbdf;
  cursor: pointer;
  padding:10px;
  color: black;
  font-size: 30px;
  margin: 15px;
}


.action-btn-play:focus{
  outline: none;
}

.music-info{
  background-color:rgba(255, 255, 255, 0.5);
  border-radius: 15px 15px 0 0;
  position:absolute;
  top:0;
  left: 20px;
  width: calc(100% - 40px);
  padding: 10px 10px 10px 150px;
  opacity: 0;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: opacity 2s ease-in-out, -webkit-transform 2s eas-in;
  transition: opacity 2s ease-in-out, -webkit-transform 2s eas-in;
  -o-transition: transform 2s eas-in, opacity 2s ease-in-out;
  transition: transform 2s eas-in, opacity 2s ease-in-out;
  transition: transform 2s eas-in, opacity 2s ease-in-out, -webkit-transform 2s eas-in;
  z-index: 0;
}

.music-container.play .music-info{
  opacity:1;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s eas-in;
  transition: opacity 1s ease-in-out, -webkit-transform 1s eas-in;
  -o-transition: transform 1s eas-in, opacity 1s ease-in-out;
  transition: transform 1s eas-in, opacity 1s ease-in-out;
  transition: transform 1s eas-in, opacity 1s ease-in-out, -webkit-transform 1s eas-in;


}

.music-info h4{
  margin: 0;
}

.progress-container{
  background-color: #ffff;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  height: 5px;
  width: 100%;
}

.progress{
  background-color:#fe8daa;
  border-radius: 5px;
  height: 100%;
  width: 0%;
  -webkit-transition: width .1s linear;
  -o-transition: width .1s linear;
  transition: width .1s linear;
}

.bars{
  position: relative;
  margin-left: 10px;
  padding-bottom: 35px;
  width: 100px;
  height:100px;
  opacity: 1;
  padding-top: 10px;
}

.eq-bar {
  -webkit-transform: scale(1, -1) translate(0, -24px);
      -ms-transform: scale(1, -1) translate(0, -24px);
          transform: scale(1, -1) translate(0, -24px);
}

.eq-bar--1 {
  -webkit-animation-name: short-eq;
          animation-name: short-eq;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.eq-bar--1 {
  -webkit-animation-name: short-eq;
          animation-name: short-eq;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.eq-bar--2 {
  -webkit-animation-name: tall-eq;
          animation-name: tall-eq;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.17s;
          animation-delay: 0.17s;
}

.eq-bar--3 {
  -webkit-animation-name: short-eq;
          animation-name: short-eq;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0.34s;
          animation-delay: 0.34s;
}

@-webkit-keyframes short-eq {
  0% {
    height: 8px;
  }

  50% {
    height: 4px;
  }

  100% {
    height: 8px;
  }
}

@keyframes short-eq {
  0% {
    height: 8px;
  }

  50% {
    height: 4px;
  }

  100% {
    height: 8px;
  }
}

@-webkit-keyframes tall-eq {
  0% {
    height: 16px;
  }

  50% {
    height: 6px;
  }

  100% {
    height: 16px;
  }
}

@keyframes tall-eq {
  0% {
    height: 16px;
  }

  50% {
    height: 6px;
  }

  100% {
    height: 16px;
  }
}

@media screen and (max-Width: 639px){

  .content-container{
    width:100%
  }

  .textprompt h1{
     font-size: 2vw;
  }
  
  .music-container{
    height: 15vw;
    width:-webkit-max-content;
    width:-moz-max-content;
    width:max-content;
    padding:0;
    margin:0;
  }

  .music-cover{
    width:1vw;
  }

  .img-container {
    position: relative;
    width:50px;
  }

  .bars{
    width:-webkit-max-content;
    width:-moz-max-content;
    width:max-content;
    padding-bottom: 66px;
    margin-right:  20px;
  }
  
  .img-container img{
    position: absolute;
    bottom: 10px;
    left: 10px;
    width:8vw;
    height:8vw;
  }

  
.action-btn-play{
  background-color: #fff;
  border: 0;
  color: #dfdbdf;
  cursor: pointer;
  padding:10px;
  margin-left: 20px;
  color: black;
  font-size: 3vw;
  margin: 15px;
}

}







.services__container{
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 50px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0px;
  background-image: -o-linear-gradient( 340.4deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  background-image: linear-gradient( 109.6deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  
}




.grid__container{
  position: relative;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  display: -ms-grid;
  display: grid;

  grid-gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -o-linear-gradient( 340.4deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  background-image: linear-gradient( 109.6deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );

}



.img__card{
  position: relative;
  -o-object-fit:cover;
     object-fit:cover;
  background-color: red;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  max-width: 400px;
  max-height: 400px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-grid-column-align: center;
      justify-self: center;
}

.depression{
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 400px;
  background-position: left;
  -o-object-fit:cover;
     object-fit:cover;
  overflow: hidden; 
 
}

.beach{
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 400px;
  background-position: left;
  -o-object-fit:cover;
     object-fit:cover;
  overflow: hidden; 
 
}

.text__card{
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  
    width: .5fr;
    height: .5fr;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 420px;
    max-height: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    color:#fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#00dbde), to(#fc00ff));
    background-image: -o-linear-gradient(left, #00dbde 0%, #fc00ff 100%);
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -webkit-box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
            box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;}

.text__card:nth-child(1){
  background-color: #0093E9;
  background-image: -o-linear-gradient(290deg, #0093E9 0%, #80D0C7 100%);
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.text__card h1{
  color: #FFFFFF;
  font-size: 3rem;
}

.text__card p{
  padding: 10px;
  font-family: 'Judson', serif;
  font-size: 1.2rem;
  text-align: center;
}

.text__card:nth-child(3){
  background-image: -o-linear-gradient( 315deg, #92FFC0 10%, #002661 100%);
  background-image: linear-gradient( 135deg, #92FFC0 10%, #002661 100%);
}

.text__card:nth-child(5){
  background-image: -o-linear-gradient( 315deg, #97ABFF 10%, #123597 100%);
  background-image: linear-gradient( 135deg, #97ABFF 10%, #123597 100%);
}


.btn-grad {background-image: -webkit-gradient(linear, left top, right top, from(#8e9eab), color-stop(51%, #eef2f3), to(#8e9eab));background-image: -o-linear-gradient(left, #8e9eab 0%, #eef2f3  51%, #8e9eab  100%);background-image: linear-gradient(to right, #8e9eab 0%, #eef2f3  51%, #8e9eab  100%)}
.btn-grad {
   margin: 10px;
   padding: 15px 45px;
   text-align: center;
   text-transform: uppercase;
   -webkit-transition: 0.5s;
   -o-transition: 0.5s;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   -webkit-box-shadow: 0 0 20px black .2;            
           box-shadow: 0 0 20px black .2;
   border-radius: 10px;
   display: block;
   text-decoration: none;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }

 .sticky-bar {
  padding: 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 25%;
  border-radius: 5px;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color:#c00;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
          box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);

}

 .sticky-barWide .sticky-bar{
  padding: 10px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color:#c00;
  text-decoration: none;
}

.sticky-barShort .sticky-bar {
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 50px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  width: 400px;
  -webkit-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  background-color:#c00;
  text-decoration: none;

}

.sticky-bar .close-icon{
  text-decoration: none;
  position: fixed;
  margin-right: 20px;
  right: 10px;
  bottom: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.sticky-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4444;
  padding: 16px 40px;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  text-decoration: none;
  background-color: white;
  border-radius: 5px;

}

.sticky-button a{
  text-decoration: none;
  font-weight: 600;
  color:#c00;
}

.contact__section{
  position:relative;
  min-height: 100vh;
  padding: 50px 100px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: -o-linear-gradient( 340.4deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );
  background-image: linear-gradient( 109.6deg,  rgba(204,228,247,1) 11.2%, rgba(237,246,250,1) 100.2% );

}

.contact__section .contact__content{
  
  position: relative;
  margin-left: 0px;
  max-width: 800px;
  text-align: center;

}

.contact__section .contact__content h2{
  font-size: 5rem;
  text-align: center;
  line-height: 70px;
  font-weight: 500;
  font-family: 'Mukta', sans-serif;
  color:black;
}
.contact__section .contact__content p{
  font-family: 'Mukta', sans-serif;
  color:black;
  padding-top: 20px;
  font-size: 2rem;
}

.contact__container{
  
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  margin-top: 30px;
}

.contact__container .contact__info{
  
  width: 50%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  
}
.contact__container .contact__info .info__container{
  
  -webkit-box-pack: center;
  
      -ms-flex-pack: center;
  
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}

.contact__container .contact__info .box{
  position: relative;
  padding: 20px 0;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

@media(max-width:609px){
  .info__container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
  }
  .contact__container .contact__info .box{
    position: relative;
    padding: 20px 0;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    overflow-wrap: break-word;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .contact__container .contact__info .box .icon{
    max-width: 60px;
    height: 60px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    border-radius: 50%;
    font-size: 22px;
  }
  .contact__container .contact__info .box .text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    margin-left: 20px;
    color:black;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-weight:400;
    padding: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
  }

  .box .text p{
    text-align: center;
    font-size:2.5vw+ 2.5vh;
    
  }

  #location{
    font-size:3vw

  }

  .contactForm{
    
  }
}



.contact__container .contact__info .box .icon{
  min-width: 60px;
  height: 60px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  border-radius: 50%;
  font-size: 22px;
}

.contact__container .contact__info .box .text{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  margin-left: 20px;
  font-size: 16px;
  color:black;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight:400;
}

.contact__container .contact__info .box h3{
  font-weight: 500;
  color: #c00;;
}

.contactForm{
  width: 40%;
  padding: 40px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
          box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.contactForm h2{
  font-size: 30px;
  color: #333;
  font-weight: 500;
}

.contactForm .inputBox{
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contactForm .inputBox textarea,
.contactForm .inputBox input{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contactForm .inputBox span{
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: #665;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span
{

  color: #e91e63;
  font-size: 12px;
  -webkit-transform: translate(-20px,-15px);
      -ms-transform: translate(-20px,-15px);
          transform: translate(-20px,-15px);

}

.contactForm .inputBox input[type ="submit"]
{
  width: 100px;
  background: #c00;;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
}

@media(max-width:991px){

    .contact__section{
      padding: 0px;
    }
    .contact__container{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .contact__container .contact__info{
      margin-bottom: 40px;
    }
    .contact__container .contact__info,.contactForm
    {
      width: 100%;
    }

}

.footer{
  position: relative;
  width: 95%;
  background-color:white;
  height:-webkit-max-content;
  height:-moz-max-content;
  height:max-content;
  z-index: 99;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top:50px;
  border-radius:20px;
  -webkit-box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
          box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

}
.footer-wrap{
  position: relative;
  width: 100%;
  height:-webkit-max-content;
  height:-moz-max-content;
  height:max-content;
  z-index: 99;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
}

.sidebar-footer{
  margin:50px;
  display:block;
  width:50%;
  height:-webkit-max-content;
  height:-moz-max-content;
  height:max-content;
  float:left;
  font-family: Open Sans;
  text-decoration: none;
}

.sidebar-footer h2{
  font-weight: bold;
  text-align: left;
  font-size: .8em;
}

.sidebar-footer p{
  font-size: .8em;
  text-align: left;
  padding:10px;

}

.sidebar-footer ul{
  position: relative;
  list-style-type: none;
  margin:0;
  padding: 0;
  list-style: disc;
  text-decoration: none;
  padding:10px;

}

.sidebar-footer ul li{
  border-bottom: 1px solid #444444;
  text-decoration: none;
  list-style-type: none;
  padding:10px;

}
.sidebar-footer a{
  text-decoration: none;
}
b{
  font-weight: bold;
  font-size: 1.0em;
  text-decoration: none;
  color:black;
  
}

.pyschologyToday{
  margin-right:40px;
}

@media (max-width:919px){
  .footer-wrap{
    position: relative;
    width: 100%;
    height:-webkit-max-content;
    height:-moz-max-content;
    height:max-content;
    z-index: 99;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
}




