@import url("https://fonts.googleapis.com/css?family=Big+Shoulders+Text:400,500,600,700&display=swap");
@font-face {
  font-family: 'poppinsbold';
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"), url("../fonts/poppins-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'poppinslight';
  src: url("../fonts/poppins-light-webfont.woff2") format("woff2"), url("../fonts/poppins-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'poppinsmedium';
  src: url("../fonts/poppins-medium-webfont.woff2") format("woff2"), url("../fonts/poppins-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'poppinsmedium_italic';
  src: url("../fonts/poppins-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/poppins-mediumitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'poppinsregular';
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2"), url("../fonts/poppins-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'poppinssemibold';
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"), url("../fonts/poppins-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
.btn-primary {
  background: #384DA1;
  border-color: #384DA1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0; }
  .btn-primary:hover, .btn-primary:focus {
    background: #1A308A;
    border-color: #1A308A; }

.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0; }

.btn-border {
  border: 2px solid #384DA1;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0; }
  .btn-border .fa {
    margin-left: 7px;
    font-size: 18px; }
  .btn-border:hover, .btn-border:focus {
    background: none;
    border-color: #F7941E;
    color: #F7941E; }
    .btn-border:hover .fa, .btn-border:focus .fa {
      transform: translate(5px, 0);
      -webkit-transform: translate(5px, 0);
      /** Chrome & Safari **/
      -o-transform: translate(5px, 0);
      /** Opera **/
      -moz-transform: translate(5px, 0);
      /** Firefox **/ }

.animated-button {
  background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);
  padding: 20px 40px;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out; }

.animated-button:hover::before {
  opacity: 0.2; }

.animated-button span {
  position: absolute; }

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite; }

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite; }

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }
.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to right, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite; }

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#2662d9));
  background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #2662d9);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite; }

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }
.animated-button1 {
  background: #384DA1;
  padding: 10px 20px;
  margin: 0px 0px 0px 12px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none; }
  .animated-button1:hover {
    color: #fff; }

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out; }

.animated-button1:hover::before {
  opacity: 0.2; }

.animated-button1 span {
  position: absolute; }

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#F7941E));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #F7941E);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite; }

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }
.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#F7941E));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #F7941E);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite; }

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); } }
.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#F7941E));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #F7941E);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite; }

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#F7941E));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #F7941E);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite; }

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); } }
#header-top {
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: #384DA1; }
  #header-top ul {
    margin: 0;
    padding: 0; }
  @media (max-width: 768px) {
    #header-top {
      display: none; } }

.header-social li {
  display: inline-block; }

.header-social li a {
  display: block;
  padding: 0px 5px;
  color: #fff !important;
  -webkit-transition: .3s;
  transition: .3s; }

