/*
Theme Name: CyberFrog (Matt)
Author: Matthew Shabaily
Version: 4.0
*/

/* ============ Root ============ */

:root {
}

@font-face {
  font-family: "dis-black";
  src: url("fonts/NotoSerifDisplay-CondensedBlack.ttf") format("truetype");
  font-weight: 100 200 300 400 500 600 700 800 900;
  font-style: normal;
}

/* ============ Globals ============ */

html {
  overflow-x: hidden;
}

html.no-scroll {
  overflow-y: hidden;
}

body {
  position: relative;
  overflow: hidden;
  font-family: "Work Sans";
  min-height: 100vh;
}

.body-dim {
  background: black;
  opacity: 0.4;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 6;
}

/* ============ Decorations ============ */

.circles {
  position: absolute;
  pointer-events: none;
}

*:has(> .circles) {
  position: relative;
}

/* ============ Containers ============ */

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

/* ============ Scrollbar ============ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ============ Effects ============ */

.light-effect {
  cursor: pointer;
  transition: filter 02s;
}

.pan-effect {
  cursor: pointer;
  transition: transform 0.2s;
}

.dim-effect {
  cursor: pointer;
  transition: opacity 0.2s;
}

.dim-effect:hover {
  opacity: 0.6;
}

.pan-effect:hover {
  transform: translate(1px);
}

.light-effect:hover {
  filter: brightness(1.2);
}

/* ============ Utils ============ */

.background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.hidden {
  opacity: 0;
  z-index: -1 !important;
}

.indent {
  margin-left: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.indent::before {
  position: absolute;
  width: 1px;
  height: 100%;
  content: "";
  background: black;
  left: -30px;
  top: 0;
}

/* ============ Text ============ */

h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -3.2px;
}

h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -2.4px;
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -1.2px;
}

h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: -1.2px;
}

p {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: -0.9px;
}

p strong {
  font-weight: 600;
}

ul {
  line-height: 30px;
  font-size: 18px;
  font-weight: 300;
}

.text ul {
  list-style: disc;
  margin-left: 30px;
}

.text a:not(.cta) {
  transition: opacity 0.3s;
}

.text a:not(.cta):hover {
  opacity: 0.6;
}

/* ============ CTAs ============ */

.cta {
  display: flex;
  padding-block: 8px;
  padding-inline: 18px;
  border-radius: 23px;
  width: fit-content;
  transition: 0.3s;
  align-items: center;
  white-space: nowrap;
  gap: 7px;
  font-family: "Work Sans";
  font-size: 14.5px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.725px;
}

.cta.light {
  color: white !important;
  border: 1px solid white !important;
}

.cta.light:hover {
  background: white !important;
  color: black !important;
}

.cta.dark {
  color: black !important;
  border: 1px solid black !important;
}

.cta.dark::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(14%)
    hue-rotate(273deg) brightness(99%) contrast(104%);
}

.cta.dark.reverse::before {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(14%)
    hue-rotate(273deg) brightness(99%) contrast(104%);
}

.cta.dark:hover {
  color: white !important;
  background: black !important;
}

.cta.dark:hover::after {
  filter: none;
}

.cta.dark.reverse:hover::before {
  filter: none;
}

/* ============ 404 ============ */

.error-404 {
  align-items: center;
  height: 500px;
  margin-top: 100px;
}

.error-404 .text {
  width: 85%;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 100%;
}

.error-404 .text h1 {
  color: var(--primary);
  font-size: 100px;
}

.error404 header .logo {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7489%)
    hue-rotate(297deg) brightness(96%) contrast(104%);
}

.error404 .burger {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7489%)
    hue-rotate(297deg) brightness(96%) contrast(104%);
}

/* ============ Video ============ */

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  height: 300px;
}

.video .play {
  position: absolute;
  width: 60px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.video .filter {
  background: black;
  opacity: 0.3;
  z-index: 2;
}

/* ============ Header ============ */

header {
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  padding-block: 25px;
}

header .wrapper {
  align-items: center;
  width: 90%;
  justify-content: space-between;
}

header .logo img {
  width: 210px;
  height: 38px;
}

body:has(.banner.light) header img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(14%)
    hue-rotate(273deg) brightness(99%) contrast(104%);
}

/* ============ Header Menu ============ */

