@font-face {
  font-family: "CenturyGothicBold";
  src: url("../fonts/GOTHICB.woff2") format("woff2"), url("../fonts/GOTHICB.woff") format("woff");
}
@font-face {
  font-family: "CenturyGothic";
  src: url("../fonts/GOTHIC.woff2") format("woff2"), url("../fonts/GOTHIC.woff") format("woff");
}
body {
  font-family: "CenturyGothic";
  max-width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
.bold_text {
  font-family: "CenturyGothicBold";
  color: #55249a;
  text-decoration: none;
  line-height: 2em;
}

p {
  color: #858599;
  line-height: 2em;
  font-size: 1.15em;
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 3.2em;
}

h3 {
  font-size: 2.25em;
}

h4 {
  font-size: 1.5em;
}

.blue_text {
  color: #698dff;
}

.pink_text {
  color: #e679a9;
}

.heather_text {
  color: #967fb8;
}

button,
.button {
  width: 100%;
  padding: 17px;
  border-radius: 100px;
  border: solid 1px;
  background-color: #ffffff;
  font-size: 1.3em;
  transition: ease 0.4s;
  position: relative;
}

.glow_button {
  color: #55249a;
  border-color: #55249a;
}
.glow_button::before {
  content: "";
  background: linear-gradient(90deg, #55249a, #e679a9);
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  filter: blur(17px);
  transition: ease 0.4s;
}
.glow_button:hover, .glow_button:active {
  box-shadow: 0 0 30px 0 rgba(85, 36, 154, 0.5215686275);
}
.glow_button:hover::before, .glow_button:active::before {
  filter: blur(25px);
}

.pink_button {
  color: #e679a9;
  border-color: #e679a9;
}
.pink_button:hover, .pink_button:active {
  box-shadow: 0 0 30px 0 rgba(230, 121, 168, 0.5294117647);
}

.blue_button {
  color: #698dff;
  border-color: #698dff;
}
.blue_button:hover, .blue_button:active {
  box-shadow: 0 0 30px 0 rgba(105, 140, 255, 0.4901960784);
}

.heather_button {
  color: #967fb8;
  border-color: #967fb8;
}
.heather_button:hover, .heather_button:active {
  box-shadow: 0 0 30px 0 rgba(150, 127, 184, 0.5019607843);
}

.small_button {
  width: 250px;
}

.big_button {
  width: 500px;
}

.big_button_container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.loader_button {
  box-sizing: border-box;
  max-height: 78px;
  height: 78px;
  position: relative;
}

.loader_button_svg {
  display: none;
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.loader_button_svg img {
  height: 70px;
}

.disabled_button {
  background-color: #f9f9f9;
  border-color: #858599;
}

.new_container {
  max-width: 1300px;
  margin: 0 auto;
}

.ecologi_section .new_container {
  width: 80%;
}

.grey_section {
  background-color: #ededed;
}

.header_margin {
  margin-bottom: 100px;
}

.section_margin {
  margin-top: 200px;
}

.section_padding {
  padding: 100px 0;
}

ol {
  margin: 80px 0;
}

ol li {
  padding-left: 10px;
  margin-bottom: 20px;
}

ol li:last-of-type {
  margin-bottom: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 10px;
  z-index: 2;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
header nav div {
  position: relative;
}
header nav div .services-drop-down {
  position: absolute;
  background-color: #55249a;
  border-radius: 10px;
  padding: 10px 20px;
  left: -20px;
  white-space: nowrap;
  top: 35px;
  display: none;
}
header nav div .services-drop-down a {
  display: block;
  margin: 10px 0;
}
header nav a {
  font-family: "CenturyGothic", sans-serif;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
}
header nav a.white-nav-link {
  color: #ffffff;
}
header nav a.purple-nav-link {
  color: #e679a9;
}
header nav a img {
  height: 40px;
}

#mobile_header {
  display: none;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  background-color: #55249a;
  height: fit-content;
}
#mobile_header #mobile-header-nav {
  display: flex;
  justify-content: space-between;
  place-items: center;
  width: 100vw;
  height: 32px;
  box-sizing: border-box;
  padding: 40px 20px;
}
#mobile_header #mobile-header-nav a {
  display: block;
  box-sizing: border-box;
}
#mobile_header #mobile-header-nav a#launch-mobile-menu img {
  width: 40px;
  height: 40px;
}
#mobile_header #mobile-header-nav a#mobile-header-logo img {
  width: auto;
  height: 50px;
}
#mobile_header #mobile-header-nav a#mobile-call img {
  height: 35px;
}
#mobile_header #mobile-header-nav a img {
  display: block;
}