.header-social li a:hover {
  color: #eee; }

#header-top a {
  color: #fff; }

.email,
.header-social {
  position: relative;
  padding-right: 25px; }

.address,
.phone {
  padding-left: 25px; }

.email:after,
.header-social:after {
  position: absolute;
  content: '';
  top: 0;
  right: -5px;
  height: 24px;
  width: 0px;
  border: .5px dashed #fff; }

.navbar-theme {
  font-family: "poppinsregular";
  font-size: 16px; }
  .navbar-theme .navbar-brand img {
    width: 253px; }
    @media (max-width: 575.98px) {
      .navbar-theme .navbar-brand img {
        width: 180px; } }
    @media (min-width: 992px) and (max-width: 1199.98px) {
      .navbar-theme .navbar-brand img {
        width: 150px; } }
  .navbar-theme .navbar-collapse {
    margin-top: 10px; }
  .navbar-theme .navbar-nav {
    text-transform: uppercase; }
    .navbar-theme .navbar-nav a {
      font-family: "Big Shoulders Text", cursive;
      font-size: 1.2rem;
      letter-spacing: 1px;
      font-weight: normal;
      color: #404040;
      display: block;
      padding: .5rem .6rem; }
      .navbar-theme .navbar-nav a:after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #F7941E;
        transition: width .3s; }
      .navbar-theme .navbar-nav a:hover, .navbar-theme .navbar-nav a:focus {
        color: #384DA1; }
        .navbar-theme .navbar-nav a:hover:after, .navbar-theme .navbar-nav a:focus:after {
          width: 100%; }
    .navbar-theme .navbar-nav .show > a,
    .navbar-theme .navbar-nav .active > a,
    .navbar-theme .navbar-nav a.show,
    .navbar-theme .navbar-nav a.active {
      color: #384DA1; }
  .navbar-theme .navbar-toggler {
    border: 0;
    outline: none; }
  .navbar-theme .navbar-toggler {
    border-color: #ff66cb; }
  .navbar-theme .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(250,165,25)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }

.dropdown .dropdown-menu {
  width: 320px !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-bottom: 10px; }
  @media (max-width: 575.98px) {
    .dropdown .dropdown-menu {
      width: 100% !important; } }
  .dropdown .dropdown-menu .menu-item {
    text-transform: capitalize !important; }
  .dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:focus {
    background: #384DA1;
    color: #fff;
    text-transform: capitalize !important; }
.dropdown:hover .dropdown-menu {
  display: block; }

.navaFirstChild {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 0; }

.navaSecondChild {
  z-index: 999;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  background: #fff; }
  @media (max-width: 768px) {
    .navaSecondChild {
      border: none;
      height: auto;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      border-radius: 0px; } }

@media (max-width: 768px) {
  #carouselExampleIndicators {
    margin-top: 0px; } }

.carousel-indicators li {
  background-color: #384DA1; }
.carousel-indicators .active {
  background-color: #F7941E; }

.chaild-manage:first-child, .carousel-caption h3:first-child, .carousel-caption h4:first-child {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }
.chaild-manage:nth-child(2), .carousel-caption h3:nth-child(2), .carousel-caption h4:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.carousel-caption {
  background: rgba(0, 0, 10, 0.3);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 12%;
  /* Animation delays */ }
  @media (max-width: 768px) {
    .carousel-caption {
      bottom: 0%;
      padding-top: 10%; } }
  .carousel-caption h3 {
    color: #fff;
    font-size: 3.1rem;
    font-family: "Big Shoulders Text", cursive;
    font-weight: 700;
    text-shadow: 0 2px 0 #000; }
    @media (max-width: 1023.98px) {
      .carousel-caption h3 {
        font-size: 2.6rem; } }
    @media (max-width: 767.98px) {
      .carousel-caption h3 {
        font-size: 1.5rem; } }
    .carousel-caption h3:before {
      content: "\f10d";
      font-family: 'Fontawesome';
      font-size: 30px;
      margin-right: 10px;
      color: #384DA1; }
    .carousel-caption h3:after {
      content: "\f10e";
      font-family: 'Fontawesome';
      margin-left: 10px;
      color: #384DA1;
      font-size: 30px; }
    .carousel-caption h3 span {
      color: #384DA1; }
    @media (max-width: 768px) {
      .carousel-caption h3:before {
        font-size: 15px; }
      .carousel-caption h3:after {
        font-size: 15px; } }
  .carousel-caption h4 {
    font-size: 28px;
    font-family: "Big Shoulders Text", cursive;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 3px 0 #333; }
    @media (max-width: 768px) {
      .carousel-caption h4 {
        font-size: 14px; } }

.parallax, #home-parallax, #enquiry-parallax, #header-paralex, #contact-parallax {
  position: relative;
  width: 100%;
  z-index: 4;
  background: #333; }
  .parallax .img-para, #home-parallax .img-para, #enquiry-parallax .img-para, #header-paralex .img-para, #contact-parallax .img-para {
    position: absolute;
    bottom: 0;
    z-index: -1; }
    @media (min-width: 1200px) {
      .parallax .img-para, #home-parallax .img-para, #enquiry-parallax .img-para, #header-paralex .img-para, #contact-parallax .img-para {
        width: 100%;
        left: 0; } }
    @media (min-width: 992px) {
      .parallax .img-para, #home-parallax .img-para, #enquiry-parallax .img-para, #header-paralex .img-para, #contact-parallax .img-para {
        right: 0; } }
    @media (min-width: 768px) {
      .parallax .img-para, #home-parallax .img-para, #enquiry-parallax .img-para, #header-paralex .img-para, #contact-parallax .img-para {
        right: 0; } }
    @media (max-width: 575.98px) {
      .parallax .img-para, #home-parallax .img-para, #enquiry-parallax .img-para, #header-paralex .img-para, #contact-parallax .img-para {
        right: 0;
        top: 0;
        height: 100%; } }
  .parallax .img-para-overlap, #home-parallax .img-para-overlap, #enquiry-parallax .img-para-overlap, #header-paralex .img-para-overlap, #contact-parallax .img-para-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(7, 0, 4, 0.6); }

#home-parallax {
  color: #fff; }
  #home-parallax h2 {
    color: #fff; }
  #home-parallax .tag-line {
    color: #fff !important; }

#enquiry-parallax {
  margin-top: -20px;
  padding: 0;
  background: #F7F7F7;
  color: #fff; }

#header-paralex {
  margin-top: -20px;
  padding: 100px 0px 100px 0px;
  background: #2B2B2B; }
  @media (max-width: 575.98px) {
    #header-paralex {
      padding: 6em 0 4em 0; } }
  #header-paralex .tag-line {
    color: #fff; }
  #header-paralex h1 {
    color: #fff;
    text-transform: capitalize; }

#contact-parallax {
  background: #2B2B2B;
  color: #384DA1; }
  #contact-parallax h1 {
    font-family: "poppinsbold";
    color: #384DA1;
    font-size: 68px; }
    @media (max-width: 768px) {
      #contact-parallax h1 {
        font-size: 32px; } }
  #contact-parallax h3 {
    color: #e5e5e5; }
  #contact-parallax .tag-line {
    color: #fff !important; }

