/*HERO SECTION CSS*/
.hero-section {
  position: relative;
  height: 100vh;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url("/static/tech/images/homeBanner.jpg");
}
.hero-overlay {
  /*background-color: var(--blue);
  opacity: 0.6;*/
  /* background-color: rgba(13, 27, 82, 0.5); */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-heading {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 60px;
  color: var(--white);
  text-align: center;
  padding: 0px;
  font-weight: bold;
}
.homeHeroLogo {
  width: 295px;
}
.hero-button {
  width: 150px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px auto;
  /* margin: 70px auto; */
}
.hero-button:hover > a > .hero_button_text {
  color: var(--black);
}
.hero_button_text {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 3px;
}
.ocContentContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.eachSection {
  position: relative;
  height: 60vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.ocHeading {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 60px;
  color: var(--white);
  text-align: center;
  padding: 0px;
}
.textHeading {
  font-size: 40px;
}

.ocBgImage {
  background-image: url("/static/tech/images/homeBanner.jpg");
}
/*COUNTER SECTION CSS*/
.counter-container {
  /*display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;*/
  border-top: 5px dotted gray;
  border-bottom: 5px dotted gray;
  padding: 50px 0px;
}

.counter-div h1,
.counter-div h4 {
  text-align: center;
  color: var(--light-blue);
  letter-spacing: 1px;
}
.counter-div h1 {
  font-weight: 900;
  font-size: 55px;
}
.counter-div h4 {
  font-weight: 200;
  font-size: 30px;
  padding: 15px 0px;
}
.counter-text {
  position: relative;
}
.counter-text::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--light-blue);
  top: 0;
  left: 47%;
}

/*DESCRIPTION SECTION*/
.desc-container {
  margin: 50px auto;
}
.desc-heading {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 50px;
  text-align: center;
}
.desc-text {
  color: var(--light-blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding: 15px 0px;
}
.desc-button-container {
  display: flex;
}
.desc-button-container a {
  flex: 1;
}
.desc-button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  /*width: 200px;*/
  height: 50px;
  text-align: center;
  margin: 15px;
}
.desc-button-text {
  color: var(--white);
  font-size: 13px;
}
a:hover {
  text-decoration: none;
}

/*FINDING SECTION*/
.find-heading {
  letter-spacing: 0px;
  text-transform: uppercase;
  font-size: 60px;
  text-align: center;
  font-weight: 900;
  padding-top: 0px;
  padding-bottom: 20px;
}
.home-gallery {
  padding-left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -5px;
}
.home-gallery-heading {
  text-transform: uppercase;
  font-size: 25px;
  color: var(--white);
}
.finding-left-section {
  text-align: right;
  margin-bottom: 28px;
}
.finding-right-section {
  text-align: left;
  margin-bottom: 28px;
}
.finding-inner-heading {
  text-transform: uppercase;
  color: var(--light-blue);
  font-weight: 900;
  font-size: 18px;
  padding: 0px 0 5px 0;
}
.finding-location-icon {
  line-height: 66px;
  /* height: 100px;
  width: 100px; */
  display: inline-block;
  text-align: center;
  color: var(--blue) !important;
  cursor: pointer;
}
.finding-location-icon:hover < a {
  color: var(--light-blue) !important;
}
.finding-para {
  color: var(--blue);
  font-size: 15px;
  line-height: 1.3em;
  font-weight: 500;
}
.demo-gallery > ul {
  margin-bottom: 0;
  padding-left: 0px;
}

.demo-gallery > ul > li {
  /*margin-bottom: 15px;*/
  width: 180px;
  display: inline-block;
  /*margin-right: 15px;*/
  list-style: outside none none;
}

