/* 
Theme Name: CCE
Description: Creative Commercial Enviroments website by We Are Trident.
Author: We Are Trident
Author URI: https://wearetrident.co.uk/
Version:1.0
Tested up to: 8.0
Requires PHP: 7.4
*/

:root {
  --primary: #0E3E3C;
  --secondary: #E3CA7D;
  --bs-dropdown-link-active-bg: #E1ECBF;
  --accent: #175250;
  --white: #ffffff;
  --off-white: #F4F6F8;
  --smoke-white: #5C868426;
  --dark: #000000;
  --extra-color: #72A993;
  --fontheading: "Montserrat", sans-serif;
  --fontbody: "Karla", sans-serif;
  --font-accent: "Lora", serif;
  --theme-fs-0: 62px;
  --theme-fs-1: 62px;
  --theme-fs-2: 48px;
  --theme-fs-3: 32px;
  --theme-fs-4: 24px;
  --theme-fs-5: 20px;
  --theme-fs-body-2: 16px;
  --theme-fs-body: 18px;
  --theme-line-height: 1.3;
  --section-padding: 80px;
  font-size: 18px;
}

body {
  color: var(--dark);
  font-family: var(--fontbody);
}

.font-body {
  font-family: var(--fontbody);
}

.font-heading {
  font-family: var(--fontheading);
}

.font-size-16 {
  font-size: var(--theme-fs-body-2);
  line-height: var(--theme-line-height);
}

.font-size-18 {
  font-size: var(--theme-fs-body);
  line-height: var(--theme-line-height);
}

.font-size-24 {
  font-size: var(--theme-fs-4);
  line-height: var(--theme-line-height);
}

.h2 {
  font-size: var(--theme-fs-2);
  line-height: var(--theme-line-height);
  font-weight: 400;
}

.h0,
.h1,
.font-size-62 {
  font-size: var(--theme-fs-1);
  line-height: var(--theme-line-height);
  font-weight: 400;
}

.font-heading {
  font-size: var(--theme-fs-0);
  line-height: var(--theme-line-height);
  font-weight: 400;
}

.subheading {
  font-size: var(--theme-fs-body-2);
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--fontheading);
  font-weight: 400;
}

.title span {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  color: var(--secondary);
  display: block;
}

p {
  font-family: var(--fontbody);
  margin-bottom: 15px;
  /* font-size: var(--theme-font-size-1); */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

.img-wrap img {
  max-width: 100%;
  height: auto;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-30 {
  margin-bottom: 30px;
}

p+p {
  margin-top: 1rem;
}

/* Bootstrap Overwrites */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 92%;
  }
}

@media (min-width: 1920px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1620px;
  }
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary);
}

/* Header */
.header-top {
  background: var(--primary);
  padding: 10px 0;
}

.header-top__text-link {
  color: var(--white);
  text-decoration: none;
  font-size: var(--theme-fs-body);
  line-height: var(--theme-line-height);
  font-weight: 500;
}

/* .header-top__text--center::after,
.header-top__text--center::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('assets/img/20.webp');
  display: block;
  background-size: cover;
} */

.header-top__text--center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  column-gap: 10px;
}

.header-top__text--right {
  text-align: right;
}

.main-header {
  background: var(--dark)
}

.main-header .custom-logo-link img {
  max-height: 65px;
  width: auto;
}

.main-header .navbar-nav .nav-link,
.main-header .navbar-nav .nav-link.active {
  color: var(--white);
}

.main-header .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0px;
  font-size: var(--theme-fs-body);
}

.main-header .navbar-nav {
  column-gap: 40px;
}

.dropdown-menu {
  transform: translateX(-50%);
  left: 50% !important;
  border-radius: 0px;
  background: var(--dark);
  color: var(--white);
  padding-top: 0px;
  padding-bottom: 0px;
}

.dropdown-menu a {
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  width: 300px;
  white-space: normal;
}

.dropdown-menu li+li a {
  border-top: 1px solid #BDDC8657;
}

/* 404 */

.error-404.not-found {
  text-align: center;
  padding: 130px 0;
  background: var(--secondary);
}

