
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.36px;
  color: var(--dark-blue-color);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.72px;
  line-height: 40px;
}

@media (max-width: 767px){
  h1 {
  font-size: 24px;
  line-height: 35px;
  }
}

@media (max-width: 424px){
  h1 {
    font-size: 22px;
    line-height: 30px;
  }
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: 30px;
}

@media (max-width: 767px){
  h2 {
  font-size: 20px;
  line-height: 25px;
  }
}

@media (max-width: 424px){
  h2 {
    font-size: 18px;
    line-height: 25px;
  }
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 767px){
  section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 424px){
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.36px;
  line-height: 25px;
}

@media (max-width: 767px){
  p {
    font-size: 16px;
  }

  .large-line-height p {
    font-size: 16px;
  }
}

a {
  text-decoration: none!important;
  color: var(--dark-blue-color);
  transition: all 0.2s ease-in-out;
}

a:hover {
  opacity: 75%;
}

.padding-none {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 424px){
  section.contact_form_block .padding-none-mobile {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.dark-blue {
  background-color: var(--dark-blue-color);
  color: var(--white);
}

.dark-blue .heading-underline {
  background-color: var(--white);
}

.dark-blue a.btn.btn-primary {
  background-color: #D1E7FF;
  color: var(--dark-blue-color);
}
.dark-blue a.btn.btn-secondary {
  background-color: #D1E7FF;
  color: var(--dark-blue-color);
}

.blue {
  background-color: var(--light-blue-color);
  color: var(--white);
}

.blue a.btn.btn-primary {
  background-color: #D1E7FF;
  color: var(--dark-blue-color);
}

.blue .heading-underline {
  background-color: var(--white);
}

.light-blue {
  background-color: var(--lightest-blue-color);
  color: var(--dark-blue-color);
}

.light-blue a.btn.btn-primary {
  background-color: var(--light-blue-color);
  color: var(--white);
}

.light-blue .heading-underline {
  background-color: var(--dark-blue-color);
}

.white-blue {
  background-color: var(--cream-blue-color);
  color: var(--dark-blue-color);
}

.white-blue a.btn.btn-primary {
  background-color: var(--light-blue-color);
  color: var(--white);
}

.white-blue .heading-underline {
  background-color: var(--dark-blue-color);
}
a.btn.btn-primary {
  background-color: var(--light-blue-color);
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 7.5px 30px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

a.btn.btn-primary:hover {
  opacity: 80%;
}

a.btn.btn-secondary {
  background-color: #D1E7FF;
  color: var(--dark-blue-color);
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 7.5px 25px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

a.btn.btn-secondary:hover {
  opacity: 80%;
}

:root {

  --dark-blue-color: #28335B;

  --light-blue-color: #205BA8;

  --lightest-blue-color: #A5C0DD;

  --cream-blue-color: #EDF3FD;

  /* #F4F6FA */

  --white: #FFFFFF;
}

/* header */

header {
  background-color: var(--cream-blue-color);
  box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}

a.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 350px;
  min-width: 200px;
}

.navbar ul, .responsive-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar ul li {
  white-space: nowrap;
  margin: 10px 0 10px 28px;
  font-size: 16px;
}

header a.btn.btn-primary {
  margin-left: 25px;
}

ul#primary-menu li.current-menu-item a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: var(--dark-blue-color);
  margin-top: 5px;
  transition: all 0.3s ease-in-out 0s;
}

ul#primary-menu li.current-menu-item {
  position: relative;
}

.site-branding {
  padding: 10px 25px;
}

.hamburger-menu {
  display: none;
}

.responsive-menu {
  display: none;
  width: 100%;
  height: 100%;
  background-color: var(--cream-blue-color);
  position: absolute;
  top: 0;
  left: 0;
  padding: 80px 60px;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  z-index: 999999;
}

img.cross-image {
  width: 15px;
  height: 15px;
  top: 30px;
  right: 35px;
  position: absolute;
}

.responsive-menu .header-logo img {
  width: 100%;
  height: 100%;
  max-width: 350px;
}

.responsive-menu ul {
  flex-direction: column;
  align-items: start;
}

.responsive-menu ul a {
  padding: 15px;
  display: block;
  font-size: 16px;
}

.button-responsive-menu {
  position: relative;
}

.button-responsive-menu::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 1px;
  background-color: rgba(40, 51, 91, 100%);
  bottom: -40px;
  left: 15px;
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.responsive-menu .menu-main-menu-container {
  margin-top: 40px;
}

.responsive-menu.open {
  transform: translateX(0);
}

@media (max-width: 950px){
  .navbar ul li {
    font-size: 14px;
    margin: 10px 0 10px 20px;
  }

  header a.btn.btn-primary {
    font-size: 14px;
    padding: 5px 25px;
    white-space: nowrap;
  }

  ul#primary-menu li.current-menu-item a:before {
    bottom: -5px;
    }
}

