/*************************
**** GENERAL STYLES ******
*************************/

body {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
}

h1, h2, h3 {
  font-family: 'Karma', serif;
  letter-spacing: 1px;
  color: #333;
}

h1 {
  font-size: 36px;
  font-weight: 400;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.9px;
}

b {
  color: #0091c1;
}

/* REMOVE FORM INPUT GLOW ON FOCUS */
input[type="text"], textarea {
  outline: none;
  box-shadow:none !important;
  box-sizing: border-box !important;
}

button {
  letter-spacing: 0.9px;
}

button:focus {
  outline: 0;
}

.button {
  margin-right: 10px;
  padding: 10px 20px;
  color: white;
  border: 2px white solid;
  border-radius: 5px;
  transition: 0.2s;
}

.body-container {
  margin: 0 auto;
  max-width: 1280px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.4);
  background-color: #fafafa;
}

.container-fluid {
  margin: 0 auto;
  padding: 0;
  max-width: 1140px;
}

.container-footer {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

p.a {
  color: #00487C;
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 60vh;
}

.section-pad {
  margin: 50px 0;
}

.alt-bkg-col {
  height: 100%;
  background-color: #f9f9f9;
}

.clear-nav {
  padding-top: 140px;
}

/*************************
***** Cookie Consent *****
*************************/

.cookie-consent {
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  background-color: #2f4858;
  color: #fff;
  z-index: 10000;
}

.cookie-consent-transition {
  transition: 0.2s;
}

.cookie-consent p {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 300;
}

.cookie-consent span {
  font-weight: 300;
}

.policy-link {
  color: #5786a5;
  font-weight: 300;
}

.cookie-btn-group {
  display: flex;
  align-items: center;
}

.cookie-false {
  margin: 0 5px;
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.cookie-true {
  width: 160px;
  margin: 5px 0 5px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #f06530;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
}

/*************************
****** Nav Styles ********
*************************/

.bg-blue {
  background-color: rgba(0,165,227,0.85);
  transition: 0.3s ease-in-out;
}

.navbar-nav {
  margin: 0 auto;;
}

.nav-item {
  color: #fff;
  margin: 0 10px;
}

.nav-link {
  color: #fff;
  font-weight: 300;
}

#current {
  color: #16152D;
  font-weight: 700;
}

.current-drop-link {
  background-color: #f9f9f9;
}

.link-hover {
  position: relative;
  text-decoration: none;
}

.link-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.2s ease-in-out;
}

.navbar-logo {
  height: 50px;
  transition: 0.2s;
}

.logo-scroll {
  height: 50px;
}