/* Default Page Title */
.page__title {
  margin-top: 45px;
  margin-bottom: 45px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.theme-page-content {
  padding-bottom: 30px;
}

.theme-page-content>* {
  margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
  .page__title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* Footer */

footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 0px;
  padding-bottom: 0px;
}

footer .footer-top {
  padding-top: 60px;
  padding-bottom: 60px;
}

footer ul {
  list-style: none;
  padding: 0px;
}

.footer-social {
  display: flex;
  column-gap: 30px;
  margin-bottom: 0px;
  padding-bottom: 10px;
  margin-top: 80px;
}

.footer-social li svg {
  height: 26px;
  width: 26px;
  object-fit: contain;
}

.footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_contact-item {
  margin-top: 24px;
}

/* .footer-bottom hr {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #BDDC8657;
  opacity: 1;
  margin-bottom: 0px;
} */

.footer-menu {
  margin: 0px;
  /*   column-count: 2; */
}

.footer-menu li+li {
  margin-top: 24px;
}

.footer-menu li {
  padding-right: 10px;
}

.footer_contact-item h5 {
  font-size: 24px;
  line-height: 33px;
}

.footer_contact-item a {
  font-size: 18px;
  line-height: 24px;
}

.footer-menu li a {
  font-size: 16px;
  line-height: 24px;
}

.footer-credits p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0px;
}

.footer-bottom {
  background: var(--primary);
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-credits {
  text-align: right;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-start;
  text-align: right;
  column-gap: 10px;
  margin-bottom: 0px;
}

.footer-bottom-links p a {
  font-size: 16px;
  line-height: 22px;
}

footer .footer-logo {
  height: auto;
  width: 250px;
  margin-bottom: 30px;
}

footer .footer-logo a {
  display: block;
}

footer .footer-logo img {
  width: 100%;
  height: auto;
}

.footer-widget__block h5 {
  font-size: 24px;
  font-family: var(--font-accent);
  margin-bottom: 30px;
}

.footer_contact-item h4 {
  font-size: 18px;
  font-family: var(--fontbody);
}

/* Utilities */
.bg-layer {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  user-select: none;
}

.bg-layer.have-overlay::after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
}

.bg-smoke-white {
  background: var(--smoke-white)
}

.media-cover>* {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.btn-theme {
  padding: 24px 30px;
  min-width: 200px;
  border-radius: 20px;
  font-size: var(--theme-fs-body);
  line-height: var(--theme-line-height);
  font-weight: bold;
  transition: 0.4s ease;
}

.btn-theme--primary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
}

.btn-theme--primary:hover {
  color: var(--dark);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: 0px 0px 1px 0px var(--secondary);
}

.btn-theme--secondary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-theme--secondary:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 1px 0px var(--primary);
}

.btn-theme--outline-secondary {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  box-shadow: 0px 0px 1px 0px var(--secondary);
}

.btn-theme--outline-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  border: 1px solid var(--secondary);
}


.column__shortcode form .gform_fields .gfield .gfield_label {
  color: var(--white);
  font-size: var(--theme-fs-body);
  line-height: var(--theme-line-height);
  margin-bottom: 8px;
  padding-left: 10px;
  font-weight: normal;
  width: 100%;
}

.column__shortcode form .gform_fields {
  row-gap: 20px !important;
  column-gap: 20px !important;
}

.column__shortcode form .gform_fields .gfield input,
.column__shortcode form .gform_fields .gfield textarea {
  min-height: 60px;
  font-size: var(--theme-fs-body-2);
  line-height: var(--theme-line-height);
  padding: 15px;
  outline: none;
  background: var(--white);
  border-radius: 20px;
  border: 0px;
}


.column__shortcode form .gform-footer {
  margin-top: 40px !important;
  margin-bottom: 0px !important;
  justify-content: center !important;
  padding: 0px !important;
}

.column__shortcode .gform_footer.top_label {
  justify-content: center;
}

.column__shortcode form .gform_button {
  padding: 24px 30px;
  min-width: 200px;
  border-radius: 20px;
  font-size: var(--theme-fs-body);
  line-height: var(--theme-line-height);
  font-weight: bold;
  background: var(--extra-color);
  color: var(--white);
  border: 1px solid var(--primary);
}