.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
  visibility: hidden;
}

@media (max-width: 767px){
  .responsive-menu {
    display: flex;
    flex-direction: column;
  }

  nav#navbar {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .hamburger-menu img {
    width: 30px;
    height: auto;
  }

  header .button-responsive-menu a.btn.btn-primary {
    margin: 15px;
  }

  .site-branding {
    padding: 10px;
  }
}

@media (max-width: 600px){
  header .button-responsive-menu a.btn.btn-primary {
    margin: 25px 10px 25px 20px;
  }

  img.cross-image {
    right: 20px;
  }

  .responsive-menu {
    padding: 40px 30px;
  }

  .responsive-menu ul a {
  padding: 25px 25px 10px 5px;
  }

  header .button-responsive-menu a.btn.btn-primary {
    margin: 25px 25px 25px 5px;
  }

  .button-responsive-menu::after {
    left: 5px;
  }
}

@media (max-width: 450px){
  header .site-navigation a.btn.btn-primary {
    display: none;
  }

  .hamburger-menu {
    margin-right: 10px;
  }
}

@media (max-width: 424px){
  .responsive-menu a.header-logo {
    margin-top: 20px;
  }
}

/* Header Top Bar */

.header-top-bar {
  background-color: var(--dark-blue-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7.5px 15px;
}

.header-contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.phone-icon,
a.email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

a.phone-icon img,
a.email-icon img {
  width: 20px;
  height: auto;
}

p.phone-number {
  margin-top: 0;
  color: white;
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

p.email {
  margin-bottom: 0;
  color: white;
  font-size: 14px;
  margin-left: 10px;
}

.header-contact-email {
  margin-left: 30px;
}

a.instagram {
  margin-right: 5px;
}

a.instagram img,
a.facebook img {
  height: 20px;
  width: auto;
}

@media (max-width: 767px){

  .header-contact-email {
    margin-left: 20px;
  }

  .header-top-bar {
    padding: 7.5px 10px;
  }
}

@media (max-width: 524px){
  p.email,
  p.phone-number {
    display: none;
  }

  .header-contact-email {
    margin-left: 15px;
  }
}

/* Hero Image Section */

h1.hero-heading {
  position: relative;
}

.heading-underline {
  content: "";
  bottom: -25px;
  width: 100px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
}

.heading-underline.left {
  left: 0;
  transform: none;
}

h2.hero-subheading {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  margin-top: 50px;
  font-size: 20px;
  line-height: 25px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  padding: 0;
  height: 50vh;
}

.full-height .hero-image {
  height: 80vh;
}

.hero-image-overlay {
  background-color: rgba(0, 0, 0, 50%);
  position: absolute;
  height: 100%;
  width: 100%;
}

.hero-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cream-blue-color);
  text-align: center;
  max-width: 750px;
}

.hero-subheading {
  display: none;
}

.full-height .hero-subheading {
  display: block;
}