.custom-toggler {
  width: 30px;
  height: 20px;
  padding: 0px;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.custom-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.custom-toggler span {
    background: #fff;
}

.custom-toggler span:nth-child(1) {
  top: 0px;
}

.custom-toggler span:nth-child(2), .custom-toggler span:nth-child(3) {
  top: 10px;
}

.custom-toggler span:nth-child(4) {
  top: 20px;
}

.custom-toggler.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.custom-toggler.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.custom-toggler.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.custom-toggler.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.navbar-toggler {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: calc(100% - 70px);
  z-index: 1000;
  transform: translateY(-50%);
}

.contact-link .nav-link {
  margin-left: 30px;
}

.fa-li {
  left: 5px;
  top: 8px;
}

/*************************
****** HOME STYLES *******
*************************/

.carousel-content {
  position: absolute;
  /* left: 20px; */
  bottom: 100px;
  padding: 20px;
  border-radius: 2px;
  background: rgba(0,23,31,0.75);
  z-index: 20;
  color: white;
}

.carousel-item {
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.carousel-indicators {
  position: absolute;
}

.carousel-indicators .active {
  transition: 0.3s linear;
  height: 8px;
}

.carousel-content h1 {
  margin: 0;
  padding-bottom: 10px;
  line-height: 40px;
  color: #fafafa;
}

.carousel-content h2 {
  padding-bottom: 30px;
  font-size: 22px;
  font-weight: 200;
  color: #fafafa;
}

.carousel-content span {
  color: #fdca40;
  font-weight: 700;
}

.primary {
  background-color: #00a5e3;
}

.secondary {
  margin-left: 0;
  font-weight: 300;
}

.heading {
  position: relative;
}

.heading::after {
  position: absolute;
  bottom: -16px;
  left: 0;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #00a5e3;
}

.about-intro {
  padding: 60px 0;
}

.intro-para {
  padding-bottom: 50px;
}

.info {
  text-align: center;
}

.info h2 {
  font-size: 22px;
  margin-bottom: 0;
}

.info p {
  font-size: 14px;
}

.info-icon {
  height: 90px;
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
}

.intro-para p {
  padding-top: 30px;
}

.service-banner {
  padding-bottom: 10px;
}

.card {
  position: relative;
  border-radius: 0;
}

.card-custom {
  border: 0.5px solid #333;
}

.overlay {
  position: absolute;
  display: flex;
  align-items: flex-end;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition: all .5s ease;
}

.card-custom img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  transition: 0.3s;
}

.card-custom .text {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 2px;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.about-card {
  display: flex;
  flex-direction: column;
  margin: 60px 0;
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  border-radius: 5px;
}

.about-card-bkg {
  height: 350px;
  background: url("../img/gallery-enlarged/h-tech-team-chris-and-richard-howlett-1200x800.jpg") no-repeat center center/cover;
  border: 2px solid rgba(0,0,0,0);
  border-radius: 5px 5px 0 0;
}

.card-content {
  padding: 20px 20px;
  background-color: #00a5e3;
  color: #fff;
  border-radius: 0 0 5px 5px;
}

.card-content h2 {
  margin-bottom: 10px;
  color: #000022;
  font-size: 22px;
}

.card-content p {
  font-size: 14px;
}

.p-link {
  font-weight: 400;
  color: #333;
}

.gallery-ad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  color: #fff;
  border-top: 2px solid #00a5e3;
  border-bottom: 2px solid #00a5e3;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url("../img/bonnet-dent-repair-sanding-preparation-1920x1080.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.gallery-ad h2 {
  margin-bottom: 5px;
  color: #fafafa;
}

.gallery-ad p {
  margin-bottom: 40px;
  font-weight: 200;
}

.ad-btn {
  padding: 5px 20px;
  background-color: #00a5e3;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
  transition: 0.2s;
}

#map-based {
  height: 400px;
  width: 100%;
  border-top: 2px solid #00a5e3;
}

.home-form {
  margin: 0 auto;
  max-width: 800px;
  padding: 60px 15px;
}

.form-heading {
  margin-bottom: 20px;
}

 .form-control {
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 2px solid #E0E0E0;
  background-color: #f5f5f5;
  outline: none;
}

.form-control:focus {
  box-sizing: border-box;
  border: 1px solid #00a5e3;
}

.form-check-input {
  margin-top: 0.5rem;
}

form label {
  margin: 5px;
  font-size: 14px;
  font-weight: 400;
}

::placeholder {
  font-size: 12px;
}

.home-form .privacy-check {
  font-size: 14px;
}

.home-form button {
  color: #fff;
  padding: 0 20px;
  height: 40px;
  border-radius: 5px;
  font-size: 12px;
  transition: 0.2s linear;
}

.home-form button[type="submit"] {
  background-color: #00a5e3;
  border: 2px solid #fff;
  font-size: 14px;
  cursor: pointer;
}

.home-form button[type="reset"] {
  background-color: rgba(0, 0, 0, 0);
  color: #848C8E;
  border: none;
}

/*************************
****** OUR SERVICE *******
*************************/

.our-service {
  background: url("../img/optimized/peugeot-206-spoiler-sanding-preparation-1920x1080.jpg") center center/cover;
}

.service-accident {
  background: url("../img/audi-a3-door-accident-repair-1920x1080.jpg") top center/cover;
}

.service-dent {
    background: url("../img/optimized/peugeot-206-bonnet-dent-repair-preparation-1920x1080.jpg") center center/cover;
}

.service-modify {
    background: url("../img/optimized/peugeot-206-spoiler-sanding-preparation-1920x1080.jpg") center center/cover;
}

.service-restore {
    background: url("../img/optimized/peugeot-206-spoiler-sanding-preparation-1920x1080.jpg") center center/cover;
}

.service-cards .heading::after {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-tranform: translateX(-50%);
}