.column__shortcode form .gform_button:hover {
  background-color: transparent !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  box-shadow: 0px 0px 1px 0px var(--primary) !important;
}

.column__shortcode .gform_validation_errors {
  display: none !important;
}

/* Section */
.section-block {
  padding: var(--section-padding) 0px;
}

.section-block--screen-height {
  height: 100vh;
}

/* Blocks */

/* fullwidth media with text -- Start */
.fullwidth-media-with-text--have-media {
  position: relative;
  color: var(--white);
}

.fullwidth-media-with-text--have-media .content-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
}

.fullwidth-media-with-text--have-media .content-wrap--top {
  align-items: start;
}

.fullwidth-media-with-text--have-media .content-wrap--middle {
  align-items: center;
}

.fullwidth-media-with-text--have-media .content-wrap--bottom {
  align-items: end;
}

.fullwidth-media-with-text--have-media .content-wrap--start {
  justify-content: start;
}

.fullwidth-media-with-text--have-media .content-wrap--center {
  justify-content: center;
}

.fullwidth-media-with-text--have-media .content-wrap--end {
  justify-content: end;
}

.fullwidth-media-with-text .fullwidth-media-with-text_content-wrap--full-width {
  max-width: 100%;
}

.fullwidth-media-with-text .fullwidth-media-with-text_content-wrap--medium-width {
  max-width: 1080px;
}

.fullwidth-media-with-text .media-with-text_title {
  margin-top: 20px;
  margin-bottom: 0px;
}

.fullwidth-media-with-text .media-with-text_text {
  margin-top: 20px;
}

.fullwidth-media-with-text .media-with-text_btn-wrap {
  margin-top: 30px;
}

.media-with-text_badge-list {
  display: flex;
  justify-content: center;
  column-gap: 80px;
  margin-top: 110px;
}

.media-with-text_badge-list .icon {
  width: 110px;
  height: 110px;
}

.media-with-text_badge-list .icon img {
  width: 100%;
  height: 100%;
}

/* fullwidth media with text -- End */

/* Icon Boxes -- Start */

.icon-box__block {
  padding: 8px 30px;
}

.icon-box__block--icon-top {
  text-align: center;
}

