.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  margin-top:00;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  z-index:10000000;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-height: calc(100vh - 80px); 
  height: auto;
  overflow-y: auto;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

*::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.fun_fact_area {
  padding-top: 150px;
  padding-bottom: 110px;
  overflow: hidden;
}
.fun_fact_area_two {
  background: #f7f6fa;
}
.fun_fact_content h1 {
  font-size: 60px;
}
.fun_fact_content .fact_item h1 {
  font-size: 70px;
  font-weight: 400;
}
.fact_author_img {
  position: relative;
}
.fact_author_img .box_three {
  width: 630px;
  height: 630px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#290a59),
    to(#17c7bd)
  );
  background-image: -o-linear-gradient(left, #290a59 0, #17c7bd 100%);
  background-image: linear-gradient(90deg, #290a59 0, #17c7bd 100%);
  opacity: 1;
  top: -460px;
}
.fact_author_img .box_four {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#411881),
    to(#9b2bdc)
  );
  background-image: -o-linear-gradient(left, #411881 0, #9b2bdc 100%);
  background-image: linear-gradient(90deg, #411881 0, #9b2bdc 100%);
  opacity: 1;
  width: 708px;
  height: 708px;
  top: -460px;
  left: 150px;
}
.fact_author_img img {
  margin-top: -70px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.fact_author_img_two .box_three {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#fb862f),
    to(#c640fd)
  );
  background-image: -o-linear-gradient(right, #fb862f 0, #c640fd 100%);
  background-image: linear-gradient(-90deg, #fb862f 0, #c640fd 100%);
}
.fact_author_img_two .box_four {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00b1b2),
    to(#a485fd)
  );
  background-image: -o-linear-gradient(left, #00b1b2 0, #a485fd 100%);
  background-image: linear-gradient(90deg, #00b1b2 0, #a485fd 100%);
}
.feedback_slider .owl-nav {
  display: none;
}
.feedback_slider .item {
  padding: 0 15px;
}
.feedback_slider .shap_one,
.feedback_slider .shap_two {
  position: absolute;
  bottom: 0;
  right: 20px;
  opacity: 0.302;
  border-radius: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 66px;
  height: 66px;
  bottom: -35px;
  opacity: 0.302;
}
.feedback_slider .shap_one {
  background-image: -o-linear-gradient(40deg, #1b8593 0, #17c7bd 100%);
  background-image: linear-gradient(40deg, #1b8593 0, #17c7bd 100%);
}
.feedback_slider .shap_two {
  background-image: -o-linear-gradient(40deg, #02afb3 0, #228592 100%);
  background-image: linear-gradient(40deg, #02afb3 0, #228592 100%);
  right: -10px;
  bottom: -45px;
}
.feedback_slider .center .feedback_item {
  border-color: #17c7bd;
}
.feedback_slider .center .feedback_item .shap_one,
.feedback_slider .center .feedback_item .shap_two {
  opacity: 1;
}
.feedback_item {
  border: 0;
  border-radius: 4px;
  background-color: var(--color-sky-blue-dark);
  padding: 23px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.feedback_item .feed_back_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.feedback_item .media .img {
  border: 1px solid var(--color-sky-blue-dark);
  border-radius: 50%;
  width: 85px;
  height: 85px;
  overflow: hidden;
  margin-right: 18px;
}
.feedback_item .media .img img {
  max-width: 100%;
  width: auto;
}
.feedback_item .media .media-body {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.feedback_item .media .media-body h6,
 .feedback_item .media .media-body h4{
  margin-bottom: 0;
  font-size: 14px;
  color: #fff;
}
.feedback_item p {
  font-weight: 300;
}
.feedback_item .post_date {
  font-size: 14px;
  line-height: 24px;
  color: #58596e;
  font-style: italic;
  font-weight: 300;
  position: relative;
}
.feedback_item .post_date:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #58596e;
  position: absolute;
  left: 0;
  bottom: 0;
}
.feedback_item .ratting {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}
.feedback_item .ratting a {
  font-size: 12px;
  color: #58596e;
}
.feedback_item .ratting a:nth-child(1),
.feedback_item .ratting a:nth-child(2),
.feedback_item .ratting a:nth-child(3) {
  color: #17c7bd;
}
.testimonials-box {
  max-height: 370px;
  overflow: hidden;
}
.testim_info {
  height: 240px;
  overflow: hidden;
  margin-top: 10px;
}
.testimonials-box:hover .testim_info {
  overflow: hidden;
  overflow-y: auto;
}
.testimonials-box ::-webkit-scrollbar {
  width: 5px;
}
.testimonials-boxr ::-webkit-scrollbar-track {
  background: var(--color-white);
}
.testimonials-box ::-webkit-scrollbar-thumb {
  background-color: var(--color-orange);
}
.owl-dots {
  text-align: center;
  margin-top: 75px;
}
.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d3e65;
  margin: 0 5px;
  border: 1px solid #3d3e65;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.owl-dots .owl-dot.active span {
  background: 0 0;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  border-color: #17c7bd;
}
.owl-dots .owl-dot:focus {
  outline: 0;
}
.feedback_area_two {
  background-image: -o-linear-gradient(60deg, #5f51fb 0, #8ca7ff 100%);
  background-image: linear-gradient(30deg, #5f51fb 0, #8ca7ff 100%);
  height: 550px;
  position: relative;
  z-index: 1;
}
.feedback_area_two:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/new/feedback_shap.png") no-repeat scroll center 0;
  position: absolute;
  z-index: -1;
}
.feedback_area_two .sec_title {
  padding-left: 162px;
}
.feedback_area_two .sec_title h2 {
  font-size: 35px;
  line-height: 45px;
}
.feedback_area_two .sec_title p {
  color: #cfd0fa;
  font-style: italic;
}
.feedback_slider_two .item {
  padding-bottom: 50px;
}
.feedback_slider_two .shap_one,
.feedback_slider_two .shap_two {
  opacity: 0.12;
  background-image: -o-linear-gradient(
    50deg,
    #5f51fb 0,
    #767cfd 64%,
    #8ca7ff 100%
  );
  background-image: linear-gradient(
    40deg,
    #5f51fb 0,
    #767cfd 64%,
    #8ca7ff 100%
  );
  position: absolute;
  bottom: 0;
  right: 20px;
  border-radius: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 66px;
  height: 66px;
  bottom: -35px;
  opacity: 0.14;
}
.feedback_slider_two .shap_two {
  right: -10px;
  bottom: -45px;
}
.feedback_slider_two .center .feedback_item_two .shap_one,
.feedback_slider_two .center .feedback_item_two .shap_two {
  opacity: 0.45;
}
.feedback_slider_two .owl-nav {
  display: block;
  position: absolute;
  right: 120px;
  top: -100px;
}
.feedback_slider_two .owl-nav i {
  width: 50px;
  height: 50px;
  text-align: center;
  border: 1px solid var(--color-white);
  display: inline-block;
  color: var(--color-white);
  line-height: 50px;
  font-size: 12px;
  border-radius: 50%;
  margin-left: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.feedback_slider_two .owl-nav i:hover {
  background: var(--color-white);
  color: #5f51fb;
}
.feedback_slider_two .feedback_item {
  background: var(--color-white);
  -webkit-box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.1);
  box-shadow: 0 20px 60px 0 rgba(0, 11, 40, 0.1);
  border: 0;
  margin: 0 20px;
}
.feedback_slider_two .feedback_item .media .img {
  border: 0;
}
.feedback_slider_two .owl-dots {
  display: none;
}
.feedback_area_three {
  height: 540px;
}
.feedback_area_three .row {
  margin-left: -20px;
  margin-right: -20px;
}
.feedback_area_three .feedback_slider_two .feedback_item {
  margin: 0 20px;
  -webkit-box-shadow: 0 30px 40px 0 rgba(0, 11, 40, 0.08);
  box-shadow: 0 30px 40px 0 rgba(0, 11, 40, 0.08);
}
.feedback_area_three
  .feedback_slider_two
  .feedback_item
  .ratting
  a:nth-child(1),
.feedback_area_three
  .feedback_slider_two
  .feedback_item
  .ratting
  a:nth-child(2),
.feedback_area_three
  .feedback_slider_two
  .feedback_item
  .ratting
  a:nth-child(3) {
  color: #fbc509;
}
.feedback_area_three .feedback_slider_two .feedback_item p {
  line-height: 28px;
}
.feedback_area_three .feedback_slider_two .owl-nav {
  right: 15px;
}
.feedback_area_three .feedback_slider_two .owl-nav i {
  border-color: #dfe3ed;
  color: #414042;
}
.feedback_area_three .feedback_slider_two .owl-nav i:hover {
  border-color: #5f51fb;
  background: #5f51fb;
  color: var(--color-white);
}
.app_testimonial_area {
  background: #fbfbfd;
  padding-top: 200px;
  padding-bottom: 140px;
  overflow: hidden;
  position: relative;
}
.app_testimonial_area .text_shadow {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.app_testimonial_area .text_shadow:before {
  content: attr(data-line);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #f6f6fa;
  font-weight: 700;
  background-image: -o-linear-gradient(310deg, #672dde 0, #4069eb 100%);
  background-image: linear-gradient(140deg, #672dde 0, #4069eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Jost Reg", sans-serif !important;
  font-size: 200px;
  line-height: 200px;
  z-index: -1;
  text-transform: uppercase;
  top: 50%;
  opacity: 0.02;
}
.app_testimonial_slider {
  max-width: 690px;
  margin: 0 auto;
}
.nav_container {
  position: relative;
  z-index: 1;
}
.nav_container .owl-next,
.nav_container .owl-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 3px 4px 0 rgba(12, 0, 46, 0.06);
  box-shadow: 0 3px 4px 0 rgba(12, 0, 46, 0.06);
  font-size: 20px;
  color: #414042;
  border: 0;
  line-height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.nav_container .owl-next:hover,
.nav_container .owl-prev:hover {
  background: #4069eb;
  color: var(--color-white);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.nav_container .owl-prev {
  left: 15px;
}
.nav_container .owl-next {
  right: 15px;
}
.nav_container .owl-dots {
  margin-top: 30px;
}
.nav_container .owl-dots .owl-dot span {
  background: #cfcfe7;
  border: 0;
}
.nav_container .owl-dots .owl-dot.active span {
  background: #653cee;
}
.shap {
  position: absolute;
  opacity: 0.02;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 45px;
  left: 90px;
  z-index: -1;
}
.shap.one {
  background-image: -o-linear-gradient(310deg, #7d0df0 0, #0cb6e7 100%);
  background-image: linear-gradient(140deg, #7d0df0 0, #0cb6e7 100%);
  width: 650px;
  height: 510px;
  top: -155%;
}
.shap.two {
  background-image: -o-linear-gradient(310deg, #7d0df0 0, #0cb6e7 100%);
  background-image: linear-gradient(140deg, #7d0df0 0, #0cb6e7 100%);
  width: 666px;
  height: 330px;
  top: -145%;
  left: 290px;
}
.app_testimonial_item .author-img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.app_testimonial_item .author-img img {
  width: auto;
  border-radius: 100%;
  max-width: 100%;
}
.app_testimonial_item .author_info {
  margin-bottom: 35px;
}
.app_testimonial_item .author_info p {
  color: #959cb1;
  font-size: 14px;
  margin-bottom: 0;
}
.experts_team_area .learn_btn:hover {
  color: #4069eb;
}
.experts_team_area .learn_btn:hover:before {
  background: #4069eb;
}
.ex_team_item {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  overflow: hidden;
  cursor: pointer;
}
.ex_team_item img {
  max-width: 100%;
}
.ex_team_item .hover_content,
.ex_team_item .team_content {
  position: absolute;
  width: 100%;
}
.ex_team_item h3 {
  margin-bottom: 3px;
}
.ex_team_item h5 {
  font: 300 14px/24px "Jost Reg", sans-serif !important;
  color: #414042;
  margin-bottom: 0;
}
.ex_team_item .team_content {
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 17px 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ex_team_item .hover_content {
  top: 0;
  height: 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;
  padding: 0 33px;
  background-image: -o-linear-gradient(
    310deg,
    rgba(125, 13, 240, 0.9) 0,
    rgba(58, 113, 235, 0.9) 100%
  );
  background-image: linear-gradient(
    140deg,
    rgba(125, 13, 240, 0.9) 0,
    rgba(58, 113, 235, 0.9) 100%
  );
  opacity: 0;
  visibility: visible;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.ex_team_item .hover_content .n_hover_content {
  width: 100%;
}
.ex_team_item .hover_content .n_hover_content ul {
  margin-bottom: 0;
}
.ex_team_item .hover_content .n_hover_content ul li {
  display: inline-block;
}
.ex_team_item .hover_content .n_hover_content ul li a {
  font-size: 13px;
  color: var(--color-white);
  margin: 0 5px;
}
.ex_team_item .hover_content .n_hover_content ul li a:hover {
  color: #0cb6e7;
}
.ex_team_item .hover_content .n_hover_content .br {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  margin: 15px 0 20px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.ex_team_item .hover_content .n_hover_content h3 {
  -webkit-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.ex_team_item .hover_content .n_hover_content h5 {
  color: var(--color-white);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.ex_team_item:hover .hover_content {
  opacity: 1;
  visibility: visible;
  z-index: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.ex_team_item:hover .hover_content .br {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.ex_team_item:hover .hover_content h3,
.ex_team_item:hover .hover_content h5 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.ex_team_item:hover .team_content {
  opacity: 0;
  visibility: visible;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}