.service-cards .row {
  margin: 32px 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-width: 40%;
  margin: 20px 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.service-card-header {
  border-bottom: 2px solid #00a5e3;
}

.service-card-header img {
  border-radius: 5px 5px 0 0;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px 10px;
}

.service-card-heading {
  font-size: 20px;
  margin-bottom: 12px;
  text-align: left;
}

.service-card-desc {
  margin-bottom: 10px;
  font-size: 14px;
}

.reveal-btn {
  display: flex;
  margin-top: auto;
  border: 0;
  outline: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.reveal-btn .go-arrow {
  position: relative;
  background: #0091c1;
  width: 30px;
  height: 30px;
  border-radius: 2px;
}

.reveal-btn .go-arrow img {
  width: 15px;
  height: 15px;
}

.reveal-btn .go-arrow:after {
  content: ' ';
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 12.5px;
  right: -1.5px;
  background: #0091c1;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reveal-btn .reveal-text {
  display: flex;
  position: relative;
  width: 0;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  background: #00a5e3;
  color: #fff;
  font-weight: 300;
  transition: 0.6s all;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.reveal-btn .reveal-text span {
  width: 100%;
  opacity: 0;
  position: absolute;
  left: 50%;
  font-size: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: 0.6s all ease-in;
  transition-delay: 0.2s;
}

.testimonials {
  margin-top: 80px;
  background-color: #dbd5b5;
}

.header-offset {
  position: absolute;
  left: 50%;
  padding: 16px 28px;
  transform: translate(-50%, -50%);
  background-color: #187795;
  text-align: center;
  z-index: 100;
}

.header-offset h3, .header-offset p {
  color: #fafafa;
}

.header-offset p {
  font-weight: 300;
}

.header-offset-subtitle {
  padding-top: 5px;
}

.testimonials .carousel {
  padding: 120px 0 40px 0;
}

.testimonials .carousel-inner {
  margin: 0 auto;
  height: 220px;
  min-height: 200px;
}

.testimonial p {
  font-family: 'Karma';
  color: #444;
}

.testimonials .carousel-indicators {
  top: calc(100% - 20px);
}

.testimonials .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: 2px solid #444;
  border-radius: 6px;
  background-color: #fff;
}

.testimonials .carousel-indicators .active {
  width: 12px;
  height: 12px;
  background-color: #00a5e3;
}

/* .testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.testimonial-quote {
  display: flex;
}

.testimonial p {
  margin: 16px 0;
  text-align: center;
}

.testimonial .quotes {
  width: 32px;
  height: 32px;
}

.testimonial .quotes-open {
  margin-left: 58px;
  transform: rotate(180deg);
}

.testimonial .quotes-close {
  margin-top: auto;
  margin-right: 58px;
}

.carousel-control-prev, .carousel-control-next {
  position: relative;
  top: 20px;
}

.hero-heading {
  background-color: #00a5e3;
  line-height: 40px;
  padding: 10px 0;
}

.hero-heading h1 {
  margin: 0;
  font-size: 40px;
  color: #fff;
}


.service-cards h2 {
  padding-top: 20px;
  text-align: center;
}

.accent {
  display: block;
  width: 100px;
  height: 2px;
  margin: 0 auto;
  background-color: #00a5e3;
}

.summary-card {
  border: 2px solid #0091c1;
  border-radius: 5px;
}

.summary-card-heading {
  width: 100%;
  background-color: #0091c1;
  padding: 5px 8px;
}

.summary-card-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
}

.summary-card-list ul {
  justify-content: space-between;
  list-style-image: url("../img/list-tick.png");
  padding: 0;
  margin-left: 20px;
  padding: 10px;
  font-family: 'Karma', serif;
  font-size: 14px;
}

.summary-card-list ul li {
  padding: 2px 0;
}

/*************************
******* ABOUT US *********
*************************/

.about-us-hero {
  background: url("../img/h-tech-team-chris-and-richard-howlett-1920x1080.jpg") center bottom/cover;
}

.about-intro h2:first-of-type {
  margin-bottom: 10px;
}

.title-emphasis {
  color: #00a5e3;
  font-weight: bold;
}

.meet-us {
  background: rgb(221,215,183);
  background: linear-gradient(180deg, rgba(221,215,183,1) 0%, rgba(219,213,181,1) 100%);
  padding-top: 40px;
}

.meet-us .row {
  padding-bottom: 40px;
}

.meet-statement {
  width: 85%;
  margin: 10px 0 20px 0;
}

.statement-text {
  margin: 0 30px;
  padding: 0;
}

.statement-text p {
  font-size: 14px;
  font-weight: 400;
}

.statement-text p:nth-of-type(2) {
  margin-bottom: 0;
}

.statement-quotes {
  width: 16px;
}

.statement-open {
  display: block;
  transform: rotate(180deg);
}

.statement-close {
  display: block;
  margin-left: auto;
}

.meet-card {
  margin-bottom: 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.75);
}

.meet-card-body img {
  border-radius: 5px 5px 0 0;
}

.meet-card-text {
  padding: 10px;
  border-radius: 0 0 5px 5px;
  background-color: #00a5e3;
  color: #fff;
  font-family: 'Karma', serif;
}

.meet-card-text span {
  font-size: 18px;
  font-weight: 400;
}

.meet-card-text p {
  margin: 0;
  font-size: 14px;
}

/*************************
**** GALLERY STYLES ******
*************************/

.gallery-hero {
  background: url("../img/ford-escort-mk5-bonnet-respray.jpg") center bottom/cover;
}

.gallery-intro {
  margin: 60px 0;
}

.gallery-intro .row .col-md-4 {
  display: flex;
  align-items: center;
}

.gallery-intro img {
  margin-right: 10px;
  transition: 0.4s;
}

.gallery-intro img:hover {
  transform: scale(0.8);
}

.gallery {
  padding-bottom: 60px;
}

.gallery h3 {
  font-weight: 300;
  color: #0091c1;
}

.gallery .no-gutters > [class*=col-] {
  padding: 0 2.5px;
}

.gallery-col img {
  padding: 2.5px 0;
}

/*************************
**** CONTACT STYLES ******
*************************/

.contact-us-hero {
  background: url("../img/vw-transporter-restoration-prepared-for-respray-1920x1080.jpg") center center/cover;
}

.contact-intro {
  margin: 60px 40px;
}

.contact-main {
  padding: 60px 0;
  background-color: #dbd5b5;
  border-top: 2px solid #00a5e3;
}

.contact-main-details {
  position: relative;
  top: 50%;
  padding: 40px 0;
  border: 1px solid #fbfbff;
  border-radius: 5px;
  color: #444;
  text-align: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.contact-main-details p {
  margin-bottom: 0;
  font-weight: 300;
}

.contact-main-details a {
  display: block;
  font-weight: 300;
  text-decoration: none;
  color: #444;
}

.contact-main-details h2 {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0 16px;
  background-color: #dbd5b5;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.contact-main-form .form-group .row {
  margin-bottom: 5px;
}

.contact-main-form label {
  color: #444;
  font-weight: 200;
  letter-spacing: 0.7px;
}

.contact-main-form .privacy-check a {
  color: #444;
  text-decoration: underline;
}

.contact-main-form button[type="submit"] {
  padding: 5px 10px;
  background-color: #00a5e3;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.contact-main-form button[type="reset"] {
  padding: 0 10px;
  background-color: rgba(0,0,0,0);
  color: #444;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.success-message {
  display: none;
  margin-bottom: 15px;
  transition: 0.3s;
}

.error-message {
  display: none;
  margin-bottom: 15px;
}

.message-body {
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
}

.success-message .message-body {
  border: 2px solid #6ac359;
}

.error-message .message-body {
  border: 2px solid #f05229;
}

.message-text p {
  padding: 0 10px;
  font-size: 14px;
}

#map-container {
  height: 400px;
}

/*************************
**** PRIVACY POLICY ******
*************************/

.data-policy {
  padding-bottom: 50px
}

.data-policy h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.data-policy h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.data-policy h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.privacy-section {
  padding-bottom: 50px;
}

.data-policy ul, ol {
  margin-bottom: 20px;
}

.data-policy table {
  border: 1px solid #00a5e3;
  margin-bottom: 26px;
}

.data-policy table th {
  padding: 0 10px;
  background: #00a5e3;
  color: #fff;
  font-weight: 400;
}

.data-policy tr {
  border: 1px solid #00a5e3;
}

.data-policy td {
  padding: 0 5px;
  border: 1px solid #00a5e3;
  font-weight: 300;
}

.data-policy td:first-child {
  background-color: #F6F7F8;
}

/*************************
**** FOOTER STYLES *******
*************************/

footer .row {
  margin-top: 20px;
}

footer .row .col-md-4 {
  margin-bottom: 30px;
}

footer {
  border-top: 2px solid #00a5e3;
  background-color: #fafafa;
}

footer p {
  margin: 0;
  font-size: 12px;
}

footer h3 {
  font-size: 22px;
}

.footer-nav {
  margin: 20px 0 30px 0;
  padding: 0;
  list-style-type: none;
}

.footer-nav li {
  display: inline-block;
  padding-right: 10px;
}

.footer-nav li a {
  color: #444;
}

.bus-address img {
  height: 40px;
  margin-bottom: 10px;
}

.hour-group:nth-of-type(1, 2) {
  margin-bottom: 10px;
}

.social-page {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.social-page img {
  margin-right: 5px;
}

.social-link {
  color: #444;
  font-size: 12px;
  text-decoration: none;
}

.sub-footer {
  padding: 0 0 4px 0;
  background-color: #00a5e3;
  text-align: center;
  line-height: 1;
}

.sub-footer span {
  color: #fff;
  font-size: 12px;
}

.sub-footer span a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.to-top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  border: 2px solid #00a5e3;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
}

.to-top img {
  position: relative;
  top: -1px;
}

/*************************
***** MEDIA QUERIES ******
*************************/

/* Prevent all hover styles on mobile devices */

@media all and (min-width: 768px) {

  .link-hover:hover {
    color: #fff;
  }

  .link-hover:hover::before {
    visibility: visible;
    transform: scaleX(1);
  }

  .alt-link-hover::before {
    background-color: #fff;
  }

  .button:hover {
    text-decoration: none;
    color: #fff;
  }

  .primary:hover {
    background-color: rgba(0,165,227,0.7);
  }

  .secondary:hover {
    margin-left: 0;
    border: 2px solid #00a5e3;
  }

  .card-custom:hover img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }

  .card-custom:hover .text {
    margin: 10px 10px;
    background-color: rgba(0, 0, 0, 0.6);
    /* border: 1px solid rgba(255, 255, 255, 1); */
  }

  .p-link:hover {
    text-decoration: none;
  }

  .ad-btn:hover {
    background-color: rgba(0,165,227,0.7);
    color: #fff;
    text-decoration: none;
  }

  .home-form button[type="submit"]:hover {
    background-color: #fff;
    color: #848c8e;
    border: 2px solid #00a5e3;
  }

  .service-card:hover {
    /* border: 2px solid rgba(0, 165, 227, 1); */
    transform: translateY(-2px);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
  }

  .reveal-btn:hover .go-arrow:after {
    right: -2px;
  }

  .reveal-btn:hover .reveal-text {
    width: 100px;
  }

  .reveal-btn:hover .reveal-text span {
    opacity: 1;
    top: 0;
  }

  .contact-main-form button[type="submit"]:hover {
    background-color: #fff;
    color: #495057;
    border: 2px solid #00a5e3;
  }

  .footer-nav li a:hover {
    text-decoration: none;
    color: #0091c1;
  }

  .social-link:hover {
    color: #444;
    text-decoration: none;
  }

  .contact-main-form .privacy-check a:hover {
    color: #444;
    text-decoration: underline;
  }

}