.icon-box__block--icon-top .icon-box__icon {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.icon-box__block--icon-left {
  display: flex;
  column-gap: 28px;
}

.icon-box__block--icon-left .icon-box__icon {
  margin: 0px;
}

.icon-box__block--icon-left .icon-box__content {
  width: calc(100% - 100px);
}

.icon-box__icon {
  padding: 12px;
  /*   background-color: var(--smoke-white); */
  width: 72px;
  height: 72px;
  border-radius: 50px;
}

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

/* Icon boxes adjustments as per theme */
.icon-box__block--icon-top {
  padding: 0px;
}

.icon-box__block--icon-top .icon-box__icon {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  padding: 0px;
  background: none;
  border-radius: 30px;
  overflow: hidden;
}

.icon-box__block--icon-top .icon-box__icon img {
  object-fit: cover;
}

.icon-box__content .icon-box__text h3,
.icon-box__content .icon-box__text h2,
.icon-box__content .icon-box__text h1,
.icon-box__content .icon-box__text h4 {
  font-size: var(--theme-fs-5);
  font-family: var(--fontheading);
  color: var(--secondary);
  font-weight: 500;
}

/* .icon-box__content .icon-box__text p{
    color: var(--white);
} */

.bg-smoke-white .title span {
  color: var(--accent)
}

/* Icon Boxes -- End */

/* Slider */
.slide-block {
  display: block;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.slide-block {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
}

.slide-block .bg-layer {
  z-index: -1;
}

.slide-block .info {
  padding: 60px 40px;
}

/* Theme Adjustment for slider */

.slider-card-swiper .swiper-button-next,
.slider-card-swiper .swiper-button-prev {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50px;
}

.slider-card-swiper .swiper-button-next::after,
.slider-card-swiper .swiper-button-prev::after {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent);
}

.slider-card-swiper .swiper-button-prev {
  left: calc(8% - 50px);
}

.slider-card-swiper {
  padding-left: 8%;
}

.slide-block .info {
  color: var(--white);
}

.slide-block .info .slider_card-title {
  font-size: 24px;
  font-family: var(--font-accent);
  font-style: italic;
}

.slider-card_title.title span {
  display: inline;
}

/* Slider End */

/* Contact Details Section -- Start */

.contact-details-section {
  text-align: center;
}

.contact-details-section .icon-box__block {
  display: flex;
  text-align: left;
  column-gap: 36px;
  padding: 0px;
  width: 25%;
}

.contact-details-section .icon-box__icon {
  padding: 16px;
}

.contact-details-section .icon-box__content {
  width: calc(100% - 108px);
}

.contact-details-section .icon-box__blocks-wrap {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  margin-top: 80px;
}

.contact-details-section .icon-box__title-icon {
  margin-bottom: 30px;
}

/* Contact Details Section -- End */

/* Google Review with Text -- Start */

.g-reviews-with-text_content--text-center {
  text-align: center;
}

.g-reviews-with-text_title {
  margin-top: 28px;
}

.g-reviews-with-text_text {
  margin-top: 18px;
}

.g-reviews-with-text_btn-wrap {
  margin-top: 32px;
}

/* Google Review with Text -- End */

/* Image with Text -- Start */

.image-with-text .no-container .image-with-text_content {
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-with-text.no-padding {
  padding: 0px;
}

.image-with-text .container .image-with-text_content {
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.image-with-text .no-container .image-with-text_content .content-wrap {
  max-width: 650px;
}

.image-with-text .image-with-text_image-wrap {
  min-height: 100%;
  height: 100%;
}

.image-with-text .image-with-text_icon {
  margin-bottom: 24px;
}

.image-with-text .image-with-text_title {
  margin-bottom: 30px;
}

.image-with-text .image-with-text_btn-wrap {
  margin-top: 40px;
}

/* Adjustments */

.image-with-text_content.text-dark .title span {
  color: var(--accent);
}

.image-with-text_content.text-dark .btn-theme--primary {
  background: var(--extra-color);
}

.image-with-text_content.text-dark .btn-theme--primary:hover {
  background: var(--secondary);
}

/* Image with Text -- End */

/* Timeline -- Start */

.timeline {
  position: relative;
}

.timeline .default-line {
  position: absolute;
  left: 0%;
  width: 2px;
  background: rgb(73 105 77 / 70%);
  height: 100%;
  opacity: 0.7;
}

.timeline .draw-line {
  width: 2px;
  height: 0;
  position: absolute;
  left: 0%;
  background: #49694D;
}

.timeline-block {
  background: #E7EDED;
}

.timeline-left .image-and-text__title {
  font-size: 32px;
}

.timeline-left .title-wrap {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.timeline h3 {
  font-size: 24px;
}

.timeline p {
  font-size: 16px;
}

.timeline ul li+li {
  margin-top: 100px;
}

.timeline {
  padding-left: 60px;
}

.timeline ul {
  padding: 0px;
  list-style: none;
  margin: 0px;
}

.timeline ul li::before {
  content: '';
  width: 46px;
  height: 46px;
  background: #ffffff;
  position: absolute;
  left: -23px;
  top: auto;
  border-radius: 40px;
  border: 2px solid #ffffff;
}

.timeline ul li.in-view::before {
  border-color: #49694D;
}

.timeline-left .img-wrap img {
  mix-blend-mode: multiply;
}

/* Timeline -- End */

/* Gallery Slider -- Start */

.gallery-slider-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.image-gallery-swiper .gallery-img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}

/* Gallery Slider -- End */


/* Text Grid -- Start */

.text-grid-section {
  background: #E7EDED;
}

.text-grid-section .detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 30px;
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.text-grid-section .detail-list-item h3 {
  font-size: 20px;
  font-weight: 500;
}

.text-grid-section .detail-list-item p {
  font-size: 16px;
}

.text-grid-section .title-wrap {
  padding-right: 60px;
}

/* Text Grid -- End */

/* Collapsible Content -- Start */

.collapsible-content-section .collapsible-content__title-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.collapsible-content-section {
  /*   padding-top: 100px;
  padding-bottom: 120px; */
  background: #E7EDED;
}

.collapsible-content-section .accordion-item {
  background: none;
  border-color: #72A993;
}

.collapsible-content-section .accordion-body,
.collapsible-content-section .accordion-button {
  padding: 20px 15px;
  background: none;
}

.collapsible-content-section .accordion-body {
  padding-top: 0px;
}

.collapsible-content-section .collapsible__item-title {
  font-size: 20px;
  font-weight: 500;
}

.collapsible-content-section .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: none;
  padding-bottom: 20px;
  transition: 0.3s ease;
}

.collapsible-content-section .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

/* Collapsible Content -- End */

/* Stats with testimonials */

.stats-testimonials-section {
  background: var(--primary);
  color: var(--white);
}

.stats-testimonials-section .stats-counter-wrap {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 2px solid var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.stats-testimonials-section .stats-counter-item .count {
  font-size: 40px;
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.stats-testimonials-section .content-wrap {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 1600px) {
  .stats-testimonials-section .stats-counter-wrap {
    column-gap: 60px;
  }

  .stats-testimonials-section .stats-counter-item .count {
    font-size: 52px;
  }

  .stats-testimonials-section .content-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.stats-testimonials-section .stats-counter-item {
  text-align: center;
}

.stats-testimonials-section .stats-counter-item p {
  font-size: 16px;
}

.stats-testimonials-section .tsm-item .starts-wrap {
  color: #D7B447;
  margin-bottom: 15px;
}

.stats-testimonials-section .tsm-item .testimonial-content .wp-editor {
  font-size: 16px;
  margin-bottom: 20px;
}

.stats-testimonials-section .tsm-item .tsm-meta .name {
  font-size: 14px;
}

.stats-testimonials-section .tsm-item .designation {
  font-size: 14px;
  margin-bottom: 0px;
}

/* Testimonials -- End */


/* From Reusable Components */
.services_column_section .cta__title {
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}

.services_column_section .cta__sub_title {
  text-align: center;
}

.cta-grid__wrapper {
  display: grid;
  column-gap: 16px;
  row-gap: 16px;
  margin-top: 65px;
}

.cta-grid__wrapper--col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cta-grid__wrapper--col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cta-grid__item {
  background: var(--white);
}

.cta-grid__item .cta-grid__item-inner {
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 100%;
}

.cta-grid .cta-grid__item-image {
  max-width: 180px;
  width: 100%;
}

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

.cta-grid .cta-grid-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-grid .cta-grid-content {
  padding: 30px 20px 30px 24px;
  width: calc(100% - 180px);
}

.cta-grid__item-title {
  font-size: 20px;
}

/* Theme based changes on cta-grid */

/* .services_column_section {
    background: var(--smoke-white);
} */

.cta-grid__item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.cta-grid .cta-grid__item-image {
  max-width: 230px;
}

.cta-grid .cta-grid-content {
  width: calc(100% - 230px);
}

.cta-grid__item-title {
  font-size: 20px;
  font-weight: 500;
}

.three_coloum_with_img .column__content-container {
  padding: 60px 90px 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  background: #000000;
  color: var(--white);
}

.three_coloum_with_img .column__image>*,
.three_coloum_with_img .column__content>* {
  height: 100%;
}

.three_coloum_with_img {
  padding-top: 0px;
  padding-bottom: 0px;
}

.three_coloum_with_img .column__title,
.three_coloum_with_img .column__description {
  text-align: center;
}

.three_coloum_with_img .column__description {
  font-size: var(--theme-fs-body);
}

.three_coloum_with_img .column__content-wrap .title-wrap {
  margin-bottom: 30px;
}

.three_coloum_with_img .gform_heading {
  display: none;
}

.featured-post .title-wrap {
  margin-bottom: 50px;
}

.featured-post .feat__item .img-wrap {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 46/42;
  margin-bottom: 24px;
}

.featured-post .feat__item .feat__item-title {
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-style: italic;
}

.featured-post .feat__item .feat__item-title a:hover {
  color: var(--primary);
}

.featured-post .feat__item .feat-text p {
  margin-bottom: 0px;
}

.btn-basic {
  font-size: 18px;
  line-height: 27px;
  color: var(--primary);
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.btn-basic:hover {
  color: var(--dark);
  text-decoration: underline;
}

/* Website Sections */
#our-features {
  padding-top: 57px;
  padding-bottom: 42px;
}

#our-features .icon-box__block {
  padding-top: 0px;
  padding-bottom: 0px;
}

#our-google-reviews {
  padding-top: 56px;
  padding-bottom: 77px;
}

#about-us-summary {
  padding-top: 0px;
  padding-bottom: 0px;
}

#our-services {
  padding-top: 100px;
  padding-bottom: 145px;
  background-color: var(--off-white);
}

#our-blogs {
  padding-top: 100px;
  padding-bottom: 100px;
}