.header-menu {
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  transition: 0.5s;
  transform: translateY(-100vh);
  height: 100vh;
  width: 100%;
  background: #fcd242;
  z-index: 100;
  pointer-events: none;
}

.header-menu .circles {
  right: 0;
  bottom: -25px;
}

.header-menu .header {
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  padding-block: 25px;
}

.header-menu .header .wrapper {
  align-items: center;
  width: 90%;
  justify-content: space-between;
}

.header-menu .header .logo img {
  width: 210px;
  height: 38px;
}

.header-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.header-menu .header {
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  padding-block: 25px;
}

.header-menu .wrapper {
  height: 100%;
}

.header-menu .left {
  background: #2c2c2c;
  height: 100%;
  width: 25%;
  padding-left: 5%;
  padding-top: 125px;
  gap: 60px;
  padding-right: 50px;
}

.header-menu .left p,
.header-menu .left a {
  color: white;
  font-size: 15px;
  font-style: normal;
  line-height: 26px;
  letter-spacing: -0.75px;
  font-weight: 300;
}

.header-menu .left p strong {
  color: #fcd242;
}

.header-menu .left .sub-heading {
  color: #fcd242;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.9px;
}

.header-menu .heading {
  color: white;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -1.8px;
}

.header-menu .left .text .heading {
  margin-bottom: 25px;
}

.header-menu .right {
  width: 75%;
  padding-left: 75px;
  margin-top: 175px;
  padding-right: 7%;
}

.header-menu #menu-header-menu {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.header-menu .sub-menu {
  position: relative;
  display: flex !important;
  gap: 25px;
  margin-top: 25px;
}

.header-menu .sub-menu::after {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0.3;
  content: "";
}

.header-menu .menu-item:has(.sub-menu) > a {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -1.8px;
  color: white;
}

/* ============ Home ============ */

.home {
  position: relative;
  background: #2c2c2c;
  height: 100vh;
}

.home header {
  display: none;
}

.home footer {
  display: none;
}

.home .header-menu {
  display: none;
}

.home .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  transition: opacity 0.5s;
  height: 80px;
}

.home .logo-container .logo img {
  width: 200px;
}

.home .logo-container .logo {
  gap: 8px;
}

.home .link-container .logo {
  gap: 8px;
}

.home .link-container {
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.home .link-container .link {
  position: relative;
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}

.home .link-container .logo {
  z-index: 3;
}

.home .link-container .link img {
  height: 100%;
  cursor: pointer;
  object-fit: contain;
}

.home .link-container .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.6;
  z-index: 2;
  transition: 0.5s;
  cursor: pointer;
}

.home .link-container .link:hover .overlay {
  opacity: 0.3;
}

.home .link-container .link:hover {
  overflow: visible;
}

/* ============ Overview ============ */

.overview {
  background: #fcd242;
}

.overview .video-banner {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  min-height: 600px;
  align-items: center;
}

.overview .video-banner .wrapper {
  justify-content: center;
  height: 100%;
  width: 65%;
  min-height: 600px;
}

.overview .video-banner .filter {
  z-index: 2;
}

.overview .video-banner .text {
  z-index: 3;
  gap: 50px;
  transform: translateY(-100px);
}

.overview .video-banner .text * {
  color: white;
  width: 26%;
}

.overview .video-banner .text h1 {
  color: #fcd242;
  width: unset;
}

.overview .text-section {
  align-items: end;
}

.overview .text-section .wrapper {
  justify-content: space-between;
  width: 90%;
  align-items: center;
}

.overview .text-section .text {
  width: 35%;
  margin-block: 50px;
  gap: 50px;
}

.overview .text-section .main-image {
  width: 46%;
  border-radius: 200px 0px 0px 0px;
  align-self: end;
}

.overview .text-section.reverse .main-image {
  width: 60%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  align-self: flex-start;
  border-radius: 0 0 1000px 1000px;
}

.overview .text-section.reverse {
  align-items: center;
  padding-bottom: 75px;
}

.overview .text-section.reverse .wrapper {
  flex-direction: row-reverse;
  width: 85%;
}

.overview .section-one {
  background: #fcd242;
}

.overview .section-one .circles {
  left: 0;
  top: -200px;
}