#mobile-menu {
  display: none;
  position: fixed;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #55249a;
  overflow-y: scroll;
}
#mobile-menu::-webkit-scrollbar {
  width: 10px;
}
#mobile-menu::-webkit-scrollbar-track {
  visibility: none;
}
#mobile-menu::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 100px;
}
#mobile-menu #mobile-menu-close {
  width: 40px;
  position: fixed;
  right: 20px;
  top: 25px;
}
#mobile-menu #mobile-menu-nav {
  margin: 30px 30px 0 40px;
}
#mobile-menu #mobile-menu-nav .white-nav-link {
  color: #ffffff;
  font-size: 1.5em;
  margin-bottom: 20px;
  display: block;
  font-family: "CenturyGothic", sans-serif;
}
#mobile-menu #mobile-menu-nav .services-drop-down {
  display: none;
  padding-left: 60px;
  opacity: 0.85;
  padding-bottom: 15px;
}

.centre_text {
  text-align: center;
}

footer {
  background-color: #55249a;
  padding-top: 100px;
  color: #ffffff;
}
footer a,
footer p,
footer .bold_text {
  color: #ffffff;
}
footer .footer_grid {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  margin-bottom: 100px;
}
footer .footer_grid .footer_left img {
  width: 100%;
}
footer .footer_grid .footer_left .footer_left_link {
  margin-bottom: 0;
}
footer .footer_grid .footer_left .footer_left_link:last-of-type {
  margin-top: 0;
}
footer .footer_grid .footer_right {
  padding-top: 140px;
  text-align: right;
}
footer .footer_grid .footer_right a {
  display: block;
}
footer .footer_grid .ecologi_badge {
  grid-column: 3;
  align-self: end;
  container-type: unset !important;
}
footer .footer_dark {
  background-color: #2f2a35;
  padding: 100px 0;
  text-align: center;
}
footer .footer_dark .awards_group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  place-items: center;
  grid-gap: 50px;
  margin: 0 auto;
}
footer .footer_dark .awards_group img {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}
footer .footer_dark .awards_group .span2 {
  grid-column: span 2;
}
footer .footer_dark .ecologi {
  margin-top: 30px;
}

#good_work .awards_group img {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}

#header_banner,
#header_nav .sub_menu li,
.title_container,
.patterned_background,
#portfolio_banner {
  background-image: linear-gradient(to right, #55249a, #e679a9);
}

.title_container h1,
#portfolio_banner h1,
#contact_container h1 {
  margin-top: 70px;
  line-height: 1.5em;
}
.title_container h4,
.title_container h3,
.title_container h2,
#portfolio_banner h4,
#portfolio_banner h3,
#portfolio_banner h2,
#contact_container h4,
#contact_container h3,
#contact_container h2 {
  margin-top: -40px;
  line-height: 1.5em;
}
@media screen and (max-width: 800px) {
  .title_container h1,
  #portfolio_banner h1,
  #contact_container h1 {
    margin-top: 20px;
  }
  .title_container h4,
  .title_container h3,
  .title_container h2,
  #portfolio_banner h4,
  #portfolio_banner h3,
  #portfolio_banner h2,
  #contact_container h4,
  #contact_container h3,
  #contact_container h2 {
    margin-top: -30px;
  }
}
@media screen and (max-width: 550px) {
  .title_container h4,
  .title_container h3,
  .title_container h2,
  #portfolio_banner h4,
  #portfolio_banner h3,
  #portfolio_banner h2,
  #contact_container h4,
  #contact_container h3,
  #contact_container h2 {
    margin-top: 0;
  }
}