#service-header {
  padding: 0px;
}

#service-header .image-with-text_title {
  font-size: var(--theme-fs-1);
  line-height: 72px;
  margin-bottom: 15px;
}

#service-header .btn-theme--primary {
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

#service-header .image-with-text_btn-wrap {
  margin-top: 30px;
}

#service-section-1 .image-with-text_title,
#service-section-2 .image-with-text_title,
.image-with-text:not(.no-padding) .image-with-text_title,
#service-section-1 h2,
#service-section-2 h2,
.image-with-text:not(.no-padding) h2 {
  font-size: var(--theme-fs-2);
  line-height: 34px;
  margin-bottom: 15px;
}

#service-section-1 .image-with-text_text,
#service-section-2 .image-with-text_text,
.image-with-text:not(.no-padding) .image-with-text_text {
  font-size: 16px;
}

#service-section-2 .image-with-text_text ul,
.image-with-text_content--fancy-list .image-with-text_text ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 28px;
  row-gap: 28px;
  padding: 0px;
  list-style: none;
  margin-top: 30px;
}

#service-section-1,
#service-section-2,
.image-with-text:not(.no-padding) {
  padding-top: 70px;
  padding-bottom: 70px;
}

#contact-details {
  color: var(--white);
  padding-top: 50px;
  padding-bottom: 100px;
}

