@charset "UTF-8";

/*
Theme Name: Kanda One-Page Theme

Author: Kanda Consulting

Description: WordPress theme, for a one-page, scrolling website, designed and built by Kanda Consulting.

Version: 1.0

*/

/*****************************

FONTS

*******************************/

/* @font-face {
    font-family: 'Font Name Example';
     src: url('fonts/'),
          url('fonts/');
} */
/* font-family: "arsenal", sans-serif;
font-weight: 400;
font-style: normal; 


  font-family: "Manrope", sans-serif;
*/

/*****************************

VARIABLES

*******************************/

:root {
  /* colours */
  --primary-color: #132b1d;
  --secondary-color: #ff633e;
  --light-primary: rgba(255, 102, 51, 0.15);
  --third-color: #000000;
  --white-text: #ede8e1;
  --gold: #96764b;

  /* fonts */

  --primary-font: "Manrope", sans-serif;
  --secondary-font: "arsenal", sans-serif;

  /* margin between sections */
  --section-margin: 25px;

  /* text sizes and heights */

  --text-size: 20px;
  --text-line-height: 150%;
  --nav-size: 18px;

  /* visual elements */

  --box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.05);
  --sub-heading-color: #fff;

  /* buttons */

  --button-color: var(--primary-color);
  --button-hover-color: var(--secondary-color);
  --button-text-size: 16px;
}

/* 

==========================================

GENERAL RULES

These are CSS rules that affect elements across all pages (headings, text, lists etc)

=========================================

*/

html {
  scroll-behavior: smooth;
  height: fit-content;
}

body {
  overflow-x: hidden;
}

p,
ul li,
ol li,
label,
textarea,
input,
legend {
  line-height: var(--text-line-height);
  font-size: var(--text-size);
  font-family: var(--primary-font);
  font-weight: 400;
  font-style: normal;
  color: var(--third-color);
}

ol,
ul {
  padding-left: 0px !important;
}

ol li {
  list-style: decimal !important;
}

ul li {
  list-style: disc !important;
}

ol li,
ul li {
  list-style-position: inside !important;
}

b,
strong {
  font-weight: bold !important;
}

/* headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-weight: bold;
  color: #000000;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 38px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 22px;
  }
}

/* 

==========================================

GENERAL CLASSES

These are classes that effect things across the whole site (e.g. shadows, hover effects etc)

=========================================

*/

.container {
  max-width: 900px;
  padding-left: 15px;
  padding-right: 15px;
}

.nav_margin {
  margin-top: 120px;
}

.content_section {
  padding-top: 120px;
}

.top_content {
  margin-top: 25px;
}

button,
.button {
  padding: 14px 20px;
  background-color: var(--primary-color);
  color: var(--white-text);
  border: 1px solid var(--primary-color);
  font-family: var(--secondary-font);

  font-size: 20px;
  min-height: initial !important;
  line-height: initial !important;
}

button:hover,
.button:hover {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease-in;
}

.full_width_image {
  width: 100%;
}

.clearfix {
  clear: both;
}

/* 

=========================================================

GRAVITY FORMS

=========================================================

*/

.gfield_required .gfield_required_text {
  color: black !important;
}
.grecaptcha-badge {
  z-index: 100;
}

.ginput_recaptcha iframe {
  height: 78px;
}

/* Hides Gravity Forms spinner on form submit */

body img.gform_ajax_spinner {
  display: none !important;
}

.gform_title,
.gform_validation_errors {
  display: none;
}

.gfield--type-captcha label {
  display: none !important;
}

.gfield_validation_message {
  border: 0px !important;
  padding: 0px !important;
  margin-top: 15px !important;
  background-color: transparent !important;
}

.gfield--type-captcha label {
  display: none !important;
}

.gform_confirmation_message {
  font-size: var(--text-size);
  font-weight: bold;
  font-family: var(--primary-font);
  margin-top: 15px;
  margin-bottom: 15px;
}

.gform_description {
  display: none !important;
}

/* contact form */

#gform_1 .ginput_container_text input,
#gform_1 .ginput_container textarea,
.name_first input,
.ginput_container_email input {
  padding: 12px !important;
  border: 1px solid black;
}

#gform_1 .gfield {
  text-align: left !important;
}

#gform_submit_button_1 {
  padding: 12px 20px !important;
}

#gform_confirmation_wrapper_1 {
  margin-bottom: 1em;
  font-family: var(--primary-font);
}
.gform_wrapper.gravity-theme
  .ginput_complex:not(.ginput_container_address)
  span:not([style*="display:none"]):not(.ginput_full) {
  padding-right: 0px !important;
}