.overview .section-two .circles {
  right: 0;
  top: -200px;
}

.overview .section-three .circles {
  left: 0;
  top: -200px;
}

.overview .section-two {
  background: #2c2c2c;
}

.overview .section-three {
  background: #f2f2f2;
}

.overview .section-two * {
  color: white;
}

.overview .section-two h2 {
  color: #fcd242;
}

.overview .section-two .indent::before {
  background: white;
}

.overview .article {
  background: #fcd242;
}

.overview .article .cta {
  margin-left: 30px;
}

.overview .article .text {
  gap: 25px;
}

.overview .article .indent {
  margin-top: 25px;
}

/* ============ Banner ============ */

.banner {
  padding-top: 200px;
  padding-bottom: 50px;
  align-items: center;
}

.banner .circles {
  right: 0;
  top: -200px;
}

.banner.dark {
  background: #2c2c2c;
}

.banner.light {
  background: #fcd242;
}

.banner .wrapper {
  width: 70%;
}

.banner.dark * {
  color: white;
}

.banner.dark .text h2 {
  color: #fcd242;
}

.banner .text {
  max-width: 60%;
}

.home .banner .text h2 {
  color: white;
  line-height: 50px;
}

.banner .text h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: -3.2px;
  color: white;
}

.banner .text {
  gap: 25px;
}

.banner p {
  line-height: 36px;
  width: 60%;
}

/* ============ Introduction ============ */