#contact-details .icon-box__block--address a {
  display: inline-block;
}

@media screen and (min-width: 992px) {
  #service-section-1 .col-lg-6:first-child {
    order: 2;
  }
}

#service-section-2 .image-with-text_text ul li::before,
.image-with-text_content--fancy-list .image-with-text_text ul li::before {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  content: '';
  background: url('assets/img/list-bullet.png');
  background-size: cover;
  display: block;
  margin-right: 10px;
  border-radius: 20px;
}

.image-with-text_content--fancy-list .image-with-text_text ul li {
  display: flex;
}

.image-with-text .image-with-text_content--with-links .contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 10px;
  list-style: none;
  padding: 0px;
  margin-top: 30px;
  color: var(--secondary);
  font-family: var(--fontheading);
}

.image-with-text .image-with-text_content--with-links .social-list {
  list-style: none;
  padding: 0px;
  display: flex;
  column-gap: 20px;
  margin-top: 30px;
  margin-bottom: 0px;
}

.image-with-text .image-with-text_content--with-links .contact-list a {
  font-family: var(--fontbody);
  color: #ffffff;
}

.image-with-text .image-with-text_content--with-links .social-list a {
  color: var(--secondary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-with-text .image-with-text_content--with-links .image-with-text_title {
  margin-bottom: 15px;
}

#blog-detail-header {
  background: var(--primary);
}

#blog-detail-header h1 {
  margin: 0px;
}

.blog-content-wrap {
  padding: var(--section-padding) 0px;
}

.blog-content-wrap .wp-editor--blog .wp-block-heading:not(:first-child),
.blog-content-wrap .wp-editor--blog h2:not(:first-child) {
  margin-top: 36px;
}

.blog-content-wrap .wp-editor--blog h3 {
  margin-top: 20px;
  font-size: 24px;
}

#related-blog {
  background: var(--secondary);
}

.gallery-slider-section .swiper-button-next,
.gallery-slider-section .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #1D2629;
  padding: 10px;
  border-radius: 40px;
}

.gallery-slider-section .swiper-button-next::after,
.gallery-slider-section .swiper-button-prev::after {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}