@media screen and (max-width: 991px) {

  .navbar {
    background-color: rgba(0,165,227,0.9);
  }

  .nav-link {
    text-align: center;
  }

  .contact-link .nav-link {
    margin-left: 25px;
  }

  .contact-link .fa-li {
    margin-left: -20px;
  }

  .carousel-content {
    left: 0;
  }

}

@media screen and (max-width: 767px) {

  .carousel-item {
    height: 60vh;
  }

  .carousel-content h1 {
    font-size: 28px;
    font-weight: 300;
    padding-bottom: 20px;
  }

  .carousel-content h2 {
    font-size: 18px;
  }

  .ad-btn:hover {
    color: #fff;
    text-decoration: none;
  }

  .to-top {
    display: inline;
  }

  .statement-text p {
    text-align: center;
  }

  .meet-card-text {
    text-align: center;
  }

  .contact-main-details {
    margin-bottom: 50px;
  }

}

@media screen and (max-width: 575px){

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .navbar {
    padding: 0;
    margin: 0;
  }

  .navbar-brand img {
    height: 45px;
  }

  .navbar-toggler {
    left: calc(100% - 50px);
  }

  .carousel-content {
    display: none;
  }

  .button {
    font-size: 14px;
  }

  .about-card-bkg {
    height: 40vh;
    background-position: center bottom;
  }

  .testimonials .carousel-inner {
    height: 300px;
  }

}
