
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Quattrocento:wght@400;700&family=Roboto:wght@400;500;700;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;
}

body {
  margin: 0;
  font-size: 17px;
}

h1,h3 {
   font-weight: 500;
   letter-spacing: 1px;
   color: #ffffff;
   font-family: 'Roboto', sans-serif;
}

p {
  font-family: 'Roboto', sans-serif;
  font-size:large;
}

/* ============ Hero Button =======================*/
.btn1 {
  height: 52px;
  width: 160px;
  text-decoration: none;
  color: #ffffff;
  outline: none;
  border: none;
  background: linear-gradient(90deg , 	#4169e1 0% , 	#87ceeb 100%);
  transition: 1s;
}
.btn1:hover {
  background: linear-gradient(90deg , 	#87ceeb 0% ,	 #4169e1 100%);
  transition: all 1s;
}

@media (min-width: 1200px) {
h1 {font-size:4rem;}
}
/* ============ Hero Section =======================*/
header {
  position: relative;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  object-fit: cover;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}


header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  z-index: 1;
}


/* Media Query in Hero for devices that commonly do not support the HTML5 video element */

@media only screen and (max-width: 600px) {
  header  {
    background: url("https://images.unsplash.com/photo-1543140313-318677635120?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8fHx8fHx8MTYzNjI5NjQ0MA&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1080");
    background-size: cover;
    opacity: 0.8;
  }

  header video {
    display: none;
  }
}

header h1 {
  font-weight: 700;
  color:#ffffff
}
/* ============ Navbar =======================*/

.navbar .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
  .navbar img {
    background-color: #ffffff;
  }
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #a4c4f5;
  /* color: transparent; */
} 

.navbar-brand {
  margin-left: 10px;
  margin-right: 6px;
}

.navbar-collapse {
 justify-content: flex-end;
 color: blue;
}

.navbar-light .navbar-toggler{
  color: transparent;
  border-color: transparent;
}

.navbar-toggler-icon {
  background: white;
  width: 40px;
  height: 40px;
  position: relative;
}

  @media (max-width: 1000px) {
    header{
      padding: 20px 50px;
    }
  }
  @media (max-width: 700px) {
    header{
      flex-direction: column;
    }
    header h2 {
      margin-bottom: 15px;
    }
    header .nav li {
      margin: 0 7px;
    }
  }


/* ============== About =================*/
.about {
  padding-top: 10px;
  background-color: #f6e591;
}

.about h2 {
  font-weight: 800;
  font-size: 2.4rem;
  color:#22559c;
} 

.about p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
}

.btn2 {
 height: 55px;
 width: 330px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 4px;
  background: #22559c;
  color: rgb(255, 255, 255);
  outline: none;
  border: none;
}

.btn2:hover {
  color: white;
  cursor: pointer;
}

.about img {
  width: 60%;
}

@media (min-width: 800px) {
  .about .container-lg {
    grid-template-areas: "pro-pic about-info";
  }
  .about-info {
    padding-left: 50px;
  }
}



/*======= MARKET ============ */
.market {
  background-color: white;
  width: 100%;
  height: 100%;
  /* display: block;
  position: relative; */
}

.market h3 {
  color: #05673d;
}

.market p {
  font-size: 1.2rem;
}
.market blockquote {
  color:#22559c;
}

.market .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  margin-left: 20px;
}
.card:hover {
  transform: scale(1.1);
}

.card {
  transition: transform .5s;
}

.card border {
  border-color: #05673d;
}


.market .card-body h4 {
  color:#22559c;
}

/*======== WHY HIRE ME =============== */
.whyjana {
background-color: #f6e591;
}
.whyjana p {
  font-size: 1.3rem;
}

.whyjana h2 {
  color:#22559c;
}

.whyjana .icon-box h4 {
  font-size: 20px;
  font-weight: 700px;
} 

.whyjana .icon-box i {
  font-size: 48px;
  float: left;
  padding-right: 20px;
  padding-left: 20px;
  color:rgb(197, 37, 37);
}

.whyjana .icon-box p {
  font-size: 16px;
  padding: 5px 50px 0 90px;
}

.whyjana .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  padding-bottom: 30px;
  padding-top: 20px;
}

.btn5 {
  height: 55px;
  width: 300px;
  object-fit: contain;
  color: #ffffff;
  background: #22559c;
  margin-bottom: 20px;
  margin-top: 5px;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
}

.btn5:hover {
  color: #ffffff;
  cursor: pointer;
}

/* ============ Testimonial & Work ============ */
.icon-box {
  font-size: 30px;
  color: rgb(197, 37, 37);
}

.testimonial card-body p {
  color: black;
}

.portfolio-caption {
  font-size: 20px;
  color: rgba(7, 7, 222, 0.806);
}

.portfolio-caption-subheading {
  font-size: 16px;
  font-style: italic;
}


/* ============ Services =======================*/
.services {
  padding-top: 10px;
  background-color: #284E78;
}

.services h1 {
  font-weight: 800;
  font-size: 2.8rem;
  color:white;
}
.services h4 {
color:rgb(236,214,98);
}

.services h6 {
color:rgb(197, 37, 37);
}