/* mailing list */

#input_2_1 {
  display: block;
  width: 100%;
  border: 1px solid black;
  max-width: 500px;
}

/* 

=========================================================

POP UP

=========================================================

*/

.overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  background-repeat: repeat;
  z-index: 99999;
  overflow: scroll;
  background-image: url("img/overlay.png");
  background-repeat: repeat;
}

.pop_up_close {
  margin-left: 15px;
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: bold;
  text-align: right;
}

.pop_up_close:hover i {
  color: var(--white-text);
  cursor: pointer;
}

/* text pop-up */

.pop_up_content {
  width: 900px;
  margin: auto;
  margin-bottom: auto;
  padding-left: 15px;
  padding-right: 15px;

  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-bottom: 50px;
  z-index: 999;
}

.pop_up_overlay {
  max-width: 100%;
  padding: 50px;
  margin-top: 10px;
  background-color: var(--white-text);
  border-radius: 10px;
}

.pop_up_overlay .content_text_block a {
  color: var(--third-color);
  text-decoration: underline;
}

.pop_up_overlay .content_text_block a:hover {
  color: var(--primary-color);
  transition: all 0.3s ease-in;
  text-decoration: underline;
}

@media screen and (max-width: 1250px) {
  .pop_up_content {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    transform: none;
    top: 135px;
    left: 0px;
  }

  .pop_up_overlay {
    margin-bottom: 100px;
    padding: 20px;
  }
}

/* image pop-up */

.overlay_image {
  margin-top: 10px;
}

.overlay_image img {
  width: 100%;
}

.overlay_content {
  width: 100%;
  margin: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-top: 135px;
  margin-bottom: 75px;
  padding-left: 10%;
  padding-right: 10%;
}

/* 

=========================================================

HEADER

=========================================================

*/

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
  z-index: 99;
  background-color: var(--primary-color);
  /* -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow); */
}

header .container {
  padding-left: 0px;
  padding-right: 0px;
  max-width: 1250px;
}

header .logo {
  float: left;
  margin-top: 27px;
  margin-left: 15px;
  max-width: 250px;
}

.logo img {
  width: 100%;
}

/* nav */

header nav {
  float: right;
  margin-right: 15px;
}

header nav ul li {
  display: inline-block;
  margin-left: 20px;
  padding-top: 40px;
}

header nav ul li a {
  color: var(--white-text);
  font-family: var(--primary-font);
  font-weight: 500;
  font-style: normal;
  font-size: var(--nav-size);
}

header nav ul li.active {
  border-top: 3px solid var(--secondary-color);
}

header nav ul li a:hover {
  text-decoration: none;
  color: var(--white-text);
}

a.have_your_say {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 5px 10px;
}

a.have_your_say:hover {
  color: var(--third-color);
  background-color: #fff;
  transition: all 1s ease;
}

/* mobile button */

.mobile_button {
  width: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-top: 47px;
  float: right;
  margin-right: 15px;
  display: none;
}

.mobile_button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* for the animation when mobile button is clicked clicked */

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

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

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

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

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

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

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

/* responsive - when mobile menu shows */

