* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
  --main-color: #021A3E;
  --secondary-color: #0BADE7;
  --tint-color: #142f58;
}

html {
    font-size: 16px;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: Merriweather, Arial, Helvetica, sans-serif;
    color: #333;
    overflow-wrap: break-word;
    margin: 0;
}

body p {
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Raleway, Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    color: #333;
}

h1 {
    font-size: 3rem;
    margin-bottom: .5em;
}

h2 {
    color: var(--main-color);
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .5em;
}

h4 {
    font-size: 1 rem;
}

h5 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--secondary-color);
}

h6 {
    font-size: .75rem;
    text-transform: uppercase;
}

a {
    cursor: pointer;
    text-decoration: none;
}

section {
    margin-bottom: 5rem;
}

img {
    max-width: 100%;
}

ul {
  padding-inline-start: 1rem;
}

/* SCROLLBAR*/

 ::-webkit-scrollbar-track
 {
   background-color: #F5F5F5;
 }
 
::-webkit-scrollbar
 {
   width: 10px;
   background-color: #F5F5F5;
 }
 
::-webkit-scrollbar-thumb
 {
   background-color: #999;
   /* border: 2px solid #555555; */
 }

/** KEYFRAMES FADE **/

@keyframes fade {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/** BUTTONS **/

.main-btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    margin: 1em 0;
    cursor: pointer;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.main-btn:hover {
    background-color: var(--tint-color);
}

.sec-btn {
    display: inline-block;
    padding: 1.2rem 2rem;
    margin: 1em 0;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.sec-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.menu-btn {
    margin: 0;
}

.menu-btn:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/** FORM & INPUTS**/

input[type="text"], input[type="email"] {
    padding: .75em;
    margin-bottom: .75em;
}

textarea[name="message"] {
    padding: .75em;
    margin-bottom: 1.4em;
}

/** BACK TO TOP BUTTON **/

.backtotopbtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.backtotopbtn:hover {
  background-color: var(--tint-color);
}

.backtotopbtn::before {
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  font: var(--fa-font-solid);
  content: '\f077';
  color: #fff;
  font-size: 24px;
}

header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--main-color);
  transition: all .3s ease-in-out;
}

.bshadow1 {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.minlogo {
  max-height: 50px !important;
}

.logo-img {
    max-height: 60px;
    transition: all .3s ease-in-out;
}

.highlight-word {
    color: var(--main-color);
}

.hero {
    background-color:var(--main-color);
    padding: 9rem 0;
    position: relative;
}

.hero :is(h1, p) {
  color: #fff;
}

.overlay {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  animation: fade 9s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-slider img:nth-of-type(1) {
  animation-delay: 0s;
}

.hero-slider img:nth-of-type(2) {
  animation-delay: 3s;
}

.hero-slider img:nth-of-type(2) {
  animation-delay: 6s;
}

.overlay {
  content: '';
  background-color: rgba(0, 0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

ul.header-nav {
    margin-bottom: 0;
    padding-left: 0;
    overflow: hidden;
}

ul.header-nav li {
    list-style-type: none;
    font-weight: 500;
    margin-bottom: 0;
}

ul.header-nav li a:not(.sec-btn) {
    list-style-type: none;
    font-weight: 500;
    margin-bottom: 0;
    color: #fff;
}

ul.header-nav li a:not(.sec-btn):hover {
    color: var(--secondary-color);
}

.services h2 {
  color: #fff;
}

.services h5 {
  color: var(--main-color);
}

section.services {
  padding: 5rem 0 0;
  background-color: var(--secondary-color);
  position: relative;
}

section.services::before {
  content: '';
  background: #fff;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
} 

.service-item img {
  margin-bottom: 1rem;
}

.service-item h3 {
  color: var(--main-color);
}

ul.checklist {
    margin: 2em 0 0;
    list-style-type: none;
    color: var(--main-color);
    --icon-space: 1em;
    padding-left: 0;
    row-gap: 0;
}

ul.checklist li {
    font-weight: 600;
    padding-left: var(--icon-space);
}

ul.checklist li::before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: calc( var(--icon-space) * -1 );
    width: var(--icon-space);
    margin-right: .25em;
  }


  .sec-color {
    color: var(--secondary-color) !important;
  }

  .price-cell {
    padding: 1em 0;
    border-bottom: 1px solid #999;
    flex-wrap: wrap;
  }

  .service-name {
    font-size: 24px;
    max-width: 75%;
  }

  .price-nr {
    font-size: 24px;
    color: var(--main-color);
  }

  .contact {
    padding: 3rem 0;
    background-color: #fafafa;
    color: #fff;
    margin-bottom: 0;
  }

  .contact i {
    color: var(--secondary-color);
  }

  .contact h5 {
    color: var(--secondary-color);
  }

  .contact :is(h2, h3, p) {
    color: var(--main-color);
  }

  .contact-right a {
    display: block;
    color: var(--main-color);
    text-decoration: none;
    margin-bottom: 1em;
    font-size: 1.25em;
  }

  ul.contact-details {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1.5rem;
  }

  ul.contact-details li i {
    font-size: 1rem;
    margin-right: 1em;
  }

  /** FOOTER **/

  footer {
    padding: 3rem 0;
    background: #111;
    color: #999;
  }

  .footer-nav {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
  }

  .footer-nav a {
    color: #999;
  }

  .footer-nav a:hover {
    color: #fff;
  }

  @media (min-width: 1024px) {

  footer p {
    margin-bottom: 0;
  }

  .footer-nav li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {

  section.services {
    margin-bottom: 0;
    padding: 3rem 0;
  }

  section.services::before {
    display: none;
  } 
    .footer-inner, .footer-nav {
      display: block !important;
    }
}

/** FORM **/

.formbold-mb-5 {
    margin-bottom: 20px;
  }
  .formbold-pt-3 {
    padding-top: 12px;
  }
  .formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .formbold-form-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  .formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 12px;
    display: none;
  }
  .formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    outline: none;
    resize: none;
  }

  /* .formbold-form-input:focus {

  } */

  .formbold-btn {
    text-align: center;
    font-size: 16px;
    width: 100%;
    border-radius: 50px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #fff;
    color: var(--shade-color);
    cursor: pointer;
    transition: all .2s ease-in-out;
  }
  .formbold-btn:hover {
    background-color: #333;
    color: #fff;
  }

  .formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
  }
  .formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .flex {
    display: flex;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .w-full {
    width: 100%;
  }
  /** placeholder **/
  ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
    opacity: .75;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity: .75;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity: .75;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
   opacity: .75;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
   opacity: .75;
}

::placeholder { /* Most modern browsers support this now. */
   color: #fff;
   font-family: "Orelo SemiWide Bold";
   opacity: .75;
}
  @media (min-width: 540px) {
    .sm\:w-half {
      width: 50%;
    }
  }
/**FORM END**/

@media (max-width: 1024px) {

}

@media (max-width: 768px) {

  section {
    margin-bottom: 3rem;
}
    .hero-col {
        background: transparent !important;
        padding: 2rem 0 !important;
    }
    .text-col {
        padding: 2rem;
    }
    .img-col {
        min-height: 40vh;
    }
    .contact-resp {
      display: block !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