.gallery-slider-section .swiper-button-next .swiper-navigation-icon,
.gallery-slider-section .swiper-button-prev .swiper-navigation-icon{
    color: #ffffff !important;
    width: 8px;
}

@media screen and (min-width: 992px){
	.gallery-slider-section .swiper-button-next {
		right: 16%;
	}

	.gallery-slider-section .swiper-button-prev {
		left: 16%;
	}
}

#service-blogs.bg-smoke-white {
  background: #d3dede;
}

@media screen and (max-width: 1300px) {
  :root {
    --theme-fs-body-2: 14px;
    --theme-fs-body: 16px;
    --theme-fs-2: 20px;
    --theme-fs-3: 32px;
    --theme-fs-1: 36px;
    --theme-fs-0: 36px;
    --theme-line-height: 1.3;
    --section-padding: 36px;
    font-size: 14px;
  }

  .fullwidth-media-with-text .media-with-text_text {
    font-size: 18px;
  }

  #service-header .image-with-text_title {
    font-size: 32px;
  }

  .footer-bottom-links {
    font-size: 14px;
  }

  .footer-credits p {
    font-size: 14px;
  }

  .slider-card-swiper .swiper-button-next::after,
  .slider-card-swiper .swiper-button-prev::after {
    font-size: 18px;
  }

  .text-grid-section .detail-list-item h3 {
    font-size: 14px;
  }

  .collapsible-content-section .collapsible__item-title {
    font-size: 16px;
  }

  .timeline-left .image-and-text__title {
    font-size: var(--theme-fs-2);
  }

  .timeline h3 {
    font-size: var(--theme-fs-2);
  }

  .text-grid-section .detail-list-item h3 {
    font-size: 18px;
  }
	
	.footer_contact-item a, .footer-menu li a {
		font-size: 14px;
	}
}