.introduction {
  align-items: end;
  padding-top: 375px;
  background: linear-gradient(to bottom, #fcd242 75%, #2c2c2c 25%);
}

.introduction .circles {
  right: 0;
  top: 350px;
}

body:has(.banner.dark) .introduction {
  background: linear-gradient(to bottom, #2c2c2c 75%, #fcd242 25%);
}

.introduction .wrapper {
  width: 92.5%;
  background: #f2f2f2;
  padding-bottom: 50px;
  padding-left: 7.5%;
  border-radius: 100px 0px 0px 0px;
}

.introduction .wrapper .main-image {
  height: 500px;
  border-radius: 100px 0px 0px 0px;
  object-fit: cover;
  transform: translateY(-350px);
  margin-bottom: -250px;
}

.introduction .text {
  gap: 50px;
  width: 60%;
}

body:has(.introduction + .section-two) .introduction {
  margin-bottom: 100px;
}

/* ============ About ============ */

.about {
  background: #2c2c2c;
}

.about .introduction {
  background: #fcd242;
}

.about .section-one {
  align-items: end;
  background: linear-gradient(to bottom, #fcd242 50%, #2c2c2c 50%);
  padding-bottom: 100px;
}

.about .section-one .wrapper {
  padding-top: 50px;
  background: #f2f2f2;
  width: 92.5%;
  padding-left: 25%;
  padding-bottom: 100px;
}

.about .section-one .text {
  width: 75%;
  gap: 50px;
}

.about .section-two {
  align-items: end;
  background: #2c2c2c;
  padding-bottom: 300px;
}

.about .section-two .circles {
  left: 0;
  top: -280px;
}

.about .section-two .circles#two {
  left: unset;
  top: unset;
  right: 0;
  bottom: -150px;
}

.about footer .circles {
  display: none;
}

.about .section-two .wrapper {
  width: 85%;
}

.about .section-two .slider .slide .title {
  color: #fcd242;
}

.about .section-two * {
  color: white;
}

.about .section-two .title {
  color: #fcd242;
}

.about .section-two .text {
  gap: 50px;
}

.about .section-two .indent {
  width: 35%;
}

.about .section-two .indent::before {
  background: white;
}

.about .section-two .slider {
  margin-top: 100px;
}

.about .section-two .slider .image-container {
  place-items: center;
  width: 300px;
  aspect-ratio: 1;
  background: #f2f2f2;
  border-radius: 50px;
}

.about .section-two .slider .slide .main-image {
  width: 180px;
}

/* ============ Slider ============ */

.slider:has(*[data-slick-index="3"]) {
  transform: translateX(150px);
}

.slider .slide {
  place-items: center;
}

.slider .slide .container {
  width: 300px;
  gap: 15px;
}

.slider .slide:nth-child(2n) .container {
  transform: translateY(75px);
}

.slider .slide .image-container {
  place-items: center;
  width: 300px;
  aspect-ratio: 1;
}

.slider .slide .main-image {
  aspect-ratio: 1;
  height: auto;
  width: 300px;
}

.slider .slick-arrow {
  position: absolute;
  top: -100px;
  aspect-ratio: 1;
  width: 45px;
  height: auto;
  background: transparent;
  z-index: 5;
}

.slider .next {
  right: 300px;
}

.slider .prev {
  right: 375px;
  transform: rotate(180deg);
}

/* ============ Values ============ */

.values {
  background: #2c2c2c;
}

.values .introduction .wrapper {
  padding-bottom: 200px !important;
}

.values .section-one {
  background: #2c2c2c;
  align-items: end;
  padding-block: 100px;
}

.values .section-one .circles {
  left: 0;
  top: -250px;
}

.values .section-one * {
  color: white;
}

.values .section-one .wrapper {
  width: 85%;
}

.values .section-one .text {
  width: 70%;
  gap: 50px;
}

.values .section-one .title {
  color: #fcd242;
}

.values .section-one .indent::before {
  background: white;
}

.values .section-two {
  align-items: end;
}

.values .section-two .wrapper {
  background: #fcd242;
  gap: 50px;
  width: 92.5%;
  padding-left: 7.5%;
  padding-right: 10%;
  padding-top: 100px;
  border-radius: 100px 0px 0px 0px;
  justify-content: space-between;
  padding-bottom: 125px;
  align-items: center;
}

.values .section-two .text {
  gap: 50px;
}

.values .section-two:has(.video) .text {
  width: 50%;
}

.values .section-two .video {
  align-self: center;
}

/* ============ The Team ============ */

.the-team .section-one {
  align-items: end;
  padding-top: 100px;
  padding-bottom: 200px;
  background: #2c2c2c;
}

.the-team .section-one .circles {
  left: 0;
  top: -200px;
}

.the-team .section-one * {
  color: white;
}

.the-team .section-one .wrapper {
  width: 85%;
}

.the-team .section-one .slider {
  margin-top: 50px;
}

.slider .slick-track {
  padding-bottom: 100px;
}

.slider {
  margin-bottom: -100px;
}

.the-team .section-one .title {
  color: #fcd242;
}

.the-team .section-one .text {
  width: 36%;
  gap: 50px;
}

.the-team .section-one .indent::before {
  background: white;
}

.the-team .section-two {
  align-items: end;
  background: #2c2c2c;
}

.the-team .section-two .wrapper {
  background: #fcd242;
  width: 92.5%;
  padding-left: 7.5%;
  padding-top: 100px;
  padding-bottom: 300px;
  border-radius: 100px 0px 0px 0px;
}

.the-team .section-two .text {
  width: 36%;
  gap: 50px;
}

.the-team .section-two .slider {
  margin-top: 50px;
}

.the-team .section-two .slick-arrow {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%)
    hue-rotate(316deg) brightness(94%) contrast(101%);
}

.the-team .bio {
  overflow-y: auto;
  z-index: 10;
  position: fixed;
  width: 55%;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 80px 0px 0px 0px;
  align-items: center;
  justify-content: center;
}

.the-team .bio .main-image {
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50px;
}

.the-team .bio .wrapper {
  position: relative;
  height: 100%;
  border-radius: 80px 0px 0px 0px;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

.the-team .bio .left * {
  color: white;
}

.the-team .bio .left h3 {
  color: #fcd242;
}

.the-team .bio .left {
  width: 300px;
  background: #2c2c2c;
  padding-left: 50px;
  padding-top: 50px;
  gap: 15px;
  border-radius: 80px 0px 0px 0px;
}

.the-team .bio .right {
  position: relative;
  width: 70%;
  padding-right: 50px;
  padding-top: 100px;
}

.the-team .bio .details {
  width: 80%;
  gap: 15px;
}

.the-team .bio .contacts {
  position: relative;
  margin-top: 50px;
  gap: 10px;
}

.the-team .bio .contacts a {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 176.471% */
  letter-spacing: -0.85px;
}

.the-team .bio .close {
  position: absolute;
  right: 25px;
  top: 25px;
}

.the-team .bio .contacts::before {
  background: white;
  width: 100%;
  height: 1px;
  content: "";
  top: -15px;
  left: 0;
}

.the-team .bio .contacts img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(14%)
    hue-rotate(106deg) brightness(104%) contrast(104%);
}

.the-team .bio .text {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.75px;
  gap: 25px;
}

/* ============ Contact ============ */

.contact {
  background: #fcd242;
}

.contact .section-one {
  background: #fcd242;
  align-items: end;
  padding-top: 100px;
  padding-bottom: 300px;
}

.contact .section-one .text {
  width: 35%;
  gap: 50px;
}

.contact .section-one .slider .address {
  width: 242px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  letter-spacing: -0.9px;
  gap: 25px;
}

.contact .section-one .slider {
  margin-top: 50px;
}

.contact .section-one .wrapper {
  width: 85%;
}

.contact .image-container {
  background: #f2f2f2;
  border-radius: 50px;
}

.contact .slick-arrow {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%)
    hue-rotate(316deg) brightness(94%) contrast(101%);
}

