/* NAVBAR */
.frontNav {
  font-size: 13px;
  background: #004CCA;
  border-bottom: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.frontNav .navbar-brand {
  width: auto;
  margin-right: 20px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.frontNav .nav-link,
.frontNav .btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 0.5rem 15px !important;
}

.whyLi,
.homeLi,
.servicesLi,
.contactLi {
  position: relative;
}

.whyLi::after,
.homeLi::after,
.servicesLi::after,
.contactLi::after {
  content: '';
  height: 5px;
  background: #f5aebf;
  display: block;
  position: absolute;
  bottom: -10px;
  width: calc(100% - 0px);
}

.whyLi,
.contactLi {
  position: relative;
}

.whyLi::after,
.contactLi::after {
  content: '';
  height: 5px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: -10px;
  width: calc(100% - 0px);
}

.reallySmall {
  font-size: 12px;
  line-height: 1.2;
}

.topOfPage {
  padding-top: 80px;
}

.topOfPage2 {
  padding-top: 80px;
}

.thumbnail {
  position: relative;
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
}

.caption h1 {
  line-height: 0.9;
  font-weight: bold;
  font-size: 92px;
  -webkit-text-stroke: 0px #fff;
  border-bottom: 0;
}

.caption h5 {
  background: #f24f21;
  padding: 5px 20px 10px 20px;
  width: fit-content;
}

.card {
  border-radius: 0px;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1160px;
  }
}

/* MASONRY GRID */
.masonry-grid {
  column-width: 17em;
  -moz-column-width: 17em;
  -webkit-column-width: 17em;
  column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
}

.masonry-grid2 {
  column-width: 25em;
  -moz-column-width: 25em;
  -webkit-column-width: 25em;
  column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0.25rem auto;
  position: relative;


  transition: 0.3s ease;
  font-size: 0;
  min-height: 120px;
}

.bigBlank {
  min-height: 240px;
}

.masonry-item img {
  max-width: 100%;
  width: 100%;
}

.masonry-item .btn {
  width: fit-content;
}

.masonry-item .content {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  bottom: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  padding: 15px 15px 0;
}

.masonry-item .justText {
  position: relative;
}

.coverlay {
  background: rgba(0, 0, 0, 0.25);
}

.content p {
  font-size: 15px;
  color: #fff;
}

.content h3 {
  color: #fff;
}

.slidingHorizontal {
  display: inline;
  text-indent: 20px;
}

.slidingHorizontal span {
  animation: leftToRight 10s linear infinite 0s;
  -ms-animation: leftToRight 10s linear infinite 0s;
  -webkit-animation: leftToRight 10s linear infinite 0s;

  opacity: 0;
  overflow: hidden;
  position: absolute;
}

.slidingHorizontal span:nth-child(2) {
  animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}

.slidingHorizontal span:nth-child(3) {
  animation-delay: 5s;
  -ms-animation-delay: 5s;
  -webkit-animation-delay: 5s;
}

.slidingHorizontal span:nth-child(4) {
  animation-delay: 7.5s;
  -ms-animation-delay: 7.5s;
  -webkit-animation-delay: 7.5s;
}