body {
  font-family: "poppinsregular";
  background: #fff;
  color: #464545;
  font-size: 14px;
  outline: none; }
  body a {
    color: #384DA1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }
  body a:hover, body a:active, body a:focus {
    color: #1A308A;
    text-decoration: none;
    outline: none 0; }

p {
  font-size: 16px;
  line-height: 26px;
  color: #777; }

.p-i {
  font-family: "poppinsmedium"; }

.tag-line {
  font-family: "Big Shoulders Text", cursive;
  font-weight: 500;
  font-size: 1.5rem;
  color: #222222;
  letter-spacing: 1px;
  line-height: 1em;
  margin-bottom: 18px; }
  .tag-line:after {
    content: '';
    width: 35px;
    height: 2px;
    background: #F7941E;
    display: inline-block;
    margin-left: 15px; }

.bottom-tag {
  font-family: "poppinsmedium";
  font-size: 16px;
  color: #515151;
  letter-spacing: 1.5px;
  margin-bottom: 15px; }

.m-t-h {
  margin-top: 30px; }

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span, p span {
  color: #384DA1; }

h1 {
  font-family: "Big Shoulders Text", cursive;
  color: #2B2B2B;
  font-weight: 600; }
  @media (max-width: 768px) {
    h1 {
      font-size: 1.6rem; } }

h2 {
  font-family: "Big Shoulders Text", cursive;
  color: #2B2B2B;
  margin-bottom: 20px;
  font-weight: 600; }
  @media (max-width: 768px) {
    h2 {
      font-size: 1.9rem; } }

h3 {
  font-family: "poppinsmedium";
  color: #2B2B2B; }

h4 {
  font-family: "Big Shoulders Text", cursive;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2B2B2B;
  font-size: 1.6rem; }

h5 {
  font-family: "poppinsmedium"; }

.rotate-icon {
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite; }

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
section {
  overflow: hidden;
  padding: 80px 0; }
  @media (max-width: 768px) {
    section {
      padding: 45px 0; } }

#bg-hash, .bg-hash {
  background: #F7F7F7; }

#bg-patern {
  background: url(../images/leaves.png) repeat;
  position: relative;
  overflow: visible !important; }

.bg-image {
  background-image: url("../images/spices-Indian-food-recipes.jpg");
  background-size: cover;
  background-position: center center; }

.bg-image-second {
  background-image: url("../images/Psychiatric-Rehabilitation-Center.jpg");
  background-size: cover;
  background-position: center center; }

.bg-image-inline {
  background-size: cover;
  background-position: center center; }

.bg-image-history {
  background-image: url("../images/spice-history.jpg");
  background-size: cover;
  background-position: center center; }

.bg-icon-view {
  position: relative;
  overflow: visible !important; }

.center-icon {
  position: absolute;
  bottom: -46px;
  left: 45%;
  z-index: 9; }
  @media (max-width: 767.98px) {
    .center-icon {
      bottom: -26px; }
      .center-icon img {
        width: 60px; } }

.listing {
  list-style: none;
  padding: 0; }

.listing li {
  padding-left: 1.3em;
  margin-bottom: 7px; }

.listing li:before {
  content: "\f005";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #384DA1; }

.product-box {
  text-align: center;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease; }
  .product-box:hover {
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease; }
  .product-box img {
    height: auto !important; }
  .product-box h5 {
    font-family: "Big Shoulders Text", cursive;
    font-weight: 600;
    letter-spacing: 1px;
    color: #384DA1;
    font-size: 1.2rem;
    text-transform: capitalize !important;
    margin-bottom: 5px;
    margin-top: 15px; }
  .product-box .sub-date {
    margin-top: 5px; }
    .product-box .sub-date p {
      font-size: 22px;
      text-transform: uppercase;
      color: #F7941E; }
  .product-box .pro-cont {
    min-height: 120px; }
  .product-box .pro-cont-light {
    min-height: 60px; }
  .product-box .card-body {
    padding-top: 0; }
    .product-box .card-body p {
      font-size: 14px;
      line-height: 20px; }
    .product-box .card-body .price-wrap {
      padding-top: 4px;
      font-size: 16px;
      font-family: "poppinsmedium"; }
      .product-box .card-body .price-wrap .price-new {
        color: #2B2B2B; }
  @media (max-width: 768px) {
    .product-box {
      margin-bottom: 30px; } }

.inner-title {
  padding: 60px 0;
  background: url(../images/curls.webp) repeat; }
  .inner-title .tag-line {
    color: #fff;
    font-size: 22px; }
  .inner-title h1 {
    color: #384DA1;
    margin-bottom: 0; }
  .inner-title p {
    color: #fff;
    font-family: "Big Shoulders Text", cursive;
    letter-spacing: 1px; }

.profile-left h5 {
  Margin-top: 10px;
  font-family: "Big Shoulders Text", cursive;
  font-size: 1.7rem; }

.contact-section address strong {
  display: block;
  color: #F7941E !important;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: normal;
  font-family: "poppinssemibold"; }
.contact-section address span {
  color: #F7941E; }

#map {
  padding: 0; }
  #map iframe {
    margin: 0;
    padding: 0; }

.blog .blog-item figure {
  margin-bottom: 0; }
.blog .blog-item .card-title {
  color: #2B2B2B; }

.snip1571 {
  background-color: #384DA1;
  display: inline-block;
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
  border: 5px solid #384DA1;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease; }
  .snip1571:hover {
    border: 5px solid #F7941E;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease; }

.snip1571 *,
.snip1571 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease; }

.snip1571 img {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
  height: auto; }

.snip1571 figcaption {
  bottom: 30px;
  left: 0;
  position: absolute;
  z-index: 0; }

.snip1571 figcaption:before {
  background-color: #F7941E;
  bottom: -5px;
  content: '';
  left: 0;
  position: absolute;
  right: 100%;
  top: -5px;
  z-index: -1; }

.snip1571 h3 {
  font-family: "Big Shoulders Text", cursive;
  background-color: #384DA1;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase;
  z-index: 1; }

.snip1571 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1; }

.snip1571:hover > img,
.snip1571.hover > img {
  opacity: 0.4; }

.snip1571:hover figcaption:before,
.snip1571.hover figcaption:before {
  right: -5px; }

.how-to-work {
  padding: 80px 0 40px 0;
  background: #384DA1; }
  .how-to-work .cms-process-list {
    list-style: none;
    margin: 0;
    padding: 0; }

.cms-process-layout1 {
  max-width: 900px;
  margin: auto; }

.cms-process-layout1 .cms-process-list .cms-process-item {
  width: 33.33%;
  padding: 0 15px;
  float: left;
  text-align: center; }

.cms-process-layout1 .cms-process-list .cms-process-item .cms-process-icon {
  height: 90px;
  width: 90px;
  background-color: #1A308A;
  line-height: 90px;
  text-align: center;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  /* BACKGROUND GRADIENT */
  position: relative;
  display: inline-block; }

.cms-process-layout1 .cms-process-list .cms-process-item .cms-process-icon img {
  display: inline-block;
  vertical-align: middle;
  max-width: 60px; }

.cms-process-layout1 .cms-process-list .cms-process-item .cms-process-icon i {
  font-size: 43px;
  color: #fff;
  line-height: 1;
  vertical-align: middle; }

.cms-process-layout1 .cms-process-list .cms-process-item .cms-process-icon:before {
  height: 110px;
  width: 110px;
  border: 10px solid #fff;
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  -webkit-border-radius: 100%;
  -khtml-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  /* BACKGROUND GRADIENT */
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  z-index: 2; }

.cms-process-layout1 .cms-process-list .cms-process-item .cms-process-content {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.87);
  line-height: 28px;
  margin-top: 40px; }

.cms-process-layout1 .cms-process-list .cms-process-item:nth-child(1) .cms-process-icon:after, .cms-process-layout1 .cms-process-list .cms-process-item:nth-child(2) .cms-process-icon:after {
  height: 10px;
  width: 200px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(0px, -50%);
  -khtml-transform: translate(0px, -50%);
  -moz-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  -o-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  /* BACKGROUND GRADIENT */
  /* TRANSFORM STYLE */
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.22); }

.cms-process-layout1 .cms-process-list .cms-process-item:last-child .cms-process-icon:after {
  display: none; }

@media screen and (max-width: 640px) {
  .page-template-blog-2column #content article.post {
    width: 100%; }

  .page-template-blog-2column #content article.post:nth-child(2n+1) {
    clear: inherit; }

  .jb-specialism-list .jb-specialism-item {
    width: 100%; }

  .cms-process-layout1 .cms-process-list .cms-process-item {
    width: 100%;
    margin-bottom: 40px; }

  .cms-process-layout1 .cms-process-list .cms-process-item .cms-process-icon:after {
    display: none; }

  .cms-process-layout1 .cms-process-list .cms-process-item:last-child {
    margin-bottom: 0; } }
.recent-job-list {
  margin: 0;
  padding: 0; }
  .recent-job-list li {
    list-style: none;
    border-bottom: 2px dashed #384DA1;
    margin-bottom: 15px; }
    .recent-job-list li p {
      font-size: 14px; }
    .recent-job-list li h3 {
      font-family: "Big Shoulders Text", cursive;
      font-weight: 500;
      font-size: 1.3rem;
      letter-spacing: 1px;
      text-transform: capitalize; }
    .recent-job-list li .btn {
      margin-bottom: 15px; }
    .recent-job-list li .job-tag {
      margin: 0;
      padding: 0; }
      .recent-job-list li .job-tag li {
        display: inline;
        padding-right: 10px;
        margin-right: 10px;
        border-bottom: none;
        border-right: 1px dashed #333;
        color: #384DA1; }
        .recent-job-list li .job-tag li:last-child {
          border-right: none; }

.job-categories {
  list-style: none; }
  .job-categories ul {
    margin: 0;
    padding: 0; }
    .job-categories ul li {
      list-style: none;
      display: inline-block;
      margin-bottom: 25px;
      margin-right: 10px; }
      .job-categories ul li a {
        background: #384DA1;
        color: #fff;
        padding: 10px 14px; }
        .job-categories ul li a:hover, .job-categories ul li a:focus, .job-categories ul li a:active {
          background: #2B2B2B; }

#testimonial {
  background-image: url(../images/bridge.png);
  background-repeat: no-repeat;
  background-size: 100% 100%; }

/* carousel */
.testimonial {
  min-height: 240px; }

#quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 30px; }

/* Control buttons  */
#quote-carousel .carousel-control {
  background: none;
  color: #89867E;
  font-size: 16px;
  text-shadow: none;
  margin-top: 30px; }

#quote-carousel .carousel-control:hover {
  color: #222; }

/* Previous button  */
#quote-carousel .carousel-control.left {
  left: -12px; }

/* Next button  */
#quote-carousel .carousel-control.right {
  right: -12px !important; }

/* Changes the position of the indicators */
#quote-carousel .carousel-indicators {
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px; }