.title_container h1 {
  margin-top: 100px;
  line-height: 1.5em;
}
.title_container h2 {
  font-size: 1.5em;
}

#contact_map img {
  width: 100%;
  margin-top: 100px;
}

.contact_form_section {
  margin-top: 100px;
}

#new_contact_form {
  display: grid;
  max-width: 800px;
  margin: 100px auto;
  grid-gap: 30px;
}
#new_contact_form input,
#new_contact_form textarea {
  border: unset;
  border-radius: 10px;
  padding: 20px 30px;
  font-family: "CenturyGothic";
  font-size: 1.3em;
  color: #858599;
}
#new_contact_form input::placeholder,
#new_contact_form textarea::placeholder {
  font-family: "CenturyGothic";
  color: #858599;
}
#new_contact_form input:focus,
#new_contact_form textarea:focus {
  outline: 1px solid #55249a;
}
#new_contact_form #new_contact_form_submit {
  margin: 30px auto 0 auto;
}

/* CSS for the slider footer */
.footer-slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_logos {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

/* .footer_logos {
  height: 150px;
  object-fit: contain;
  margin-left: 50px;
  margin-right: 50px;
}


#footer_slider_section {
  position: relative;
  margin-top: 50px;
}

.footer_slider_next {
  right: -70px;
}

.footer_slider_prev {
  left: -70px;
}

.footer_arrow {
    position: absolute;
    background-color: #ffffff;
    border-radius: 100px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
    top: 50%;
    transform: translateY(calc(-50% ));
    cursor: pointer;
    z-index: 1;
}


#footer_slider_section svg {
  width: 30px;
  height: 30px;
  margin: 10px;
}

#footer_slider_section svg path:last-of-type {
  fill: #e679a9;
}
 */
@media screen and (max-width: 1300px) {
  .new_container {
    margin: 0 30px;
  }
  .about .new_container {
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  header {
    display: none;
  }
  #mobile_header {
    display: block;
  }
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 2em;
    line-height: 1.9em;
  }
}
@media screen and (max-width: 650px) {
  h4 {
    font-size: 1.8em;
  }
  p {
    font-size: 1.25em;
  }
  .small_button {
    width: 300px;
  }
  .big_button {
    width: 100%;
  }
  footer .footer_grid {
    grid-template-columns: 1fr;
  }
  footer .footer_grid .footer_right {
    padding-top: 40px;
    text-align: left;
  }
  footer .footer_grid .footer_right a {
    font-size: 1.25em;
    font-family: "CenturyGothic";
    margin-bottom: 15px;
  }
  footer .footer_dark .awards_group {
    grid-template-columns: 1fr;
    margin: 60px auto;
  }
  footer .footer_dark .awards_group img {
    width: 50%;
    padding: 0;
  }
}
@media screen and (max-width: 550px) {
  .new_container {
    margin: 0 10px;
  }
  .about .new_container {
    margin: 0 auto;
  }
  #mobile_header #mobile-header-nav {
    padding: 30px 10px;
  }
  #mobile_header #mobile-header-nav a#mobile-header-logo img {
    height: 40px;
  }
  h1 {
    font-size: 2.75em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.75em;
  }
  h4 {
    font-size: 1.6em;
  }
  h2,
  h3,
  h4 {
    line-height: 1.75em;
  }
  p {
    line-height: 1.9em;
  }
  .small_button {
    width: 100%;
  }
  .book_a_call,
  .contact_form_section {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .book_a_call h2,
  .contact_form_section h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 800px) {
  footer .footer_grid .ecologi_badge {
    grid-column: 1;
  }
}

/*# sourceMappingURL=header_footer.css.map */