/*leftToRight Animation*/
@-moz-keyframes leftToRight {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    -moz-transform: translateX(-50px);
  }

  10% {
    opacity: 1;
    -moz-transform: translateX(0px);
  }

  25% {
    opacity: 1;
    -moz-transform: translateX(0px);
  }

  30% {
    opacity: 0;
    -moz-transform: translateX(50px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes leftToRight {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }

  10% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }

  25% {
    opacity: 1;
    -webkit-transform: translateX(0px);
  }

  30% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes leftToRight {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 0;
    -ms-transform: translateX(-50px);
  }

  10% {
    opacity: 1;
    -ms-transform: translateX(0px);
  }

  25% {
    opacity: 1;
    -ms-transform: translateX(0px);
  }

  30% {
    opacity: 0;
    -ms-transform: translateX(50px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* SLIDING WORDS END */

.termsTable td {
  padding: 0px;
}

.blockquote {
  font-size: 16px;
}

.registerTabs .tab-content {
  border: 1px solid rgba(0, 0, 0, .2);
  width: 100%;
}

.registerTabs .nav-link {
  border: 3px solid #2691f5 !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  margin-right: -3px;
  background-color: #fff !important;
  border: none;
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  transition: 0.5s;
  margin-top: 10px;
  text-align: left;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.registerTabs .nav-link.active {
  background: #2691f5 !important;
  border: none;
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  padding: 1rem 1rem;
  transition: 0.5s;
}

.registerTabs .nav-pills {
  width: 480px;
}



.registerTabs .nav-pills .nav-link.active,
.registerTabs .nav-pills .show>.nav-link {
  color: #000;
  background-color: #2691f5;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.box3 {
  --b: 5px;
  /* thickness of the border */
  --c: #2691f5;
  /* color of the border */
  --w: 35px;
  /* width of border */

  border: var(--b) solid transparent !important;
  /* space for the border */
  background:

    linear-gradient(var(--c), var(--c)) top right,
    linear-gradient(var(--c), var(--c)) top right !important;

  background-size: var(--b) var(--w), var(--w) var(--b) !important;
  background-origin: border-box !important;
  background-repeat: no-repeat !important;
  border-radius: 0px !important;
}

.homeTabs .tab-content {

  width: 100%;
}

.homeTabs .nav-link {
  background-color: #F8F9FA !important;
  border: none;
  border-radius: 0px;
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  transition: 0.5s;
  border-radius: 0px 40px 40px 40px !important;
  margin-top: 10px;
  text-align: left;
}

.outline-bord {
  border: 2px solid #FFF;
  background: unset;
  color: #FFF;
  border-radius: 25px;
}

.homeTabs .nav-link.active {
  background: #01DAD8 !important;
  border: none;
  border-radius: 0px;
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  padding: 1rem 1rem;
  transition: 0.5s;
  border-radius: 0px 40px 40px 40px !important;
}

.homeTabs .heartBox.active {
  background: #fd49f6 !important;
}

.homeTabs .mindBox.active {
  background: #2691f5 !important;
}

.homeTabs .bodyBox.active {
  background: #84e92b !important;
}

.homeTabs .soulBox.active {
  background: #fc8922 !important;
}

.homeTabs .nav-pills {
  width: 680px;
}

.box {
  --b: 5px;
  /* thickness of the border */
  --c: #0093ff;
  /* color of the border */
  --w: 35px;
  /* width of border */
  border: var(--b) solid transparent;
  /* space for the border */
  background:
    /* linear-gradient(var(--c),var(--c)) top left,
linear-gradient(var(--c),var(--c)) top left, */
    /* linear-gradient(var(--c),var(--c)) bottom left,
linear-gradient(var(--c),var(--c)) bottom left, */
    linear-gradient(var(--c), var(--c)) top right,
    linear-gradient(var(--c), var(--c)) top right;
  /* linear-gradient(var(--c),var(--c)) bottom right,
linear-gradient(var(--c),var(--c)) bottom right; */
  background-size: var(--b) var(--w), var(--w) var(--b);
  background-origin: border-box;
  background-repeat: no-repeat;
  border-radius: 0px;
  min-width: 15rem;
}

.box2 {
  --b: 5px;
  /* thickness of the border */
  --c: #01DAD8;
  /* color of the border */
  --w: 35px;
  /* width of border */

  border: var(--b) solid transparent !important;
  /* space for the border */
  background:
    linear-gradient(var(--c), var(--c)) top left,
    linear-gradient(var(--c), var(--c)) top left !important;

  background-size: var(--b) var(--w), var(--w) var(--b) !important;
  background-origin: border-box !important;
  background-repeat: no-repeat !important;
  border-radius: 0px !important;
}

.heartBox {
  --c: #fd49f6;
  /* color of the border */
}

.mindBox {
  --c: #2691f5;
  /* color of the border */
}

.bodyBox {
  --c: #84e92b;
  /* color of the border */
}

.soulBox {
  --c: #fc8922;
  /* color of the border */
}

.gcText {
  font-size: 10px;
}

.contactForm label {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}

@media only screen and (max-width: 1600px) {
  .caption h1 {
    font-size: 76px;
  }
}

@media only screen and (max-width: 1400px) {
  .caption h1 {
    font-size: 60px;
  }

  .homeTabs .nav-pills {
    width: 480px;
  }

}

@media only screen and (max-width: 1200px) {
  .serviceImage {
    width: 250px;
  }

  .servicesCards h4 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 1000px) {
  .caption h1 {
    font-size: 45px;
  }

  .slidingHorizontal {
    text-indent: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .homeTabs .nav-link img {
    width: 30px;
  }

  .homeTabs .nav-pills {
    width: max-content;
  }

  .homeTabs .nav-link {
    border-radius: 40px 40px 40px 0px !important;
    padding: 5px;
    margin: 0px 10px;
  }

  .homeTabs .nav-link.active {
    border-radius: 40px 40px 40px 0px !important;
    padding: 5px;
  }

  .box2 {
    --b: 5px;
    /* thickness of the border */

    --w: 25px;
    /* width of border */

    border: var(--b) solid transparent;
    /* space for the border */
    background:
      linear-gradient(var(--c), var(--c)) bottom left,
      linear-gradient(var(--c), var(--c)) bottom left !important;

    background-size: var(--b) var(--w), var(--w) var(--b) !important;
    background-origin: border-box !important;
    background-repeat: no-repeat !important;
    border-radius: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .mobileImg {
    width: 200px;
  }

  .servicesCards h4 {
    font-size: 28px;
  }

  .serviceImage {
    width: 185px;
  }

  .topOfPage {
    height: auto !important;
  }

  .topOfPage2 {
    height: auto !important;
  }

  .mobileNone {
    display: none;
  }

  .caption h1 {
    -webkit-text-stroke: 0px #fff;
  }

  .registerTabs .nav-link {
    width: fit-content;
    display: inline-block;
    padding: 15px;
    margin-right: 5px;
  }

  .registerTabs .nav-pills {
    width: 100%;
  }

  .topOfPage {
    padding-top: 60px;
  }

  .topOfPage2 {
    padding-top: 60px;
  }

  .frontNav .navbar-brand {
    width: auto;
    margin-right: 10px;
    padding-right: 10px;

  }

  .slidingHorizontal {
    text-indent: 0px;
  }

  .thumbnail img {
    height: 200px;
    object-fit: cover;
  }

  .caption h1 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 512px) {
  .slidingHorizontal {
    text-indent: 0px;
    display: block;
  }

  .topOfPage {
    height: 50vh !important;
  }
}