@media screen and (max-width: 992px) {
  :root {
    --theme-fs-body-2: 14px;
    --theme-fs-body: 16px;
    --theme-fs-2: 20px;
    --theme-fs-3: 32px;
    --theme-fs-1: 36px;
    --theme-fs-0: 36px;
    --theme-line-height: 1.3;
    --section-padding: 36px;
    font-size: 14px;
  }

  .fullwidth-media-with-text .media-with-text_text {
    font-size: 18px;
  }

  .icon-box__block--icon-left {
    padding-left: 20px;
  }

  .icon-box__block--icon-left .icon-box__content {
    width: calc(100% - 92px);
  }

  #our-features {
    padding: 40px 0px;
  }

  #our-google-reviews {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .image-with-text .no-container .image-with-text_content {
    padding: 40px 30px;
  }

  #our-services {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .cta-grid__wrapper {
    margin-top: 30px;
  }

  .three_coloum_with_img .column__content-container {
    padding: 40px 30px;
  }

  .three_coloum_with_img .column__image {
    max-height: 450px;
  }

  #our-blogs {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .header-top__text--right {
    text-align: center;
  }

  .header-top {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .btn-theme,
  .column__shortcode form .gform_button {
    padding: 15px 12px;
    min-width: 140px;
  }

  .column__shortcode form .gform-footer {
    margin-top: 24px !important;
  }

  .cta-grid__wrapper--col-3,
  .cta-grid__wrapper--col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .cta-grid__item .cta-grid__item-inner {
    display: block;
  }

  .cta-grid__item .cta-grid__item-inner>* {
    width: 100%;
    max-width: 100%;
  }

  .main-header .dropdown-menu {
    left: 0px;
    transform: translateX(0px);
    width: 100%;
  }

  .main-header .dropdown-menu a {
    width: 100%;
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .main-header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px;
  }

  .main-header .custom-logo-link img {
    max-height: 100%;
    width: 150px;
    height: auto;
  }

  .main-header .navbar-toggler {
    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 5px;
  }

  .main-header .navbar-toggler .navbar-toggler-icon {
    filter: invert(1) brightness(5);
    color: var(--white);
  }

  #service-header .image-with-text_title {
    font-size: 32px;
    line-height: 36px;
  }

  .image-with-text .container .image-with-text_content {
    padding: 30px 15px;
    padding-bottom: 0px;
  }

  #service-section-2 .image-with-text_text ul,
  .image-with-text_content--fancy-list .image-with-text_text ul {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 20px;
    row-gap: 30px;
  }

  #service-section-1,
  #service-section-2,
  .image-with-text:not(.no-padding) {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-with-text:not(.no-padding) .image-with-text_title,
  .image-with-text:not(.no-padding) h2 {
    line-height: 28px;
  }

  .collapsible-content-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .image-with-text .image-with-text_title {
    margin-bottom: 24px;
  }

  .contact-details-section .icon-box__blocks-wrap {
    flex-direction: column;
    margin-top: 30px;
    row-gap: 40px;
  }

  .contact-details-section .icon-box__block {
    width: 100%;
  }

  .footer-menu {
    column-count: 1;
    margin-top: 30px;
  }

  .footer-menu li {
    padding: 0px;
    margin: 0px;
  }

  .footer-menu li+li {
    margin: 0px;
    border-top: 1px solid #BDDC8657;
  }

  .footer-menu li a {
    padding: 10px 0px;
    display: inline-block;
  }

  .footer-bottom-links {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
  }

  .footer-credits p {
    text-align: center;
    font-size: 14px;
  }

  footer {
    padding-bottom: 20px;
  }

  footer .footer-logo {
    margin-left: auto;
    margin-right: auto;
    max-height: 100%;
    width: 250px;
    margin-bottom: 30px;
  }

  .footer-social {
    column-gap: 20px;
    justify-content: center;
  }

  /* CCE */
  .media-with-text_badge-list {
    column-gap: 30px;
  }

  .media-with-text_badge-list .icon {
    width: 80px;
    height: 80px;
  }

  .cta-grid .cta-grid-content {
    padding: 24px 15px;
  }

  .cta-grid__item-text {
    margin-bottom: 0px;
  }

  .column__image.column__image--right {
    display: none;
  }

  .slider-card-swiper .swiper-button-next,
  .slider-card-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  .slider-card-swiper .swiper-button-next::after,
  .slider-card-swiper .swiper-button-prev::after {
    font-size: 18px;
  }

  .slider-card-swiper .swiper-button-prev {
    left: calc(8% - 25px);
  }

  .slide-block .info {
    padding: 40px 24px;
  }

  .text-grid-section .detail-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
  }

  .text-grid-section .detail-list-item h3 {
    font-size: 14px;
  }

  .text-grid-section .detail-list-item p:empty {
    display: none;
  }

  .timeline .default-line {
    left: 20px;
  }

  .timeline .draw-line {
    left: 20px;
  }

  .timeline ul li::before {
    left: 0px;
    width: 40px;
    height: 40px;
  }

  .collapsible-content-section .collapsible__item-title {
    font-size: 16px;
    padding-right: 8px;
  }

  .timeline-left .image-and-text__title {
    font-size: var(--theme-fs-2);
  }

  .timeline h3 {
    font-size: var(--theme-fs-2);
  }

  /* Footer overwrites */
  footer .footer-logo img {
    width: 180px;
  }

  footer .footer-logo a {
    text-align: center;
  }

  .footer-social {
    margin-top: 40px;
    margin-bottom: 30px;
    padding-bottom: 0px;
  }

  .footer-widget__block {
    margin-top: 30px;
  }

  footer {
    padding-bottom: 0px;
  }

  .footer-bottom {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .footer-bottom-links {
    margin-top: 0px;
    margin-bottom: 10px;
  }

  footer .footer-top {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-widget__block h5 {
    margin-bottom: 20px;
  }

  /* header overwrites */
  .main-header .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 20px;
    text-transform: uppercase;
    border-top: 1px solid #BDDC8657;
  }

  .main-header .navbar-nav {
    padding-top: 30px;
  }

  .section-block--screen-height {
    height: auto;
  }

  .text-grid-section .title-wrap {
    padding-right: 0px;
    margin-bottom: 30px;
  }

  .text-grid-section .detail-list-item h3 {
    font-size: 18px;
  }

  .stats-testimonials-section .content-wrap {
    padding: 0px;
  }

  .stats-testimonials-section .stats-counter-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .testimonials-slider-wrappar {
    margin-top: 40px;
    text-align: center;
  }
}