.contact .gform_wrapper {
  width: 80%;
  padding-top: 100px;
}

.contact .form {
  width: 80%;
  padding-bottom: 100px;
}

.contact .section-one .circles {
  left: 0;
  top: -250px;
}

/* ============ Gravity Forms ============ */

.gform_wrapper input,
.gform_wrapper textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  font-family: "Work Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 176.471% */
  letter-spacing: -0.85px;
}

.gform_wrapper textarea {
  height: 100px !important;
}

.gform_wrapper input[type="submit"] {
  display: flex;
  padding-block: 8px;
  padding-inline: 18px;
  border-radius: 23px;
  width: fit-content;
  transition: background 0.3s;
  align-items: center;
  white-space: nowrap;
  gap: 7px;
  font-family: "Work Sans";
  font-size: 14.5px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.725px;
}

.gform_wrapper input[type="submit"] {
  color: black !important;
  border: 1px solid black !important;
}

.gform_wrapper input[type="submit"]::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(14%)
    hue-rotate(273deg) brightness(99%) contrast(104%);
}

.gform_wrapper input[type="submit"]:hover {
  color: white !important;
  background: black !important;
}

.gform_wrapper input[type="submit"]:hover::after {
  filter: none;
}

.gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  font-size: 13.2px !important;
  letter-spacing: normal !important;
}

/* ============ Archive ============ */

.page-template-archive:has(.article.news) {
  background: #2c2c2c;
}

.page-template-archive:has(.article.news) .previews * {
  color: white;
}

.page-template-archive:has(.article.news) .previews h2 {
  color: #fcd242;
}

.page-template-archive:has(.article.news) .previews .indent::before {
  background: white;
}

.page-template-archive:has(.article.case-study) {
  background: #fcd242;
}

.page-template-archive .previews .circles {
  left: 0;
  top: -250px;
}

.page-template-archive .preview img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 30px 0px 0px 0px;
}

.page-template-archive .article {
  align-items: end;
  background: linear-gradient(to bottom, #fcd242 75%, #2c2c2c 25%);
}

.page-template-archive .article .indent {
  margin-top: 50px !important;
}

.page-template-archive .article .wrapper {
  width: 92.5%;
  padding-left: 7.5%;
  background: #f2f2f2;
  padding-top: 100px;
  padding-bottom: 50px;
  border-radius: 200px 0px 0px 0px;
  justify-content: space-between;
}

.page-template-archive .article .text {
  width: 46%;
  gap: 15px;
}

.page-template-archive .text .title {
  line-height: normal;
}

.page-template-archive .article .cta {
  margin-top: 25px;
  margin-left: 30px;
}

.page-template-archive .article .main-image {
  width: 50%;
  aspect-ratio: 1;
  border-radius: 200px 0px 0px 0px;
  transform: translateY(-300px);
  object-fit: cover;
  margin-bottom: -300px;
}

.page-template-archive .previews {
  align-items: center;
  padding-bottom: 100px;
}

.page-template-archive .previews .wrapper {
  width: 70%;
  padding-top: 50px;
  padding-bottom: 100px;
  gap: 50px;
}

.page-template-archive .previews .search-filter-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  row-gap: 100px;
  column-gap: 200px;
}

.page-template-archive .previews .indent {
  margin-top: 15px !important;
}