@media screen and (max-width: 1103px) {
  .mobile_button {
    display: block;
  }

  header nav {
    width: 100%;
    display: none;
    background-color: var(--primary-color);
    margin-right: 0px;
    margin-top: 28px;
  }

  header nav ul li {
    text-align: center;
    display: block;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  header nav ul li:last-child {
    margin-bottom: 0px !important;
  }

  header nav ul li a {
    padding: 0px;
  }

  header nav ul li {
    padding-top: 0px;
  }

  header nav ul li.active {
    border-top: 0px;
  }
}

/* 

==========================================

PAGE BANNER

For homepage and all pages, the image banner at the top of the page

=========================================

*/
.banner_wrapper {
  background-color: var(--primary-color);
  height: 800px;
  position: relative;
  margin-top: -100px;
}
.page_banner {
  height: 430px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: animate-width 1s ease;
}
@keyframes animate-width {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.western-text {
  position: absolute;
  left: -100px;
  top: -60px;
  max-width: 750px;
  width: 100%;
  animation: western 0.4s linear;
}
@keyframes western {
  0% {
    opacity: 0;
    transform: translate(-130px);
  }
  100% {
    opacity: 1;
  }
}
.beach-text {
  position: absolute;
  top: 82%;
  right: -10%;
  left: auto;
  max-width: 700px;
  width: 100%;
  animation: beach 0.4s linear;
}
@keyframes beach {
  0% {
    opacity: 0;
    transform: translate(100px);
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1400px) {
  .western-text {
    left: 0px;
    top: -53px;
  }
  .beach-text {
    left: auto;
    right: 0;
  }
}
.page_banner_content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding-left: 15px;
  padding-right: 15px;
}

.page_banner_content h1 {
  font-family: var(--secondary-font);
}

.page_banner_image {
  max-width: 652px;
  margin: auto;
}

.page_banner_image img {
  width: 100%;
}

.page_banner_text p {
  color: var(--white-text);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.page_banner_text h1 {
  margin-bottom: 1rem;
}

.banner-scroll {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, -50%);
}
.page_banner_scroll {
  position: absolute;
  bottom: 0%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page_banner_scroll img {
  text-align: center;
  margin: auto;
  display: inherit;
  width: 10px;
}

.page_banner_scroll p {
  text-align: center;
  color: white;
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 0px;
  font-family: var(--secondary-font);
}

@media screen and (max-width: 768px) {
  header .logo {
    max-width: 199px;
  }

  .western-text {
    /* padding-left:30px; */
    max-width: 500px;
    width: 100%;
    top: -40px;
  }
  .beach-text {
    left: auto;
    top: 90%;
    max-width: 425px;
  }
  .page_banner {
    height: 400px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page_banner_scroll {
    position: static;
    margin: auto;
    width: 100px;
    transform: none;
    /* margin-top:35px; */
  }
  .page_banner_text p {
    padding-bottom: 0px;
    width: 100%;
  }
  .page_banner_content {
    position: static;
    transform: none;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .banner-scroll {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .western-text {
    width: 100%;

    padding-left: 0px;
    top: -25px;
  }
  .beach-text {
    top: 92%;
  }
}
.section_one_key_statement {
  background-color: var(--secondary-color);
  padding-top: 120px;
  padding-bottom: 120px;
}
.key_statement_text h3 {
  color: #000000;
}
/* 

=========================================================

FIRST SECTION / WELCOME SECTION

=========================================================

*/

.section_heading_welcome {
  display: none;
  text-align: center;
  margin-bottom: 50px;
  margin-top: var(--section-margin);
}

/* 

=========================================================

SECTION HEADINGS

=========================================================

*/

.full_width_section_heading {
  background-color: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.padding-bottom {
  margin-bottom: 120px;
}

.full_width_section_heading h2 {
  color: var(--sub-heading-color);
  text-transform: uppercase;
  margin-bottom: 0px;
}

/* 

=========================================================

CONTENT TEXT BLOCKS

=========================================================

*/

.content_text_block h1,
.content_text_block h2,
.content_text_block h3,
.content_text_block h4,
.content_text_block h5,
.content_text_block h6 {
  margin-bottom: 1rem;
}

.content_text_block a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: underline;
}

.content_text_block a:hover {
  color: var(--third-color);
  text-decoration: underline;
  transition: all 0.3s ease-in;
}

.content_text_block img {
  width: 100%;
  display: block;
  height: auto !important;
}

.content_text_block img:hover {
  opacity: 0.4;
  cursor: pointer;
}

.content_text_block iframe {
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  height: 450px;
}

.wp-caption {
  width: 100% !important;
}

.wp-caption-text {
  text-align: center;
  margin-top: 1em;
}

.content_text_block h6 a {
  color: #000;
  padding: 16px 30px;
  font-weight: 700 !important;
  display: block;
  background-color: var(--secondary-color);
  font-size: 20px;
  text-align: center;
  margin: auto;
  display: inline-block;
  word-wrap: anywhere;
  font-weight: initial;
  text-decoration: none;
}

.content_text_block h6 a:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.content_text_block ul li,
.content_text_block ol li {
  margin-left: 15px;
}

/* 

==========================================

COMPANY INFORMATION

These are for small company logos with supporting content

=========================================

*/

.company_logos {
  margin-top: var(--section-margin);
}

.company_info_content_text_block {
  width: 100%;
  text-align: left;
  margin-top: 15px;
}

.company_info_content_text_block h1,
.company_info_content_text_block h2,
.company_info_content_text_block h3,
.company_info_content_text_block h4,
.company_info_content_text_block h5,
.company_info_content_text_block h6 {
  color: var(--primary-color);
}

.company_logo a:hover img {
  cursor: pointer;
  opacity: 0.4 !important;
}

.company_logo {
  width: initial !important;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
}

.company_logo img {
  max-width: 150px;
}

@media screen and (max-width: 760px) {
  .company_logo {
    width: 225px;
    margin: auto;
    text-align: center;
  }

  .company_info_content_text_block {
    width: 100%;
    margin-top: 25px;
    text-align: center;
  }
}

/* 

==========================================

ICONS

These are for small graphics with text under them

=========================================

*/

.icons {
  margin-top: var(--section-margin);
}
.icon_group {
  text-align: left;
}

.icon {
  max-width: 120px;
}

.icon img {
  width: 100%;
}

.icons p {
  margin-top: 10px;
  padding-right: 30px;
}

/* 
==========================================

SLIDESHOW

For images that get rotated through

=========================================
*/

.carousel {
  margin-top: var(--section-margin);
}

.carousel-caption {
  position: static;
}

.carousel-caption p {
  margin-top: 0px !important;
  text-align: center;
  font-family: var(--primary-font);
  color: var(--third-color);
  margin-bottom: 0px;
}

.carousel-indicators {
  display: none;
}

.carousel-indicators li {
  background-color: white;
  opacity: 0.5;
  list-style: none !important;
  list-style-type: none;
}

.carousel-indicators li:hover {
  background-color: var(--primary-color);
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  opacity: 1 !important;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-size: cover;
  width: 70px;
  height: 70px;
}

.carousel-control-next-icon {
  background-image: url("img/slideshow_arrow_next.png");
}

.carousel-control-prev-icon {
  background-image: url("img/slideshow_arrow_prev.png");
}

@media screen and (max-width: 600px) {
  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    background-size: cover;
    width: 35px;
    height: 35px;
  }
}

/* 

==========================================

DOCUMENTS

For a list of downloadable documents

=========================================

*/

.documents {
  margin-top: var(--section-margin);
}

.downloadable_document {
  margin-bottom: var(--section-margin);
}

.downloadable_document a:hover {
  text-decoration: none !important;
}

.document_container {
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  background-color: var(--primary-color);
  color: white;
}

.document_container:hover {
  cursor: pointer;
  text-decoration: none !important;
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in;
}

.document_container .document_name p {
  color: #ffffff;
}

.document_name {
  margin-bottom: 0px;
  position: relative;
  padding: 15px 15px 15px 15px;
}

.document_name p {
  margin-bottom: 0px;
  color: var(--primary-color);
}

.download_icon {
  width: 34px;
  position: absolute;
  top: 50%;
  right: 25px;
  -ms-transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
}

.document_details {
  margin-top: 25px;
  display: none;
  padding: 0px 15px 15px 15px;
  border: 2px solid var(--primary-color);
  padding-top: 25px;
  margin-top: -10px;
}

.document_showing {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.download_icon {
  width: 44px;
  height: 31px;
  background-image: url("img/download_icon.png");
  background-size: cover;
}

@media screen and (max-width: 600px) {
  .download_icon {
    position: static;
    margin: auto;
    transform: none;
    margin-top: 10px;
  }
}

/* 

==========================================

TYPEFORM

=========================================

*/

.typeform {
  margin-top: var(--section-margin);
}

.tf-v1-widget {
  height: 500px !important;
}

/* 

==================


FAQs

page with questions and answers in an accordion



=========================

*/

.faqs_section {
  margin-top: var(--section-margin);
}

.accordion {
  margin-top: 30px;
}

.card {
  background-color: transparent;
  border: 0px;
  margin-bottom: 15px;
  border-radius: 0px !important;
}

.card:hover {
  border: 0px;
}

.card-body {
  padding: 30px 20px 20px 20px;

  margin-bottom: 15px;
  background-color: var(--secondary-color);
}

.card-header-showing {
  border-radius: 0px !important;
}

.card-body .content_text_block {
  margin-bottom: 0px;
  margin-top: 0px;
}

.card-header {
  background-color: var(--secondary-color);
  padding: 0px;
  position: relative;
  z-index: 2;
  border-radius: 0px !important;
  text-align: left;
  border-bottom: 2px solid black;
}

.card-header h2 {
  font-size: 30px !important;
}

.card-header:first-child {
  border-radius: 10px;
}

.mb-0 button {
  color: var(--third-color);
  margin-left: 10px;
  white-space: normal;
  padding: 15px 15px 15px 15px;

  font-weight: bold;
  font-family: var(--primary-font);
}

.mb-0 button:hover {
  color: var(--third-color);
  text-decoration: none !important;
}

.btn-link {
  color: var(--third-color);
}

.btn-link i {
  color: var(--third-color);
  margin-right: 25px;
}

.btn-link:hover,
.btn-link:active,
.btn-link:visited,
.btn-link:focus {
  color: white;
  text-decoration: none !important;
}

.btn-link span {
  font-size: 26px;
}

@media screen and (max-width: 650px) {
  .card-body {
    padding: 45px 25px 10px 25px;
  }
}

@media screen and (max-width: 375px) {
  .mb-0 button {
    font-size: 16px;
  }

  .card-header {
    padding: 10px;
  }
}

/* 

==================

TIMELINE

Page with blocks, showing progression of a project

=========================

*/

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: var(--section-margin);
}

.timeline_block_heading {
  color: var(--primary-color);
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--third-color);
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: -3px;
}

.container_timeline {
  padding: 15px 25px 10px 25px;
  position: relative;
  background-color: transparent;
  background-color: var(--light-primary);
  width: 100%;
  margin-bottom: 20px;
  /* box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow); */
}

.container_timeline::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  /* right: -7px; */
  left: -8px;
  background-color: var(--third-color);
  border: 4px solid var(--third-color);
  top: 50%;
  margin-top: -8px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
  border-right: 0px;
}

.right {
  left: 0;
  border-left: 0px;
}

/* .right::after {
    left: -8px;
  } */

.timeline_content {
  background-color: transparent;
  position: relative;
  border-radius: 6px;
  color: black;
  text-align: left !important;
}

.timeline_content .content_text_block {
  margin-top: 15px;
  margin-bottom: 0px;
}

.timeline_content .content_text_block:last-child {
  margin-bottom: 0px !important;
}

@media screen and (max-width: 600px) {
  .timeline {
    margin-top: 25px;
  }

  .container_timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 25px;
  }

  .container_timeline::after {
    top: 26px;
  }

  .left::after,
  .right::after {
    left: 23px;
  }

  .right {
    left: 0%;
  }

  .timeline::after {
    left: 31px;
  }
}

/* 

==================

FULL WIDTH IMAGE

=========================

*/

.full_width_image_container {
  /* margin-top:125px; */
}

.full_width_image_container img {
  width: 100%;
}

.full_width_image_caption {
  text-align: center;
  margin-top: 10px;
}

/* 

==================

FOOTER

=========================

*/

footer {
  background-color: var(--white-text);
  padding: 100px 15px 70px 15px;
  color: var(--third-color);
  margin-top: 145px;
  position: relative;
}

footer .container {
  position: relative;
  max-width: 1180px;
}

footer a,
footer p,
footer ul li,
footer ol li {
  color: var(--third-color);
}

footer a {
  text-decoration: underline;
}

footer a:hover {
  color: var(--third-color) !important;
  text-decoration: underline;
  transition: all 0.3s ease-in;
}
.email_link {
  word-break: break-all;
}
.footer_contact_detail {
  margin-bottom: 0px;
}

.footer_menu ul li {
  list-style-type: none !important;
}

.footer_menu ul li a,
.footer_menu ul li a:hover {
  text-decoration: none;
}

.footer_mailing_list {
  border: 2px solid var(--third-color);
  border-radius: 10px !important;
  height: fit-content;
}

.mailing_list_content {
  padding: 22px 29px;
}

.footer_info {
  margin-top: 85px;
  /* padding-top: 25px; */
  border-top: 2px solid black;
  display: flex;
  align-items: end;
  justify-content: space-around;
}
.privacy_policy {
  margin-right: 20px;
}
.privacy_policy p {
  text-transform: uppercase;
}
.footer_info p,
.footer_info a {
  margin-bottom: 0px;
  font-size: 16px !important;
  font-weight: 500;
}
.footer_info div p {
  text-align: right;
  color: var(--third-color);
  margin-bottom: 0px;
  font-style: normal;
  font-size: var(--text-size);
  display: inline-block;
}

.footer_info a {
  color: var(--third-color);
  font-style: normal;
  font-size: var(--text-size);
}

.circle_scroll {
  display: inline-block;
}

.circle_scroll img {
  width: 50px;
  margin-left: 30px;
  margin-top: -70px;
}

.footer_logo {
  max-width: 255px;
  position: absolute;
  bottom: 0;
}

.footer_logo img {
  width: 100%;
}

.footer_info_content {
  float: right;
  padding-right: 25px;
}

.policy_info {
  margin-top: 15px;
}

.back_to_top_icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

@media screen and (max-width: 900px) {
  .footer_info_content,
  .footer_logo {
    float: none;
  }
  .footer_info {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_logo {
    position: relative;
    margin-bottom: 30px;
  }
  .footer_info div p {
    text-align: left;
  }

  .back_to_top_icon {
    display: none;
  }

  .footer_info_content {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .mailing_list_content {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 700px) {
  .circle_scroll {
    display: none;
  }
}