.demo-gallery > ul > li a {
  border: 3px solid #fff;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}

.demo-gallery.dark > ul > li a {
  border: 3px solid #04070a;
}
.demo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

/*BLUE SECTION CSS*/

.blueOverlay {
  background-color: rgba(13, 27, 82, 0.7);
}

.whiteGradientText {
  background: -webkit-linear-gradient(var(--light-blue), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.courseSectionContainer {
  background-image: url("/static/tech/images/home/become-a-fish.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.courseLeftSection {
  text-align: center;
}
.courseSectionHeader {
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  line-height: 1.3em;
  font-size: 50px;
}
.courseSectionPara {
  letter-spacing: 0px;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-style: inherit;
  font-weight: 400;
}
.lightBlueButton {
  box-shadow: 0px 3px 0px 0px #3a74a4;
  margin-bottom: 3px;
  background-color: var(--light-blue);
  color: var(--white) !important;
}
.buttonText {
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.4);
  text-align: center;
  letter-spacing: 1px;
}

/*LIVE DEEPER SECTION CSS*/
.darkBlueHeading {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0px;
  font-size: 30px;
  text-align: center;
  font-style: inherit;
  font-weight: 400;
  padding-top: 0px;
  padding-bottom: 0px;
}
.liveDeeperLeftSection {
  text-align: center;
}
.liveDeeperPara {
  letter-spacing: 0px;
  text-transform: initial;
  font-size: 20px;
  color: #666666;
  text-align: center;
  font-style: inherit;
  font-weight: 400;
  padding-top: 0px;
  padding-bottom: 20px;
  line-height: 1.3em;
}

/*CONTACT FORM SECTION*/
.indexContactFormBgImage {
  background-image: url("/static/tech/images/courseAowc_Program2Big.jpg");
}
.contactFormSectionContainer {
  background-attachment: fixed;
  background-size: cover;
  text-align: center;
}

.getInTouchBlueText {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 90%;
  color: var(--light-blue);
  text-align: center;
  font-style: inherit;
  font-weight: bold;
  padding-top: 0px;
  padding-bottom: 0px;
}
.getInTouchHeading {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 900;
  text-align: center;
  font-size: 60px;
  letter-spacing: 1px;
  margin-top: 25px;
}
.contactBlueOverlaySection {
  padding: 50px;
}
.formInputField {
  font-size: 14px;
  padding: 14px;
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #767676;
  border: none;
  outline: none;
  margin-bottom: 15px;
}
.formInputField:focus {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white);
  border: none;
}

.formChooseOptionContainer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.checkboxWrapper {
  margin: 20px auto;
}
.checkboxContainer {
  display: flex;
  align-items: center;
}
.inputCheckbox {
  width: 18px;
  height: 18px;
}
.checkboxText {
  padding-left: 7px;
}

/*BRAND SECTION CSS*/
.brandListContainer {
  display: flex;
  list-style: none;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-left: 0px;
}
.partnerCarousel .owl-item img {
  width: 143px !important;
  height: auto;
  opacity: 0.5;
}

.portfolioImageHoverOverlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.portfolioMeta {
  position: absolute;
  bottom: 0;
  transform: translate3d(0, 100%, 0);
  left: 0;
  width: 100%;
  text-align: center;
  padding: 25px 10px 30px;
  transition: all 0.25s ease-out;
  background-color: #1a1a1a;
  min-height: 60px;
}
.portfolioMeta h3 a {
  color: var(--white);
  padding: 0 20px;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
.portfolioContainer {
  position: relative;
}
.portfolioContainer img {
  transform: scale(1.2);
}
.portfolioContainer:hover > .portfolioMeta {
  transform: translate3d(0, 0, 0);
}
.portfolioContainer:hover > img {
  transition: all 0.5s ease-in-out;
  transform: scale(1);
}
.portfolioContainer:hover > .portfolioImageHoverOverlay {
  opacity: 1;
}
.findingsectionLink:hover > h3 {
  transition: all 0.5s ease-in-out;
  color: var(--lightest-blue);
}

/* PROMOTIONS */
.dolphinBackground {
  background-image: url(https://old.bluemarlindive.com/wp-content/uploads/2017/03/transparentfish.png?id=11477) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  /* background-size: contain !important; */
}
@media only screen and (max-width: 600px) {
  .hero-section {
    height: 70vh;
  }

  .eachSection {
    height: 50vh;
  }
  .ocContentContainer {
    height: 50vh;
  }
  .ocHeading {
    font-size: 25px;
  }
  .textHeading {
    font-size: 20px;
  }
}

.techMap span {
  color: #aaa !important;
}