/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li {
  background: #384DA1; }

#quote-carousel .carousel-indicators .active {
  background: #F7941E; }

#quote-carousel img {
  padding: 5px;
  border: 4px solid #F7941E; }

/* End carousel */
.carousel-item blockquote {
  border-left: none;
  margin: 0; }

.carousel-item blockquote p {
  font-size: 16px; }

.carousel-item blockquote img {
  margin-bottom: 10px; }

.carousel-item blockquote strong {
  color: #384DA1;
  font-family: "poppinsmedium";
  font-size: 16px; }

.carousel-item blockquote small {
  color: #333;
  display: block;
  font-size: 14px; }

.carousel-item blockquote p:before {
  content: "\f10d";
  font-family: 'Fontawesome';
  float: left;
  margin-right: 10px;
  color: #384DA1; }

.carousel-item blockquote p:after {
  content: "\f10e";
  font-family: 'Fontawesome';
  margin-left: 10px;
  color: #384DA1; }

/* Gallery */
.ovrly14 {
  width: 100%;
  height: 190px;
  border: 4px solid #384DA1;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3); }
  @media only screen and (min-device-width: 480px) and (max-device-width: 768px) {
    .ovrly14 {
      height: 180px; } }

.ovrly14 * {
  position: absolute;
  margin: 0;
  padding: 0; }

.ovrly14 img {
  width: 100%;
  top: 0;
  left: 0; }

.ovrly14 .ovrly {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.815, 1.65, 0.4, 0.68);
  -moz-transition: all 0.3s cubic-bezier(0.815, 1.65, 0.4, 0.68);
  -o-transition: all 0.3s cubic-bezier(0.815, 1.65, 0.4, 0.68);
  transition: all 0.3s cubic-bezier(0.815, 1.65, 0.4, 0.68); }

.ovrly14 .fa {
  background: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #384DA1;
  display: block;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  top: 60px;
  -webkit-transition: all .2s .3s;
  -moz-transition: all .2s .3s;
  -o-transition: all .2s .3s;
  transition: all .2s .3s;
  opacity: 0;
  z-index: 99; }

.ovrly14 .fa:hover {
  background: #fff;
  color: #384DA1; }

.ovrly14 .fa-share, .ovrly14 .fa-search {
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.ovrly14:hover .ovrly {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.ovrly14:hover .fa {
  opacity: 1; }

.ovrly14 .gallery-fix {
  width: 100%;
  background: #384DA1;
  font-size: 18px;
  color: #fff;
  padding: 10px;
  position: absolute;
  bottom: 0px;
  text-align: center;
  z-index: 99; }

.masthead {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
  z-index: 2; }

.masthead .masthead-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 35rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  transform: skewY(4deg);
  transform-origin: bottom right; }

.masthead .masthead-content {
  padding-left: 0.5rem;
  padding-right: 10rem;
  color: #222; }

@media (max-width: 575.98px) {
  .masthead .masthead-content {
    padding: 110px 0.5rem 1.5rem 0.5rem; } }
@media (min-width: 768px) {
  .masthead {
    height: 100%;
    min-height: 0;
    width: 45.5rem;
    padding: 80px 0; }

  .masthead .masthead-bg {
    min-height: 0;
    transform: skewX(-8deg);
    transform-origin: top right; }

  .masthead .masthead-content {
    padding-top: 60px;
    padding-left: 6.5rem;
    padding-right: 10rem;
    color: #222; } }
.single-event h3 {
  color: #1C1B1B; }
.single-event h5 {
  color: #F7941E;
  font-weight: normal; }
.single-event strong {
  font-weight: normal;
  font-family: "poppinssemibold";
  color: #384DA1;
  letter-spacing: 2px; }
.single-event .card img {
  height: auto; }

.single .single-thumbnail {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px; }
.single strong {
  color: #F7941E;
  letter-spacing: 1px;
  font-family: "poppinsmedium";
  font-weight: normal; }
.single em {
  font-family: "poppinsmedium_italic"; }
.single h3, .single h4, .single h2 {
  color: #605D5D;
  font-family: "Big Shoulders Text", cursive;
  font-weight: 600;
  letter-spacing: 1px; }
@media (min-width: 1024px) {
  .single .single-left .single-thumbnail {
    max-width: 30em; } }
.single .single-sidebar .card .card-header {
  font-family: "poppinsmedium";
  font-size: 16px;
  color: #333; }

.single-product {
  font-size: 16px;
  color: #777; }
  .single-product em {
    font-family: "poppinsmedium_italic"; }
  .single-product h3, .single-product h4, .single-product h2 {
    color: #605D5D;
    font-family: "Big Shoulders Text", cursive;
    font-weight: 600;
    letter-spacing: 1px; }

.commen-sidebar h3 {
  font-size: 22px;
  font-family: "poppinssemibold"; }
.commen-sidebar ul {
  list-style: none;
  padding: 0; }
  .commen-sidebar ul li {
    padding-left: 1.3em;
    margin-bottom: 7px; }
    .commen-sidebar ul li:before {
      content: "\f005";
      font-family: FontAwesome;
      display: inline-block;
      margin-left: -1.3em;
      width: 1.3em;
      color: #384DA1; }

#sidebarmenu li a {
  text-transform: capitalize; }

.custom-gallery .wp-block-gallery .blocks-gallery-item {
  background: #fff;
  padding-left: 0; }
  .custom-gallery .wp-block-gallery .blocks-gallery-item:before {
    display: none; }
  .custom-gallery .wp-block-gallery .blocks-gallery-item figcaption {
    font-size: 18px;
    font-family: "poppinsmedium"; }
  .custom-gallery .wp-block-gallery .blocks-gallery-item img {
    padding: 10px;
    border: 1px solid #ccc;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease; }
    .custom-gallery .wp-block-gallery .blocks-gallery-item img:hover {
      border: 1px solid #384DA1;
      -webkit-transition: all 0.7s ease;
      -moz-transition: all 0.7s ease;
      -ms-transition: all 0.7s ease;
      -o-transition: all 0.7s ease;
      transition: all 0.7s ease;
      -webkit-box-shadow: 0px 0 5px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0px 0 5px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 0 5px rgba(0, 0, 0, 0.2); }

.wp-block-embed-youtube {
  float: left;
  padding-right: 10px;
  padding-left: 10px; }
  .wp-block-embed-youtube iframe {
    width: 100%; }

.single .single-left strong, .single-product strong, .contact-section strong, .loop-change strong, .wp-style strong {
  color: #515151;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Big Shoulders Text", cursive;
  letter-spacing: 1px; }
.single .single-left ul, .single-product ul, .contact-section ul, .loop-change ul, .wp-style ul {
  list-style: none;
  padding: 0; }
.single .single-left ul li, .single-product ul li, .contact-section ul li, .loop-change ul li, .wp-style ul li {
  padding-left: 1.3em;
  margin-bottom: 7px; }
.single .single-left ul li:before, .single-product ul li:before, .contact-section ul li:before, .loop-change ul li:before, .wp-style ul li:before {
  content: "\f005";
  font-family: FontAwesome;
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #F7941E; }

.loop-change h2 {
  text-transform: capitalize; }

.loop-change:nth-of-type(2n+1) {
  background: #F7F7F7; }

.loop-change:last-of-type .btn-enroll {
  display: none; }

#accordion .panel {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  margin-bottom: 10px; }

#accordion .panel-heading {
  padding: 0;
  border: none;
  border-radius: 10px; }

#accordion .panel-title a {
  display: block;
  padding: 20px 35px;
  font-size: 16px;
  font-family: "poppinsmedium";
  color: #fff;
  background: #384DA1;
  border: none;
  position: relative;
  transition: all 0.3s ease 0s;
  font-weight: normal; }

#accordion .panel-title a:after,
#accordion .panel-title a.collapsed:after {
  content: "\f068";
  font-family: "FontAwesome";
  font-weight: 900;
  width: 40px;
  height: 40px;
  line-height: 32px;
  border-radius: 50%;
  background: #384DA1;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border: 5px solid #fff;
  position: absolute;
  top: 10px;
  left: -20px;
  transition: all 0.3s ease 0s; }

#accordion .panel-title a.collapsed:after {
  content: "\f067"; }

#accordion .panel-title a:hover:after,
#accordion .panel-title a.collapsed:hover:after {
  transform: rotate(360deg); }

#accordion .panel-body {
  padding: 15px 25px;
  background: #fff;
  font-size: 14px;
  color: #8c8c8c;
  line-height: 25px;
  border-top: none;
  position: relative; }

.our-team {
  margin-top: 30px;
  text-align: center;
  cursor: pointer; }
  .our-team img {
    width: 180px;
    height: 180px;
    border: 4px solid #384DA1;
    filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01); }
  .our-team h5 {
    margin-top: 20px;
    color: #fff;
    letter-spacing: 1px; }
  .our-team h6 {
    letter-spacing: 1px; }
  .our-team:hover img {
    filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .8s ease-in-out;
    padding: 4px;
    border: 2px dotted #384DA1;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black; }

.our-webcoderskull ul {
  margin: 0;
  padding: 0; }
  .our-webcoderskull ul li {
    list-style: none; }

.our-webcoderskull .cnt-block {
  float: left;
  width: 100%;
  background: #fff;
  padding: 5px;
  text-align: center;
  border: 2px solid #f4f2f2;
  margin: 0 0 28px;
  height: 340px; }
  @media (max-width: 767.98px) {
    .our-webcoderskull .cnt-block {
      height: 440px; } }

.our-webcoderskull .cnt-block figure {
  display: inline-block;
  margin-bottom: 5px;
  height: 250px;
  overflow: hidden; }
  @media (max-width: 767.98px) {
    .our-webcoderskull .cnt-block figure {
      height: 350px; } }

.our-webcoderskull .cnt-block img {
  width: 100%;
  height: auto; }

.our-webcoderskull .cnt-block h3 {
  color: #2a2a2a;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  text-transform: uppercase;
  margin: 0;
  font-family: "poppinsregular"; }

.our-webcoderskull .cnt-block h3 a {
  text-decoration: none;
  color: #2a2a2a; }

.our-webcoderskull .cnt-block h3 a:hover {
  color: #337ab7; }

.our-webcoderskull .cnt-block p {
  color: #464545;
  font-size: 16px;
  line-height: 20px;
  font-family: "poppinslight";
  letter-spacing: 1px; }

.our-webcoderskull .cnt-block .follow-us {
  margin: 20px 0 0; }

.our-webcoderskull .cnt-block .follow-us li {
  display: inline-block;
  width: auto;
  margin: 0 5px; }

.our-webcoderskull .cnt-block .follow-us li .fa {
  font-size: 24px;
  color: #767676; }

.our-webcoderskull .cnt-block .follow-us li .fa:hover {
  color: #025a8e; }

.card-testi h4 {
  color: #F7941E;
  font-weight: normal; }
  .card-testi h4 p {
    margin-bottom: 0; }

.our-leadership h3 {
  margin-bottom: 20px; }
.our-leadership img {
  float: left;
  margin: 0 20px 10px 0; }

.circle {
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 50%;
  background-color: #384DA1;
  color: #F7941E;
  max-height: 50px;
  z-index: 2; }

.how-it-works {
  display: flex; }
  .how-it-works p {
    color: #a8a5a5; }
  .how-it-works h5 {
    font-family: "poppinssemibold";
    color: #384DA1; }

.how-it-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center; }

.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #384DA1;
  z-index: 1; }

.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%; }

.how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px); }

.how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0; }

.timeline div {
  padding: 0;
  height: 40px; }

.timeline hr {
  border-top: 3px solid #384DA1;
  margin: 0;
  top: 17px;
  position: relative; }

.timeline .col-2 {
  display: flex;
  overflow: hidden; }

.timeline .corner {
  border: 3px solid #384DA1;
  width: 100%;
  position: relative;
  border-radius: 15px; }

.timeline .top-right {
  left: 50%;
  top: -50%; }

.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px); }

.timeline .top-left {
  left: -50%;
  top: -50%; }

.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px); }

/* Input reseating */
textarea,
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
select {
  border: 1px solid #ccc !important;
  box-shadow: none !important;
  border-radius: 0 !important; }

textarea:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="datetime"]:focus {
  border-color: #333 !important;
  box-shadow: none !important;
  outline: 0 none !important; }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type="number"] {
  -moz-appearance: textfield; }

footer .foot-logo {
  background: #fff;
  width: 100%;
  padding: 30px 15px;
  margin-top: -100px;
  box-shadow: 0px -20px 10px -20px #333; }
footer p {
  font-size: 14px;
  line-height: 24px; }
footer strong {
  font-family: "poppinsmedium";
  font-weight: 500; }
footer .footer-main {
  color: #fff;
  background-color: #1A308A;
  background-repeat: repeat;
  padding: 60px 0; }
  @media (max-width: 768px) {
    footer .footer-main {
      background-position: left; } }
  footer .footer-main h5 {
    text-transform: uppercase;
    color: #fff;
    font-family: "Big Shoulders Text", cursive;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.5em; }
    footer .footer-main h5:before {
      content: '';
      position: absolute;
      display: block;
      width: 60%;
      height: 3px;
      background-color: #F7941E;
      bottom: -10px; }
  footer .footer-main .cure-well-logo {
    width: 100%; }
  footer .footer-main .foot-list {
    margin: 0;
    list-style: none;
    padding: 0; }
    footer .footer-main .foot-list li a {
      color: #fff;
      line-height: 28px; }
      footer .footer-main .foot-list li a:hover, footer .footer-main .foot-list li a:focus {
        color: #F7941E; }
  footer .footer-main address strong {
    display: block;
    font-family: "poppinssemibold";
    font-weight: normal; }
  footer .footer-main address span {
    color: #F7941E;
    font-family: "poppinsmedium"; }
  footer .footer-main .popular-tags {
    margin: 0;
    padding: 0; }
    footer .footer-main .popular-tags li {
      list-style: none;
      display: inline-block;
      margin: 0 5px 15px 0; }
      footer .footer-main .popular-tags li a {
        padding: 5px 11px;
        border: 1px solid #F7941E;
        color: #fff;
        background: transparent;
        font-size: 14px; }
        footer .footer-main .popular-tags li a:hover, footer .footer-main .popular-tags li a:focus {
          background: #F7941E;
          border: 1px solid #F7941E;
          color: #fff;
          text-decoration: none; }
  footer .footer-main .foot-add p {
    color: #fff; }
footer .footer-copyright {
  padding: 25px 0 15px 0;
  background: #000000; }
  footer .footer-copyright ul.social-media {
    float: right;
    display: block;
    margin-bottom: 0;
    margin-top: 5px; }
    footer .footer-copyright ul.social-media li {
      display: inline-block;
      margin-right: 15px; }
      footer .footer-copyright ul.social-media li a {
        font-size: 20px;
        display: inline-block;
        color: #384DA1; }
        footer .footer-copyright ul.social-media li a:hover {
          color: #fff; }

/*# sourceMappingURL=index.css.map */