@media (max-width: 767px){
.full-height .hero-image {
  height: 60vh;
  }

  h1.hero-heading {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  h2.hero-subheading {
    font-size: 18px;
    max-width: 300px;
  }

  .hero-image {
    height: 40vh;
  }
}

@media (max-width: 424px){
  .full-height .hero-image {
    height: 60vh;
  }

  .heading-underline {
    bottom: -15px;
  }

  .full-height .heading-underline {
    bottom: -25px;
  }

  .full-height h1.hero-heading {
    font-size: 18px;
    line-height: 25px;
  }

  h2.hero-subheading {
    font-size: 14px;
    line-height: 20px;
    max-width: 250px;
  }
}

@media (max-width: 374px){
  .hero-content a.btn.btn-primary {
    font-size: 14px;
  }

  .hero-image {
    height: 30vh;
  }

  h1.hero-heading {
    font-size: 20px;
  }
}

/* Heading with Text (optional button) */

h2.heading-text {
  max-width: 450px;
  margin: 0 auto 60px auto;
}

h2.heading-text .heading-underline {
  bottom: -20px;
}

.heading_with_text a.btn.btn-primary {
  margin-top: 40px;
}

.heading-text {
  margin-left: auto;
  margin-right: auto;
}

.heading-text p {
  margin-bottom: 0;
  line-height: 30px;
}

@media (max-width: 424px){

  .heading_with_text a.btn.btn-primary {
    margin-top: 20px;
  }

  .heading-text {
    width: 100%;
  }

  h2.heading-text {
    margin-bottom: 40px;
  }

  .heading-text p {
    font-size: 14px;
    line-height: 25px;
  }
}

/* Services Boxes Section */

.service-box-image {
  height: 400px;
  max-height: 100%;
}

.service-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-box-overlay {
  background-color: rgba(0, 0, 0, 50%);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.service-box-content {
  top: 50%;
  left: 50%;
  color: var(--white);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

h2.service-box-heading {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

p.service-box-paragraph {
  font-size: 14px;
  line-height: 20px;
  max-width: 300px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.service-box-content a.btn.btn-secondary {
margin-top: 25px;
}

@media (max-width: 991px){
  p.service-box-paragraph {
    font-size: 12px;
  }

  h2.service-box-heading {
    font-size: 18px;
  }

  .service-box-image {
    height: 375px;
  }

  .service-box-content a.btn.btn-secondary {
    font-size: 12px;
    margin-top: 15px;
  }
}

@media (max-width: 767px){
  .service-box-image {
    height: 250px;
  }
}

/* services icons */

.service-icons {
  margin-top: 60px;
}

.icon-image {
  width: 75px;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
}

.icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon {
  text-align: center;
  width: 20%;
  margin-bottom: 30px;
}

.icon p {
  font-size: 14px;
  margin-top: 25px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

p.service-icons-paragraph {
  text-align: center;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

h2.service-icons-heading {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.icons_section .heading-underline {
  bottom: -20px;
}

@media (max-width: 1023px){
  .icon {
    width: 25%;
  }
}

@media (max-width: 767px){
  .icon {
    width: 50%;
  }
}

@media (max-width: 424px){
  p.service-icons-paragraph {
    font-size: 14px;
    max-width: 350px;
  }
}

/* Why choose us section large */

.left-image {
  max-height: 900px;
  padding-left: 40px;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why_choose_us_section h2.heading {
  font-size: 20px;
  line-height: 25px;
}

.why_choose_us_section .heading-underline {
  left: 0;
  transform: unset;
  bottom: -20px;
}

.why_choose_us_section p.paragraph {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 16px;
}

.benefit-image {
  width: 30px;
  height: auto;
  margin-right: 20px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p.benefit-text {
  margin-bottom: 0;
  font-size: 16px;
}

.benefit {
  margin-bottom: 20px;
}

.right-content{
  padding: 40px 20px 40px 50px;
  margin-top: auto;
  margin-bottom: auto;
}

.right-content a.btn.btn-primary {
  margin-top: 40px;
}

@media (max-width: 930px){
  .right-content {
    padding: 40px 20px;
  }

  .left-image {
    padding-left: 20px;
  }
}

@media (max-width: 767px){
  .left-image img {
    padding: 0 40px 40px 40px;
  }

  .left-image {
    max-height: 400px;
    order: 2;
    padding: 0;
  }

  .right-content {
    padding: 0 50px 50px 50px;
  }

  .why_choose_us_section h2.heading {
    font-size: 18px;
    max-width: 400px;
  }

  .right-content a.btn.btn-primary {
    margin-top: 20px;
  }
}

@media (max-width: 524px){

  .left-image img {
    padding: 0;
  }

  section.why_choose_us_section {
    padding-bottom: 0;
  }

  .left-image {
    margin-top: 40px;
    }

  .right-content {
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 424px){
  .why_choose_us_section p.paragraph,
  p.benefit-text {
    font-size: 14px;
  }
}

/* CTA Section */

.cta-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  min-height: 350px;
}

.cta-image .image-overlay {
  top: 0;
  left: 0;
  background-color: rgba(40, 51, 91, 70%);
  height: 100%;
  width: 100%;
}

.cta-block {
  padding: 0;
}

.cta-content {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 600px;
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: 0 20px;
}

h2.cta-title {
  font-weight: 400;
  margin-bottom: 40px;
}

.cta-content a.btn.btn-secondary {
  font-weight: 600;
}

@media (max-width: 424px){
  h2.cta-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

 /* testimonial section */

 .testimonial-star img {
   width: 100%;
   height: 100%;
   max-width: 175px;
   margin-bottom: 40px;
 }

 p.testimonial-text,
 p.testimonial-author {
   font-size: 16px;
 }

 p.testimonial-text {
   margin-bottom: 30px;
   max-width: 750px;
   margin-left: auto;
   margin-right: auto;
 }

 p.testimonial-author {
   max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  margin-bottom: 30px;
 }

.splide__pagination__page.is-active {
  background-color: #28335B;
  transform: scale(1.2);
}

button.splide__arrow.splide__arrow--next,
button.splide__arrow.splide__arrow--prev {
  display: none;
}

 @media (max-width: 424px){
   p.testimonial-text {
     font-size: 14px;
   }
 }

 /* Solar PV Section - textbox + image section */

 .overall-headings {
   text-align: center;
   padding: 0 40px;
 }


 h2.overall-heading {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
 }

 p.overall-heading {
   max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
 }

 p.overall-paragraph {
  font-size: 16px;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
 }

 .overall-headings a.btn.btn-primary {
   margin-top: 20px;
 }

 div.image-textbox {
   margin-top: 80px;
   padding: 0 40px;
 }

 .textbox-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
    max-height: 800px;
 }

 h2.image-textbox {
   font-size: 20px;
   margin-bottom: 60px;
 }

 div.textbox-content {
   padding-right: 40px;
 }

 div.textbox-image-right {
   padding-left: 40px;
 }


 .image-textbox .heading-underline {
   left: 0;
   transform: translateY(-50%);
   bottom: -20px;
 }

 p.advantage-heading {
   font-weight: 600;
   max-width: 300px;
   margin-bottom: 10px;
   font-size: 16px;
 }

 p.advantage-paragraph {
   font-size: 16px;
   max-width: 500px;
 }

 .advantage {
   margin-bottom: 30px;
 }

 @media (max-width: 991px){
   .textbox-image-right img {
     max-height: 450px;
     min-height: unset;
   }

   p.advantage-paragraph {
     max-width: unset;
   }

   .textbox-image-right {
     margin-top: 40px;
   }

   div.textbox-image-right {
     padding-left: 0;
   }
 }


 @media (max-width: 424px){
   h2.overall-heading,
   h2.image-textbox {
     font-size: 18px;
   }

   h2.overall-heading {
     margin-bottom: 40px;
   }

   .overall-headings {
     padding: 0 15px;
   }

   div.image-textbox {
     padding: 0 20px;
   }

   .textbox-image-right {
     margin-top: 20px;
   }

   p.overall-paragraph {
     font-size: 14px;
     line-height: 25px;
   }

   p.advantage-paragraph {
     font-size: 14px;
   }
 }

 /* Two image section */

 .image-left img,
 .image-right img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   max-height: 350px;
 }

 .image-left,
 .image-right {
   padding: 5px;
   height: 100%;
 }

 .two-images {
  margin-top: 60px;
 }

 @media (max-width: 767px){
   .image-left, .image-right {
     height: auto;
     width: 100%;
   }
 }

 @media (max-width: 424px) {
   .two-images {
     margin-top: 30px;
   }
 }

 /* solar battery section */

 .textbox-background-image img {
   width: 100%;
   height: auto;
   object-fit: cover;
   min-height: 350px;
 }

 .textbox-background {
   margin-top: 80px;
   padding: 60px;
 }

 .textbox-background-content {
   padding-right: 60px;
   padding-left: 20px;
 }

h2.textbox-background-heading {
  font-size: 20px;
  max-width: 350px;
  margin-bottom: 40px;
}

h2.textbox-background-heading .heading-underline {
  left: 0;
  transform: none;
  bottom: -15px;
  background-color: white;
}

p.textbox-heading-paragraph {
  font-size: 14px;
  max-width: 500px;
  margin-bottom: 30px;
}

@media (max-width: 900px){
  .textbox-background-content {
    padding-left: 0;
    padding-right: 20px;
  }

  .textbox-background {
    padding: 40px;
  }
}

@media (max-width: 767px){
  p.textbox-heading-paragraph {
    max-width: unset;
  }

  .textbox-background-content {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .textbox-background {
    margin-top: 40px;
  }
}

@media (max-width: 424px){
  .textbox-background {
    padding: 25px;
    margin-top: 30px;
  }

  h2.textbox-background-heading {
    font-size: 18px;
  }
}

/* contact form block */

section.contact_form_block .contact-block {
  padding: 80px 60px;
  width: 90%;
}

h2.contact-form-heading .heading-underline {
  left: 0;
  transform: unset;
  bottom: -15px;
}

h2.contact-form-heading {
  font-size: 20px;
}

.contact-details {
  margin-top: 60px;
}

.contact-block-phone-icons,
.contact-block-email-icons,
.contact-block-hours-icons
 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.contact-block-phone-icons img,
.contact-block-email-icons img,
.contact-block-hours-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 25px;
}

.contact-block-phone-icons p,
.contact-block-email-icons p,
.contact-block-hours-icons p {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 16px;
}

form.wpcf7-form.init p {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

form.wpcf7-form.sent,
form.wpcf7-form.submitting,
form.wpcf7-form.resetting {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
}

input.wpcf7-form-control,
textarea.wpcf7-textarea {
  padding: 10px;
  border: none;
  font-size: 14px;
  width: 100%;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit {
  background-color: var(--dark-blue-color);
  outline: none;
  border: none;
  border-radius: 50px;
  padding: 7.5px 40px;
  font-size: 14px!important;
  transition: all 0.3s ease-in-out;
  width: auto;
  font-size: 16px;
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

p.submit-button {
  max-width: 375px;
  margin-bottom: -20px;
}

@media (max-width: 980px){
  section.contact_form_block .contact-block {
    padding: 80px 40px;
  }
}

@media (max-width: 767px){
  section.contact_form_block .contact-block {
    padding: 60px 40px;
  }

  form.wpcf7-form.init p {
    width: 100%;
    margin-left: 0;
    max-width: unset;
  }

  input.wpcf7-form-control.wpcf7-submit.has-spinner {
    margin: unset;
  }
}

@media (max-width: 500px){
  section.contact_form_block .contact-block {
    padding: 40px 20px;
  }
}

@media (max-width: 424px){
  .contact-block-phone-icons p, .contact-block-email-icons p, .contact-block-hours-icons p {
    margin-left: 10px;
    font-size: 14px;
  }

  .contact-block-phone-icons img, .contact-block-email-icons img, .contact-block-hours-icons img {
    max-width: 15px;
  }

  form.wpcf7-form.init p {
    width: 100%;
  }

  section.contact_form_block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* instagram block */

h2.instagram-heading .heading-underline {
  bottom: -20px;
}

h2.instagram-heading {
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-feed {
  margin-top: 40px;
}

@media (max-width: 767px){
  .instagram-feed {
    margin-top: 30px;
  }
}

@media (max-width: 424px){
  h2.instagram-heading {
    font-size: 18px;
  }
}


@media (max-width: 375px){
  .instagram-feed {
    margin-top: 20px;
  }
}

/* footer */

footer .site-info {
  padding: 60px 40px;
}

p.footer-tagline {
  max-width: 300px;
}

/* .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

ul#menu-footer-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

ul#menu-footer-menu li a {
  color: var(--white)!important;
}

.footer-contact-info img {
  width: 100%;
  height: 100%;
  max-height: 20px;
  max-width: 20px;
  object-fit: contain;
}

.footer-contact-phone,
.footer-contact-email {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

p.contact-block-phone,
p.contact-block-email {
  margin-left: 10px;
  font-size: 16px;
  margin-bottom: 0;
}

footer p.contact-block-phone,
footer p.contact-block-email {
    color: white;
}

.footer-nav {
  margin-right: 40px;
}

p.footer-nav-heading {
  margin-bottom: 5px;
  font-weight: 600;
}

p.footer-contact-info-heading {
  margin-bottom: 15px;
  font-weight: 600;
}

p.contact-address-heading {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.footer-contact-phone {
  margin-bottom: 15px;
}

.contact-address {
  padding-left: 40px;
  max-width: 250px;
}

.main-footer-content {
  margin-bottom: 40px;
  border-bottom: solid 1px;
  padding-bottom: 40px;
}

p.registered-address {
  margin-bottom: 0;
}

ul#menu-footer-menu-policies {
  list-style: none;
  display: flex;
  padding: 2.5px;
  margin: 0;
}

ul#menu-footer-menu-policies li {
  margin-right: 15px;
}

ul#menu-footer-menu-policies li a, p.footer-copyright {
  font-size: 14px;
}

p.footer-copyright {
  margin-bottom: 0;
  padding: 2.5px;
  margin-left: 10px;
}

p.registered-address {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-box {
  background-color: #F4F6FA;
  flex-wrap: wrap;
}

@media (max-width: 960px){
  footer .site-info {
    padding: 60px 20px;
  }

  .footer-logo img {
    max-width: 250px;
    object-fit: contain;
    height: auto;
    margin-bottom: 15px;
  }
}

@media (max-width: 860px){
  .footer-nav {
    margin-right: 20px;
  }
}

@media (max-width: 767px){
  .footer-navigation-menus {
    flex-direction: column;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

   .footer-nav, .footer-contact-info {
    margin-bottom: 30px;
  }

  .main-footer-content {
    padding-bottom: 20px;
  }

  .footer-logo img {
    margin-bottom: 10px;
  }

  p.registered-address {
    text-align: left!important;
    font-size: 14px;
    max-width: 600px;
    margin: unset;
  }
  footer .site-info {
    padding: 40px 30px;
  }

  div.registered-address {
    padding-left: 0;
  }

  .footer-box .footer-copyright,
  .footer-box .menu-footer-menu-policies-container {
    width: 100%;
  }

  .menu-footer-menu-policies-container {
    margin-left: 10px;
  }

  p.footer-copyright {
    padding-top: 5px;
  }
}

@media (max-width: 424px){
  p.contact-block-phone,
  p.contact-block-email {
    font-size: 14px;
  }

  .contact-block-phone-icons, .contact-block-email-icons, .contact-block-hours-icons {
    margin-bottom: 20px;
  }

  form.wpcf7-form.init {
     margin-top: 30px;
   }

   footer .site-info {
     padding: 20px 15px;
   }

   .main-footer-content {
     margin-bottom: 30px;
   }

   .footer-contact-info {
     margin-bottom: 15px;
   }
}

/* Image with textbox repeater sections */

section.repeated_text_with_images_block {
  padding: 0;
}

.textbox-image-section {
  padding: 80px 60px;
}

.image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 650px;
}

h2.text-section-heading {
  margin-bottom: 60px;
  max-width: 400px;
  font-size: 22px;
}

p.text-section-paragraph {
  max-width: 525px;
  font-size: 14px;
}

.textbox-image-section:nth-child(even) .text-section {
  order: 2;
  padding: 0 10px 0 60px;
}

.text-section {
  padding: 0 40px 0 20px;
}

.text-section a.btn {
  margin-top: 15px;
}

@media (max-width: 900px){
  .textbox-image-section {
    padding: 80px 20px;
  }

  .text-section {
    padding: 0 40px 0 10px;
  }

  h2.text-section-heading {
    font-size: 20px;
  }

  .textbox-image-section:nth-child(even) .text-section {
    padding: 0 20px 0 20px;
  }
}

@media (max-width: 767px){
  .textbox-image-section {
    padding: 40px 40px;
  }

  .text-section {
    padding: 0;
  }

  p.text-section-paragraph {
    max-width: 600px;
  }

  .image-section {
    margin-top: 40px;
  }

  .image-section img {
    max-width: 600px;
  }

  .textbox-image-section:nth-child(even) .image-section {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .textbox-image-section:nth-child(even) .text-section {
    padding: 0;
  }

  .image-section img {
    max-width: unset;
    max-height: 350px;
  }

  .textbox-image-section:nth-child(even) .text-section {
    order: unset;
    margin-bottom: 40px;
  }
}

@media (max-width: 424px){
  h2.text-section-heading {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .textbox-image-section {
    padding: 40px 20px;
  }
}

/* small icons section */

.icons-section-small {
  margin-top: 80px;
}

.icon-individual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 10px;
}

.icon-individual img {
  width: 100%;
  height: 100%;
  max-height: 100px;
  object-fit: contain;
}

h2.icons-section-small-heading {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

p.icon-small-description {
  margin-bottom: 0;
  margin-top: 30px;
  font-size: 16px;
  max-width: 200px;
  text-align: center;
}

@media (max-width: 767px){
  .icon-individual {
    padding: 0 10px 40px 10px;
  }
}

@media (max-width: 424px){
  p.icon-small-description {
    font-size: 14px;
    line-height: 20px;
  }
}

/* napit section */

.napit-content-block {
  margin-top: 80px;
}

.napit-image img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  object-fit: contain;
}

.napit-content {
  padding-left: 20px;
}

p.napit-subheading {
  max-width: 400px;
  font-weight: 700;
}

p.napit-paragraph {
  font-size: 14px;
  max-width: 500px;
}

@media (max-width: 900px){
  .napit-image {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .napit-image img {
    max-width: 350px;
  }
}

@media (max-width: 767px){
  .napit-image {
    margin-left: unset;
    margin-bottom: 30px;
    padding-left: 20px;
  }

  .napit-content-block {
    margin-top: 60px;
  }
}

@media (max-width: 424px){
  .napit-content {
    padding-left: 0;
  }

  .napit-image {
    padding-left: 0;
  }
}

/* sponsorship section */

h2.sponsorship-heading {
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.sponsorship_showcase .two-images {
  margin-top: 40px;
}

p.sponsorship-paragraph {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px){

.sponsorship_showcase .image-left img,
.sponsorship_showcase .image-right img {
  max-height: 350px;
  }
}

@media (max-width: 425px){
  p.sponsorship-paragraph {
    font-size: 14px;
  }
}

/* image gallery section */

.image {
  aspect-ratio: 1/1;
  padding: 10px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-case-study {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

div.modal-background {
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.80)
}

div.modal-close {
  position: fixed;
  right: 15px;
  top: 30px;
  color: #fff;
  padding: 20px;
  cursor: pointer;
  z-index: 1000;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 1000px;
    width: 90%;
    transform: translate(-50%, -50%);
  }

  .modal-content img {
    height: 75%;
    width: 100%;
  }

.modal {
  display: none;
}

@media (max-width: 424px){
  .image {
    padding: 5px;
  }
}

/* error 404 page */

.page-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1.error-404.heading {
  margin-bottom: 30px;
}


/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}