.page-template-archive .preview {
  gap: 25px;
}

.page-template-archive .preview:nth-child(2n - 1) {
  transform: translateY(-50px);
}

.page-template-archive .head {
  justify-content: space-between;
}

.page-template-archive .preview .top {
  align-items: end;
  gap: 15px;
}

.case-studies .article {
  background: linear-gradient(to bottom, #2c2c2c 75%, #fcd242 25%);
}

/* ============ Where we work ============ */

.page-template-map .section-one {
  align-items: end;
  background: #2c2c2c;
}

.page-template-map .section-one .wrapper {
  width: 90%;
}

.page-template-map .section-one .text {
  gap: 50px;
  width: 80%;
  background: #fcd242;
  padding-block: 100px;
  padding-inline: 5%;
  border-radius: 100px 0px 0px 0px;
  gap: 50px;
}

.page-template-map .section-one .map {
  width: 70%;
  margin-top: 200px;
}

.map_wrapper {
  height: 100%;
  background: #f2f2f2;
  border-radius: 100px 0px 0px 0px;
}

.imapsInnerTooltip h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -1.2px;
}

.imapsInnerTooltip a {
  position: static;
  color: #000;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.7px;
}

.igm-map-content a {
  position: relative;
  color: #000;
  font-family: "Work Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.7px;
}

/* .imapsTooltip-group > .imapsSprite-group {
  display: none;
}

.imapsInnerTooltip {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  padding-inline: 15px;
  padding-block: 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}
 */

.map_render > div {
  border-radius: 100px 0px 0px 0px !important;
}

/* ============ Single News / Single Case Studies ============ */

.single-news {
  background: #2c2c2c;
}

.single-case-study {
  background: #fcd242;
}

.single-news .content,
.single-case-study .content {
  align-items: end;
  background: linear-gradient(to bottom, #fcd242 50%, #2c2c2c 50%);
}

.single-news .content .wrapper,
.single-case-study .content .wrapper {
  padding-block: 100px;
  border-radius: 200px 0px 0px 0px;
  background: #f2f2f2;
  width: 92.5%;
  padding-left: 7.5%;
  justify-content: space-between;
}

.single-news .content .image-container,
.single-case-study .content .image-container {
  width: 850px;
  background: #2c2c2c;
  align-items: end;
  border-radius: 200px 0px 0px 0px;
  padding-bottom: 50px;
}

.single-news .content .wrapper > .text,
.single-case-study .content .wrapper > .text {
  gap: 25px;
  width: 40%;
  padding-right: 5%;
}

.single-news .content .main-image,
.single-case-study .content .main-image {
  width: 87.5%;
  aspect-ratio: 1;
  border-radius: 200px 0px 0px 0px;
  transform: translateY(-300px);
  object-fit: cover;
  margin-bottom: -300px;
}

.single-news .preview img,
.single-case-study .preview img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 30px 0px 0px 0px;
}

.single-news .preview h4,
.single-case-study .preview h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px; /* 180% */
  letter-spacing: -1px;
}

.single-news .preview p,
.single-case-study .preview p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 200% */
  letter-spacing: -0.75px;
}

.single-news .image-container *,
.single-case-study .image-container * {
  color: white;
}

.single-news .image-container .title,
.single-case-study .image-container .title {
  color: #fcd242;
}

.single-news .links,
.single-case-study .links {
  width: 75%;
  align-self: center;
  gap: 25px;
  margin-top: 50px;
}

.single-news .previews,
.single-case-study .previews {
  gap: 25px;
}

.single-news .preview,
.single-case-study .preview {
  gap: 25px;
  align-items: center;
}

.single-news .preview .text,
.single-case-study .preview .text {
  width: 75%;
}

/* ============ Single Service ============ */

.single-service {
  background: #fcd242;
}

.single-service:not(:has(.section-one)) .introduction {
  padding-bottom: 50px;
}

.single-service .section-one {
  align-items: center;
  padding-top: 50px;
  padding-bottom: 150px;
}

.single-service .section-one .wrapper {
  width: 70%;
}

.single-service .section-one .text {
  width: 70%;
  gap: 50px;
}

.single-service .section-one .quote-slider {
  margin-top: 50px;
  margin-bottom: 100px;
}