.services p {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.services i {
color: rgb(197, 37, 37);
}

.services li {
  font-size: 1rem;
}

.services a {
  text-decoration: none;
  color: #22559c;
}
/*  text color change on card when hovering */
.back:hover {
  cursor: pointer;
}
.back {
  position: relative;
  background: rgb(244, 236, 236);
  z-index: 1;
  overflow: hidden;
  transition: all 0.8s;
}
.back::before {
  content: "";
  position: absolute;
  height: 0px;
  width: 100%;
  top: 0px;
  left: 0px;
  background:	#f6e591;
  z-index: -1;
  transition: all 0.8s;
}
.back:hover::before {
  height: 100%;
}

.back:hover a {
  cursor: pointer;
}

.btn3 {
  height: 55px;
  width: 140px;
  font-family: 'Oswald', sans-serif;
}

.btn3:hover {
  color: #22559c;
  cursor: pointer;
}

/* ====== FAQ ========*/
.faq {
  background-color: whitesmoke;
  background-size: cover;
}

.faq container {
  max-height: 100vh;
  max-width: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq p {
  font-size: 16px;
}
.faq h3 {
  color: blue;
}

.accordion-header {
  color: #284E78;
}

.accordion {
  width: 100%;
  padding: 10px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  overflow: hidden;
  background-size: 100%;
}

.accordion-button:hover {
  background-color: rgb(177, 204, 239); 
}
.accordion-button {
  background-color: white;
}



/* ============== Work ===========*/

.work {
  padding-top: 10px;
  background-color: #edede8;  
}

.btncasestudy {
  height: 50px;
  width: 175px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background: #3c3cd8;
  color: rgb(255, 255, 255);
  outline: none;
  border: none;
  border-radius: 3px;
}

/*============= Contact Form ============= */

.contact {
  position: relative;
  min-height: 60vh;
  margin-bottom: auto;
}

.contact h3 {
  color:rgb(197, 37, 37);
}

.contact label {
  color: rgb(47, 44, 44);
}

.contact::after {
  content: "";
  background-image: url("../images/yoga.webp");
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0;
  left: 0px;
  opacity: 0.8;
  min-height: 60vh;
  z-index: -1;
}


.takeaction {
background-color: #f6e591;
}

.takeaction h3 {
  color: #22559c;
}

.btn4 {
  color:#22559c;
  height: 55px;
  width: 160px;
  text-transform: uppercase;
}

.contact p {
font-family: 'Oswald', sans-serif;
color:#22559c;
position: relative;
font-size: 1rem;
font-weight: 700;
}


/*======== Footer ============*/
.footer-top {
   background-color: white;
}

.footer-top h2 {
  color: #22559c;
}

.footer-bottom {
   padding-top: 10px;
   padding-bottom: 10px;
   font-family: 'Roboto', sans-serif;
   background-color: #f6e591;
}


.footer-bottom .footer-links a {
   display: block;
   font-weight: 300;
   font-size: 14px;
   font-family: 'Roboto', sans-serif;
}

.footer-bottom p {
  font-size: 14px;
  color: #22559c;
}

.footer-bottom h6 {
  color: #124895;
}

.footer-bottom h5 {
  color:#105336;
}

.social {
  margin: 3px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2),
    -3px -3px 5px white;
  transition: box-shadow 1s;
}

.social:hover {
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.2),
    inset -3px -3px 5px white;
}


/* ====== Modal for Calypso Sea Case Study ======= */



.card front, 
back {
  border-radius: 10px;
  position: absolute;
}

.card:hover front, 
back {
  cursor: pointer;
  transform: rotateY(180deg);

}

.cardGoals {
  margin: 0 auto;
  float: none;
  margin-bottom: 10px;
}

.cardGoals p {
  padding-left: 20px;
  padding-right: 20px;
}



/* ==== Prolems & Solutions card flipping ===*/

.container .box{
  position: relative;
  width: 300px;
  height: 300px;
  margin: 20px;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.container .box .body{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.9s ease;
}

.container .box .body .imgContainer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.container .box .body .imgContainer img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .box .body .content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #9da0a5;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}

.container .box:hover .body{
  transform: rotateY(180deg);
}

.container .box .body .content div{
  transform-style: preserve-3d;
  padding: 20px;
  background: linear-gradient(45deg, #36d1dc,#5b86e5);
  transform: translateZ(100px);
}

.container .box .body .content div h3{
  letter-spacing: 1px;
}

/* ==== Divider between cards ===*/

.h-divider {
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 80%;
  position: relative;
}

.h-divider .shadow {
  overflow: hidden;
  height: 20px;
}

.h-divider .shadow:after {
  content: '';
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px blue;
}

/* ==== Media Query for Global Colors Image ===*/
@media (max-width: 768px) {
  #global-img {
    width: 90%;
    height: auto;
  }
}

/* ==== CS Modal Last Minute Hurdles Carousel ===*/
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 120px;
  padding-right: 120px;
}

@media (max-width: 992px) {
  .carousel-item {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 12px;
  }
}

/* ====  color change for arrows - Last Minute Hurdle #1 ===*/
.carousel-control-prev-icon {
  background-color: #062b91;
  margin-left: -40px;  
}

.carousel-control-next-icon {
  background-color: #062b91;
  margin-right: -40px;
}


/* ==== Media Query for Outcomes === */
@media (max-width: 1280px) {
  #outcomes-img {
    width: 95%;
    height: auto;
  }
}





/*counter section css*/
.counter-box {
	display: block;
  background: #626c81;
	padding: 40px 20px 37px;
	text-align: center
}

.counter-box p {
	margin: 5px 0 0;
	padding: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500
}

.counter-box i {
	font-size: 60px;
	margin: 0 0 15px;
	color: #ffffff;
}

.counter { 
	display: block;
	font-size: 32px;
	font-weight: 700;
  color: #ffffff;
	line-height: 28px
}

.counter-box.colored {
  background: #626c81;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
	color: #fff
}