.single-service .section-one .slick-arrow {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%)
    hue-rotate(316deg) brightness(94%) contrast(101%);
}

.single-service .section-two {
  align-items: end;
}

.single-service .section-two .wrapper {
  background: #2c2c2c;
  width: 92.5%;
  padding-left: 7.5%;
  padding-block: 100px;
  border-radius: 200px 0px 0px 0px;
  justify-content: space-between;
}

.single-service .section-two .main-image {
  width: 50%;
  object-fit: cover;
  border-radius: 200px 0px 0px 0px;
  transform: translateY(-300px);
  margin-bottom: -200px;
}

.single-service .section-two .text {
  width: 45%;
  gap: 50px;
}

.single-service .section-two .indent::before {
  background: white;
}

.single-service .section-two * {
  color: white;
}

/* ============ Quote Slider ============ */

.quote-slider .quote {
  align-items: center;
  display: flex;
  gap: 25px;
}

.quote-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-slider .slick-list {
  width: 90%;
}

.quote-slider .quote .text {
  text-align: center;
}

.quote-slider .quote .text p {
  font-size: 36px;
  font-style: italic;
  font-weight: 200;
  line-height: 56px;
  letter-spacing: -1.8px;
}

.quote-slider .quote .author {
  width: fit-content;
}

.quote-slider .slick-arrow {
  position: absolute;
  top: 50%;
}

.quote-slider .slick-arrow.prev {
  transform: translateY(-50%) rotate(180deg);
  left: 50px;
}

.quote-slider .slick-arrow.next {
  right: 50px;
  transform: translateY(-50%);
}

/* ============ Added Value ============ */

.added-value {
  background: #fcd242;
}

.added-value .section-one {
  align-items: end;
  padding-block: 50px;
}

.added-value .section-one .wrapper {
  width: 85%;
}

.added-value .section-one .text {
  width: 60%;
  gap: 25px;
}

.added-value .slick-arrow {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%)
    hue-rotate(316deg) brightness(94%) contrast(101%);
}

.added-value .slider {
  margin-block: 50px;
}

/* ============ Plain Text ============ */

.page-template-text {
  background: #2c2c2c;
}

.page-template-text .content {
  align-items: end;
}

.page-template-text .content .wrapper {
  width: 92.5%;
  padding-left: 7.5%;
  padding-block: 100px;
  border-radius: 200px 0px 0px 0px;
  background: #f2f2f2;
}

.page-template-text .content .text {
  width: 75%;
}

/* ============ Footer ============ */

footer {
  align-items: end;
}

footer p,
footer a {
  color: black;
  font-size: 15px;
  font-style: normal;
  line-height: 26px;
  letter-spacing: -0.75px;
  font-weight: 300;
}

footer .notice a {
  font-size: unset;
  line-height: unset;
  letter-spacing: unset;
  font-weight: unset;
}

footer a {
  transition: opacity 0.3s;
}

footer a:hover {
  opacity: 0.6;
}

footer .logo img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(14%)
    hue-rotate(273deg) brightness(99%) contrast(104%);
  width: 210px;
  height: 38px;
}

footer .wrapper {
  position: relative;
  width: 95%;
  background: white;
  border-radius: 50px 0px 0px 0px;
  padding-left: 100px;
  padding-top: 50px;
  gap: 100px;
}

footer .wrapper::after {
  content: "";
  position: absolute;
  bottom: 50px;
  width: 90%;
  height: 1px;
  background: #fcd242;
  left: 50%;
  transform: translateX(-50%);
}

footer .navigation {
  gap: 100px;
}

footer .main-nav {
  margin-left: 100px;
  margin-top: 50px;
}

footer li:has(.sub-menu) > a {
  font-weight: 600;
}

footer .main-nav ul {
  gap: 100px;
}

footer .notice {
  margin-top: 50px;
  margin-bottom: 5px;
  gap: 10px;
}

footer .connect {
  margin-top: 50px;
}

footer .connect .links {
  margin-top: 15px;
  align-items: center;
  gap: 5px;
}

footer .tagline {
  margin-bottom: 25px;
  white-space: nowrap;
}

footer .phone-number {
  margin-top: 15px;
}

footer .notice {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.65px;
}

footer .circles {
  right: 0;
  top: -200px;
  z-index: 10;
}
